diff --git a/grammar.js b/grammar.js index 9e58f18..56d6de9 100644 --- a/grammar.js +++ b/grammar.js @@ -164,17 +164,20 @@ module.exports = grammar(Python, { $.cvar_def, $.cdef_type_declaration, $.extern_block, - seq( - repeat($.storageclass), - optional(choice($.identifier, $.keyword_identifier)), - ":", - $._indent, - repeat1(choice($.cvar_def, $.ctypedef_statement, $.cdef_type_declaration, $.extern_block)), - $._dedent, - ), + $.cdef_definition_block, ), ), + cdef_definition_block: $ => + seq( + repeat($.storageclass), + optional(choice($.identifier, $.keyword_identifier)), + ":", + $._indent, + repeat1(choice($.cvar_def, $.ctypedef_statement, $.cdef_type_declaration, $.extern_block)), + $._dedent, + ), + cvar_def: $ => seq( repeat($.storageclass), @@ -393,7 +396,7 @@ module.exports = grammar(Python, { optional("complex"), repeat($.type_qualifier), )), - field("name", optional(choice($.identifier, $.operator_name))), + field("name", optional(choice($.identifier, $.operator_name, $.c_function_pointer_name))), repeat($.type_qualifier), ), seq( @@ -403,6 +406,9 @@ module.exports = grammar(Python, { ), ), + c_function_pointer_name: $ => + seq("(", "*", field("name", $.identifier), ")"), + // type_qualifier: '*' | '**' | '&' | type_index ('.' NAME [type_index])* type_qualifier: $ => choice( @@ -680,7 +686,7 @@ module.exports = grammar(Python, { seq( "sizeof", "(", - $.c_type, + choice($.c_type, $.expression), ")", ), ), diff --git a/src/grammar.json b/src/grammar.json index d6b215b..fc396fc 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -6700,75 +6700,79 @@ "name": "extern_block" }, { - "type": "SEQ", + "type": "SYMBOL", + "name": "cdef_definition_block" + } + ] + } + ] + }, + "cdef_definition_block": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "storageclass" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", "members": [ - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "storageclass" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SYMBOL", - "name": "keyword_identifier" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ":" - }, { "type": "SYMBOL", - "name": "_indent" - }, - { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "cvar_def" - }, - { - "type": "SYMBOL", - "name": "ctypedef_statement" - }, - { - "type": "SYMBOL", - "name": "cdef_type_declaration" - }, - { - "type": "SYMBOL", - "name": "extern_block" - } - ] - } + "name": "identifier" }, { "type": "SYMBOL", - "name": "_dedent" + "name": "keyword_identifier" } ] + }, + { + "type": "BLANK" } ] + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "SYMBOL", + "name": "_indent" + }, + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "cvar_def" + }, + { + "type": "SYMBOL", + "name": "ctypedef_statement" + }, + { + "type": "SYMBOL", + "name": "cdef_type_declaration" + }, + { + "type": "SYMBOL", + "name": "extern_block" + } + ] + } + }, + { + "type": "SYMBOL", + "name": "_dedent" } ] }, @@ -7997,6 +8001,10 @@ { "type": "SYMBOL", "name": "operator_name" + }, + { + "type": "SYMBOL", + "name": "c_function_pointer_name" } ] }, @@ -8067,6 +8075,31 @@ } ] }, + "c_function_pointer_name": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "STRING", + "value": "*" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "STRING", + "value": ")" + } + ] + }, "type_qualifier": { "type": "CHOICE", "members": [ @@ -9324,8 +9357,17 @@ "value": "(" }, { - "type": "SYMBOL", - "name": "c_type" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "c_type" + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] }, { "type": "STRING", diff --git a/src/node-types.json b/src/node-types.json index 5bf69bd..9f61268 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -864,6 +864,22 @@ ] } }, + { + "type": "c_function_pointer_name", + "named": true, + "fields": { + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + } + }, { "type": "c_name", "named": true, @@ -1113,7 +1129,7 @@ } }, { - "type": "cdef_statement", + "type": "cdef_definition_block", "named": true, "fields": {}, "children": { @@ -1147,6 +1163,33 @@ ] } }, + { + "type": "cdef_statement", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "cdef_definition_block", + "named": true + }, + { + "type": "cdef_type_declaration", + "named": true + }, + { + "type": "cvar_def", + "named": true + }, + { + "type": "extern_block", + "named": true + } + ] + } + }, { "type": "cdef_type_declaration", "named": true, @@ -3040,6 +3083,10 @@ "multiple": false, "required": false, "types": [ + { + "type": "c_function_pointer_name", + "named": true + }, { "type": "identifier", "named": true @@ -3544,6 +3591,10 @@ { "type": "c_type", "named": true + }, + { + "type": "expression", + "named": true } ] } diff --git a/src/parser.c b/src/parser.c index ce68c4c..bc1c16e 100644 --- a/src/parser.c +++ b/src/parser.c @@ -5,15 +5,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 5727 -#define LARGE_STATE_COUNT 1054 -#define SYMBOL_COUNT 394 +#define STATE_COUNT 5745 +#define LARGE_STATE_COUNT 1063 +#define SYMBOL_COUNT 396 #define ALIAS_COUNT 3 #define TOKEN_COUNT 168 #define EXTERNAL_TOKEN_COUNT 12 #define FIELD_COUNT 33 #define MAX_ALIAS_SEQUENCE_LENGTH 12 -#define PRODUCTION_ID_COUNT 265 +#define PRODUCTION_ID_COUNT 264 enum ts_symbol_identifiers { sym_identifier = 1, @@ -324,94 +324,96 @@ enum ts_symbol_identifiers { 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_default = 328, - sym_template_param = 329, - sym_template_params = 330, - sym_c_parameters = 331, - sym__typedargslist = 332, - sym_gil_spec = 333, - sym_exception_value = 334, - sym_struct = 335, - sym_struct_suite = 336, - sym_enum = 337, - sym_cppclass = 338, - sym__cppclass_suite = 339, - sym_fused = 340, - sym_storageclass = 341, - sym_new_expression = 342, - sym_sizeof_expression = 343, - sym_cast_expression = 344, - aux_sym_module_repeat1 = 345, - aux_sym__simple_statements_repeat1 = 346, - aux_sym_import_prefix_repeat1 = 347, - aux_sym__import_list_repeat1 = 348, - aux_sym_print_statement_repeat1 = 349, - aux_sym_assert_statement_repeat1 = 350, - aux_sym_if_statement_repeat1 = 351, - aux_sym_match_statement_repeat1 = 352, - aux_sym__match_block_repeat1 = 353, - aux_sym_case_clause_repeat1 = 354, - aux_sym_try_statement_repeat1 = 355, - aux_sym_try_statement_repeat2 = 356, - aux_sym_with_clause_repeat1 = 357, - aux_sym_global_statement_repeat1 = 358, - aux_sym_class_definition_repeat1 = 359, - aux_sym_class_definition_repeat2 = 360, - aux_sym_type_parameter_repeat1 = 361, - aux_sym_argument_list_repeat1 = 362, - aux_sym_decorated_definition_repeat1 = 363, - aux_sym_union_pattern_repeat1 = 364, - aux_sym_dict_pattern_repeat1 = 365, - aux_sym__parameters_repeat1 = 366, - aux_sym__patterns_repeat1 = 367, - aux_sym_comparison_operator_repeat1 = 368, - aux_sym_subscript_repeat1 = 369, - aux_sym_dictionary_repeat1 = 370, - aux_sym__comprehension_clauses_repeat1 = 371, - aux_sym__collection_elements_repeat1 = 372, - aux_sym_for_in_clause_repeat1 = 373, - aux_sym_concatenated_string_repeat1 = 374, - aux_sym_string_repeat1 = 375, - aux_sym_string_content_repeat1 = 376, - aux_sym_format_specifier_repeat1 = 377, - aux_sym_external_definition_repeat1 = 378, - aux_sym_cdef_statement_repeat1 = 379, - aux_sym_cvar_def_repeat1 = 380, - aux_sym_extern_suite_repeat1 = 381, - aux_sym_cvar_decl_repeat1 = 382, - aux_sym_cvar_decl_repeat2 = 383, - aux_sym_function_pointer_type_repeat1 = 384, - aux_sym_c_type_repeat1 = 385, - aux_sym_type_qualifier_repeat1 = 386, - aux_sym_type_index_repeat1 = 387, - aux_sym_type_index_repeat2 = 388, - aux_sym_template_params_repeat1 = 389, - aux_sym__typedargslist_repeat1 = 390, - aux_sym_struct_suite_repeat1 = 391, - aux_sym__cppclass_suite_repeat1 = 392, - aux_sym_fused_repeat1 = 393, - alias_sym_as_pattern_target = 394, - alias_sym_format_expression = 395, - anon_alias_sym_longlong = 396, + sym_cdef_definition_block = 309, + sym_cvar_def = 310, + sym_cdef_type_declaration = 311, + sym_extern_block = 312, + sym_extern_suite = 313, + sym_ctype_declaration = 314, + sym_cvar_decl = 315, + sym_int_type = 316, + sym_operator_name = 317, + sym__signedness = 318, + sym__longness = 319, + sym_function_pointer_type = 320, + sym_c_type = 321, + sym_c_name = 322, + sym_maybe_typed_name = 323, + sym_c_function_pointer_name = 324, + sym_type_qualifier = 325, + sym_type_index = 326, + sym_memory_view_index = 327, + sym_ctypedef_statement = 328, + sym_c_function_definition = 329, + sym_template_default = 330, + sym_template_param = 331, + sym_template_params = 332, + sym_c_parameters = 333, + sym__typedargslist = 334, + sym_gil_spec = 335, + sym_exception_value = 336, + sym_struct = 337, + sym_struct_suite = 338, + sym_enum = 339, + sym_cppclass = 340, + sym__cppclass_suite = 341, + sym_fused = 342, + sym_storageclass = 343, + sym_new_expression = 344, + sym_sizeof_expression = 345, + sym_cast_expression = 346, + aux_sym_module_repeat1 = 347, + aux_sym__simple_statements_repeat1 = 348, + aux_sym_import_prefix_repeat1 = 349, + aux_sym__import_list_repeat1 = 350, + aux_sym_print_statement_repeat1 = 351, + aux_sym_assert_statement_repeat1 = 352, + aux_sym_if_statement_repeat1 = 353, + aux_sym_match_statement_repeat1 = 354, + aux_sym__match_block_repeat1 = 355, + aux_sym_case_clause_repeat1 = 356, + aux_sym_try_statement_repeat1 = 357, + aux_sym_try_statement_repeat2 = 358, + aux_sym_with_clause_repeat1 = 359, + aux_sym_global_statement_repeat1 = 360, + aux_sym_class_definition_repeat1 = 361, + aux_sym_class_definition_repeat2 = 362, + aux_sym_type_parameter_repeat1 = 363, + aux_sym_argument_list_repeat1 = 364, + aux_sym_decorated_definition_repeat1 = 365, + aux_sym_union_pattern_repeat1 = 366, + aux_sym_dict_pattern_repeat1 = 367, + aux_sym__parameters_repeat1 = 368, + aux_sym__patterns_repeat1 = 369, + aux_sym_comparison_operator_repeat1 = 370, + aux_sym_subscript_repeat1 = 371, + aux_sym_dictionary_repeat1 = 372, + aux_sym__comprehension_clauses_repeat1 = 373, + aux_sym__collection_elements_repeat1 = 374, + aux_sym_for_in_clause_repeat1 = 375, + aux_sym_concatenated_string_repeat1 = 376, + aux_sym_string_repeat1 = 377, + aux_sym_string_content_repeat1 = 378, + aux_sym_format_specifier_repeat1 = 379, + aux_sym_external_definition_repeat1 = 380, + aux_sym_cdef_definition_block_repeat1 = 381, + aux_sym_cvar_def_repeat1 = 382, + aux_sym_extern_suite_repeat1 = 383, + aux_sym_cvar_decl_repeat1 = 384, + aux_sym_cvar_decl_repeat2 = 385, + aux_sym_function_pointer_type_repeat1 = 386, + aux_sym_c_type_repeat1 = 387, + aux_sym_type_qualifier_repeat1 = 388, + aux_sym_type_index_repeat1 = 389, + aux_sym_type_index_repeat2 = 390, + aux_sym_template_params_repeat1 = 391, + aux_sym__typedargslist_repeat1 = 392, + aux_sym_struct_suite_repeat1 = 393, + aux_sym__cppclass_suite_repeat1 = 394, + aux_sym_fused_repeat1 = 395, + alias_sym_as_pattern_target = 396, + alias_sym_format_expression = 397, + anon_alias_sym_longlong = 398, }; static const char * const ts_symbol_names[] = { @@ -724,6 +726,7 @@ static const char * const ts_symbol_names[] = { [sym_include_statement] = "include_statement", [sym_def_statement] = "def_statement", [sym_cdef_statement] = "cdef_statement", + [sym_cdef_definition_block] = "cdef_definition_block", [sym_cvar_def] = "cvar_def", [sym_cdef_type_declaration] = "cdef_type_declaration", [sym_extern_block] = "extern_block", @@ -738,6 +741,7 @@ static const char * const ts_symbol_names[] = { [sym_c_type] = "c_type", [sym_c_name] = "c_name", [sym_maybe_typed_name] = "maybe_typed_name", + [sym_c_function_pointer_name] = "c_function_pointer_name", [sym_type_qualifier] = "type_qualifier", [sym_type_index] = "type_index", [sym_memory_view_index] = "memory_view_index", @@ -794,7 +798,7 @@ static const char * const ts_symbol_names[] = { [aux_sym_string_content_repeat1] = "string_content_repeat1", [aux_sym_format_specifier_repeat1] = "format_specifier_repeat1", [aux_sym_external_definition_repeat1] = "external_definition_repeat1", - [aux_sym_cdef_statement_repeat1] = "cdef_statement_repeat1", + [aux_sym_cdef_definition_block_repeat1] = "cdef_definition_block_repeat1", [aux_sym_cvar_def_repeat1] = "cvar_def_repeat1", [aux_sym_extern_suite_repeat1] = "extern_suite_repeat1", [aux_sym_cvar_decl_repeat1] = "cvar_decl_repeat1", @@ -1124,6 +1128,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_include_statement] = sym_include_statement, [sym_def_statement] = sym_def_statement, [sym_cdef_statement] = sym_cdef_statement, + [sym_cdef_definition_block] = sym_cdef_definition_block, [sym_cvar_def] = sym_cvar_def, [sym_cdef_type_declaration] = sym_cdef_type_declaration, [sym_extern_block] = sym_extern_block, @@ -1138,6 +1143,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_c_type] = sym_c_type, [sym_c_name] = sym_c_name, [sym_maybe_typed_name] = sym_maybe_typed_name, + [sym_c_function_pointer_name] = sym_c_function_pointer_name, [sym_type_qualifier] = sym_type_qualifier, [sym_type_index] = sym_type_index, [sym_memory_view_index] = sym_memory_view_index, @@ -1194,7 +1200,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_string_content_repeat1] = aux_sym_string_content_repeat1, [aux_sym_format_specifier_repeat1] = aux_sym_format_specifier_repeat1, [aux_sym_external_definition_repeat1] = aux_sym_external_definition_repeat1, - [aux_sym_cdef_statement_repeat1] = aux_sym_cdef_statement_repeat1, + [aux_sym_cdef_definition_block_repeat1] = aux_sym_cdef_definition_block_repeat1, [aux_sym_cvar_def_repeat1] = aux_sym_cvar_def_repeat1, [aux_sym_extern_suite_repeat1] = aux_sym_extern_suite_repeat1, [aux_sym_cvar_decl_repeat1] = aux_sym_cvar_decl_repeat1, @@ -2455,6 +2461,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_cdef_definition_block] = { + .visible = true, + .named = true, + }, [sym_cvar_def] = { .visible = true, .named = true, @@ -2511,6 +2521,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_c_function_pointer_name] = { + .visible = true, + .named = true, + }, [sym_type_qualifier] = { .visible = true, .named = true, @@ -2735,7 +2749,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_cdef_statement_repeat1] = { + [aux_sym_cdef_definition_block_repeat1] = { .visible = false, .named = false, }, @@ -3028,108 +3042,108 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [153] = {.index = 325, .length = 4}, [154] = {.index = 329, .length = 4}, [155] = {.index = 333, .length = 2}, - [158] = {.index = 335, .length = 1}, - [159] = {.index = 336, .length = 2}, - [160] = {.index = 338, .length = 2}, - [161] = {.index = 340, .length = 2}, - [162] = {.index = 342, .length = 1}, - [163] = {.index = 343, .length = 2}, - [164] = {.index = 345, .length = 4}, - [165] = {.index = 349, .length = 4}, - [166] = {.index = 353, .length = 4}, - [167] = {.index = 357, .length = 3}, - [168] = {.index = 360, .length = 3}, - [169] = {.index = 363, .length = 3}, - [170] = {.index = 366, .length = 3}, - [171] = {.index = 369, .length = 2}, - [172] = {.index = 371, .length = 1}, - [173] = {.index = 372, .length = 4}, - [174] = {.index = 376, .length = 4}, - [175] = {.index = 380, .length = 4}, - [176] = {.index = 384, .length = 5}, - [177] = {.index = 389, .length = 5}, - [178] = {.index = 394, .length = 5}, - [179] = {.index = 399, .length = 5}, - [180] = {.index = 404, .length = 3}, - [181] = {.index = 407, .length = 3}, - [182] = {.index = 410, .length = 3}, - [183] = {.index = 413, .length = 2}, - [184] = {.index = 415, .length = 5}, - [186] = {.index = 420, .length = 2}, - [187] = {.index = 422, .length = 1}, - [188] = {.index = 423, .length = 2}, - [189] = {.index = 425, .length = 3}, - [190] = {.index = 428, .length = 2}, - [191] = {.index = 430, .length = 2}, - [192] = {.index = 432, .length = 2}, - [193] = {.index = 434, .length = 5}, - [194] = {.index = 439, .length = 2}, - [195] = {.index = 441, .length = 4}, - [196] = {.index = 445, .length = 4}, - [197] = {.index = 449, .length = 4}, - [198] = {.index = 453, .length = 4}, - [199] = {.index = 457, .length = 4}, - [200] = {.index = 461, .length = 2}, - [201] = {.index = 463, .length = 1}, - [202] = {.index = 464, .length = 2}, - [203] = {.index = 466, .length = 2}, - [204] = {.index = 468, .length = 5}, - [205] = {.index = 473, .length = 5}, - [206] = {.index = 478, .length = 5}, - [207] = {.index = 483, .length = 6}, - [208] = {.index = 489, .length = 4}, - [209] = {.index = 493, .length = 4}, - [210] = {.index = 497, .length = 4}, - [211] = {.index = 501, .length = 3}, - [212] = {.index = 504, .length = 3}, - [213] = {.index = 507, .length = 3}, - [215] = {.index = 510, .length = 2}, - [216] = {.index = 512, .length = 2}, - [217] = {.index = 514, .length = 1}, - [218] = {.index = 515, .length = 3}, - [219] = {.index = 518, .length = 2}, - [220] = {.index = 520, .length = 3}, - [221] = {.index = 523, .length = 3}, - [222] = {.index = 526, .length = 3}, - [223] = {.index = 529, .length = 3}, - [224] = {.index = 532, .length = 2}, - [225] = {.index = 534, .length = 5}, - [226] = {.index = 539, .length = 2}, - [227] = {.index = 541, .length = 2}, - [228] = {.index = 543, .length = 3}, - [229] = {.index = 546, .length = 1}, - [230] = {.index = 547, .length = 6}, - [231] = {.index = 553, .length = 5}, - [232] = {.index = 558, .length = 4}, - [233] = {.index = 562, .length = 4}, - [234] = {.index = 566, .length = 4}, - [236] = {.index = 570, .length = 2}, - [237] = {.index = 572, .length = 3}, - [238] = {.index = 575, .length = 2}, - [239] = {.index = 577, .length = 2}, - [240] = {.index = 579, .length = 1}, - [241] = {.index = 580, .length = 3}, - [242] = {.index = 583, .length = 4}, - [243] = {.index = 587, .length = 4}, - [244] = {.index = 591, .length = 4}, - [245] = {.index = 595, .length = 3}, - [246] = {.index = 598, .length = 3}, - [247] = {.index = 601, .length = 3}, - [248] = {.index = 604, .length = 3}, - [249] = {.index = 607, .length = 2}, - [250] = {.index = 609, .length = 2}, - [251] = {.index = 611, .length = 5}, - [253] = {.index = 616, .length = 3}, - [254] = {.index = 619, .length = 2}, - [255] = {.index = 621, .length = 3}, - [256] = {.index = 624, .length = 2}, - [257] = {.index = 626, .length = 5}, - [258] = {.index = 631, .length = 4}, - [259] = {.index = 635, .length = 4}, - [260] = {.index = 639, .length = 4}, - [261] = {.index = 643, .length = 3}, - [263] = {.index = 646, .length = 3}, - [264] = {.index = 649, .length = 5}, + [157] = {.index = 335, .length = 1}, + [158] = {.index = 336, .length = 2}, + [159] = {.index = 338, .length = 2}, + [160] = {.index = 340, .length = 2}, + [161] = {.index = 342, .length = 1}, + [162] = {.index = 343, .length = 2}, + [163] = {.index = 345, .length = 4}, + [164] = {.index = 349, .length = 4}, + [165] = {.index = 353, .length = 4}, + [166] = {.index = 357, .length = 3}, + [167] = {.index = 360, .length = 3}, + [168] = {.index = 363, .length = 3}, + [169] = {.index = 366, .length = 3}, + [170] = {.index = 369, .length = 2}, + [171] = {.index = 371, .length = 1}, + [172] = {.index = 372, .length = 4}, + [173] = {.index = 376, .length = 4}, + [174] = {.index = 380, .length = 4}, + [175] = {.index = 384, .length = 5}, + [176] = {.index = 389, .length = 5}, + [177] = {.index = 394, .length = 5}, + [178] = {.index = 399, .length = 5}, + [179] = {.index = 404, .length = 3}, + [180] = {.index = 407, .length = 3}, + [181] = {.index = 410, .length = 3}, + [182] = {.index = 413, .length = 2}, + [183] = {.index = 415, .length = 5}, + [185] = {.index = 420, .length = 2}, + [186] = {.index = 422, .length = 1}, + [187] = {.index = 423, .length = 2}, + [188] = {.index = 425, .length = 3}, + [189] = {.index = 428, .length = 2}, + [190] = {.index = 430, .length = 2}, + [191] = {.index = 432, .length = 2}, + [192] = {.index = 434, .length = 5}, + [193] = {.index = 439, .length = 2}, + [194] = {.index = 441, .length = 4}, + [195] = {.index = 445, .length = 4}, + [196] = {.index = 449, .length = 4}, + [197] = {.index = 453, .length = 4}, + [198] = {.index = 457, .length = 4}, + [199] = {.index = 461, .length = 2}, + [200] = {.index = 463, .length = 1}, + [201] = {.index = 464, .length = 2}, + [202] = {.index = 466, .length = 2}, + [203] = {.index = 468, .length = 5}, + [204] = {.index = 473, .length = 5}, + [205] = {.index = 478, .length = 5}, + [206] = {.index = 483, .length = 6}, + [207] = {.index = 489, .length = 4}, + [208] = {.index = 493, .length = 4}, + [209] = {.index = 497, .length = 4}, + [210] = {.index = 501, .length = 3}, + [211] = {.index = 504, .length = 3}, + [212] = {.index = 507, .length = 3}, + [214] = {.index = 510, .length = 2}, + [215] = {.index = 512, .length = 2}, + [216] = {.index = 514, .length = 1}, + [217] = {.index = 515, .length = 3}, + [218] = {.index = 518, .length = 2}, + [219] = {.index = 520, .length = 3}, + [220] = {.index = 523, .length = 3}, + [221] = {.index = 526, .length = 3}, + [222] = {.index = 529, .length = 3}, + [223] = {.index = 532, .length = 2}, + [224] = {.index = 534, .length = 5}, + [225] = {.index = 539, .length = 2}, + [226] = {.index = 541, .length = 2}, + [227] = {.index = 543, .length = 3}, + [228] = {.index = 546, .length = 1}, + [229] = {.index = 547, .length = 6}, + [230] = {.index = 553, .length = 5}, + [231] = {.index = 558, .length = 4}, + [232] = {.index = 562, .length = 4}, + [233] = {.index = 566, .length = 4}, + [235] = {.index = 570, .length = 2}, + [236] = {.index = 572, .length = 3}, + [237] = {.index = 575, .length = 2}, + [238] = {.index = 577, .length = 2}, + [239] = {.index = 579, .length = 1}, + [240] = {.index = 580, .length = 3}, + [241] = {.index = 583, .length = 4}, + [242] = {.index = 587, .length = 4}, + [243] = {.index = 591, .length = 4}, + [244] = {.index = 595, .length = 3}, + [245] = {.index = 598, .length = 3}, + [246] = {.index = 601, .length = 3}, + [247] = {.index = 604, .length = 3}, + [248] = {.index = 607, .length = 2}, + [249] = {.index = 609, .length = 2}, + [250] = {.index = 611, .length = 5}, + [252] = {.index = 616, .length = 3}, + [253] = {.index = 619, .length = 2}, + [254] = {.index = 621, .length = 3}, + [255] = {.index = 624, .length = 2}, + [256] = {.index = 626, .length = 5}, + [257] = {.index = 631, .length = 4}, + [258] = {.index = 635, .length = 4}, + [259] = {.index = 639, .length = 4}, + [260] = {.index = 643, .length = 3}, + [262] = {.index = 646, .length = 3}, + [263] = {.index = 649, .length = 5}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -4177,109 +4191,106 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [156] = { [5] = sym_block, }, - [157] = { - [2] = sym_identifier, - }, - [165] = { + [164] = { [6] = sym_block, }, - [168] = { + [167] = { [6] = sym_block, }, - [169] = { + [168] = { [6] = sym_block, }, - [172] = { + [171] = { [3] = sym_block, }, - [173] = { + [172] = { [6] = sym_block, }, - [175] = { + [174] = { [7] = sym_block, }, - [179] = { + [178] = { [7] = sym_block, }, - [181] = { + [180] = { [7] = sym_block, }, - [182] = { + [181] = { [7] = sym_block, }, - [183] = { + [182] = { [7] = sym_block, }, - [185] = { + [184] = { [6] = sym_block, }, - [192] = { + [191] = { [7] = sym_block, }, - [196] = { + [195] = { [7] = sym_block, }, - [201] = { + [200] = { [4] = sym_block, }, - [203] = { + [202] = { [4] = sym_block, }, - [206] = { + [205] = { [8] = sym_block, }, - [209] = { + [208] = { [8] = sym_block, }, - [212] = { + [211] = { [8] = sym_block, }, - [213] = { + [212] = { [8] = sym_block, }, - [214] = { + [213] = { [7] = sym_block, }, - [222] = { + [221] = { [8] = sym_block, }, - [223] = { + [222] = { [8] = sym_block, }, - [224] = { + [223] = { [8] = sym_block, }, - [227] = { + [226] = { [5] = sym_block, }, - [229] = { + [228] = { [5] = sym_block, }, - [233] = { + [232] = { [9] = sym_block, }, - [235] = { + [234] = { [8] = sym_block, }, - [243] = { + [242] = { [9] = sym_block, }, - [246] = { + [245] = { [9] = sym_block, }, - [247] = { + [246] = { [9] = sym_block, }, - [250] = { + [249] = { [6] = sym_block, }, - [252] = { + [251] = { [9] = sym_block, }, - [259] = { + [258] = { [10] = sym_block, }, - [262] = { + [261] = { [10] = sym_block, }, }; @@ -4334,8 +4345,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [27] = 27, [28] = 28, [29] = 29, - [30] = 30, - [31] = 2, + [30] = 2, + [31] = 31, [32] = 32, [33] = 33, [34] = 34, @@ -4384,8 +4395,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [77] = 77, [78] = 78, [79] = 79, - [80] = 80, - [81] = 3, + [80] = 3, + [81] = 4, [82] = 5, [83] = 6, [84] = 7, @@ -4411,136 +4422,136 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [104] = 27, [105] = 28, [106] = 29, - [107] = 30, - [108] = 4, + [107] = 78, + [108] = 31, [109] = 32, - [110] = 33, - [111] = 35, - [112] = 36, - [113] = 37, - [114] = 38, - [115] = 39, - [116] = 40, - [117] = 41, - [118] = 42, - [119] = 43, - [120] = 44, + [110] = 110, + [111] = 34, + [112] = 35, + [113] = 36, + [114] = 37, + [115] = 38, + [116] = 39, + [117] = 40, + [118] = 41, + [119] = 42, + [120] = 43, [121] = 45, [122] = 46, [123] = 47, - [124] = 49, - [125] = 50, - [126] = 51, - [127] = 52, - [128] = 53, - [129] = 54, - [130] = 55, - [131] = 56, - [132] = 57, - [133] = 60, - [134] = 61, - [135] = 62, - [136] = 63, - [137] = 64, - [138] = 65, - [139] = 66, - [140] = 67, - [141] = 68, - [142] = 69, - [143] = 70, - [144] = 73, - [145] = 74, + [124] = 48, + [125] = 49, + [126] = 50, + [127] = 51, + [128] = 52, + [129] = 53, + [130] = 56, + [131] = 57, + [132] = 58, + [133] = 59, + [134] = 60, + [135] = 61, + [136] = 62, + [137] = 63, + [138] = 64, + [139] = 65, + [140] = 66, + [141] = 69, + [142] = 70, + [143] = 71, + [144] = 72, + [145] = 73, [146] = 75, [147] = 76, [148] = 77, - [149] = 79, - [150] = 80, - [151] = 3, - [152] = 9, - [153] = 11, - [154] = 15, - [155] = 16, - [156] = 17, - [157] = 18, - [158] = 19, - [159] = 20, - [160] = 26, - [161] = 27, - [162] = 28, - [163] = 29, - [164] = 30, - [165] = 2, - [166] = 32, - [167] = 33, - [168] = 40, - [169] = 41, - [170] = 42, - [171] = 43, - [172] = 44, - [173] = 45, - [174] = 46, - [175] = 51, - [176] = 52, - [177] = 53, - [178] = 54, - [179] = 55, - [180] = 56, - [181] = 57, - [182] = 63, - [183] = 64, - [184] = 65, - [185] = 66, - [186] = 67, - [187] = 68, - [188] = 69, - [189] = 70, - [190] = 73, - [191] = 74, + [149] = 5, + [150] = 7, + [151] = 11, + [152] = 12, + [153] = 13, + [154] = 14, + [155] = 15, + [156] = 16, + [157] = 22, + [158] = 23, + [159] = 24, + [160] = 25, + [161] = 26, + [162] = 27, + [163] = 28, + [164] = 29, + [165] = 36, + [166] = 37, + [167] = 38, + [168] = 39, + [169] = 40, + [170] = 41, + [171] = 42, + [172] = 47, + [173] = 48, + [174] = 49, + [175] = 50, + [176] = 51, + [177] = 52, + [178] = 53, + [179] = 59, + [180] = 60, + [181] = 61, + [182] = 62, + [183] = 63, + [184] = 64, + [185] = 65, + [186] = 66, + [187] = 69, + [188] = 70, + [189] = 71, + [190] = 72, + [191] = 73, [192] = 75, [193] = 76, [194] = 77, [195] = 79, - [196] = 80, - [197] = 34, + [196] = 110, + [197] = 33, [198] = 198, - [199] = 199, + [199] = 198, [200] = 200, [201] = 201, [202] = 202, [203] = 198, - [204] = 200, - [205] = 200, - [206] = 200, + [204] = 198, + [205] = 198, + [206] = 206, [207] = 200, - [208] = 200, - [209] = 200, - [210] = 200, + [208] = 198, + [209] = 198, + [210] = 198, [211] = 211, [212] = 212, [213] = 213, - [214] = 214, - [215] = 212, - [216] = 213, + [214] = 213, + [215] = 215, + [216] = 215, [217] = 217, [218] = 212, - [219] = 211, - [220] = 214, - [221] = 221, - [222] = 213, - [223] = 214, + [219] = 217, + [220] = 212, + [221] = 213, + [222] = 211, + [223] = 223, [224] = 217, - [225] = 221, - [226] = 217, - [227] = 211, - [228] = 221, + [225] = 215, + [226] = 211, + [227] = 223, + [228] = 223, [229] = 229, - [230] = 230, - [231] = 229, - [232] = 230, + [230] = 229, + [231] = 231, + [232] = 232, [233] = 233, [234] = 233, - [235] = 235, - [236] = 235, + [235] = 231, + [236] = 232, [237] = 237, [238] = 238, [239] = 239, @@ -4552,222 +4563,222 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [245] = 245, [246] = 246, [247] = 247, - [248] = 240, + [248] = 248, [249] = 249, [250] = 250, [251] = 251, [252] = 252, - [253] = 241, + [253] = 253, [254] = 254, - [255] = 255, + [255] = 245, [256] = 256, - [257] = 257, + [257] = 247, [258] = 258, - [259] = 237, - [260] = 260, + [259] = 256, + [260] = 253, [261] = 261, - [262] = 260, + [262] = 262, [263] = 263, - [264] = 264, - [265] = 265, - [266] = 266, - [267] = 267, - [268] = 261, + [264] = 239, + [265] = 240, + [266] = 261, + [267] = 243, + [268] = 268, [269] = 269, - [270] = 242, - [271] = 271, - [272] = 272, + [270] = 270, + [271] = 250, + [272] = 254, [273] = 273, [274] = 274, - [275] = 275, - [276] = 276, + [275] = 258, + [276] = 273, [277] = 277, - [278] = 243, + [278] = 278, [279] = 279, - [280] = 280, + [280] = 274, [281] = 281, - [282] = 282, + [282] = 278, [283] = 283, [284] = 284, - [285] = 285, - [286] = 263, - [287] = 264, - [288] = 288, + [285] = 283, + [286] = 284, + [287] = 287, + [288] = 281, [289] = 289, - [290] = 265, + [290] = 290, [291] = 291, [292] = 292, [293] = 293, - [294] = 266, + [294] = 294, [295] = 295, - [296] = 296, - [297] = 267, - [298] = 298, - [299] = 244, - [300] = 300, - [301] = 301, - [302] = 269, + [296] = 290, + [297] = 291, + [298] = 289, + [299] = 293, + [300] = 294, + [301] = 295, + [302] = 302, [303] = 303, [304] = 304, - [305] = 238, - [306] = 249, - [307] = 250, - [308] = 251, - [309] = 245, + [305] = 305, + [306] = 306, + [307] = 307, + [308] = 308, + [309] = 309, [310] = 310, - [311] = 271, - [312] = 272, + [311] = 311, + [312] = 312, [313] = 313, [314] = 314, [315] = 315, - [316] = 273, - [317] = 274, - [318] = 276, - [319] = 275, - [320] = 284, - [321] = 277, + [316] = 316, + [317] = 317, + [318] = 318, + [319] = 302, + [320] = 320, + [321] = 321, [322] = 322, - [323] = 291, - [324] = 292, - [325] = 325, - [326] = 296, + [323] = 305, + [324] = 277, + [325] = 304, + [326] = 303, [327] = 327, [328] = 328, [329] = 329, - [330] = 279, - [331] = 310, - [332] = 280, - [333] = 333, - [334] = 313, + [330] = 268, + [331] = 268, + [332] = 308, + [333] = 307, + [334] = 322, [335] = 335, - [336] = 314, - [337] = 315, - [338] = 281, - [339] = 282, - [340] = 283, - [341] = 322, - [342] = 325, - [343] = 246, - [344] = 327, - [345] = 328, - [346] = 329, - [347] = 347, - [348] = 247, - [349] = 349, - [350] = 288, - [351] = 347, - [352] = 289, - [353] = 349, - [354] = 354, - [355] = 354, - [356] = 356, - [357] = 357, - [358] = 356, - [359] = 357, - [360] = 293, - [361] = 361, - [362] = 252, - [363] = 363, - [364] = 364, - [365] = 361, - [366] = 295, - [367] = 367, - [368] = 239, - [369] = 254, - [370] = 243, - [371] = 245, - [372] = 364, - [373] = 298, + [336] = 273, + [337] = 309, + [338] = 338, + [339] = 281, + [340] = 289, + [341] = 341, + [342] = 251, + [343] = 303, + [344] = 311, + [345] = 308, + [346] = 312, + [347] = 313, + [348] = 315, + [349] = 316, + [350] = 238, + [351] = 351, + [352] = 241, + [353] = 353, + [354] = 313, + [355] = 244, + [356] = 314, + [357] = 246, + [358] = 315, + [359] = 359, + [360] = 360, + [361] = 238, + [362] = 316, + [363] = 251, + [364] = 252, + [365] = 318, + [366] = 263, + [367] = 239, + [368] = 240, + [369] = 243, + [370] = 317, + [371] = 241, + [372] = 372, + [373] = 250, [374] = 254, - [375] = 255, - [376] = 256, - [377] = 255, - [378] = 237, - [379] = 300, - [380] = 260, - [381] = 261, - [382] = 367, - [383] = 269, - [384] = 256, - [385] = 271, - [386] = 272, - [387] = 258, - [388] = 275, - [389] = 277, - [390] = 279, - [391] = 280, - [392] = 281, - [393] = 293, - [394] = 303, - [395] = 295, - [396] = 298, - [397] = 300, - [398] = 303, - [399] = 249, - [400] = 250, - [401] = 273, - [402] = 274, - [403] = 276, - [404] = 284, - [405] = 291, - [406] = 292, - [407] = 296, - [408] = 313, - [409] = 314, - [410] = 315, - [411] = 322, - [412] = 325, - [413] = 327, + [375] = 321, + [376] = 320, + [377] = 258, + [378] = 244, + [379] = 379, + [380] = 278, + [381] = 307, + [382] = 283, + [383] = 284, + [384] = 327, + [385] = 290, + [386] = 291, + [387] = 287, + [388] = 293, + [389] = 294, + [390] = 295, + [391] = 242, + [392] = 248, + [393] = 270, + [394] = 302, + [395] = 277, + [396] = 292, + [397] = 305, + [398] = 304, + [399] = 309, + [400] = 328, + [401] = 335, + [402] = 311, + [403] = 312, + [404] = 338, + [405] = 314, + [406] = 246, + [407] = 252, + [408] = 341, + [409] = 318, + [410] = 237, + [411] = 372, + [412] = 321, + [413] = 360, [414] = 328, - [415] = 329, - [416] = 347, - [417] = 349, - [418] = 354, - [419] = 356, - [420] = 357, - [421] = 361, - [422] = 364, - [423] = 367, - [424] = 285, + [415] = 351, + [416] = 322, + [417] = 379, + [418] = 249, + [419] = 237, + [420] = 263, + [421] = 359, + [422] = 329, + [423] = 329, + [424] = 360, [425] = 425, [426] = 425, [427] = 427, [428] = 428, - [429] = 428, - [430] = 428, - [431] = 427, + [429] = 427, + [430] = 427, + [431] = 428, [432] = 427, - [433] = 428, - [434] = 427, + [433] = 427, + [434] = 428, [435] = 428, - [436] = 427, + [436] = 428, [437] = 427, - [438] = 428, + [438] = 427, [439] = 428, - [440] = 427, - [441] = 428, - [442] = 427, + [440] = 428, + [441] = 427, + [442] = 428, [443] = 443, [444] = 444, [445] = 444, [446] = 446, [447] = 447, [448] = 448, - [449] = 448, + [449] = 447, [450] = 450, - [451] = 450, - [452] = 452, + [451] = 451, + [452] = 450, [453] = 453, - [454] = 450, - [455] = 455, - [456] = 450, - [457] = 457, + [454] = 454, + [455] = 450, + [456] = 456, + [457] = 450, [458] = 450, [459] = 450, [460] = 450, [461] = 450, [462] = 450, - [463] = 450, + [463] = 451, [464] = 450, [465] = 450, [466] = 450, @@ -4776,25 +4787,25 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [469] = 450, [470] = 450, [471] = 450, - [472] = 450, - [473] = 453, - [474] = 457, - [475] = 452, - [476] = 455, - [477] = 453, - [478] = 457, - [479] = 452, - [480] = 455, + [472] = 454, + [473] = 450, + [474] = 453, + [475] = 456, + [476] = 451, + [477] = 454, + [478] = 453, + [479] = 456, + [480] = 450, [481] = 481, - [482] = 481, - [483] = 483, + [482] = 482, + [483] = 482, [484] = 484, [485] = 485, [486] = 486, [487] = 487, [488] = 488, - [489] = 446, - [490] = 490, + [489] = 489, + [490] = 446, [491] = 491, [492] = 492, [493] = 493, @@ -4893,7 +4904,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [586] = 586, [587] = 587, [588] = 588, - [589] = 486, + [589] = 589, [590] = 590, [591] = 591, [592] = 592, @@ -4911,7 +4922,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [604] = 604, [605] = 605, [606] = 606, - [607] = 607, + [607] = 485, [608] = 608, [609] = 609, [610] = 610, @@ -4951,14 +4962,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [644] = 644, [645] = 645, [646] = 646, - [647] = 444, + [647] = 647, [648] = 648, [649] = 649, [650] = 650, [651] = 651, [652] = 652, [653] = 653, - [654] = 446, + [654] = 654, [655] = 655, [656] = 656, [657] = 657, @@ -4999,8 +5010,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [692] = 692, [693] = 693, [694] = 694, - [695] = 695, - [696] = 696, + [695] = 444, + [696] = 446, [697] = 697, [698] = 698, [699] = 699, @@ -5017,677 +5028,677 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [710] = 710, [711] = 711, [712] = 712, - [713] = 713, + [713] = 446, [714] = 714, [715] = 715, [716] = 716, [717] = 717, [718] = 718, - [719] = 486, - [720] = 446, - [721] = 486, - [722] = 490, - [723] = 723, - [724] = 490, - [725] = 444, - [726] = 723, - [727] = 706, - [728] = 444, - [729] = 444, - [730] = 446, - [731] = 486, - [732] = 486, - [733] = 706, - [734] = 490, - [735] = 486, - [736] = 446, - [737] = 490, - [738] = 716, - [739] = 486, - [740] = 446, - [741] = 490, - [742] = 490, - [743] = 490, - [744] = 744, - [745] = 745, - [746] = 746, - [747] = 744, - [748] = 748, - [749] = 749, - [750] = 746, - [751] = 748, - [752] = 744, - [753] = 748, - [754] = 749, - [755] = 749, + [719] = 719, + [720] = 720, + [721] = 717, + [722] = 717, + [723] = 717, + [724] = 717, + [725] = 717, + [726] = 717, + [727] = 717, + [728] = 485, + [729] = 729, + [730] = 730, + [731] = 491, + [732] = 485, + [733] = 444, + [734] = 446, + [735] = 485, + [736] = 714, + [737] = 716, + [738] = 491, + [739] = 716, + [740] = 485, + [741] = 444, + [742] = 485, + [743] = 491, + [744] = 444, + [745] = 491, + [746] = 491, + [747] = 491, + [748] = 446, + [749] = 707, + [750] = 446, + [751] = 485, + [752] = 491, + [753] = 753, + [754] = 754, + [755] = 753, [756] = 756, - [757] = 757, - [758] = 748, - [759] = 749, - [760] = 744, - [761] = 748, - [762] = 749, - [763] = 744, - [764] = 748, - [765] = 749, - [766] = 744, - [767] = 748, - [768] = 749, - [769] = 744, - [770] = 748, - [771] = 749, - [772] = 744, - [773] = 748, - [774] = 744, - [775] = 748, - [776] = 748, - [777] = 748, - [778] = 744, - [779] = 779, - [780] = 780, - [781] = 781, - [782] = 779, - [783] = 780, - [784] = 781, - [785] = 780, - [786] = 779, - [787] = 787, + [757] = 754, + [758] = 753, + [759] = 756, + [760] = 753, + [761] = 756, + [762] = 762, + [763] = 756, + [764] = 753, + [765] = 756, + [766] = 756, + [767] = 767, + [768] = 754, + [769] = 769, + [770] = 754, + [771] = 753, + [772] = 756, + [773] = 754, + [774] = 753, + [775] = 753, + [776] = 756, + [777] = 753, + [778] = 756, + [779] = 754, + [780] = 769, + [781] = 754, + [782] = 756, + [783] = 783, + [784] = 754, + [785] = 753, + [786] = 756, + [787] = 756, [788] = 788, [789] = 789, [790] = 790, - [791] = 791, - [792] = 792, - [793] = 793, - [794] = 792, - [795] = 795, + [791] = 788, + [792] = 789, + [793] = 790, + [794] = 788, + [795] = 790, [796] = 796, [797] = 797, [798] = 798, [799] = 799, - [800] = 792, + [800] = 800, [801] = 801, [802] = 802, - [803] = 795, - [804] = 792, - [805] = 797, - [806] = 789, - [807] = 795, - [808] = 792, - [809] = 809, - [810] = 810, - [811] = 791, - [812] = 792, - [813] = 813, - [814] = 809, - [815] = 810, - [816] = 792, - [817] = 797, - [818] = 792, + [803] = 803, + [804] = 804, + [805] = 805, + [806] = 806, + [807] = 807, + [808] = 808, + [809] = 797, + [810] = 796, + [811] = 811, + [812] = 803, + [813] = 807, + [814] = 808, + [815] = 815, + [816] = 805, + [817] = 817, + [818] = 818, [819] = 819, [820] = 820, - [821] = 795, + [821] = 805, [822] = 822, - [823] = 797, - [824] = 824, - [825] = 819, - [826] = 819, - [827] = 795, - [828] = 797, - [829] = 793, - [830] = 822, - [831] = 796, - [832] = 813, - [833] = 790, - [834] = 834, - [835] = 835, - [836] = 834, - [837] = 837, - [838] = 838, - [839] = 837, - [840] = 834, - [841] = 841, - [842] = 842, - [843] = 837, - [844] = 838, + [823] = 803, + [824] = 806, + [825] = 803, + [826] = 803, + [827] = 806, + [828] = 803, + [829] = 805, + [830] = 806, + [831] = 803, + [832] = 802, + [833] = 833, + [834] = 820, + [835] = 820, + [836] = 805, + [837] = 806, + [838] = 817, + [839] = 833, + [840] = 798, + [841] = 811, + [842] = 803, + [843] = 843, + [844] = 844, [845] = 845, [846] = 846, - [847] = 841, - [848] = 842, - [849] = 845, - [850] = 837, - [851] = 838, - [852] = 846, - [853] = 841, - [854] = 842, - [855] = 845, - [856] = 846, - [857] = 834, - [858] = 837, - [859] = 838, - [860] = 841, - [861] = 842, - [862] = 845, - [863] = 846, - [864] = 834, - [865] = 837, - [866] = 838, - [867] = 841, - [868] = 845, - [869] = 846, - [870] = 845, - [871] = 846, - [872] = 834, - [873] = 837, - [874] = 841, - [875] = 842, - [876] = 845, - [877] = 846, - [878] = 841, - [879] = 842, - [880] = 834, - [881] = 837, - [882] = 841, - [883] = 842, + [847] = 845, + [848] = 846, + [849] = 849, + [850] = 850, + [851] = 849, + [852] = 850, + [853] = 853, + [854] = 843, + [855] = 844, + [856] = 845, + [857] = 846, + [858] = 849, + [859] = 850, + [860] = 853, + [861] = 843, + [862] = 844, + [863] = 845, + [864] = 846, + [865] = 844, + [866] = 849, + [867] = 850, + [868] = 853, + [869] = 843, + [870] = 844, + [871] = 845, + [872] = 846, + [873] = 849, + [874] = 850, + [875] = 853, + [876] = 843, + [877] = 844, + [878] = 845, + [879] = 843, + [880] = 849, + [881] = 850, + [882] = 843, + [883] = 844, [884] = 845, [885] = 846, - [886] = 838, - [887] = 841, - [888] = 842, - [889] = 845, - [890] = 846, - [891] = 841, - [892] = 842, - [893] = 845, - [894] = 846, - [895] = 841, - [896] = 842, - [897] = 845, - [898] = 846, - [899] = 834, - [900] = 842, - [901] = 901, - [902] = 902, - [903] = 903, - [904] = 904, - [905] = 903, - [906] = 901, - [907] = 902, + [886] = 849, + [887] = 850, + [888] = 849, + [889] = 843, + [890] = 844, + [891] = 845, + [892] = 846, + [893] = 843, + [894] = 844, + [895] = 845, + [896] = 846, + [897] = 843, + [898] = 844, + [899] = 845, + [900] = 846, + [901] = 843, + [902] = 844, + [903] = 845, + [904] = 846, + [905] = 853, + [906] = 850, + [907] = 853, [908] = 908, - [909] = 909, - [910] = 904, - [911] = 902, - [912] = 798, + [909] = 846, + [910] = 910, + [911] = 911, + [912] = 912, [913] = 913, [914] = 914, - [915] = 802, - [916] = 903, + [915] = 800, + [916] = 916, [917] = 917, - [918] = 913, - [919] = 909, + [918] = 918, + [919] = 919, [920] = 920, - [921] = 904, + [921] = 919, [922] = 922, - [923] = 920, - [924] = 914, - [925] = 920, - [926] = 926, - [927] = 922, - [928] = 926, - [929] = 914, - [930] = 930, - [931] = 917, - [932] = 932, - [933] = 901, - [934] = 932, - [935] = 935, - [936] = 908, - [937] = 930, - [938] = 938, - [939] = 938, - [940] = 938, - [941] = 941, - [942] = 835, - [943] = 943, - [944] = 943, - [945] = 938, - [946] = 938, - [947] = 943, + [923] = 923, + [924] = 924, + [925] = 925, + [926] = 922, + [927] = 920, + [928] = 918, + [929] = 910, + [930] = 911, + [931] = 914, + [932] = 917, + [933] = 923, + [934] = 910, + [935] = 917, + [936] = 913, + [937] = 924, + [938] = 925, + [939] = 939, + [940] = 914, + [941] = 916, + [942] = 912, + [943] = 801, + [944] = 913, + [945] = 922, + [946] = 911, + [947] = 487, [948] = 948, - [949] = 943, - [950] = 835, - [951] = 938, - [952] = 943, - [953] = 948, + [949] = 949, + [950] = 950, + [951] = 949, + [952] = 952, + [953] = 952, [954] = 954, - [955] = 488, - [956] = 484, - [957] = 943, - [958] = 487, - [959] = 483, - [960] = 943, - [961] = 938, - [962] = 962, - [963] = 938, - [964] = 964, - [965] = 962, - [966] = 835, - [967] = 948, - [968] = 485, - [969] = 835, - [970] = 943, - [971] = 971, - [972] = 972, - [973] = 485, - [974] = 974, - [975] = 975, - [976] = 976, - [977] = 488, - [978] = 978, - [979] = 979, - [980] = 487, + [955] = 955, + [956] = 948, + [957] = 949, + [958] = 958, + [959] = 949, + [960] = 908, + [961] = 486, + [962] = 949, + [963] = 948, + [964] = 908, + [965] = 908, + [966] = 948, + [967] = 949, + [968] = 954, + [969] = 948, + [970] = 948, + [971] = 908, + [972] = 488, + [973] = 948, + [974] = 489, + [975] = 948, + [976] = 949, + [977] = 954, + [978] = 484, + [979] = 949, + [980] = 980, [981] = 981, - [982] = 972, - [983] = 983, - [984] = 484, - [985] = 971, - [986] = 986, - [987] = 483, - [988] = 485, - [989] = 986, - [990] = 990, - [991] = 484, - [992] = 971, - [993] = 990, - [994] = 483, - [995] = 488, - [996] = 485, - [997] = 487, - [998] = 998, - [999] = 999, - [1000] = 484, - [1001] = 986, - [1002] = 483, - [1003] = 488, - [1004] = 971, - [1005] = 990, - [1006] = 485, - [1007] = 487, + [982] = 982, + [983] = 487, + [984] = 984, + [985] = 981, + [986] = 489, + [987] = 987, + [988] = 981, + [989] = 982, + [990] = 486, + [991] = 982, + [992] = 486, + [993] = 981, + [994] = 982, + [995] = 984, + [996] = 486, + [997] = 981, + [998] = 982, + [999] = 484, + [1000] = 1000, + [1001] = 489, + [1002] = 484, + [1003] = 484, + [1004] = 1004, + [1005] = 980, + [1006] = 1006, + [1007] = 489, [1008] = 1008, - [1009] = 1009, - [1010] = 986, - [1011] = 488, - [1012] = 971, - [1013] = 990, - [1014] = 1014, - [1015] = 974, - [1016] = 1014, - [1017] = 941, - [1018] = 986, - [1019] = 971, - [1020] = 990, - [1021] = 986, - [1022] = 975, - [1023] = 971, - [1024] = 990, - [1025] = 1025, - [1026] = 976, - [1027] = 484, - [1028] = 986, - [1029] = 986, - [1030] = 986, - [1031] = 971, - [1032] = 990, - [1033] = 998, - [1034] = 986, - [1035] = 978, - [1036] = 971, - [1037] = 990, - [1038] = 979, + [1009] = 488, + [1010] = 980, + [1011] = 980, + [1012] = 487, + [1013] = 1013, + [1014] = 981, + [1015] = 982, + [1016] = 1000, + [1017] = 1017, + [1018] = 1018, + [1019] = 1019, + [1020] = 1020, + [1021] = 980, + [1022] = 982, + [1023] = 1023, + [1024] = 1024, + [1025] = 982, + [1026] = 981, + [1027] = 982, + [1028] = 488, + [1029] = 980, + [1030] = 1030, + [1031] = 487, + [1032] = 981, + [1033] = 982, + [1034] = 1013, + [1035] = 980, + [1036] = 980, + [1037] = 981, + [1038] = 980, [1039] = 981, - [1040] = 986, - [1041] = 999, - [1042] = 971, - [1043] = 990, - [1044] = 986, - [1045] = 990, - [1046] = 971, - [1047] = 990, - [1048] = 1048, - [1049] = 483, - [1050] = 487, - [1051] = 971, - [1052] = 990, - [1053] = 954, + [1040] = 982, + [1041] = 987, + [1042] = 980, + [1043] = 981, + [1044] = 982, + [1045] = 484, + [1046] = 950, + [1047] = 958, + [1048] = 488, + [1049] = 489, + [1050] = 488, + [1051] = 1019, + [1052] = 1020, + [1053] = 1024, [1054] = 1054, - [1055] = 1055, - [1056] = 1056, - [1057] = 1057, - [1058] = 1058, - [1059] = 1059, - [1060] = 500, - [1061] = 1061, - [1062] = 494, - [1063] = 1059, + [1055] = 486, + [1056] = 1006, + [1057] = 1008, + [1058] = 1017, + [1059] = 980, + [1060] = 980, + [1061] = 487, + [1062] = 981, + [1063] = 958, [1064] = 1064, - [1065] = 1065, - [1066] = 941, - [1067] = 1055, + [1065] = 950, + [1066] = 1066, + [1067] = 1067, [1068] = 1068, [1069] = 1069, - [1070] = 497, + [1070] = 1070, [1071] = 1071, - [1072] = 1072, + [1072] = 958, [1073] = 1073, [1074] = 1074, - [1075] = 1069, + [1075] = 1075, [1076] = 1076, [1077] = 1077, - [1078] = 1078, + [1078] = 496, [1079] = 1079, - [1080] = 1061, - [1081] = 1081, - [1082] = 496, - [1083] = 1072, + [1080] = 1080, + [1081] = 1079, + [1082] = 1082, + [1083] = 1083, [1084] = 1084, - [1085] = 1085, - [1086] = 498, - [1087] = 1087, - [1088] = 941, - [1089] = 492, - [1090] = 1090, - [1091] = 1081, - [1092] = 1092, - [1093] = 1093, - [1094] = 1065, - [1095] = 1095, - [1096] = 1076, - [1097] = 1079, - [1098] = 499, - [1099] = 1084, - [1100] = 1074, - [1101] = 1077, - [1102] = 1102, - [1103] = 1090, - [1104] = 1087, + [1085] = 950, + [1086] = 1086, + [1087] = 1069, + [1088] = 1088, + [1089] = 494, + [1090] = 500, + [1091] = 1076, + [1092] = 501, + [1093] = 707, + [1094] = 958, + [1095] = 1084, + [1096] = 1096, + [1097] = 1075, + [1098] = 1086, + [1099] = 1073, + [1100] = 1100, + [1101] = 1101, + [1102] = 497, + [1103] = 1079, + [1104] = 1104, [1105] = 1105, - [1106] = 716, - [1107] = 1095, - [1108] = 1108, + [1106] = 1106, + [1107] = 498, + [1108] = 1075, [1109] = 1109, - [1110] = 1077, - [1111] = 493, - [1112] = 1056, - [1113] = 954, + [1110] = 1074, + [1111] = 1111, + [1112] = 1069, + [1113] = 492, [1114] = 1114, - [1115] = 1115, + [1115] = 1083, [1116] = 1116, - [1117] = 495, - [1118] = 954, + [1117] = 1114, + [1118] = 1086, [1119] = 1119, [1120] = 1120, [1121] = 1121, - [1122] = 446, - [1123] = 1121, - [1124] = 1057, - [1125] = 1121, - [1126] = 1121, - [1127] = 1121, - [1128] = 1121, - [1129] = 1121, - [1130] = 1121, - [1131] = 1121, - [1132] = 1121, - [1133] = 1121, - [1134] = 1134, - [1135] = 1078, - [1136] = 1119, - [1137] = 1116, - [1138] = 446, - [1139] = 1058, - [1140] = 1121, - [1141] = 491, - [1142] = 1072, - [1143] = 1074, - [1144] = 1119, - [1145] = 954, - [1146] = 941, - [1147] = 1095, - [1148] = 1148, - [1149] = 1071, - [1150] = 1150, - [1151] = 1151, - [1152] = 550, - [1153] = 551, - [1154] = 675, - [1155] = 552, - [1156] = 678, - [1157] = 553, - [1158] = 579, - [1159] = 554, - [1160] = 634, - [1161] = 635, - [1162] = 630, - [1163] = 1163, - [1164] = 611, - [1165] = 604, - [1166] = 556, - [1167] = 557, - [1168] = 638, - [1169] = 561, - [1170] = 640, - [1171] = 699, - [1172] = 1172, - [1173] = 632, - [1174] = 580, - [1175] = 581, - [1176] = 700, - [1177] = 583, - [1178] = 562, - [1179] = 612, - [1180] = 1180, - [1181] = 954, - [1182] = 621, - [1183] = 701, - [1184] = 682, - [1185] = 644, - [1186] = 645, - [1187] = 564, - [1188] = 646, - [1189] = 694, - [1190] = 608, - [1191] = 619, - [1192] = 613, - [1193] = 615, - [1194] = 1194, - [1195] = 636, - [1196] = 622, - [1197] = 565, - [1198] = 637, - [1199] = 941, - [1200] = 616, - [1201] = 677, - [1202] = 679, - [1203] = 624, - [1204] = 653, - [1205] = 617, - [1206] = 599, - [1207] = 661, - [1208] = 665, - [1209] = 648, - [1210] = 623, - [1211] = 670, - [1212] = 672, - [1213] = 649, - [1214] = 676, - [1215] = 680, - [1216] = 683, - [1217] = 684, - [1218] = 505, + [1122] = 1122, + [1123] = 1122, + [1124] = 446, + [1125] = 1125, + [1126] = 446, + [1127] = 1109, + [1128] = 1128, + [1129] = 1111, + [1130] = 1130, + [1131] = 1119, + [1132] = 1076, + [1133] = 1133, + [1134] = 1125, + [1135] = 1130, + [1136] = 499, + [1137] = 495, + [1138] = 493, + [1139] = 1120, + [1140] = 1128, + [1141] = 1128, + [1142] = 1142, + [1143] = 1121, + [1144] = 1128, + [1145] = 1128, + [1146] = 1128, + [1147] = 1128, + [1148] = 1128, + [1149] = 1128, + [1150] = 1128, + [1151] = 1128, + [1152] = 1128, + [1153] = 1064, + [1154] = 1077, + [1155] = 1155, + [1156] = 1156, + [1157] = 950, + [1158] = 1082, + [1159] = 1133, + [1160] = 565, + [1161] = 531, + [1162] = 532, + [1163] = 611, + [1164] = 533, + [1165] = 648, + [1166] = 666, + [1167] = 667, + [1168] = 668, + [1169] = 1169, + [1170] = 703, + [1171] = 669, + [1172] = 612, + [1173] = 670, + [1174] = 613, + [1175] = 614, + [1176] = 671, + [1177] = 672, + [1178] = 673, + [1179] = 1179, + [1180] = 615, + [1181] = 674, + [1182] = 534, + [1183] = 535, + [1184] = 536, + [1185] = 537, + [1186] = 538, + [1187] = 539, + [1188] = 540, + [1189] = 541, + [1190] = 542, + [1191] = 543, + [1192] = 544, + [1193] = 545, + [1194] = 616, + [1195] = 617, + [1196] = 651, + [1197] = 618, + [1198] = 619, + [1199] = 620, + [1200] = 597, + [1201] = 546, + [1202] = 547, + [1203] = 652, + [1204] = 1204, + [1205] = 621, + [1206] = 653, + [1207] = 649, + [1208] = 622, + [1209] = 689, + [1210] = 517, + [1211] = 518, + [1212] = 548, + [1213] = 549, + [1214] = 572, + [1215] = 699, + [1216] = 700, + [1217] = 550, + [1218] = 690, [1219] = 506, - [1220] = 507, - [1221] = 566, - [1222] = 681, - [1223] = 508, - [1224] = 686, - [1225] = 509, - [1226] = 510, - [1227] = 511, - [1228] = 512, - [1229] = 705, - [1230] = 514, - [1231] = 1231, - [1232] = 515, - [1233] = 516, - [1234] = 517, - [1235] = 518, - [1236] = 519, - [1237] = 600, - [1238] = 687, - [1239] = 626, - [1240] = 601, - [1241] = 602, - [1242] = 567, - [1243] = 639, - [1244] = 520, - [1245] = 641, - [1246] = 521, - [1247] = 446, - [1248] = 702, - [1249] = 703, - [1250] = 642, - [1251] = 522, - [1252] = 688, - [1253] = 643, - [1254] = 1150, - [1255] = 690, - [1256] = 568, - [1257] = 650, - [1258] = 633, - [1259] = 603, - [1260] = 691, - [1261] = 605, - [1262] = 692, - [1263] = 704, - [1264] = 502, - [1265] = 523, - [1266] = 614, - [1267] = 524, - [1268] = 525, - [1269] = 503, - [1270] = 526, - [1271] = 571, - [1272] = 1180, - [1273] = 652, - [1274] = 1274, - [1275] = 606, - [1276] = 1151, - [1277] = 625, - [1278] = 607, - [1279] = 501, - [1280] = 569, - [1281] = 560, - [1282] = 627, - [1283] = 655, - [1284] = 656, - [1285] = 1285, - [1286] = 1163, - [1287] = 628, - [1288] = 527, - [1289] = 528, - [1290] = 529, - [1291] = 530, - [1292] = 532, - [1293] = 533, - [1294] = 534, - [1295] = 535, - [1296] = 651, - [1297] = 695, - [1298] = 610, - [1299] = 657, - [1300] = 658, - [1301] = 609, - [1302] = 659, - [1303] = 504, - [1304] = 536, - [1305] = 660, - [1306] = 537, - [1307] = 538, - [1308] = 539, - [1309] = 697, - [1310] = 689, - [1311] = 618, - [1312] = 540, - [1313] = 585, - [1314] = 586, - [1315] = 541, - [1316] = 542, - [1317] = 587, - [1318] = 588, - [1319] = 693, - [1320] = 590, - [1321] = 591, - [1322] = 573, - [1323] = 696, - [1324] = 513, - [1325] = 558, - [1326] = 563, - [1327] = 674, - [1328] = 685, - [1329] = 1329, - [1330] = 698, - [1331] = 593, - [1332] = 1332, - [1333] = 531, - [1334] = 594, - [1335] = 545, - [1336] = 1329, - [1337] = 595, - [1338] = 574, - [1339] = 596, - [1340] = 543, - [1341] = 597, - [1342] = 598, - [1343] = 575, - [1344] = 576, - [1345] = 620, - [1346] = 544, - [1347] = 629, - [1348] = 555, - [1349] = 1274, - [1350] = 577, - [1351] = 631, - [1352] = 578, - [1353] = 1194, - [1354] = 662, - [1355] = 663, - [1356] = 1332, - [1357] = 592, - [1358] = 664, - [1359] = 666, - [1360] = 559, - [1361] = 667, - [1362] = 668, - [1363] = 572, - [1364] = 669, - [1365] = 546, - [1366] = 547, - [1367] = 548, - [1368] = 549, - [1369] = 570, - [1370] = 582, - [1371] = 584, - [1372] = 671, - [1373] = 673, - [1374] = 1231, - [1375] = 1375, - [1376] = 1376, - [1377] = 1377, - [1378] = 1378, - [1379] = 1379, - [1380] = 1380, - [1381] = 1381, - [1382] = 1382, - [1383] = 1383, + [1220] = 519, + [1221] = 623, + [1222] = 551, + [1223] = 520, + [1224] = 624, + [1225] = 625, + [1226] = 626, + [1227] = 627, + [1228] = 628, + [1229] = 629, + [1230] = 502, + [1231] = 507, + [1232] = 630, + [1233] = 521, + [1234] = 691, + [1235] = 692, + [1236] = 508, + [1237] = 631, + [1238] = 632, + [1239] = 693, + [1240] = 683, + [1241] = 522, + [1242] = 704, + [1243] = 694, + [1244] = 505, + [1245] = 684, + [1246] = 523, + [1247] = 570, + [1248] = 685, + [1249] = 509, + [1250] = 1179, + [1251] = 1251, + [1252] = 633, + [1253] = 698, + [1254] = 950, + [1255] = 634, + [1256] = 655, + [1257] = 573, + [1258] = 599, + [1259] = 656, + [1260] = 601, + [1261] = 510, + [1262] = 583, + [1263] = 602, + [1264] = 584, + [1265] = 603, + [1266] = 650, + [1267] = 585, + [1268] = 958, + [1269] = 571, + [1270] = 604, + [1271] = 644, + [1272] = 1251, + [1273] = 657, + [1274] = 658, + [1275] = 574, + [1276] = 686, + [1277] = 705, + [1278] = 577, + [1279] = 586, + [1280] = 665, + [1281] = 659, + [1282] = 1282, + [1283] = 524, + [1284] = 1284, + [1285] = 525, + [1286] = 504, + [1287] = 578, + [1288] = 503, + [1289] = 702, + [1290] = 526, + [1291] = 1291, + [1292] = 527, + [1293] = 579, + [1294] = 580, + [1295] = 645, + [1296] = 588, + [1297] = 589, + [1298] = 598, + [1299] = 687, + [1300] = 552, + [1301] = 553, + [1302] = 660, + [1303] = 590, + [1304] = 661, + [1305] = 688, + [1306] = 1306, + [1307] = 591, + [1308] = 1308, + [1309] = 1309, + [1310] = 662, + [1311] = 554, + [1312] = 605, + [1313] = 592, + [1314] = 593, + [1315] = 646, + [1316] = 636, + [1317] = 594, + [1318] = 637, + [1319] = 581, + [1320] = 555, + [1321] = 635, + [1322] = 511, + [1323] = 569, + [1324] = 582, + [1325] = 638, + [1326] = 701, + [1327] = 606, + [1328] = 556, + [1329] = 675, + [1330] = 676, + [1331] = 446, + [1332] = 677, + [1333] = 639, + [1334] = 1291, + [1335] = 512, + [1336] = 513, + [1337] = 678, + [1338] = 1309, + [1339] = 679, + [1340] = 681, + [1341] = 640, + [1342] = 682, + [1343] = 663, + [1344] = 697, + [1345] = 608, + [1346] = 1106, + [1347] = 576, + [1348] = 680, + [1349] = 664, + [1350] = 557, + [1351] = 600, + [1352] = 609, + [1353] = 641, + [1354] = 528, + [1355] = 610, + [1356] = 558, + [1357] = 514, + [1358] = 1282, + [1359] = 515, + [1360] = 642, + [1361] = 1308, + [1362] = 706, + [1363] = 595, + [1364] = 559, + [1365] = 1284, + [1366] = 647, + [1367] = 560, + [1368] = 561, + [1369] = 516, + [1370] = 575, + [1371] = 562, + [1372] = 529, + [1373] = 530, + [1374] = 654, + [1375] = 596, + [1376] = 563, + [1377] = 564, + [1378] = 568, + [1379] = 566, + [1380] = 567, + [1381] = 1306, + [1382] = 643, + [1383] = 587, [1384] = 1384, [1385] = 1385, [1386] = 1386, @@ -5697,2590 +5708,2590 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1390] = 1390, [1391] = 1391, [1392] = 1392, - [1393] = 1393, + [1393] = 1384, [1394] = 1394, - [1395] = 707, + [1395] = 1395, [1396] = 1396, - [1397] = 1397, - [1398] = 1398, - [1399] = 1399, - [1400] = 1400, - [1401] = 1401, + [1397] = 718, + [1398] = 1386, + [1399] = 1387, + [1400] = 1389, + [1401] = 1391, [1402] = 1402, - [1403] = 1403, + [1403] = 1392, [1404] = 1404, - [1405] = 708, - [1406] = 1406, - [1407] = 1407, - [1408] = 1408, - [1409] = 1409, + [1405] = 1384, + [1406] = 1394, + [1407] = 1395, + [1408] = 1396, + [1409] = 1386, [1410] = 1410, - [1411] = 1411, - [1412] = 1412, - [1413] = 1413, - [1414] = 1414, - [1415] = 711, - [1416] = 713, - [1417] = 1417, - [1418] = 1391, - [1419] = 1419, - [1420] = 1413, - [1421] = 1421, - [1422] = 1422, - [1423] = 1423, - [1424] = 1424, - [1425] = 1425, - [1426] = 1421, - [1427] = 1427, - [1428] = 1428, - [1429] = 716, - [1430] = 1430, - [1431] = 1431, - [1432] = 1432, - [1433] = 1425, - [1434] = 1434, - [1435] = 1435, - [1436] = 1376, - [1437] = 1437, + [1411] = 1387, + [1412] = 730, + [1413] = 1389, + [1414] = 1391, + [1415] = 1386, + [1416] = 1416, + [1417] = 1392, + [1418] = 1418, + [1419] = 1384, + [1420] = 1394, + [1421] = 1395, + [1422] = 1396, + [1423] = 1386, + [1424] = 1387, + [1425] = 715, + [1426] = 1387, + [1427] = 1389, + [1428] = 1391, + [1429] = 1392, + [1430] = 1384, + [1431] = 1394, + [1432] = 1395, + [1433] = 1396, + [1434] = 1386, + [1435] = 1387, + [1436] = 1389, + [1437] = 1391, [1438] = 1438, [1439] = 1439, - [1440] = 1440, - [1441] = 1441, + [1440] = 719, + [1441] = 720, [1442] = 1442, - [1443] = 1422, - [1444] = 1423, - [1445] = 712, - [1446] = 1378, - [1447] = 1447, - [1448] = 1379, - [1449] = 1380, - [1450] = 1381, - [1451] = 1383, - [1452] = 1384, + [1443] = 1392, + [1444] = 1384, + [1445] = 1394, + [1446] = 1395, + [1447] = 1396, + [1448] = 1448, + [1449] = 1449, + [1450] = 1450, + [1451] = 1451, + [1452] = 1452, [1453] = 1453, - [1454] = 1439, - [1455] = 1455, + [1454] = 1454, + [1455] = 1387, [1456] = 1456, [1457] = 1457, - [1458] = 1391, - [1459] = 1413, - [1460] = 1421, - [1461] = 1422, - [1462] = 1423, - [1463] = 1424, - [1464] = 1428, - [1465] = 1430, - [1466] = 1425, - [1467] = 715, - [1468] = 1439, + [1458] = 1458, + [1459] = 1459, + [1460] = 1389, + [1461] = 1461, + [1462] = 1391, + [1463] = 1463, + [1464] = 1464, + [1465] = 1391, + [1466] = 1466, + [1467] = 1467, + [1468] = 1468, [1469] = 1469, [1470] = 1470, - [1471] = 1391, - [1472] = 1413, - [1473] = 1421, - [1474] = 1422, - [1475] = 1423, - [1476] = 1428, + [1471] = 1471, + [1472] = 1472, + [1473] = 1473, + [1474] = 1474, + [1475] = 1475, + [1476] = 1476, [1477] = 1477, - [1478] = 1430, - [1479] = 1479, - [1480] = 1425, - [1481] = 1439, + [1478] = 1478, + [1479] = 1388, + [1480] = 1480, + [1481] = 1481, [1482] = 1482, - [1483] = 1483, - [1484] = 1391, - [1485] = 1485, - [1486] = 1413, - [1487] = 1421, - [1488] = 1422, - [1489] = 1423, - [1490] = 1428, + [1483] = 1475, + [1484] = 1404, + [1485] = 1416, + [1486] = 1486, + [1487] = 1487, + [1488] = 1480, + [1489] = 1481, + [1490] = 1487, [1491] = 1491, - [1492] = 1430, + [1492] = 1492, [1493] = 1493, [1494] = 1494, - [1495] = 1425, - [1496] = 1439, + [1495] = 1495, + [1496] = 1384, [1497] = 1497, [1498] = 1498, - [1499] = 1391, - [1500] = 1424, - [1501] = 1413, - [1502] = 1421, - [1503] = 1422, - [1504] = 1423, - [1505] = 1428, - [1506] = 1430, + [1499] = 1499, + [1500] = 1500, + [1501] = 1501, + [1502] = 1502, + [1503] = 1503, + [1504] = 1504, + [1505] = 1505, + [1506] = 708, [1507] = 1507, - [1508] = 1425, - [1509] = 1509, - [1510] = 1439, + [1508] = 1508, + [1509] = 1457, + [1510] = 1510, [1511] = 1511, [1512] = 1512, - [1513] = 1391, - [1514] = 1413, - [1515] = 1421, - [1516] = 1422, - [1517] = 1423, - [1518] = 1428, - [1519] = 1430, + [1513] = 1513, + [1514] = 1514, + [1515] = 1515, + [1516] = 1516, + [1517] = 1517, + [1518] = 1518, + [1519] = 1449, [1520] = 1520, [1521] = 1521, - [1522] = 1425, - [1523] = 1439, + [1522] = 1522, + [1523] = 1523, [1524] = 1524, [1525] = 1525, - [1526] = 1396, - [1527] = 1520, - [1528] = 1397, - [1529] = 1398, + [1526] = 1450, + [1527] = 1527, + [1528] = 1394, + [1529] = 1529, [1530] = 1530, - [1531] = 1391, + [1531] = 1531, [1532] = 1532, - [1533] = 1413, - [1534] = 1421, - [1535] = 1422, - [1536] = 1423, - [1537] = 1537, - [1538] = 1400, + [1533] = 1385, + [1534] = 1395, + [1535] = 1396, + [1536] = 1536, + [1537] = 1458, + [1538] = 1459, [1539] = 1539, - [1540] = 1525, - [1541] = 1541, - [1542] = 1542, - [1543] = 1430, - [1544] = 1544, - [1545] = 1385, - [1546] = 1546, - [1547] = 1541, - [1548] = 1434, + [1540] = 1452, + [1541] = 1456, + [1542] = 1491, + [1543] = 1492, + [1544] = 1493, + [1545] = 1545, + [1546] = 1494, + [1547] = 1495, + [1548] = 1513, [1549] = 1549, - [1550] = 1439, - [1551] = 1551, + [1550] = 1514, + [1551] = 1392, [1552] = 1552, - [1553] = 1553, - [1554] = 1554, - [1555] = 1555, - [1556] = 1552, - [1557] = 1411, - [1558] = 717, - [1559] = 1559, - [1560] = 1560, - [1561] = 1428, - [1562] = 1562, - [1563] = 1563, - [1564] = 1564, - [1565] = 1565, - [1566] = 1542, - [1567] = 1430, - [1568] = 1568, - [1569] = 446, - [1570] = 1570, - [1571] = 1391, - [1572] = 1392, - [1573] = 1401, - [1574] = 1413, - [1575] = 1421, - [1576] = 1422, - [1577] = 1423, - [1578] = 1391, - [1579] = 1392, - [1580] = 1413, - [1581] = 1421, - [1582] = 1422, - [1583] = 1423, - [1584] = 1430, - [1585] = 1439, - [1586] = 1391, - [1587] = 1413, - [1588] = 1421, - [1589] = 1422, - [1590] = 1423, - [1591] = 1428, - [1592] = 1430, - [1593] = 1425, - [1594] = 1439, - [1595] = 1391, - [1596] = 1413, - [1597] = 1421, - [1598] = 1422, - [1599] = 1423, - [1600] = 1424, - [1601] = 1430, - [1602] = 1439, - [1603] = 1391, - [1604] = 1413, - [1605] = 1421, - [1606] = 1422, - [1607] = 1423, - [1608] = 1430, - [1609] = 1439, - [1610] = 1391, - [1611] = 1413, - [1612] = 1421, - [1613] = 1422, - [1614] = 1423, - [1615] = 1430, - [1616] = 1439, - [1617] = 1391, - [1618] = 1413, - [1619] = 1421, - [1620] = 1422, - [1621] = 1423, - [1622] = 1430, - [1623] = 1439, - [1624] = 1391, - [1625] = 1413, - [1626] = 1421, - [1627] = 1422, - [1628] = 1423, - [1629] = 1430, - [1630] = 1439, - [1631] = 1525, - [1632] = 1520, - [1633] = 1457, - [1634] = 1385, - [1635] = 1424, - [1636] = 1636, - [1637] = 1637, - [1638] = 1428, - [1639] = 1430, - [1640] = 1640, - [1641] = 1641, - [1642] = 1642, - [1643] = 1389, - [1644] = 1390, - [1645] = 1645, + [1553] = 1384, + [1554] = 1394, + [1555] = 1395, + [1556] = 1396, + [1557] = 1387, + [1558] = 1391, + [1559] = 1515, + [1560] = 1392, + [1561] = 1384, + [1562] = 1394, + [1563] = 1395, + [1564] = 1396, + [1565] = 1386, + [1566] = 1387, + [1567] = 1389, + [1568] = 1391, + [1569] = 1392, + [1570] = 1384, + [1571] = 1394, + [1572] = 1395, + [1573] = 1396, + [1574] = 1402, + [1575] = 1387, + [1576] = 1391, + [1577] = 1392, + [1578] = 1384, + [1579] = 1394, + [1580] = 1395, + [1581] = 1396, + [1582] = 1387, + [1583] = 1391, + [1584] = 1392, + [1585] = 1384, + [1586] = 1394, + [1587] = 1395, + [1588] = 1396, + [1589] = 1387, + [1590] = 1391, + [1591] = 1392, + [1592] = 1384, + [1593] = 1394, + [1594] = 1395, + [1595] = 1396, + [1596] = 1387, + [1597] = 1391, + [1598] = 1392, + [1599] = 1384, + [1600] = 1394, + [1601] = 1395, + [1602] = 1396, + [1603] = 1387, + [1604] = 1391, + [1605] = 1517, + [1606] = 1497, + [1607] = 1438, + [1608] = 1439, + [1609] = 1518, + [1610] = 1610, + [1611] = 1498, + [1612] = 1612, + [1613] = 1613, + [1614] = 1439, + [1615] = 1499, + [1616] = 1457, + [1617] = 1390, + [1618] = 1500, + [1619] = 1619, + [1620] = 1620, + [1621] = 1621, + [1622] = 1501, + [1623] = 1502, + [1624] = 1503, + [1625] = 1625, + [1626] = 1626, + [1627] = 1627, + [1628] = 1504, + [1629] = 1625, + [1630] = 1626, + [1631] = 1627, + [1632] = 1505, + [1633] = 1633, + [1634] = 1633, + [1635] = 1389, + [1636] = 1463, + [1637] = 1461, + [1638] = 1638, + [1639] = 1511, + [1640] = 1512, + [1641] = 1402, + [1642] = 1438, + [1643] = 1643, + [1644] = 1644, + [1645] = 712, [1646] = 1646, - [1647] = 1394, - [1648] = 1403, + [1647] = 710, + [1648] = 711, [1649] = 1649, - [1650] = 1425, - [1651] = 1435, + [1650] = 1650, + [1651] = 1651, [1652] = 1652, - [1653] = 1392, - [1654] = 1391, - [1655] = 1413, - [1656] = 1421, - [1657] = 1422, - [1658] = 1423, - [1659] = 1430, - [1660] = 1439, - [1661] = 1439, - [1662] = 1525, - [1663] = 1520, - [1664] = 1664, - [1665] = 1665, - [1666] = 1666, - [1667] = 1477, - [1668] = 1385, - [1669] = 1669, - [1670] = 1375, - [1671] = 1483, - [1672] = 1485, - [1673] = 1497, - [1674] = 1507, - [1675] = 1675, - [1676] = 1511, - [1677] = 1677, - [1678] = 1525, - [1679] = 1520, - [1680] = 1521, - [1681] = 718, - [1682] = 1682, - [1683] = 1524, - [1684] = 1684, - [1685] = 1532, - [1686] = 1539, - [1687] = 1687, - [1688] = 1525, - [1689] = 1520, - [1690] = 1553, - [1691] = 1554, - [1692] = 1555, - [1693] = 1530, - [1694] = 1525, - [1695] = 1636, - [1696] = 1637, - [1697] = 1640, - [1698] = 1641, - [1699] = 1642, - [1700] = 1645, - [1701] = 1525, - [1702] = 1646, - [1703] = 1649, - [1704] = 1652, - [1705] = 1675, - [1706] = 1677, - [1707] = 1682, - [1708] = 1684, - [1709] = 1687, - [1710] = 1525, + [1653] = 1653, + [1654] = 1654, + [1655] = 1655, + [1656] = 1656, + [1657] = 1657, + [1658] = 1643, + [1659] = 1391, + [1660] = 1660, + [1661] = 1661, + [1662] = 1662, + [1663] = 1663, + [1664] = 1392, + [1665] = 1552, + [1666] = 1392, + [1667] = 1384, + [1668] = 1394, + [1669] = 1395, + [1670] = 1396, + [1671] = 1387, + [1672] = 1391, + [1673] = 1384, + [1674] = 1438, + [1675] = 1439, + [1676] = 1394, + [1677] = 1395, + [1678] = 1396, + [1679] = 1457, + [1680] = 1438, + [1681] = 1439, + [1682] = 1402, + [1683] = 1683, + [1684] = 1386, + [1685] = 707, + [1686] = 1387, + [1687] = 729, + [1688] = 1438, + [1689] = 1439, + [1690] = 1453, + [1691] = 1691, + [1692] = 1389, + [1693] = 1693, + [1694] = 1466, + [1695] = 1386, + [1696] = 1520, + [1697] = 1442, + [1698] = 1521, + [1699] = 1467, + [1700] = 1438, + [1701] = 1468, + [1702] = 1523, + [1703] = 1391, + [1704] = 1469, + [1705] = 1524, + [1706] = 1706, + [1707] = 1525, + [1708] = 1471, + [1709] = 1454, + [1710] = 1387, [1711] = 1711, - [1712] = 1711, - [1713] = 1713, - [1714] = 1525, - [1715] = 1525, - [1716] = 1713, - [1717] = 1525, - [1718] = 1525, - [1719] = 1525, - [1720] = 1525, - [1721] = 1525, - [1722] = 1525, - [1723] = 1399, - [1724] = 1376, - [1725] = 1402, - [1726] = 1570, - [1727] = 1664, - [1728] = 1404, - [1729] = 1406, - [1730] = 1447, - [1731] = 1453, - [1732] = 1549, - [1733] = 1563, - [1734] = 1564, - [1735] = 1382, - [1736] = 1386, - [1737] = 1387, - [1738] = 1437, - [1739] = 1438, - [1740] = 1440, - [1741] = 1441, - [1742] = 1442, - [1743] = 1479, - [1744] = 1482, - [1745] = 1491, - [1746] = 1493, - [1747] = 1551, - [1748] = 1376, - [1749] = 1407, - [1750] = 1664, - [1751] = 1447, - [1752] = 1453, - [1753] = 1549, - [1754] = 1563, - [1755] = 1564, - [1756] = 1382, - [1757] = 1386, - [1758] = 1387, - [1759] = 1437, - [1760] = 1438, - [1761] = 1440, - [1762] = 1441, - [1763] = 1442, - [1764] = 1479, - [1765] = 1482, - [1766] = 1491, - [1767] = 1493, - [1768] = 1551, - [1769] = 1376, - [1770] = 1549, - [1771] = 1376, - [1772] = 1376, - [1773] = 714, - [1774] = 1376, - [1775] = 1408, - [1776] = 1376, - [1777] = 1409, - [1778] = 1376, - [1779] = 1410, - [1780] = 1376, - [1781] = 1412, - [1782] = 1376, - [1783] = 1376, - [1784] = 1376, - [1785] = 1376, - [1786] = 1376, - [1787] = 1376, - [1788] = 1388, - [1789] = 710, - [1790] = 1565, - [1791] = 1376, - [1792] = 1393, - [1793] = 1470, - [1794] = 1665, - [1795] = 1391, - [1796] = 1413, - [1797] = 1421, - [1798] = 1422, - [1799] = 1423, - [1800] = 1424, - [1801] = 1427, - [1802] = 1430, - [1803] = 1431, - [1804] = 1439, - [1805] = 1391, - [1806] = 1413, - [1807] = 1421, - [1808] = 1422, - [1809] = 1423, - [1810] = 1430, - [1811] = 1439, - [1812] = 1525, - [1813] = 1392, - [1814] = 1525, - [1815] = 1376, - [1816] = 1376, - [1817] = 1817, - [1818] = 1391, - [1819] = 1413, - [1820] = 1421, - [1821] = 1422, - [1822] = 1423, - [1823] = 1430, - [1824] = 1439, - [1825] = 1525, - [1826] = 1826, - [1827] = 446, - [1828] = 446, - [1829] = 716, - [1830] = 716, - [1831] = 490, - [1832] = 1832, - [1833] = 1833, - [1834] = 1834, - [1835] = 798, - [1836] = 802, - [1837] = 1834, - [1838] = 1838, - [1839] = 1838, - [1840] = 1840, - [1841] = 798, - [1842] = 802, - [1843] = 1840, - [1844] = 1844, - [1845] = 1845, - [1846] = 1846, + [1712] = 1529, + [1713] = 1438, + [1714] = 1530, + [1715] = 1472, + [1716] = 1531, + [1717] = 1532, + [1718] = 1718, + [1719] = 1474, + [1720] = 1392, + [1721] = 1438, + [1722] = 1438, + [1723] = 446, + [1724] = 1438, + [1725] = 1476, + [1726] = 1552, + [1727] = 1438, + [1728] = 1392, + [1729] = 1438, + [1730] = 1552, + [1731] = 1438, + [1732] = 1438, + [1733] = 1418, + [1734] = 1438, + [1735] = 1735, + [1736] = 1438, + [1737] = 1384, + [1738] = 1394, + [1739] = 1395, + [1740] = 1396, + [1741] = 1385, + [1742] = 1718, + [1743] = 1735, + [1744] = 1653, + [1745] = 1654, + [1746] = 1473, + [1747] = 1522, + [1748] = 1527, + [1749] = 1657, + [1750] = 1661, + [1751] = 1662, + [1752] = 1470, + [1753] = 1477, + [1754] = 1478, + [1755] = 1482, + [1756] = 1486, + [1757] = 1545, + [1758] = 1549, + [1759] = 1612, + [1760] = 1613, + [1761] = 1649, + [1762] = 1385, + [1763] = 1735, + [1764] = 1653, + [1765] = 1654, + [1766] = 1473, + [1767] = 1522, + [1768] = 1527, + [1769] = 1657, + [1770] = 1661, + [1771] = 1662, + [1772] = 1470, + [1773] = 1477, + [1774] = 1478, + [1775] = 1482, + [1776] = 1486, + [1777] = 1545, + [1778] = 1549, + [1779] = 1612, + [1780] = 1613, + [1781] = 1649, + [1782] = 1385, + [1783] = 1473, + [1784] = 1385, + [1785] = 1385, + [1786] = 1385, + [1787] = 1385, + [1788] = 1385, + [1789] = 1385, + [1790] = 1385, + [1791] = 1385, + [1792] = 1385, + [1793] = 1385, + [1794] = 1385, + [1795] = 1385, + [1796] = 1683, + [1797] = 1651, + [1798] = 1392, + [1799] = 1385, + [1800] = 1384, + [1801] = 1394, + [1802] = 1395, + [1803] = 1396, + [1804] = 1539, + [1805] = 1693, + [1806] = 1619, + [1807] = 1392, + [1808] = 1384, + [1809] = 1394, + [1810] = 1395, + [1811] = 1396, + [1812] = 1402, + [1813] = 1387, + [1814] = 1391, + [1815] = 1392, + [1816] = 1384, + [1817] = 1394, + [1818] = 1395, + [1819] = 1396, + [1820] = 1387, + [1821] = 1391, + [1822] = 1438, + [1823] = 1552, + [1824] = 1438, + [1825] = 1385, + [1826] = 1385, + [1827] = 1392, + [1828] = 1394, + [1829] = 1395, + [1830] = 1396, + [1831] = 1387, + [1832] = 1391, + [1833] = 1402, + [1834] = 1438, + [1835] = 1610, + [1836] = 707, + [1837] = 446, + [1838] = 707, + [1839] = 446, + [1840] = 491, + [1841] = 1841, + [1842] = 1842, + [1843] = 1843, + [1844] = 801, + [1845] = 1843, + [1846] = 800, [1847] = 1847, - [1848] = 1847, - [1849] = 1849, - [1850] = 1849, - [1851] = 1851, - [1852] = 1845, - [1853] = 1851, - [1854] = 1851, - [1855] = 1845, + [1848] = 1848, + [1849] = 1847, + [1850] = 801, + [1851] = 1848, + [1852] = 800, + [1853] = 1853, + [1854] = 1854, + [1855] = 1854, [1856] = 1856, [1857] = 1857, - [1858] = 1856, - [1859] = 1856, - [1860] = 1860, - [1861] = 1856, + [1858] = 1858, + [1859] = 1859, + [1860] = 1856, + [1861] = 1857, [1862] = 1856, - [1863] = 1863, - [1864] = 1856, + [1863] = 1857, + [1864] = 1853, [1865] = 1865, - [1866] = 1866, - [1867] = 1867, - [1868] = 1867, - [1869] = 1866, - [1870] = 1870, - [1871] = 1871, + [1866] = 1865, + [1867] = 1865, + [1868] = 1868, + [1869] = 1865, + [1870] = 1865, + [1871] = 1865, [1872] = 1872, [1873] = 1873, [1874] = 1874, [1875] = 1875, [1876] = 1876, - [1877] = 1872, + [1877] = 1874, [1878] = 1878, - [1879] = 1879, - [1880] = 1872, + [1879] = 1878, + [1880] = 1880, [1881] = 1881, [1882] = 1882, [1883] = 1883, - [1884] = 1872, + [1884] = 1884, [1885] = 1885, - [1886] = 1886, - [1887] = 1876, - [1888] = 1872, - [1889] = 1872, - [1890] = 1890, - [1891] = 1879, - [1892] = 1892, - [1893] = 1882, - [1894] = 1872, + [1886] = 1885, + [1887] = 1887, + [1888] = 1888, + [1889] = 1885, + [1890] = 1885, + [1891] = 1891, + [1892] = 1885, + [1893] = 1893, + [1894] = 1881, [1895] = 1895, - [1896] = 1890, - [1897] = 1872, + [1896] = 1896, + [1897] = 1885, [1898] = 1898, [1899] = 1899, - [1900] = 1900, - [1901] = 1901, - [1902] = 1902, - [1903] = 1903, + [1900] = 1885, + [1901] = 1885, + [1902] = 1899, + [1903] = 1896, [1904] = 1904, - [1905] = 1905, - [1906] = 1899, - [1907] = 1900, - [1908] = 1901, - [1909] = 1902, - [1910] = 1904, - [1911] = 1903, - [1912] = 1898, - [1913] = 1905, - [1914] = 1900, - [1915] = 1901, - [1916] = 1902, - [1917] = 1898, + [1905] = 1884, + [1906] = 1906, + [1907] = 1907, + [1908] = 1908, + [1909] = 1909, + [1910] = 1908, + [1911] = 1911, + [1912] = 1912, + [1913] = 1913, + [1914] = 1914, + [1915] = 1912, + [1916] = 1907, + [1917] = 1917, [1918] = 1918, - [1919] = 1919, - [1920] = 1904, - [1921] = 1905, - [1922] = 1899, - [1923] = 1900, - [1924] = 1901, - [1925] = 1902, - [1926] = 1903, - [1927] = 1898, - [1928] = 1903, - [1929] = 1929, - [1930] = 1898, - [1931] = 1919, - [1932] = 1932, - [1933] = 1904, - [1934] = 1905, - [1935] = 1899, - [1936] = 1900, - [1937] = 1901, - [1938] = 1902, - [1939] = 1903, - [1940] = 1898, - [1941] = 1929, - [1942] = 1919, - [1943] = 1918, - [1944] = 1918, - [1945] = 1918, - [1946] = 1929, - [1947] = 1929, - [1948] = 1919, - [1949] = 1932, - [1950] = 1929, - [1951] = 1919, - [1952] = 1919, - [1953] = 1929, - [1954] = 1919, - [1955] = 1904, - [1956] = 1904, - [1957] = 1905, - [1958] = 1899, - [1959] = 1900, - [1960] = 1929, - [1961] = 1919, - [1962] = 1901, - [1963] = 1902, - [1964] = 1903, - [1965] = 1898, - [1966] = 1929, - [1967] = 1919, - [1968] = 1929, - [1969] = 1929, - [1970] = 1929, - [1971] = 1929, - [1972] = 1929, - [1973] = 1929, - [1974] = 1929, - [1975] = 1929, - [1976] = 1976, - [1977] = 1976, - [1978] = 1905, - [1979] = 1976, - [1980] = 1904, - [1981] = 1905, - [1982] = 1899, - [1983] = 1900, - [1984] = 1901, - [1985] = 1902, - [1986] = 1903, - [1987] = 1898, - [1988] = 1904, - [1989] = 1905, - [1990] = 1899, - [1991] = 1900, - [1992] = 1901, - [1993] = 1902, - [1994] = 1903, - [1995] = 1904, - [1996] = 1905, - [1997] = 1899, - [1998] = 1900, - [1999] = 1901, - [2000] = 1902, - [2001] = 1903, - [2002] = 1898, - [2003] = 1929, - [2004] = 2004, - [2005] = 2005, - [2006] = 2006, - [2007] = 2006, - [2008] = 2005, - [2009] = 2005, - [2010] = 2010, - [2011] = 2011, - [2012] = 2012, - [2013] = 2013, - [2014] = 2014, + [1919] = 1911, + [1920] = 1920, + [1921] = 1921, + [1922] = 1913, + [1923] = 1917, + [1924] = 1924, + [1925] = 1925, + [1926] = 1918, + [1927] = 1924, + [1928] = 1907, + [1929] = 1909, + [1930] = 1914, + [1931] = 1921, + [1932] = 1908, + [1933] = 1933, + [1934] = 1914, + [1935] = 1912, + [1936] = 1907, + [1937] = 1918, + [1938] = 1911, + [1939] = 1913, + [1940] = 1917, + [1941] = 1924, + [1942] = 1911, + [1943] = 1913, + [1944] = 1921, + [1945] = 1917, + [1946] = 1908, + [1947] = 1924, + [1948] = 1921, + [1949] = 1908, + [1950] = 1912, + [1951] = 1914, + [1952] = 1921, + [1953] = 1912, + [1954] = 1908, + [1955] = 1921, + [1956] = 1918, + [1957] = 1911, + [1958] = 1913, + [1959] = 1917, + [1960] = 1924, + [1961] = 1914, + [1962] = 1921, + [1963] = 1908, + [1964] = 1921, + [1965] = 1912, + [1966] = 1921, + [1967] = 1908, + [1968] = 1933, + [1969] = 1921, + [1970] = 1921, + [1971] = 1909, + [1972] = 1921, + [1973] = 1907, + [1974] = 1921, + [1975] = 1921, + [1976] = 1921, + [1977] = 1921, + [1978] = 1921, + [1979] = 1909, + [1980] = 1914, + [1981] = 1912, + [1982] = 1920, + [1983] = 1908, + [1984] = 1914, + [1985] = 1912, + [1986] = 1918, + [1987] = 1911, + [1988] = 1913, + [1989] = 1917, + [1990] = 1924, + [1991] = 1907, + [1992] = 1920, + [1993] = 1918, + [1994] = 1918, + [1995] = 1911, + [1996] = 1913, + [1997] = 1917, + [1998] = 1924, + [1999] = 1914, + [2000] = 1912, + [2001] = 1907, + [2002] = 1918, + [2003] = 1911, + [2004] = 1913, + [2005] = 1917, + [2006] = 1924, + [2007] = 1911, + [2008] = 1913, + [2009] = 1917, + [2010] = 1914, + [2011] = 1924, + [2012] = 1907, + [2013] = 1918, + [2014] = 1925, [2015] = 2015, - [2016] = 2014, - [2017] = 2012, - [2018] = 2013, - [2019] = 2015, - [2020] = 2011, + [2016] = 2015, + [2017] = 2015, + [2018] = 2018, + [2019] = 2019, + [2020] = 2019, [2021] = 2021, - [2022] = 2021, + [2022] = 2022, [2023] = 2023, [2024] = 2024, - [2025] = 2025, + [2025] = 2022, [2026] = 2026, - [2027] = 2027, - [2028] = 2025, - [2029] = 2023, - [2030] = 2026, - [2031] = 2027, - [2032] = 2024, + [2027] = 2023, + [2028] = 2024, + [2029] = 2026, + [2030] = 2030, + [2031] = 2031, + [2032] = 2032, [2033] = 2033, - [2034] = 2034, + [2034] = 2032, [2035] = 2035, - [2036] = 1833, + [2036] = 2031, [2037] = 2037, - [2038] = 2038, - [2039] = 2039, - [2040] = 2024, - [2041] = 2041, + [2038] = 2037, + [2039] = 2030, + [2040] = 2033, + [2041] = 2035, [2042] = 2042, [2043] = 2043, [2044] = 2044, [2045] = 2045, - [2046] = 2024, + [2046] = 1842, [2047] = 2047, [2048] = 2048, [2049] = 2049, [2050] = 2050, - [2051] = 2024, - [2052] = 2052, + [2051] = 2032, + [2052] = 2032, [2053] = 2053, - [2054] = 2024, + [2054] = 2054, [2055] = 2055, - [2056] = 2043, - [2057] = 2024, - [2058] = 2024, + [2056] = 2056, + [2057] = 2032, + [2058] = 2053, [2059] = 2059, - [2060] = 2024, - [2061] = 2024, - [2062] = 2024, - [2063] = 2024, + [2060] = 2060, + [2061] = 2032, + [2062] = 2062, + [2063] = 2063, [2064] = 2064, [2065] = 2065, - [2066] = 2066, - [2067] = 2024, - [2068] = 1873, + [2066] = 2032, + [2067] = 2032, + [2068] = 2068, [2069] = 2069, - [2070] = 2039, - [2071] = 2071, - [2072] = 2072, - [2073] = 2034, + [2070] = 2032, + [2071] = 2032, + [2072] = 2032, + [2073] = 2073, [2074] = 2074, - [2075] = 1885, - [2076] = 1881, - [2077] = 2024, + [2075] = 2032, + [2076] = 2032, + [2077] = 1887, [2078] = 2078, [2079] = 2079, - [2080] = 1878, + [2080] = 2080, [2081] = 2081, - [2082] = 2033, - [2083] = 2083, - [2084] = 1892, + [2082] = 1891, + [2083] = 1893, + [2084] = 2084, [2085] = 2085, - [2086] = 2086, + [2086] = 2044, [2087] = 2087, [2088] = 2088, - [2089] = 2037, + [2089] = 2043, [2090] = 2090, - [2091] = 2038, - [2092] = 2092, + [2091] = 2091, + [2092] = 2042, [2093] = 2093, - [2094] = 2094, - [2095] = 2095, + [2094] = 2032, + [2095] = 2045, [2096] = 2096, - [2097] = 2039, - [2098] = 2098, - [2099] = 2024, - [2100] = 2100, + [2097] = 2097, + [2098] = 2045, + [2099] = 2043, + [2100] = 2047, [2101] = 2101, [2102] = 2102, - [2103] = 2034, + [2103] = 2103, [2104] = 2104, - [2105] = 2105, - [2106] = 2106, - [2107] = 1874, + [2105] = 2048, + [2106] = 1895, + [2107] = 2032, [2108] = 2108, [2109] = 2109, [2110] = 2110, - [2111] = 1883, - [2112] = 1886, - [2113] = 2113, - [2114] = 2114, + [2111] = 2111, + [2112] = 2112, + [2113] = 1898, + [2114] = 1888, [2115] = 2115, [2116] = 2116, [2117] = 2117, [2118] = 2118, - [2119] = 2037, + [2119] = 2119, [2120] = 2120, - [2121] = 2033, + [2121] = 2121, [2122] = 2122, [2123] = 2123, [2124] = 2124, [2125] = 2125, - [2126] = 2038, + [2126] = 2126, [2127] = 2127, [2128] = 2128, - [2129] = 1895, - [2130] = 2033, - [2131] = 2045, - [2132] = 2037, - [2133] = 2033, - [2134] = 2047, - [2135] = 2039, - [2136] = 2052, - [2137] = 2039, - [2138] = 2038, - [2139] = 2038, - [2140] = 2034, - [2141] = 2044, - [2142] = 2048, - [2143] = 2045, - [2144] = 2041, - [2145] = 2055, - [2146] = 2042, - [2147] = 2049, - [2148] = 2050, - [2149] = 2047, - [2150] = 2039, - [2151] = 2024, - [2152] = 2024, - [2153] = 2052, - [2154] = 2024, - [2155] = 2033, - [2156] = 2038, - [2157] = 2034, - [2158] = 2053, - [2159] = 2037, - [2160] = 2044, - [2161] = 2048, - [2162] = 2041, - [2163] = 2055, - [2164] = 2042, - [2165] = 2049, - [2166] = 2050, - [2167] = 2037, - [2168] = 2024, - [2169] = 2053, - [2170] = 2034, - [2171] = 2024, - [2172] = 2042, - [2173] = 2044, - [2174] = 2066, - [2175] = 2175, - [2176] = 2064, - [2177] = 2045, - [2178] = 2048, - [2179] = 2045, - [2180] = 2041, - [2181] = 2044, - [2182] = 2055, - [2183] = 2042, + [2129] = 2129, + [2130] = 2130, + [2131] = 2131, + [2132] = 1906, + [2133] = 2133, + [2134] = 1882, + [2135] = 1883, + [2136] = 2042, + [2137] = 2137, + [2138] = 2048, + [2139] = 2047, + [2140] = 2050, + [2141] = 2059, + [2142] = 2062, + [2143] = 2062, + [2144] = 2063, + [2145] = 2064, + [2146] = 2047, + [2147] = 2043, + [2148] = 2054, + [2149] = 2048, + [2150] = 2063, + [2151] = 2032, + [2152] = 2054, + [2153] = 2047, + [2154] = 2060, + [2155] = 2049, + [2156] = 2042, + [2157] = 2060, + [2158] = 2055, + [2159] = 2055, + [2160] = 2048, + [2161] = 2043, + [2162] = 2032, + [2163] = 2032, + [2164] = 2065, + [2165] = 2032, + [2166] = 2056, + [2167] = 2049, + [2168] = 2048, + [2169] = 2042, + [2170] = 2045, + [2171] = 2059, + [2172] = 2056, + [2173] = 2045, + [2174] = 2065, + [2175] = 2032, + [2176] = 2045, + [2177] = 2043, + [2178] = 2064, + [2179] = 2047, + [2180] = 2042, + [2181] = 2050, + [2182] = 2064, + [2183] = 2050, [2184] = 2049, - [2185] = 2050, - [2186] = 2048, - [2187] = 2047, - [2188] = 2052, - [2189] = 2189, - [2190] = 2190, - [2191] = 2059, - [2192] = 2192, - [2193] = 2193, - [2194] = 1865, - [2195] = 2053, - [2196] = 2038, - [2197] = 2053, - [2198] = 2041, - [2199] = 2055, - [2200] = 2037, - [2201] = 2175, - [2202] = 2049, - [2203] = 2050, - [2204] = 2047, - [2205] = 2047, - [2206] = 2033, - [2207] = 2064, - [2208] = 2039, - [2209] = 2209, - [2210] = 2053, - [2211] = 2209, - [2212] = 2052, - [2213] = 1866, - [2214] = 2059, - [2215] = 2175, - [2216] = 2052, - [2217] = 2209, - [2218] = 2034, - [2219] = 2065, - [2220] = 2066, - [2221] = 2065, - [2222] = 2044, - [2223] = 2048, - [2224] = 2045, - [2225] = 2041, - [2226] = 2055, - [2227] = 2042, - [2228] = 2049, - [2229] = 2050, + [2185] = 2055, + [2186] = 2059, + [2187] = 2062, + [2188] = 2063, + [2189] = 2062, + [2190] = 2049, + [2191] = 2055, + [2192] = 2049, + [2193] = 2068, + [2194] = 2194, + [2195] = 2063, + [2196] = 2074, + [2197] = 2073, + [2198] = 2069, + [2199] = 2065, + [2200] = 2043, + [2201] = 2059, + [2202] = 2042, + [2203] = 2203, + [2204] = 2204, + [2205] = 2194, + [2206] = 2074, + [2207] = 2073, + [2208] = 2208, + [2209] = 2062, + [2210] = 2064, + [2211] = 2065, + [2212] = 2054, + [2213] = 2045, + [2214] = 2060, + [2215] = 2050, + [2216] = 1875, + [2217] = 2056, + [2218] = 2068, + [2219] = 2047, + [2220] = 2220, + [2221] = 2060, + [2222] = 2048, + [2223] = 2056, + [2224] = 2065, + [2225] = 2055, + [2226] = 1874, + [2227] = 2060, + [2228] = 2054, + [2229] = 2056, [2230] = 2230, - [2231] = 2102, - [2232] = 2079, - [2233] = 2109, - [2234] = 2116, - [2235] = 2106, - [2236] = 2074, - [2237] = 1876, - [2238] = 2094, - [2239] = 2033, - [2240] = 1879, - [2241] = 2092, - [2242] = 2120, - [2243] = 2064, - [2244] = 1885, - [2245] = 1882, - [2246] = 1883, - [2247] = 2044, - [2248] = 2120, - [2249] = 1886, - [2250] = 2115, - [2251] = 2100, - [2252] = 1878, - [2253] = 2066, - [2254] = 2118, - [2255] = 2123, - [2256] = 2105, - [2257] = 2094, - [2258] = 2115, - [2259] = 2072, - [2260] = 2048, - [2261] = 1874, - [2262] = 2083, - [2263] = 2065, - [2264] = 2101, - [2265] = 2024, - [2266] = 2041, - [2267] = 1890, - [2268] = 2078, - [2269] = 2064, - [2270] = 2125, - [2271] = 2095, - [2272] = 1892, - [2273] = 2113, - [2274] = 2096, - [2275] = 2086, - [2276] = 2092, - [2277] = 2093, - [2278] = 2087, - [2279] = 2114, - [2280] = 2098, - [2281] = 2122, - [2282] = 1866, + [2231] = 2064, + [2232] = 2232, + [2233] = 2194, + [2234] = 2050, + [2235] = 2208, + [2236] = 2054, + [2237] = 2208, + [2238] = 2069, + [2239] = 2059, + [2240] = 2063, + [2241] = 2097, + [2242] = 1891, + [2243] = 1893, + [2244] = 2079, + [2245] = 2091, + [2246] = 2048, + [2247] = 1883, + [2248] = 2085, + [2249] = 2125, + [2250] = 2131, + [2251] = 2104, + [2252] = 2069, + [2253] = 1874, + [2254] = 2110, + [2255] = 1888, + [2256] = 2088, + [2257] = 2111, + [2258] = 2220, + [2259] = 1896, + [2260] = 1895, + [2261] = 1895, + [2262] = 2096, + [2263] = 1906, + [2264] = 1882, + [2265] = 1883, + [2266] = 1891, + [2267] = 1893, + [2268] = 1888, + [2269] = 1895, + [2270] = 1888, + [2271] = 2069, + [2272] = 2074, + [2273] = 1884, + [2274] = 2042, + [2275] = 2047, + [2276] = 1887, + [2277] = 2068, + [2278] = 2073, + [2279] = 2203, + [2280] = 1888, + [2281] = 2204, + [2282] = 2112, [2283] = 2081, - [2284] = 2117, - [2285] = 1881, - [2286] = 2127, - [2287] = 2090, - [2288] = 2189, - [2289] = 2108, - [2290] = 1892, - [2291] = 1895, - [2292] = 1873, - [2293] = 2078, - [2294] = 2053, - [2295] = 1895, - [2296] = 2124, - [2297] = 2085, - [2298] = 1883, - [2299] = 2113, - [2300] = 1886, - [2301] = 2096, - [2302] = 2034, - [2303] = 1873, - [2304] = 2055, - [2305] = 2042, - [2306] = 1874, - [2307] = 2086, - [2308] = 2066, - [2309] = 2088, - [2310] = 2066, - [2311] = 2059, - [2312] = 2093, - [2313] = 1874, - [2314] = 1865, - [2315] = 2085, - [2316] = 2049, - [2317] = 2125, - [2318] = 2050, - [2319] = 2065, - [2320] = 2104, - [2321] = 2045, - [2322] = 2087, - [2323] = 2037, - [2324] = 1881, - [2325] = 2110, - [2326] = 1892, - [2327] = 2072, - [2328] = 1885, - [2329] = 2190, - [2330] = 2122, - [2331] = 1881, - [2332] = 1895, - [2333] = 2081, - [2334] = 2117, - [2335] = 1878, - [2336] = 2039, - [2337] = 2059, - [2338] = 2114, - [2339] = 2127, - [2340] = 2059, - [2341] = 2189, - [2342] = 2190, - [2343] = 1881, - [2344] = 1873, - [2345] = 2074, - [2346] = 2069, - [2347] = 2090, - [2348] = 1892, - [2349] = 1895, - [2350] = 1873, - [2351] = 1883, - [2352] = 1886, - [2353] = 2102, - [2354] = 1883, - [2355] = 1874, - [2356] = 1885, - [2357] = 2088, - [2358] = 1886, - [2359] = 2104, - [2360] = 2101, - [2361] = 2047, - [2362] = 2079, - [2363] = 2052, - [2364] = 2128, - [2365] = 1865, - [2366] = 2065, - [2367] = 2109, - [2368] = 2038, - [2369] = 2116, - [2370] = 2108, - [2371] = 2106, - [2372] = 2064, - [2373] = 1878, - [2374] = 1885, - [2375] = 2110, - [2376] = 2100, - [2377] = 2123, - [2378] = 2118, - [2379] = 2069, - [2380] = 2128, - [2381] = 2105, - [2382] = 2083, - [2383] = 2230, - [2384] = 2124, - [2385] = 2095, - [2386] = 2098, - [2387] = 1866, - [2388] = 2388, - [2389] = 2064, - [2390] = 1878, - [2391] = 2059, - [2392] = 1874, - [2393] = 2074, - [2394] = 1876, - [2395] = 1879, - [2396] = 1882, - [2397] = 1890, - [2398] = 2093, - [2399] = 2115, - [2400] = 2083, - [2401] = 2118, - [2402] = 2105, - [2403] = 2104, - [2404] = 2094, - [2405] = 2072, - [2406] = 2101, - [2407] = 1874, - [2408] = 1885, - [2409] = 2125, - [2410] = 1881, - [2411] = 1892, - [2412] = 1895, - [2413] = 1873, - [2414] = 1883, - [2415] = 1886, - [2416] = 2079, - [2417] = 2100, - [2418] = 2123, - [2419] = 1878, - [2420] = 2092, - [2421] = 2074, - [2422] = 1876, - [2423] = 1879, - [2424] = 2053, - [2425] = 1882, - [2426] = 1874, - [2427] = 1890, - [2428] = 2125, - [2429] = 2092, - [2430] = 2093, - [2431] = 2431, - [2432] = 2088, - [2433] = 2110, - [2434] = 2069, - [2435] = 2128, - [2436] = 2109, - [2437] = 2116, - [2438] = 2106, - [2439] = 2110, - [2440] = 2083, - [2441] = 2104, - [2442] = 2120, - [2443] = 2069, - [2444] = 2128, - [2445] = 2078, - [2446] = 2113, - [2447] = 2096, - [2448] = 2086, + [2284] = 2088, + [2285] = 2133, + [2286] = 2064, + [2287] = 2101, + [2288] = 2068, + [2289] = 2060, + [2290] = 2116, + [2291] = 2084, + [2292] = 2093, + [2293] = 1891, + [2294] = 2056, + [2295] = 1893, + [2296] = 2104, + [2297] = 2110, + [2298] = 2111, + [2299] = 2102, + [2300] = 2109, + [2301] = 2130, + [2302] = 2204, + [2303] = 2112, + [2304] = 2032, + [2305] = 2081, + [2306] = 2087, + [2307] = 2137, + [2308] = 2078, + [2309] = 2080, + [2310] = 2133, + [2311] = 2068, + [2312] = 1881, + [2313] = 2084, + [2314] = 1875, + [2315] = 2093, + [2316] = 2102, + [2317] = 2109, + [2318] = 2069, + [2319] = 1887, + [2320] = 2087, + [2321] = 2065, + [2322] = 2074, + [2323] = 2073, + [2324] = 2108, + [2325] = 2090, + [2326] = 2115, + [2327] = 1899, + [2328] = 1898, + [2329] = 2128, + [2330] = 1875, + [2331] = 2101, + [2332] = 2118, + [2333] = 2120, + [2334] = 2115, + [2335] = 2121, + [2336] = 2117, + [2337] = 2124, + [2338] = 2126, + [2339] = 2119, + [2340] = 2129, + [2341] = 2123, + [2342] = 2116, + [2343] = 2097, + [2344] = 1906, + [2345] = 2118, + [2346] = 2119, + [2347] = 2120, + [2348] = 2121, + [2349] = 2123, + [2350] = 2124, + [2351] = 2054, + [2352] = 2050, + [2353] = 2049, + [2354] = 2055, + [2355] = 2059, + [2356] = 2062, + [2357] = 2063, + [2358] = 2130, + [2359] = 2126, + [2360] = 2137, + [2361] = 2078, + [2362] = 2080, + [2363] = 2129, + [2364] = 2122, + [2365] = 2085, + [2366] = 1882, + [2367] = 2074, + [2368] = 2073, + [2369] = 2108, + [2370] = 1883, + [2371] = 1887, + [2372] = 2127, + [2373] = 2122, + [2374] = 2127, + [2375] = 1895, + [2376] = 2045, + [2377] = 2090, + [2378] = 2096, + [2379] = 2079, + [2380] = 2091, + [2381] = 1906, + [2382] = 1882, + [2383] = 1883, + [2384] = 2128, + [2385] = 2125, + [2386] = 2131, + [2387] = 1891, + [2388] = 1893, + [2389] = 2117, + [2390] = 1874, + [2391] = 1906, + [2392] = 1882, + [2393] = 2043, + [2394] = 1898, + [2395] = 2203, + [2396] = 1898, + [2397] = 1898, + [2398] = 2062, + [2399] = 1895, + [2400] = 2129, + [2401] = 2111, + [2402] = 1875, + [2403] = 2079, + [2404] = 2091, + [2405] = 1891, + [2406] = 1882, + [2407] = 2085, + [2408] = 2090, + [2409] = 2123, + [2410] = 2096, + [2411] = 2087, + [2412] = 2104, + [2413] = 2110, + [2414] = 2111, + [2415] = 2088, + [2416] = 2125, + [2417] = 2131, + [2418] = 1893, + [2419] = 2112, + [2420] = 2112, + [2421] = 2115, + [2422] = 1899, + [2423] = 2081, + [2424] = 2054, + [2425] = 1896, + [2426] = 2128, + [2427] = 1884, + [2428] = 1874, + [2429] = 2064, + [2430] = 1888, + [2431] = 2050, + [2432] = 2125, + [2433] = 2137, + [2434] = 2133, + [2435] = 2097, + [2436] = 2133, + [2437] = 2049, + [2438] = 2438, + [2439] = 2080, + [2440] = 1881, + [2441] = 2101, + [2442] = 2055, + [2443] = 2118, + [2444] = 2081, + [2445] = 2059, + [2446] = 2116, + [2447] = 2117, + [2448] = 2078, [2449] = 2087, - [2450] = 2114, - [2451] = 2122, - [2452] = 2081, - [2453] = 2117, - [2454] = 2127, - [2455] = 2079, - [2456] = 2100, - [2457] = 2123, - [2458] = 2090, - [2459] = 2074, - [2460] = 1876, - [2461] = 2102, - [2462] = 1879, - [2463] = 2108, - [2464] = 2109, - [2465] = 1882, - [2466] = 1866, - [2467] = 2116, - [2468] = 1874, - [2469] = 2106, - [2470] = 2124, - [2471] = 2085, - [2472] = 1890, - [2473] = 2125, - [2474] = 2092, - [2475] = 2093, - [2476] = 1874, - [2477] = 2088, - [2478] = 2115, - [2479] = 2120, - [2480] = 2118, - [2481] = 2105, - [2482] = 2094, - [2483] = 2072, - [2484] = 2050, - [2485] = 2078, - [2486] = 2115, - [2487] = 2118, - [2488] = 2105, - [2489] = 2094, - [2490] = 2072, - [2491] = 2101, - [2492] = 2113, - [2493] = 2095, - [2494] = 2098, - [2495] = 2096, - [2496] = 2086, - [2497] = 2087, - [2498] = 1885, - [2499] = 2122, - [2500] = 2081, - [2501] = 2110, - [2502] = 2114, - [2503] = 2117, - [2504] = 1881, - [2505] = 2090, - [2506] = 2069, - [2507] = 2128, - [2508] = 1892, - [2509] = 1895, - [2510] = 1873, - [2511] = 1875, - [2512] = 2127, - [2513] = 1883, - [2514] = 2109, - [2515] = 1886, - [2516] = 2116, - [2517] = 2106, - [2518] = 2083, - [2519] = 2104, - [2520] = 2120, - [2521] = 2192, - [2522] = 2193, - [2523] = 2088, - [2524] = 2078, - [2525] = 2230, - [2526] = 2102, - [2527] = 2108, - [2528] = 2113, - [2529] = 2096, - [2530] = 2086, - [2531] = 2087, - [2532] = 2114, - [2533] = 2122, - [2534] = 2095, - [2535] = 2081, - [2536] = 2117, - [2537] = 2098, - [2538] = 2538, - [2539] = 2124, - [2540] = 2085, - [2541] = 2079, - [2542] = 2095, - [2543] = 2127, - [2544] = 2090, - [2545] = 2098, - [2546] = 2102, - [2547] = 2108, - [2548] = 2100, - [2549] = 2123, - [2550] = 1865, - [2551] = 1878, - [2552] = 2065, - [2553] = 2066, - [2554] = 2047, - [2555] = 2052, - [2556] = 2124, - [2557] = 2085, - [2558] = 2431, - [2559] = 2045, - [2560] = 2044, - [2561] = 2048, - [2562] = 2041, - [2563] = 2055, - [2564] = 2042, - [2565] = 2049, - [2566] = 2101, - [2567] = 2104, - [2568] = 2033, - [2569] = 1885, - [2570] = 2114, - [2571] = 1881, - [2572] = 2090, - [2573] = 2127, - [2574] = 1892, - [2575] = 2189, - [2576] = 2190, - [2577] = 1895, - [2578] = 1873, - [2579] = 2065, - [2580] = 2066, - [2581] = 1890, - [2582] = 1883, - [2583] = 1886, - [2584] = 2189, - [2585] = 2190, - [2586] = 2189, - [2587] = 1875, - [2588] = 2190, - [2589] = 2124, - [2590] = 2085, - [2591] = 2088, - [2592] = 1876, - [2593] = 2115, - [2594] = 2102, - [2595] = 2095, - [2596] = 2098, - [2597] = 2118, - [2598] = 2105, - [2599] = 1879, - [2600] = 1882, - [2601] = 2079, - [2602] = 2100, - [2603] = 2117, - [2604] = 2074, - [2605] = 2064, - [2606] = 1878, - [2607] = 2125, - [2608] = 2092, - [2609] = 2093, - [2610] = 2110, - [2611] = 2059, - [2612] = 2069, - [2613] = 2128, - [2614] = 2109, - [2615] = 2116, - [2616] = 2106, - [2617] = 2083, - [2618] = 2120, - [2619] = 2094, - [2620] = 2072, - [2621] = 2101, - [2622] = 1874, - [2623] = 2108, - [2624] = 2078, - [2625] = 2113, - [2626] = 2096, - [2627] = 2086, - [2628] = 2087, - [2629] = 2122, - [2630] = 2081, - [2631] = 2123, - [2632] = 2632, - [2633] = 1883, - [2634] = 2632, - [2635] = 2115, - [2636] = 1882, - [2637] = 2118, - [2638] = 2638, - [2639] = 1874, - [2640] = 2105, - [2641] = 2094, - [2642] = 1890, - [2643] = 2125, - [2644] = 2072, - [2645] = 2092, - [2646] = 2093, - [2647] = 2632, - [2648] = 2101, - [2649] = 1878, - [2650] = 2632, - [2651] = 2632, - [2652] = 2632, - [2653] = 1886, - [2654] = 2095, - [2655] = 2098, - [2656] = 2110, - [2657] = 2632, - [2658] = 2632, - [2659] = 2069, - [2660] = 2128, - [2661] = 2632, - [2662] = 1875, - [2663] = 2109, - [2664] = 2632, - [2665] = 2116, - [2666] = 2106, - [2667] = 1892, - [2668] = 2083, - [2669] = 2104, - [2670] = 2120, - [2671] = 2088, - [2672] = 2538, - [2673] = 2078, - [2674] = 2674, - [2675] = 2113, - [2676] = 2096, - [2677] = 2086, - [2678] = 2087, - [2679] = 2122, - [2680] = 2081, - [2681] = 2117, - [2682] = 2127, - [2683] = 2632, - [2684] = 2108, - [2685] = 1873, - [2686] = 2124, - [2687] = 2085, - [2688] = 2674, - [2689] = 1885, - [2690] = 1881, - [2691] = 1892, - [2692] = 2632, - [2693] = 2632, + [2450] = 2120, + [2451] = 2063, + [2452] = 2085, + [2453] = 2121, + [2454] = 2124, + [2455] = 2122, + [2456] = 2126, + [2457] = 2080, + [2458] = 2079, + [2459] = 2129, + [2460] = 2123, + [2461] = 2128, + [2462] = 2462, + [2463] = 1891, + [2464] = 2085, + [2465] = 2131, + [2466] = 2104, + [2467] = 2110, + [2468] = 1888, + [2469] = 2230, + [2470] = 2111, + [2471] = 1906, + [2472] = 2088, + [2473] = 2090, + [2474] = 2084, + [2475] = 2096, + [2476] = 2122, + [2477] = 1882, + [2478] = 2069, + [2479] = 1887, + [2480] = 2093, + [2481] = 2232, + [2482] = 2056, + [2483] = 2127, + [2484] = 2096, + [2485] = 2485, + [2486] = 1898, + [2487] = 1888, + [2488] = 2074, + [2489] = 1887, + [2490] = 2079, + [2491] = 2102, + [2492] = 2091, + [2493] = 2115, + [2494] = 1899, + [2495] = 2068, + [2496] = 2109, + [2497] = 2101, + [2498] = 2130, + [2499] = 1904, + [2500] = 1883, + [2501] = 2137, + [2502] = 2116, + [2503] = 2065, + [2504] = 1906, + [2505] = 2084, + [2506] = 2128, + [2507] = 2078, + [2508] = 1896, + [2509] = 2127, + [2510] = 2125, + [2511] = 1884, + [2512] = 2097, + [2513] = 2462, + [2514] = 2073, + [2515] = 2130, + [2516] = 2137, + [2517] = 2078, + [2518] = 1881, + [2519] = 2101, + [2520] = 2080, + [2521] = 2102, + [2522] = 2097, + [2523] = 2119, + [2524] = 1888, + [2525] = 2119, + [2526] = 2108, + [2527] = 2109, + [2528] = 2131, + [2529] = 2116, + [2530] = 2117, + [2531] = 2108, + [2532] = 1893, + [2533] = 2109, + [2534] = 2112, + [2535] = 2130, + [2536] = 2088, + [2537] = 1883, + [2538] = 2081, + [2539] = 2093, + [2540] = 1895, + [2541] = 2104, + [2542] = 2110, + [2543] = 2115, + [2544] = 1899, + [2545] = 1896, + [2546] = 1884, + [2547] = 1881, + [2548] = 2108, + [2549] = 2117, + [2550] = 2118, + [2551] = 2133, + [2552] = 2118, + [2553] = 2119, + [2554] = 2120, + [2555] = 2121, + [2556] = 2123, + [2557] = 2124, + [2558] = 2126, + [2559] = 2102, + [2560] = 2129, + [2561] = 2122, + [2562] = 2091, + [2563] = 2127, + [2564] = 2120, + [2565] = 2121, + [2566] = 2084, + [2567] = 2090, + [2568] = 2124, + [2569] = 2093, + [2570] = 1888, + [2571] = 1887, + [2572] = 1898, + [2573] = 2060, + [2574] = 2126, + [2575] = 2220, + [2576] = 2087, + [2577] = 2128, + [2578] = 2204, + [2579] = 2118, + [2580] = 2101, + [2581] = 2130, + [2582] = 2120, + [2583] = 2121, + [2584] = 2124, + [2585] = 2126, + [2586] = 2090, + [2587] = 2129, + [2588] = 1898, + [2589] = 2088, + [2590] = 2112, + [2591] = 2079, + [2592] = 2203, + [2593] = 2091, + [2594] = 2109, + [2595] = 2137, + [2596] = 2204, + [2597] = 2125, + [2598] = 2074, + [2599] = 2116, + [2600] = 2085, + [2601] = 2117, + [2602] = 2131, + [2603] = 1888, + [2604] = 2081, + [2605] = 2078, + [2606] = 1895, + [2607] = 1887, + [2608] = 2096, + [2609] = 2047, + [2610] = 2080, + [2611] = 1899, + [2612] = 2084, + [2613] = 2068, + [2614] = 1906, + [2615] = 2108, + [2616] = 2093, + [2617] = 2073, + [2618] = 1882, + [2619] = 2069, + [2620] = 1904, + [2621] = 1883, + [2622] = 1881, + [2623] = 1891, + [2624] = 2119, + [2625] = 1893, + [2626] = 2203, + [2627] = 2204, + [2628] = 2122, + [2629] = 2102, + [2630] = 2111, + [2631] = 2115, + [2632] = 2203, + [2633] = 2133, + [2634] = 2104, + [2635] = 2127, + [2636] = 2123, + [2637] = 2087, + [2638] = 2097, + [2639] = 1884, + [2640] = 1896, + [2641] = 2110, + [2642] = 2642, + [2643] = 2642, + [2644] = 2088, + [2645] = 2112, + [2646] = 2081, + [2647] = 2647, + [2648] = 1887, + [2649] = 2104, + [2650] = 2110, + [2651] = 2111, + [2652] = 2115, + [2653] = 1899, + [2654] = 1896, + [2655] = 1884, + [2656] = 1881, + [2657] = 2101, + [2658] = 2116, + [2659] = 2117, + [2660] = 2133, + [2661] = 2084, + [2662] = 2093, + [2663] = 2102, + [2664] = 2109, + [2665] = 2087, + [2666] = 2119, + [2667] = 2123, + [2668] = 2128, + [2669] = 2097, + [2670] = 2130, + [2671] = 2137, + [2672] = 2078, + [2673] = 2080, + [2674] = 2108, + [2675] = 2122, + [2676] = 2127, + [2677] = 2090, + [2678] = 2079, + [2679] = 2091, + [2680] = 2125, + [2681] = 2131, + [2682] = 1898, + [2683] = 2085, + [2684] = 1895, + [2685] = 2096, + [2686] = 1906, + [2687] = 1882, + [2688] = 1883, + [2689] = 1891, + [2690] = 1893, + [2691] = 1888, + [2692] = 2642, + [2693] = 1898, [2694] = 1895, - [2695] = 1873, - [2696] = 1874, - [2697] = 2632, - [2698] = 2674, - [2699] = 2632, - [2700] = 2700, - [2701] = 2090, - [2702] = 1885, - [2703] = 1883, - [2704] = 2632, - [2705] = 1878, - [2706] = 1886, - [2707] = 1874, - [2708] = 2632, - [2709] = 2632, - [2710] = 1895, - [2711] = 2632, - [2712] = 1874, - [2713] = 2079, - [2714] = 2100, - [2715] = 2123, - [2716] = 2074, - [2717] = 2114, - [2718] = 1876, - [2719] = 1874, - [2720] = 1879, - [2721] = 1881, - [2722] = 2632, - [2723] = 2102, - [2724] = 2724, - [2725] = 2724, - [2726] = 2726, - [2727] = 2727, - [2728] = 2728, - [2729] = 2726, - [2730] = 2724, - [2731] = 2731, - [2732] = 2726, - [2733] = 2733, + [2695] = 1906, + [2696] = 1882, + [2697] = 1883, + [2698] = 1891, + [2699] = 1893, + [2700] = 1887, + [2701] = 1888, + [2702] = 1888, + [2703] = 1888, + [2704] = 1888, + [2705] = 2642, + [2706] = 2642, + [2707] = 2438, + [2708] = 2708, + [2709] = 2118, + [2710] = 2120, + [2711] = 2121, + [2712] = 2124, + [2713] = 2126, + [2714] = 2129, + [2715] = 2642, + [2716] = 2716, + [2717] = 2642, + [2718] = 2642, + [2719] = 2642, + [2720] = 2642, + [2721] = 2642, + [2722] = 2642, + [2723] = 2642, + [2724] = 2642, + [2725] = 2642, + [2726] = 2642, + [2727] = 2642, + [2728] = 2642, + [2729] = 2642, + [2730] = 2642, + [2731] = 2716, + [2732] = 2716, + [2733] = 1904, [2734] = 2734, [2735] = 2735, [2736] = 2736, - [2737] = 2737, + [2737] = 2736, [2738] = 2738, - [2739] = 2739, - [2740] = 2740, + [2739] = 2736, + [2740] = 2738, [2741] = 2741, - [2742] = 2742, - [2743] = 2733, - [2744] = 2741, + [2742] = 2738, + [2743] = 2743, + [2744] = 2744, [2745] = 2745, - [2746] = 2740, + [2746] = 2746, [2747] = 2747, - [2748] = 2734, - [2749] = 2735, - [2750] = 2736, - [2751] = 2737, - [2752] = 2739, - [2753] = 2738, - [2754] = 2747, - [2755] = 2733, - [2756] = 2741, - [2757] = 2747, - [2758] = 2747, - [2759] = 2734, - [2760] = 2735, - [2761] = 2736, - [2762] = 2737, - [2763] = 2738, - [2764] = 2734, - [2765] = 2737, - [2766] = 2766, - [2767] = 2740, - [2768] = 2738, - [2769] = 2733, - [2770] = 2741, - [2771] = 2745, - [2772] = 2745, - [2773] = 2742, - [2774] = 2735, - [2775] = 2736, - [2776] = 2745, - [2777] = 2777, - [2778] = 2778, - [2779] = 2779, - [2780] = 2780, - [2781] = 2781, + [2748] = 2748, + [2749] = 2749, + [2750] = 2750, + [2751] = 2751, + [2752] = 2752, + [2753] = 2747, + [2754] = 2748, + [2755] = 2751, + [2756] = 2756, + [2757] = 2743, + [2758] = 2745, + [2759] = 2756, + [2760] = 2743, + [2761] = 2744, + [2762] = 2745, + [2763] = 2746, + [2764] = 2752, + [2765] = 2747, + [2766] = 2748, + [2767] = 2749, + [2768] = 2746, + [2769] = 2769, + [2770] = 2756, + [2771] = 2743, + [2772] = 2744, + [2773] = 2745, + [2774] = 2746, + [2775] = 2749, + [2776] = 2752, + [2777] = 2747, + [2778] = 2748, + [2779] = 2749, + [2780] = 2750, + [2781] = 2751, [2782] = 2782, - [2783] = 2781, - [2784] = 485, - [2785] = 2785, - [2786] = 2786, - [2787] = 2779, - [2788] = 2786, + [2783] = 2756, + [2784] = 2782, + [2785] = 2744, + [2786] = 2752, + [2787] = 486, + [2788] = 2788, [2789] = 2789, - [2790] = 2780, - [2791] = 2779, - [2792] = 488, + [2790] = 2790, + [2791] = 484, + [2792] = 2792, [2793] = 2793, - [2794] = 484, - [2795] = 2786, - [2796] = 2780, - [2797] = 2793, - [2798] = 487, - [2799] = 483, - [2800] = 2793, - [2801] = 556, - [2802] = 514, - [2803] = 515, - [2804] = 546, - [2805] = 537, - [2806] = 547, - [2807] = 548, - [2808] = 492, - [2809] = 633, - [2810] = 2810, - [2811] = 549, - [2812] = 497, - [2813] = 622, - [2814] = 624, - [2815] = 511, - [2816] = 2816, - [2817] = 493, - [2818] = 2818, - [2819] = 2818, - [2820] = 2820, + [2794] = 2788, + [2795] = 2793, + [2796] = 488, + [2797] = 2797, + [2798] = 2797, + [2799] = 2799, + [2800] = 489, + [2801] = 2801, + [2802] = 2801, + [2803] = 2801, + [2804] = 487, + [2805] = 2793, + [2806] = 2806, + [2807] = 2788, + [2808] = 2808, + [2809] = 2789, + [2810] = 2797, + [2811] = 2811, + [2812] = 518, + [2813] = 2813, + [2814] = 2814, + [2815] = 519, + [2816] = 520, + [2817] = 521, + [2818] = 522, + [2819] = 523, + [2820] = 500, [2821] = 2821, - [2822] = 2822, - [2823] = 2810, - [2824] = 2824, - [2825] = 644, - [2826] = 645, - [2827] = 536, - [2828] = 2820, - [2829] = 2821, - [2830] = 646, - [2831] = 2064, - [2832] = 2822, - [2833] = 2824, - [2834] = 2822, - [2835] = 571, - [2836] = 495, - [2837] = 498, - [2838] = 2838, - [2839] = 628, - [2840] = 2818, - [2841] = 516, - [2842] = 2820, - [2843] = 2821, - [2844] = 2824, - [2845] = 623, - [2846] = 2822, - [2847] = 2824, - [2848] = 662, - [2849] = 663, - [2850] = 664, - [2851] = 666, - [2852] = 667, - [2853] = 668, - [2854] = 669, - [2855] = 581, - [2856] = 2820, - [2857] = 583, - [2858] = 500, - [2859] = 499, - [2860] = 2821, - [2861] = 517, - [2862] = 527, - [2863] = 2059, - [2864] = 2816, - [2865] = 528, - [2866] = 529, - [2867] = 2816, - [2868] = 530, - [2869] = 595, - [2870] = 689, - [2871] = 596, - [2872] = 693, - [2873] = 2873, - [2874] = 696, - [2875] = 513, - [2876] = 558, - [2877] = 563, - [2878] = 532, - [2879] = 674, - [2880] = 685, - [2881] = 698, - [2882] = 531, - [2883] = 545, - [2884] = 491, - [2885] = 2838, - [2886] = 2818, - [2887] = 533, - [2888] = 613, + [2822] = 534, + [2823] = 535, + [2824] = 536, + [2825] = 537, + [2826] = 538, + [2827] = 539, + [2828] = 540, + [2829] = 541, + [2830] = 542, + [2831] = 543, + [2832] = 544, + [2833] = 501, + [2834] = 2834, + [2835] = 557, + [2836] = 558, + [2837] = 559, + [2838] = 560, + [2839] = 561, + [2840] = 562, + [2841] = 563, + [2842] = 564, + [2843] = 565, + [2844] = 566, + [2845] = 567, + [2846] = 568, + [2847] = 569, + [2848] = 2069, + [2849] = 570, + [2850] = 2068, + [2851] = 492, + [2852] = 2852, + [2853] = 2852, + [2854] = 583, + [2855] = 584, + [2856] = 585, + [2857] = 2857, + [2858] = 586, + [2859] = 587, + [2860] = 588, + [2861] = 589, + [2862] = 2821, + [2863] = 643, + [2864] = 590, + [2865] = 591, + [2866] = 2866, + [2867] = 2811, + [2868] = 592, + [2869] = 593, + [2870] = 2813, + [2871] = 517, + [2872] = 594, + [2873] = 595, + [2874] = 652, + [2875] = 653, + [2876] = 605, + [2877] = 606, + [2878] = 662, + [2879] = 663, + [2880] = 2852, + [2881] = 608, + [2882] = 609, + [2883] = 610, + [2884] = 611, + [2885] = 612, + [2886] = 2857, + [2887] = 613, + [2888] = 614, [2889] = 615, - [2890] = 2838, - [2891] = 653, - [2892] = 661, - [2893] = 550, - [2894] = 665, - [2895] = 670, - [2896] = 534, - [2897] = 672, - [2898] = 676, - [2899] = 680, - [2900] = 683, - [2901] = 684, - [2902] = 686, - [2903] = 687, - [2904] = 688, - [2905] = 690, - [2906] = 535, - [2907] = 691, - [2908] = 512, - [2909] = 494, - [2910] = 607, - [2911] = 501, - [2912] = 505, - [2913] = 506, + [2890] = 2857, + [2891] = 2821, + [2892] = 2866, + [2893] = 2811, + [2894] = 672, + [2895] = 673, + [2896] = 2813, + [2897] = 2814, + [2898] = 623, + [2899] = 624, + [2900] = 625, + [2901] = 678, + [2902] = 679, + [2903] = 626, + [2904] = 627, + [2905] = 2857, + [2906] = 2866, + [2907] = 631, + [2908] = 2813, + [2909] = 2814, + [2910] = 497, + [2911] = 506, + [2912] = 684, + [2913] = 685, [2914] = 507, - [2915] = 2810, - [2916] = 508, - [2917] = 496, - [2918] = 509, - [2919] = 510, - [2920] = 705, - [2921] = 681, - [2922] = 2922, - [2923] = 611, - [2924] = 634, - [2925] = 635, - [2926] = 638, - [2927] = 640, - [2928] = 627, - [2929] = 538, - [2930] = 520, - [2931] = 521, - [2932] = 618, - [2933] = 539, - [2934] = 518, - [2935] = 560, - [2936] = 561, - [2937] = 540, - [2938] = 671, - [2939] = 673, - [2940] = 675, - [2941] = 678, - [2942] = 541, - [2943] = 542, - [2944] = 682, - [2945] = 573, - [2946] = 574, - [2947] = 575, - [2948] = 576, - [2949] = 577, - [2950] = 578, - [2951] = 579, - [2952] = 580, - [2953] = 562, - [2954] = 694, - [2955] = 608, - [2956] = 610, - [2957] = 677, - [2958] = 679, - [2959] = 519, - [2960] = 2960, - [2961] = 522, - [2962] = 629, - [2963] = 2963, - [2964] = 631, - [2965] = 620, - [2966] = 585, - [2967] = 586, - [2968] = 612, - [2969] = 587, - [2970] = 588, - [2971] = 590, - [2972] = 591, - [2973] = 593, - [2974] = 594, - [2975] = 626, - [2976] = 597, - [2977] = 598, - [2978] = 2978, - [2979] = 621, - [2980] = 636, - [2981] = 523, - [2982] = 639, - [2983] = 524, - [2984] = 555, - [2985] = 2960, - [2986] = 2038, - [2987] = 559, - [2988] = 572, - [2989] = 582, - [2990] = 526, - [2991] = 584, - [2992] = 592, - [2993] = 599, - [2994] = 604, - [2995] = 619, - [2996] = 637, - [2997] = 650, - [2998] = 651, - [2999] = 641, - [3000] = 614, - [3001] = 557, - [3002] = 642, - [3003] = 648, - [3004] = 649, - [3005] = 2960, - [3006] = 564, - [3007] = 565, - [3008] = 566, - [3009] = 551, - [3010] = 625, - [3011] = 567, - [3012] = 568, - [3013] = 569, - [3014] = 570, - [3015] = 652, - [3016] = 692, - [3017] = 695, - [3018] = 697, - [3019] = 655, - [3020] = 699, - [3021] = 700, - [3022] = 701, - [3023] = 702, - [3024] = 703, - [3025] = 704, - [3026] = 502, - [3027] = 503, - [3028] = 504, - [3029] = 600, - [3030] = 601, - [3031] = 616, - [3032] = 602, - [3033] = 603, - [3034] = 605, - [3035] = 606, - [3036] = 656, - [3037] = 657, - [3038] = 2033, - [3039] = 630, - [3040] = 632, - [3041] = 658, - [3042] = 609, - [3043] = 3043, - [3044] = 543, - [3045] = 617, - [3046] = 659, - [3047] = 643, - [3048] = 660, - [3049] = 544, - [3050] = 552, - [3051] = 553, - [3052] = 554, - [3053] = 525, - [3054] = 3054, - [3055] = 711, - [3056] = 713, - [3057] = 3057, - [3058] = 715, - [3059] = 717, - [3060] = 714, - [3061] = 3054, - [3062] = 3054, - [3063] = 710, - [3064] = 3057, - [3065] = 3057, - [3066] = 3054, - [3067] = 707, - [3068] = 3057, - [3069] = 718, - [3070] = 712, + [2915] = 508, + [2916] = 2916, + [2917] = 688, + [2918] = 2866, + [2919] = 2811, + [2920] = 493, + [2921] = 494, + [2922] = 498, + [2923] = 499, + [2924] = 2834, + [2925] = 2834, + [2926] = 495, + [2927] = 699, + [2928] = 496, + [2929] = 703, + [2930] = 2814, + [2931] = 657, + [2932] = 651, + [2933] = 550, + [2934] = 571, + [2935] = 597, + [2936] = 598, + [2937] = 599, + [2938] = 600, + [2939] = 601, + [2940] = 602, + [2941] = 603, + [2942] = 604, + [2943] = 572, + [2944] = 654, + [2945] = 655, + [2946] = 656, + [2947] = 704, + [2948] = 658, + [2949] = 573, + [2950] = 659, + [2951] = 660, + [2952] = 661, + [2953] = 551, + [2954] = 574, + [2955] = 664, + [2956] = 665, + [2957] = 575, + [2958] = 576, + [2959] = 705, + [2960] = 577, + [2961] = 578, + [2962] = 633, + [2963] = 634, + [2964] = 635, + [2965] = 2965, + [2966] = 552, + [2967] = 579, + [2968] = 616, + [2969] = 580, + [2970] = 617, + [2971] = 581, + [2972] = 666, + [2973] = 618, + [2974] = 619, + [2975] = 582, + [2976] = 553, + [2977] = 667, + [2978] = 668, + [2979] = 669, + [2980] = 670, + [2981] = 671, + [2982] = 503, + [2983] = 554, + [2984] = 674, + [2985] = 620, + [2986] = 621, + [2987] = 555, + [2988] = 556, + [2989] = 622, + [2990] = 2990, + [2991] = 2991, + [2992] = 2992, + [2993] = 2965, + [2994] = 675, + [2995] = 676, + [2996] = 677, + [2997] = 528, + [2998] = 529, + [2999] = 530, + [3000] = 636, + [3001] = 637, + [3002] = 628, + [3003] = 650, + [3004] = 502, + [3005] = 638, + [3006] = 630, + [3007] = 639, + [3008] = 632, + [3009] = 524, + [3010] = 640, + [3011] = 504, + [3012] = 505, + [3013] = 680, + [3014] = 3014, + [3015] = 641, + [3016] = 642, + [3017] = 681, + [3018] = 682, + [3019] = 683, + [3020] = 531, + [3021] = 532, + [3022] = 533, + [3023] = 525, + [3024] = 526, + [3025] = 2965, + [3026] = 509, + [3027] = 686, + [3028] = 687, + [3029] = 545, + [3030] = 510, + [3031] = 689, + [3032] = 690, + [3033] = 527, + [3034] = 691, + [3035] = 692, + [3036] = 693, + [3037] = 694, + [3038] = 546, + [3039] = 547, + [3040] = 548, + [3041] = 549, + [3042] = 511, + [3043] = 2047, + [3044] = 596, + [3045] = 644, + [3046] = 697, + [3047] = 512, + [3048] = 2042, + [3049] = 645, + [3050] = 513, + [3051] = 698, + [3052] = 646, + [3053] = 647, + [3054] = 700, + [3055] = 701, + [3056] = 702, + [3057] = 648, + [3058] = 514, + [3059] = 515, + [3060] = 706, + [3061] = 516, + [3062] = 649, + [3063] = 629, + [3064] = 712, + [3065] = 3065, + [3066] = 3066, + [3067] = 3065, + [3068] = 3066, + [3069] = 729, + [3070] = 3065, [3071] = 708, - [3072] = 3072, - [3073] = 3072, - [3074] = 3074, - [3075] = 3072, - [3076] = 2104, - [3077] = 3077, - [3078] = 2059, - [3079] = 3079, - [3080] = 2093, - [3081] = 2074, + [3072] = 3066, + [3073] = 711, + [3074] = 710, + [3075] = 3066, + [3076] = 3065, + [3077] = 730, + [3078] = 720, + [3079] = 715, + [3080] = 719, + [3081] = 718, [3082] = 3082, - [3083] = 2064, - [3084] = 2083, + [3083] = 3082, + [3084] = 3082, [3085] = 3085, - [3086] = 2038, - [3087] = 2033, - [3088] = 3088, - [3089] = 2038, - [3090] = 2033, - [3091] = 2038, - [3092] = 2038, - [3093] = 2033, - [3094] = 2033, - [3095] = 1886, - [3096] = 3096, - [3097] = 2033, - [3098] = 1882, - [3099] = 3099, - [3100] = 3100, - [3101] = 3100, - [3102] = 3100, - [3103] = 2033, - [3104] = 1874, - [3105] = 1892, - [3106] = 2038, - [3107] = 1876, - [3108] = 1895, - [3109] = 1881, - [3110] = 1873, - [3111] = 1883, - [3112] = 1878, - [3113] = 1890, - [3114] = 2053, - [3115] = 1885, - [3116] = 2538, - [3117] = 1879, - [3118] = 2038, - [3119] = 3100, - [3120] = 1878, - [3121] = 1874, - [3122] = 2114, - [3123] = 2105, + [3086] = 3086, + [3087] = 3087, + [3088] = 2115, + [3089] = 2117, + [3090] = 2068, + [3091] = 3091, + [3092] = 3092, + [3093] = 2069, + [3094] = 2119, + [3095] = 2123, + [3096] = 2042, + [3097] = 2047, + [3098] = 2047, + [3099] = 2042, + [3100] = 2042, + [3101] = 3101, + [3102] = 2047, + [3103] = 2042, + [3104] = 2047, + [3105] = 2438, + [3106] = 3106, + [3107] = 1899, + [3108] = 1896, + [3109] = 1884, + [3110] = 1881, + [3111] = 2047, + [3112] = 1898, + [3113] = 1895, + [3114] = 3106, + [3115] = 1906, + [3116] = 1882, + [3117] = 1883, + [3118] = 1891, + [3119] = 1893, + [3120] = 1887, + [3121] = 1887, + [3122] = 1888, + [3123] = 1888, [3124] = 3124, - [3125] = 3096, - [3126] = 3099, - [3127] = 2090, - [3128] = 2094, - [3129] = 2072, - [3130] = 3124, - [3131] = 3131, - [3132] = 1878, - [3133] = 2118, - [3134] = 2101, - [3135] = 1874, - [3136] = 2115, - [3137] = 1876, + [3125] = 3125, + [3126] = 2047, + [3127] = 3106, + [3128] = 2064, + [3129] = 3106, + [3130] = 2042, + [3131] = 2042, + [3132] = 3132, + [3133] = 3133, + [3134] = 3134, + [3135] = 3124, + [3136] = 3125, + [3137] = 1888, [3138] = 3138, [3139] = 3139, [3140] = 3140, [3141] = 3141, [3142] = 3142, [3143] = 3143, - [3144] = 3144, + [3144] = 2118, [3145] = 3145, - [3146] = 3146, - [3147] = 3147, - [3148] = 3148, - [3149] = 2033, - [3150] = 1882, - [3151] = 1890, + [3146] = 2096, + [3147] = 2120, + [3148] = 3140, + [3149] = 2121, + [3150] = 2124, + [3151] = 2126, [3152] = 3152, [3153] = 3153, [3154] = 3154, - [3155] = 3155, - [3156] = 3138, - [3157] = 3144, - [3158] = 1879, + [3155] = 2129, + [3156] = 3152, + [3157] = 3157, + [3158] = 1887, [3159] = 3159, - [3160] = 3138, - [3161] = 3159, + [3160] = 2085, + [3161] = 3157, [3162] = 3162, - [3163] = 3144, - [3164] = 3164, - [3165] = 3165, - [3166] = 3153, - [3167] = 3167, - [3168] = 2538, + [3163] = 3163, + [3164] = 1899, + [3165] = 2042, + [3166] = 3166, + [3167] = 3132, + [3168] = 3168, [3169] = 3169, - [3170] = 2038, + [3170] = 2047, [3171] = 3171, - [3172] = 3171, - [3173] = 1879, - [3174] = 2538, - [3175] = 1882, - [3176] = 3176, + [3172] = 3172, + [3173] = 3173, + [3174] = 3138, + [3175] = 3141, + [3176] = 3166, [3177] = 3177, - [3178] = 3178, - [3179] = 2041, - [3180] = 2055, + [3178] = 3142, + [3179] = 2438, + [3180] = 3166, [3181] = 3181, - [3182] = 1890, - [3183] = 2042, - [3184] = 3177, - [3185] = 2049, - [3186] = 2050, + [3182] = 3182, + [3183] = 1896, + [3184] = 3163, + [3185] = 3163, + [3186] = 3139, [3187] = 3187, - [3188] = 3124, - [3189] = 3171, - [3190] = 2052, - [3191] = 3191, - [3192] = 3192, + [3188] = 1884, + [3189] = 3189, + [3190] = 3190, + [3191] = 3153, + [3192] = 1881, [3193] = 3193, - [3194] = 1876, - [3195] = 3195, + [3194] = 3193, + [3195] = 1899, [3196] = 3196, - [3197] = 3171, - [3198] = 3196, + [3197] = 3197, + [3198] = 3140, [3199] = 3199, - [3200] = 3191, - [3201] = 3196, - [3202] = 2538, - [3203] = 3171, - [3204] = 1890, - [3205] = 3171, - [3206] = 3171, - [3207] = 3171, - [3208] = 3171, - [3209] = 3171, - [3210] = 3171, - [3211] = 3192, - [3212] = 3212, - [3213] = 3171, - [3214] = 3214, - [3215] = 1882, - [3216] = 3187, - [3217] = 3193, - [3218] = 3195, - [3219] = 3214, - [3220] = 3181, - [3221] = 3176, - [3222] = 2048, - [3223] = 3199, - [3224] = 2044, - [3225] = 1876, - [3226] = 3196, - [3227] = 1879, - [3228] = 3212, - [3229] = 2047, - [3230] = 3230, - [3231] = 3231, - [3232] = 3230, - [3233] = 3233, - [3234] = 3154, - [3235] = 3235, - [3236] = 3236, - [3237] = 3230, - [3238] = 3238, - [3239] = 3239, - [3240] = 3231, + [3200] = 3200, + [3201] = 1896, + [3202] = 1884, + [3203] = 1881, + [3204] = 3204, + [3205] = 3199, + [3206] = 3206, + [3207] = 3197, + [3208] = 3200, + [3209] = 3200, + [3210] = 2060, + [3211] = 3196, + [3212] = 3193, + [3213] = 1881, + [3214] = 2438, + [3215] = 3200, + [3216] = 3193, + [3217] = 3204, + [3218] = 3218, + [3219] = 3193, + [3220] = 3193, + [3221] = 3193, + [3222] = 3193, + [3223] = 3193, + [3224] = 3193, + [3225] = 3193, + [3226] = 3206, + [3227] = 1899, + [3228] = 3193, + [3229] = 1896, + [3230] = 2054, + [3231] = 2050, + [3232] = 2049, + [3233] = 2055, + [3234] = 2059, + [3235] = 2062, + [3236] = 2063, + [3237] = 1884, + [3238] = 2438, + [3239] = 2056, + [3240] = 3240, [3241] = 3241, [3242] = 3242, [3243] = 3243, - [3244] = 3231, + [3244] = 3244, [3245] = 3245, - [3246] = 3241, - [3247] = 2053, - [3248] = 3231, + [3246] = 3246, + [3247] = 3247, + [3248] = 3248, [3249] = 3249, - [3250] = 3236, - [3251] = 3230, - [3252] = 3236, - [3253] = 3239, - [3254] = 3241, - [3255] = 3239, - [3256] = 3242, - [3257] = 3243, - [3258] = 3236, - [3259] = 3230, - [3260] = 3241, - [3261] = 3236, - [3262] = 3230, + [3250] = 3250, + [3251] = 3251, + [3252] = 3252, + [3253] = 3253, + [3254] = 3254, + [3255] = 3255, + [3256] = 3256, + [3257] = 3257, + [3258] = 3169, + [3259] = 3259, + [3260] = 3260, + [3261] = 3261, + [3262] = 3240, [3263] = 3263, - [3264] = 3241, + [3264] = 3264, [3265] = 3265, - [3266] = 3236, - [3267] = 3230, - [3268] = 3241, + [3266] = 3266, + [3267] = 3267, + [3268] = 3268, [3269] = 3269, - [3270] = 3236, - [3271] = 3230, - [3272] = 3241, + [3270] = 3270, + [3271] = 3271, + [3272] = 3248, [3273] = 3273, - [3274] = 3230, + [3274] = 3274, [3275] = 3275, - [3276] = 3235, - [3277] = 3230, - [3278] = 3148, - [3279] = 3230, - [3280] = 3242, - [3281] = 3236, - [3282] = 3230, - [3283] = 3230, - [3284] = 3230, - [3285] = 3230, - [3286] = 3230, - [3287] = 3230, - [3288] = 3230, - [3289] = 3230, - [3290] = 3230, - [3291] = 3291, - [3292] = 3231, - [3293] = 3239, - [3294] = 3243, - [3295] = 3242, - [3296] = 3265, - [3297] = 3297, - [3298] = 3273, - [3299] = 3299, - [3300] = 3275, - [3301] = 3147, - [3302] = 3239, - [3303] = 3231, - [3304] = 3242, - [3305] = 3265, + [3276] = 3261, + [3277] = 3240, + [3278] = 3278, + [3279] = 3279, + [3280] = 3280, + [3281] = 3281, + [3282] = 3282, + [3283] = 3248, + [3284] = 3273, + [3285] = 3261, + [3286] = 3240, + [3287] = 3281, + [3288] = 3279, + [3289] = 3289, + [3290] = 3281, + [3291] = 3182, + [3292] = 3273, + [3293] = 3293, + [3294] = 3248, + [3295] = 3273, + [3296] = 3240, + [3297] = 3279, + [3298] = 3281, + [3299] = 3248, + [3300] = 3273, + [3301] = 3301, + [3302] = 3248, + [3303] = 3273, + [3304] = 3304, + [3305] = 3248, [3306] = 3273, - [3307] = 3275, - [3308] = 3241, - [3309] = 3242, - [3310] = 3291, - [3311] = 3148, - [3312] = 3312, - [3313] = 3243, - [3314] = 3236, - [3315] = 3315, - [3316] = 3316, - [3317] = 3317, - [3318] = 3318, - [3319] = 3319, - [3320] = 3320, - [3321] = 3321, - [3322] = 3322, - [3323] = 3323, - [3324] = 3324, - [3325] = 2053, - [3326] = 3326, + [3307] = 3248, + [3308] = 3273, + [3309] = 3240, + [3310] = 3248, + [3311] = 3273, + [3312] = 3172, + [3313] = 3273, + [3314] = 3314, + [3315] = 3273, + [3316] = 3255, + [3317] = 3273, + [3318] = 3273, + [3319] = 3273, + [3320] = 3273, + [3321] = 3273, + [3322] = 3273, + [3323] = 3273, + [3324] = 3273, + [3325] = 3275, + [3326] = 3261, [3327] = 3327, [3328] = 3328, - [3329] = 3329, - [3330] = 3330, - [3331] = 3178, + [3329] = 3279, + [3330] = 3182, + [3331] = 3251, [3332] = 3332, - [3333] = 3333, - [3334] = 3334, - [3335] = 3335, - [3336] = 3333, + [3333] = 3264, + [3334] = 3332, + [3335] = 3279, + [3336] = 3279, [3337] = 3337, - [3338] = 3321, - [3339] = 3312, - [3340] = 3178, - [3341] = 2053, - [3342] = 2053, - [3343] = 3124, - [3344] = 3344, - [3345] = 3345, - [3346] = 3345, - [3347] = 3347, + [3338] = 3251, + [3339] = 3332, + [3340] = 3264, + [3341] = 3273, + [3342] = 3342, + [3343] = 2064, + [3344] = 3261, + [3345] = 3218, + [3346] = 3327, + [3347] = 3242, [3348] = 3348, - [3349] = 3349, - [3350] = 3350, - [3351] = 3291, - [3352] = 3326, - [3353] = 3353, - [3354] = 3349, + [3349] = 3140, + [3350] = 3218, + [3351] = 3351, + [3352] = 3352, + [3353] = 3351, + [3354] = 3259, [3355] = 3355, [3356] = 3356, - [3357] = 3357, - [3358] = 3358, - [3359] = 3350, - [3360] = 3360, - [3361] = 3361, - [3362] = 3344, - [3363] = 3363, - [3364] = 3364, + [3357] = 3241, + [3358] = 3243, + [3359] = 3274, + [3360] = 2064, + [3361] = 3355, + [3362] = 3263, + [3363] = 3254, + [3364] = 3244, [3365] = 3365, - [3366] = 3366, + [3366] = 3289, [3367] = 3367, - [3368] = 3368, - [3369] = 3369, - [3370] = 3332, - [3371] = 3371, - [3372] = 3372, - [3373] = 3361, - [3374] = 3360, - [3375] = 3355, - [3376] = 3326, - [3377] = 3356, - [3378] = 3332, - [3379] = 2053, - [3380] = 3353, - [3381] = 3367, - [3382] = 3372, - [3383] = 3371, - [3384] = 3384, - [3385] = 3349, + [3368] = 3367, + [3369] = 3260, + [3370] = 3293, + [3371] = 2064, + [3372] = 2064, + [3373] = 3278, + [3374] = 3374, + [3375] = 3375, + [3376] = 3376, + [3377] = 3377, + [3378] = 3377, + [3379] = 3379, + [3380] = 3380, + [3381] = 3380, + [3382] = 3382, + [3383] = 3383, + [3384] = 3348, + [3385] = 3365, [3386] = 3386, [3387] = 3387, - [3388] = 3386, - [3389] = 3364, + [3388] = 3388, + [3389] = 3352, [3390] = 3390, - [3391] = 3391, - [3392] = 3387, + [3391] = 3376, + [3392] = 3365, [3393] = 3393, - [3394] = 3363, - [3395] = 2053, - [3396] = 3396, - [3397] = 3390, - [3398] = 3357, - [3399] = 3358, - [3400] = 3400, - [3401] = 3344, - [3402] = 3393, - [3403] = 3366, - [3404] = 3148, - [3405] = 3405, - [3406] = 3400, - [3407] = 3407, - [3408] = 3357, - [3409] = 3409, - [3410] = 3321, + [3394] = 3352, + [3395] = 3374, + [3396] = 2064, + [3397] = 3397, + [3398] = 3388, + [3399] = 3393, + [3400] = 3348, + [3401] = 3383, + [3402] = 3402, + [3403] = 3374, + [3404] = 3275, + [3405] = 2064, + [3406] = 3406, + [3407] = 3393, + [3408] = 3408, + [3409] = 3367, + [3410] = 3379, [3411] = 3411, - [3412] = 3412, - [3413] = 3411, - [3414] = 2093, - [3415] = 3333, - [3416] = 2104, - [3417] = 2083, - [3418] = 3384, - [3419] = 3419, - [3420] = 3420, + [3412] = 3386, + [3413] = 3413, + [3414] = 3414, + [3415] = 3415, + [3416] = 3416, + [3417] = 3417, + [3418] = 3408, + [3419] = 3417, + [3420] = 3351, [3421] = 3421, - [3422] = 3409, - [3423] = 3345, - [3424] = 3412, - [3425] = 3396, - [3426] = 3344, - [3427] = 3420, - [3428] = 3428, - [3429] = 2074, - [3430] = 3430, - [3431] = 3431, - [3432] = 3432, - [3433] = 3368, - [3434] = 3326, - [3435] = 3407, - [3436] = 3365, - [3437] = 3369, - [3438] = 3405, - [3439] = 3332, - [3440] = 3419, - [3441] = 3441, - [3442] = 3428, - [3443] = 3407, - [3444] = 3326, - [3445] = 3344, - [3446] = 3349, - [3447] = 3447, - [3448] = 3448, - [3449] = 3432, - [3450] = 3431, - [3451] = 2072, + [3422] = 3374, + [3423] = 2117, + [3424] = 3424, + [3425] = 3425, + [3426] = 3413, + [3427] = 3424, + [3428] = 3182, + [3429] = 3421, + [3430] = 3397, + [3431] = 3387, + [3432] = 3355, + [3433] = 3348, + [3434] = 3382, + [3435] = 3365, + [3436] = 3415, + [3437] = 3437, + [3438] = 3416, + [3439] = 3439, + [3440] = 2119, + [3441] = 3402, + [3442] = 2115, + [3443] = 2123, + [3444] = 3414, + [3445] = 3275, + [3446] = 3446, + [3447] = 2064, + [3448] = 3439, + [3449] = 3437, + [3450] = 3352, + [3451] = 3451, [3452] = 3452, - [3453] = 3430, - [3454] = 2094, - [3455] = 3409, + [3453] = 3413, + [3454] = 3417, + [3455] = 3455, [3456] = 3456, [3457] = 3457, - [3458] = 3420, - [3459] = 3360, - [3460] = 3428, - [3461] = 3353, - [3462] = 3462, - [3463] = 3463, + [3458] = 3458, + [3459] = 3425, + [3460] = 3352, + [3461] = 3461, + [3462] = 3365, + [3463] = 3374, [3464] = 3464, - [3465] = 3465, - [3466] = 3432, + [3465] = 3348, + [3466] = 3466, [3467] = 3467, - [3468] = 2115, - [3469] = 2101, - [3470] = 3470, - [3471] = 3349, - [3472] = 3447, + [3468] = 3414, + [3469] = 3469, + [3470] = 3218, + [3471] = 3411, + [3472] = 3388, [3473] = 3473, - [3474] = 3474, + [3474] = 3461, [3475] = 3475, - [3476] = 3457, - [3477] = 3431, - [3478] = 2118, - [3479] = 3479, - [3480] = 3344, - [3481] = 3371, - [3482] = 3482, - [3483] = 3291, - [3484] = 3364, - [3485] = 3326, - [3486] = 3363, + [3476] = 2118, + [3477] = 3376, + [3478] = 3439, + [3479] = 2129, + [3480] = 3377, + [3481] = 3411, + [3482] = 3461, + [3483] = 3365, + [3484] = 3374, + [3485] = 3464, + [3486] = 3348, [3487] = 3487, - [3488] = 3430, - [3489] = 3178, + [3488] = 3424, + [3489] = 3489, [3490] = 3490, - [3491] = 3332, + [3491] = 3491, [3492] = 3492, [3493] = 3493, - [3494] = 3332, + [3494] = 3494, [3495] = 3495, - [3496] = 3496, - [3497] = 3497, - [3498] = 3498, - [3499] = 2053, - [3500] = 3441, + [3496] = 3383, + [3497] = 2126, + [3498] = 3380, + [3499] = 3464, + [3500] = 3500, [3501] = 3501, [3502] = 3502, - [3503] = 3457, - [3504] = 2105, - [3505] = 3447, - [3506] = 3462, - [3507] = 3441, - [3508] = 3508, - [3509] = 3509, - [3510] = 3510, + [3503] = 3503, + [3504] = 2120, + [3505] = 2121, + [3506] = 2124, + [3507] = 3507, + [3508] = 3437, + [3509] = 3425, + [3510] = 3466, [3511] = 3511, [3512] = 3512, [3513] = 3513, [3514] = 3514, [3515] = 3515, [3516] = 3516, - [3517] = 3493, - [3518] = 3465, - [3519] = 3482, - [3520] = 3508, - [3521] = 3497, - [3522] = 3502, - [3523] = 3501, - [3524] = 3474, - [3525] = 3525, - [3526] = 3405, - [3527] = 3527, - [3528] = 3516, - [3529] = 3493, - [3530] = 3462, - [3531] = 3465, + [3517] = 3517, + [3518] = 3437, + [3519] = 3367, + [3520] = 3501, + [3521] = 3411, + [3522] = 3487, + [3523] = 3489, + [3524] = 3490, + [3525] = 3393, + [3526] = 3492, + [3527] = 3491, + [3528] = 3493, + [3529] = 3494, + [3530] = 3530, + [3531] = 3531, [3532] = 3532, [3533] = 3533, - [3534] = 3534, - [3535] = 3535, - [3536] = 3536, - [3537] = 3537, - [3538] = 3509, - [3539] = 3539, - [3540] = 3419, - [3541] = 3541, - [3542] = 3441, - [3543] = 3321, - [3544] = 3464, - [3545] = 3333, - [3546] = 3430, - [3547] = 3452, - [3548] = 3345, - [3549] = 3482, - [3550] = 3550, - [3551] = 3508, - [3552] = 3552, - [3553] = 3497, - [3554] = 3431, - [3555] = 3479, - [3556] = 3357, - [3557] = 3495, - [3558] = 3473, - [3559] = 3448, - [3560] = 3550, - [3561] = 3552, - [3562] = 3490, - [3563] = 3470, - [3564] = 3432, - [3565] = 3510, - [3566] = 3467, - [3567] = 3567, - [3568] = 3567, - [3569] = 3498, - [3570] = 3456, - [3571] = 3492, + [3534] = 3452, + [3535] = 3455, + [3536] = 3439, + [3537] = 3456, + [3538] = 3457, + [3539] = 3415, + [3540] = 3458, + [3541] = 3451, + [3542] = 3500, + [3543] = 3457, + [3544] = 3502, + [3545] = 3503, + [3546] = 3514, + [3547] = 3515, + [3548] = 3516, + [3549] = 3517, + [3550] = 3446, + [3551] = 3511, + [3552] = 3416, + [3553] = 3553, + [3554] = 3501, + [3555] = 3555, + [3556] = 3556, + [3557] = 3557, + [3558] = 3558, + [3559] = 3559, + [3560] = 3560, + [3561] = 3561, + [3562] = 3513, + [3563] = 3467, + [3564] = 3473, + [3565] = 3421, + [3566] = 3566, + [3567] = 3492, + [3568] = 3469, + [3569] = 3512, + [3570] = 3553, + [3571] = 3571, [3572] = 3572, - [3573] = 3496, - [3574] = 3572, - [3575] = 3502, - [3576] = 3501, - [3577] = 3464, - [3578] = 3452, - [3579] = 3512, - [3580] = 3513, - [3581] = 3514, - [3582] = 3515, - [3583] = 3412, - [3584] = 3479, - [3585] = 3495, - [3586] = 3473, - [3587] = 3448, - [3588] = 3490, - [3589] = 3470, - [3590] = 3487, - [3591] = 3467, - [3592] = 3525, - [3593] = 3498, - [3594] = 3456, - [3595] = 3492, - [3596] = 3496, - [3597] = 3527, - [3598] = 3525, - [3599] = 3474, - [3600] = 3533, - [3601] = 3534, - [3602] = 3536, - [3603] = 3537, - [3604] = 3604, - [3605] = 3525, - [3606] = 3606, - [3607] = 3607, - [3608] = 3525, - [3609] = 3525, - [3610] = 3535, - [3611] = 3525, - [3612] = 3525, - [3613] = 3604, - [3614] = 3606, - [3615] = 3607, - [3616] = 3539, - [3617] = 3487, - [3618] = 3474, - [3619] = 3409, - [3620] = 3465, - [3621] = 3431, - [3622] = 3622, - [3623] = 3623, - [3624] = 3407, - [3625] = 3482, - [3626] = 3432, - [3627] = 3508, - [3628] = 3497, + [3573] = 3469, + [3574] = 3475, + [3575] = 3575, + [3576] = 3351, + [3577] = 3572, + [3578] = 3425, + [3579] = 3571, + [3580] = 3530, + [3581] = 3466, + [3582] = 3487, + [3583] = 3491, + [3584] = 3475, + [3585] = 3585, + [3586] = 3493, + [3587] = 3556, + [3588] = 3557, + [3589] = 3494, + [3590] = 3531, + [3591] = 3559, + [3592] = 3560, + [3593] = 3452, + [3594] = 3555, + [3595] = 3455, + [3596] = 3456, + [3597] = 3458, + [3598] = 3355, + [3599] = 3500, + [3600] = 3502, + [3601] = 3503, + [3602] = 3532, + [3603] = 3446, + [3604] = 3533, + [3605] = 3511, + [3606] = 3451, + [3607] = 3561, + [3608] = 3467, + [3609] = 3511, + [3610] = 3610, + [3611] = 3511, + [3612] = 3473, + [3613] = 3511, + [3614] = 3511, + [3615] = 3511, + [3616] = 3575, + [3617] = 3489, + [3618] = 3490, + [3619] = 3610, + [3620] = 3455, + [3621] = 3621, + [3622] = 3490, + [3623] = 3425, + [3624] = 3624, + [3625] = 3625, + [3626] = 3626, + [3627] = 3411, + [3628] = 3492, [3629] = 3629, - [3630] = 3630, - [3631] = 3631, - [3632] = 3502, - [3633] = 3633, - [3634] = 3428, - [3635] = 3501, - [3636] = 3516, - [3637] = 3629, - [3638] = 3630, - [3639] = 3631, - [3640] = 3633, - [3641] = 3629, - [3642] = 3630, - [3643] = 3631, - [3644] = 3633, - [3645] = 3629, - [3646] = 3630, - [3647] = 3631, - [3648] = 3633, - [3649] = 3629, - [3650] = 3630, - [3651] = 3631, - [3652] = 3633, - [3653] = 3629, - [3654] = 3630, - [3655] = 3633, - [3656] = 3656, - [3657] = 3629, - [3658] = 3630, - [3659] = 3659, - [3660] = 3629, - [3661] = 3661, - [3662] = 3630, - [3663] = 3629, - [3664] = 3631, - [3665] = 3630, - [3666] = 3493, - [3667] = 3631, - [3668] = 3420, - [3669] = 3441, - [3670] = 3629, - [3671] = 3659, - [3672] = 3630, - [3673] = 3430, - [3674] = 3674, - [3675] = 3629, - [3676] = 3633, - [3677] = 3677, - [3678] = 3623, - [3679] = 3659, - [3680] = 3631, - [3681] = 3441, - [3682] = 3431, - [3683] = 3464, - [3684] = 3452, - [3685] = 3659, - [3686] = 3430, - [3687] = 3623, - [3688] = 3659, - [3689] = 3479, - [3690] = 3495, - [3691] = 3659, - [3692] = 3674, - [3693] = 3473, - [3694] = 3448, - [3695] = 3659, - [3696] = 3432, - [3697] = 3659, - [3698] = 3490, - [3699] = 3470, - [3700] = 3487, - [3701] = 3467, - [3702] = 3498, + [3630] = 3439, + [3631] = 3561, + [3632] = 3632, + [3633] = 3629, + [3634] = 3467, + [3635] = 3414, + [3636] = 3636, + [3637] = 3637, + [3638] = 3451, + [3639] = 3626, + [3640] = 3640, + [3641] = 3641, + [3642] = 3417, + [3643] = 3632, + [3644] = 3637, + [3645] = 3640, + [3646] = 3624, + [3647] = 3626, + [3648] = 3632, + [3649] = 3439, + [3650] = 3637, + [3651] = 3637, + [3652] = 3640, + [3653] = 3626, + [3654] = 3457, + [3655] = 3437, + [3656] = 3632, + [3657] = 3473, + [3658] = 3637, + [3659] = 3640, + [3660] = 3640, + [3661] = 3626, + [3662] = 3425, + [3663] = 3632, + [3664] = 3637, + [3665] = 3640, + [3666] = 3626, + [3667] = 3413, + [3668] = 3437, + [3669] = 3637, + [3670] = 3640, + [3671] = 3501, + [3672] = 3626, + [3673] = 3632, + [3674] = 3637, + [3675] = 3632, + [3676] = 3637, + [3677] = 3424, + [3678] = 3632, + [3679] = 3411, + [3680] = 3637, + [3681] = 3626, + [3682] = 3489, + [3683] = 3683, + [3684] = 3632, + [3685] = 3636, + [3686] = 3636, + [3687] = 3469, + [3688] = 3475, + [3689] = 3636, + [3690] = 3632, + [3691] = 3636, + [3692] = 3636, + [3693] = 3624, + [3694] = 3636, + [3695] = 3636, + [3696] = 3637, + [3697] = 3487, + [3698] = 3491, + [3699] = 3493, + [3700] = 3494, + [3701] = 3452, + [3702] = 3629, [3703] = 3456, - [3704] = 3492, - [3705] = 3496, - [3706] = 3633, - [3707] = 3674, - [3708] = 3630, - [3709] = 3709, - [3710] = 3467, - [3711] = 3511, - [3712] = 3474, - [3713] = 3464, - [3714] = 3473, - [3715] = 3498, - [3716] = 3464, - [3717] = 3717, - [3718] = 3456, - [3719] = 3452, - [3720] = 3448, - [3721] = 3492, - [3722] = 3452, - [3723] = 3541, - [3724] = 3360, - [3725] = 3462, - [3726] = 2101, - [3727] = 3493, - [3728] = 3532, - [3729] = 3465, - [3730] = 2124, - [3731] = 3731, - [3732] = 2081, - [3733] = 3363, - [3734] = 3502, - [3735] = 3364, - [3736] = 3496, - [3737] = 3498, - [3738] = 3495, - [3739] = 3456, - [3740] = 3492, - [3741] = 3532, - [3742] = 3493, - [3743] = 3371, - [3744] = 3412, - [3745] = 3482, - [3746] = 3482, - [3747] = 3508, - [3748] = 3748, - [3749] = 3541, - [3750] = 3497, - [3751] = 3751, - [3752] = 3501, - [3753] = 3479, - [3754] = 3465, - [3755] = 3508, - [3756] = 2102, - [3757] = 3490, - [3758] = 3419, - [3759] = 3473, - [3760] = 3497, - [3761] = 3502, - [3762] = 3470, - [3763] = 2085, - [3764] = 3490, - [3765] = 3501, - [3766] = 3470, - [3767] = 3487, - [3768] = 3487, - [3769] = 3448, - [3770] = 3467, + [3704] = 3458, + [3705] = 3500, + [3706] = 3502, + [3707] = 3503, + [3708] = 3446, + [3709] = 3640, + [3710] = 3632, + [3711] = 3458, + [3712] = 3467, + [3713] = 3558, + [3714] = 3714, + [3715] = 3473, + [3716] = 3492, + [3717] = 3415, + [3718] = 3502, + [3719] = 2091, + [3720] = 3451, + [3721] = 2125, + [3722] = 3501, + [3723] = 3487, + [3724] = 3566, + [3725] = 3475, + [3726] = 3494, + [3727] = 3489, + [3728] = 3457, + [3729] = 3490, + [3730] = 3383, + [3731] = 3503, + [3732] = 3732, + [3733] = 2122, + [3734] = 3734, + [3735] = 2131, + [3736] = 3489, + [3737] = 3734, + [3738] = 3421, + [3739] = 2129, + [3740] = 3558, + [3741] = 3452, + [3742] = 3380, + [3743] = 3490, + [3744] = 2079, + [3745] = 2127, + [3746] = 3446, + [3747] = 3456, + [3748] = 3469, + [3749] = 3500, + [3750] = 3585, + [3751] = 3469, + [3752] = 3491, + [3753] = 3475, + [3754] = 3452, + [3755] = 3416, + [3756] = 3455, + [3757] = 3502, + [3758] = 3758, + [3759] = 3492, + [3760] = 3377, + [3761] = 3455, + [3762] = 3458, + [3763] = 3473, + [3764] = 3467, + [3765] = 3376, + [3766] = 3456, + [3767] = 3466, + [3768] = 3451, + [3769] = 3388, + [3770] = 3770, [3771] = 3771, - [3772] = 3495, - [3773] = 3511, - [3774] = 3496, - [3775] = 2108, - [3776] = 3405, - [3777] = 3479, - [3778] = 3748, - [3779] = 3474, - [3780] = 3353, - [3781] = 2115, - [3782] = 2118, - [3783] = 2105, - [3784] = 2094, - [3785] = 2072, - [3786] = 2117, - [3787] = 2108, - [3788] = 3788, + [3772] = 3503, + [3773] = 3487, + [3774] = 3457, + [3775] = 3501, + [3776] = 3585, + [3777] = 3491, + [3778] = 3493, + [3779] = 3493, + [3780] = 3494, + [3781] = 3566, + [3782] = 3446, + [3783] = 2118, + [3784] = 2120, + [3785] = 2121, + [3786] = 2124, + [3787] = 2126, + [3788] = 3500, [3789] = 3789, - [3790] = 2072, - [3791] = 3791, - [3792] = 3792, - [3793] = 3791, - [3794] = 3794, - [3795] = 2115, - [3796] = 2101, - [3797] = 2118, + [3790] = 3790, + [3791] = 2120, + [3792] = 2121, + [3793] = 2124, + [3794] = 3789, + [3795] = 3795, + [3796] = 3585, + [3797] = 3797, [3798] = 3798, [3799] = 3799, - [3800] = 3800, - [3801] = 2105, - [3802] = 2094, - [3803] = 3789, + [3800] = 3798, + [3801] = 3799, + [3802] = 2122, + [3803] = 3803, [3804] = 3804, - [3805] = 3805, - [3806] = 3806, - [3807] = 3807, - [3808] = 3806, - [3809] = 3809, - [3810] = 3516, - [3811] = 3788, - [3812] = 3791, - [3813] = 3792, - [3814] = 3541, - [3815] = 2081, - [3816] = 2117, - [3817] = 2072, - [3818] = 3798, - [3819] = 3511, - [3820] = 3820, - [3821] = 3820, - [3822] = 3799, - [3823] = 2102, - [3824] = 3532, - [3825] = 3804, - [3826] = 3805, - [3827] = 2124, - [3828] = 2085, - [3829] = 3829, - [3830] = 3807, - [3831] = 3751, - [3832] = 3792, - [3833] = 3804, - [3834] = 3805, - [3835] = 2115, - [3836] = 2118, - [3837] = 2105, - [3838] = 2094, - [3839] = 2101, - [3840] = 2072, - [3841] = 3798, - [3842] = 3806, - [3843] = 3829, - [3844] = 2101, - [3845] = 3807, - [3846] = 2074, - [3847] = 3788, - [3848] = 2093, - [3849] = 3799, - [3850] = 3751, - [3851] = 2115, - [3852] = 3809, - [3853] = 2115, - [3854] = 2083, - [3855] = 2118, - [3856] = 2105, - [3857] = 2104, - [3858] = 2094, - [3859] = 2118, - [3860] = 2072, - [3861] = 3861, - [3862] = 2101, - [3863] = 2105, - [3864] = 3809, + [3805] = 2126, + [3806] = 2127, + [3807] = 2079, + [3808] = 2091, + [3809] = 2125, + [3810] = 3795, + [3811] = 2131, + [3812] = 3804, + [3813] = 3813, + [3814] = 3790, + [3815] = 2129, + [3816] = 2118, + [3817] = 3817, + [3818] = 3813, + [3819] = 3817, + [3820] = 3790, + [3821] = 3797, + [3822] = 3822, + [3823] = 3823, + [3824] = 2120, + [3825] = 2115, + [3826] = 3714, + [3827] = 3566, + [3828] = 3828, + [3829] = 3823, + [3830] = 2117, + [3831] = 3822, + [3832] = 3832, + [3833] = 3714, + [3834] = 3797, + [3835] = 2118, + [3836] = 2121, + [3837] = 2119, + [3838] = 2120, + [3839] = 2121, + [3840] = 2123, + [3841] = 2124, + [3842] = 3798, + [3843] = 3799, + [3844] = 3789, + [3845] = 2124, + [3846] = 2126, + [3847] = 3561, + [3848] = 2118, + [3849] = 3849, + [3850] = 3832, + [3851] = 3817, + [3852] = 3822, + [3853] = 2120, + [3854] = 2126, + [3855] = 3855, + [3856] = 2121, + [3857] = 2129, + [3858] = 2124, + [3859] = 2129, + [3860] = 3860, + [3861] = 3803, + [3862] = 2129, + [3863] = 3828, + [3864] = 3558, [3865] = 3865, - [3866] = 3794, - [3867] = 2094, - [3868] = 3789, - [3869] = 3869, - [3870] = 3870, - [3871] = 2094, - [3872] = 3872, - [3873] = 3873, - [3874] = 3874, - [3875] = 2081, + [3866] = 3832, + [3867] = 3865, + [3868] = 2126, + [3869] = 3795, + [3870] = 3813, + [3871] = 2118, + [3872] = 3865, + [3873] = 3860, + [3874] = 2120, + [3875] = 3875, [3876] = 3876, - [3877] = 2117, - [3878] = 2102, - [3879] = 3879, + [3877] = 3877, + [3878] = 3875, + [3879] = 3875, [3880] = 3880, - [3881] = 3876, - [3882] = 2115, - [3883] = 3883, - [3884] = 2118, - [3885] = 2105, - [3886] = 2094, - [3887] = 3800, - [3888] = 3888, - [3889] = 2108, + [3881] = 3875, + [3882] = 3771, + [3883] = 2091, + [3884] = 3875, + [3885] = 3885, + [3886] = 3886, + [3887] = 2126, + [3888] = 2118, + [3889] = 3889, [3890] = 3890, - [3891] = 3869, - [3892] = 3709, + [3891] = 3891, + [3892] = 3892, [3893] = 3893, [3894] = 3894, - [3895] = 3873, - [3896] = 3896, - [3897] = 2072, - [3898] = 3898, - [3899] = 3890, - [3900] = 2124, - [3901] = 2072, - [3902] = 2085, - [3903] = 3894, + [3895] = 3895, + [3896] = 3891, + [3897] = 3897, + [3898] = 2125, + [3899] = 2131, + [3900] = 2121, + [3901] = 3901, + [3902] = 3885, + [3903] = 2124, [3904] = 3904, - [3905] = 3905, - [3906] = 3893, - [3907] = 2101, - [3908] = 3861, - [3909] = 2115, - [3910] = 3910, + [3905] = 2121, + [3906] = 3904, + [3907] = 3895, + [3908] = 2122, + [3909] = 3909, + [3910] = 2127, [3911] = 3911, - [3912] = 3876, - [3913] = 3894, - [3914] = 3914, - [3915] = 3894, - [3916] = 3874, - [3917] = 3894, - [3918] = 3890, - [3919] = 3919, - [3920] = 3872, - [3921] = 3921, - [3922] = 3922, - [3923] = 3923, - [3924] = 3904, - [3925] = 3894, - [3926] = 3894, - [3927] = 3894, - [3928] = 3873, - [3929] = 3894, - [3930] = 3894, - [3931] = 3931, - [3932] = 3905, - [3933] = 2101, - [3934] = 3861, - [3935] = 3935, - [3936] = 3872, - [3937] = 3898, - [3938] = 3880, - [3939] = 3931, - [3940] = 3869, - [3941] = 3861, - [3942] = 3894, - [3943] = 3923, - [3944] = 3910, - [3945] = 3923, - [3946] = 3751, - [3947] = 3947, - [3948] = 3948, - [3949] = 3904, - [3950] = 3905, - [3951] = 3951, - [3952] = 3952, - [3953] = 3931, - [3954] = 3893, - [3955] = 3911, - [3956] = 3910, - [3957] = 3957, - [3958] = 3911, - [3959] = 3959, - [3960] = 3896, - [3961] = 2118, - [3962] = 2115, - [3963] = 2118, - [3964] = 2105, - [3965] = 2094, - [3966] = 2072, - [3967] = 2101, - [3968] = 3874, - [3969] = 2105, - [3970] = 3894, - [3971] = 3771, + [3912] = 3880, + [3913] = 3880, + [3914] = 3875, + [3915] = 3915, + [3916] = 2120, + [3917] = 3917, + [3918] = 3875, + [3919] = 3855, + [3920] = 3714, + [3921] = 3893, + [3922] = 3890, + [3923] = 3901, + [3924] = 3911, + [3925] = 3885, + [3926] = 3895, + [3927] = 3897, + [3928] = 3928, + [3929] = 2124, + [3930] = 3875, + [3931] = 3911, + [3932] = 3889, + [3933] = 3933, + [3934] = 3875, + [3935] = 3933, + [3936] = 3894, + [3937] = 2129, + [3938] = 3860, + [3939] = 3928, + [3940] = 3875, + [3941] = 3941, + [3942] = 3917, + [3943] = 3889, + [3944] = 3944, + [3945] = 3893, + [3946] = 3946, + [3947] = 2118, + [3948] = 2120, + [3949] = 2121, + [3950] = 2124, + [3951] = 2126, + [3952] = 2129, + [3953] = 3915, + [3954] = 3954, + [3955] = 3955, + [3956] = 3933, + [3957] = 2129, + [3958] = 2126, + [3959] = 3897, + [3960] = 3875, + [3961] = 3860, + [3962] = 2118, + [3963] = 3901, + [3964] = 3964, + [3965] = 3915, + [3966] = 2079, + [3967] = 3875, + [3968] = 3928, + [3969] = 3891, + [3970] = 3970, + [3971] = 3917, [3972] = 3972, [3973] = 3973, [3974] = 3974, [3975] = 3975, - [3976] = 3976, + [3976] = 3758, [3977] = 3977, [3978] = 3978, [3979] = 3979, @@ -8288,672 +8299,672 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3981] = 3981, [3982] = 3982, [3983] = 3983, - [3984] = 3972, + [3984] = 3984, [3985] = 3985, - [3986] = 3771, - [3987] = 3987, - [3988] = 3988, - [3989] = 3989, - [3990] = 3976, - [3991] = 3991, - [3992] = 3992, + [3986] = 3986, + [3987] = 3770, + [3988] = 3979, + [3989] = 3981, + [3990] = 3982, + [3991] = 3983, + [3992] = 3986, [3993] = 3993, - [3994] = 3974, - [3995] = 3973, - [3996] = 3972, + [3994] = 3994, + [3995] = 3995, + [3996] = 3996, [3997] = 3997, [3998] = 3998, - [3999] = 3983, + [3999] = 3999, [4000] = 4000, - [4001] = 2064, - [4002] = 3959, - [4003] = 2059, - [4004] = 3731, - [4005] = 4005, - [4006] = 4006, + [4001] = 4001, + [4002] = 4002, + [4003] = 4003, + [4004] = 4004, + [4005] = 3994, + [4006] = 2069, [4007] = 4007, - [4008] = 3977, - [4009] = 3972, + [4008] = 4008, + [4009] = 4009, [4010] = 4010, - [4011] = 4011, - [4012] = 3979, - [4013] = 3976, - [4014] = 4014, - [4015] = 4015, + [4011] = 3978, + [4012] = 3995, + [4013] = 3996, + [4014] = 3770, + [4015] = 3941, [4016] = 4016, - [4017] = 3972, + [4017] = 3758, [4018] = 4018, [4019] = 4019, - [4020] = 3976, - [4021] = 3980, - [4022] = 3981, - [4023] = 3985, - [4024] = 3987, - [4025] = 4025, - [4026] = 3731, - [4027] = 4027, - [4028] = 3972, - [4029] = 4014, + [4020] = 4020, + [4021] = 4021, + [4022] = 4022, + [4023] = 4023, + [4024] = 4024, + [4025] = 3975, + [4026] = 4026, + [4027] = 3997, + [4028] = 3998, + [4029] = 4029, [4030] = 4030, - [4031] = 4015, - [4032] = 3976, - [4033] = 4033, - [4034] = 4034, - [4035] = 3972, - [4036] = 3976, - [4037] = 3771, - [4038] = 3991, + [4031] = 4031, + [4032] = 4032, + [4033] = 3999, + [4034] = 4000, + [4035] = 4001, + [4036] = 4002, + [4037] = 4037, + [4038] = 4003, [4039] = 4039, [4040] = 4040, - [4041] = 4039, - [4042] = 3989, - [4043] = 4005, - [4044] = 3989, - [4045] = 3976, - [4046] = 4006, - [4047] = 4007, - [4048] = 4048, - [4049] = 3976, - [4050] = 4050, - [4051] = 3976, - [4052] = 4052, - [4053] = 4053, - [4054] = 4054, - [4055] = 4005, - [4056] = 3976, - [4057] = 4057, - [4058] = 3148, - [4059] = 4039, - [4060] = 3998, - [4061] = 3731, - [4062] = 4006, - [4063] = 4063, - [4064] = 3975, - [4065] = 3976, - [4066] = 3959, - [4067] = 3974, - [4068] = 3977, - [4069] = 3978, - [4070] = 3982, - [4071] = 4071, - [4072] = 4072, - [4073] = 3979, - [4074] = 3980, - [4075] = 3981, - [4076] = 3985, - [4077] = 3987, - [4078] = 4078, - [4079] = 4048, - [4080] = 3988, - [4081] = 4016, - [4082] = 4082, - [4083] = 4007, - [4084] = 3959, - [4085] = 4085, - [4086] = 3983, - [4087] = 3997, - [4088] = 4000, - [4089] = 4089, - [4090] = 3998, - [4091] = 4091, - [4092] = 4027, - [4093] = 3991, - [4094] = 4010, - [4095] = 4011, - [4096] = 4018, - [4097] = 4019, - [4098] = 3997, - [4099] = 4000, - [4100] = 3709, - [4101] = 4025, - [4102] = 4030, - [4103] = 4034, - [4104] = 4089, - [4105] = 4082, - [4106] = 4106, - [4107] = 3972, - [4108] = 4108, - [4109] = 4040, - [4110] = 4110, - [4111] = 3975, - [4112] = 4054, - [4113] = 3978, - [4114] = 3982, - [4115] = 4115, - [4116] = 4078, - [4117] = 3988, - [4118] = 4016, - [4119] = 3973, - [4120] = 4108, + [4041] = 4041, + [4042] = 4016, + [4043] = 4043, + [4044] = 4044, + [4045] = 3994, + [4046] = 3182, + [4047] = 4018, + [4048] = 4043, + [4049] = 4016, + [4050] = 4019, + [4051] = 4007, + [4052] = 4043, + [4053] = 3994, + [4054] = 4008, + [4055] = 4009, + [4056] = 4010, + [4057] = 3978, + [4058] = 3995, + [4059] = 3996, + [4060] = 4060, + [4061] = 4016, + [4062] = 3771, + [4063] = 4043, + [4064] = 4064, + [4065] = 4065, + [4066] = 4024, + [4067] = 4043, + [4068] = 4018, + [4069] = 4019, + [4070] = 4020, + [4071] = 4020, + [4072] = 4021, + [4073] = 4022, + [4074] = 4016, + [4075] = 4021, + [4076] = 4023, + [4077] = 4043, + [4078] = 3979, + [4079] = 4016, + [4080] = 4029, + [4081] = 4022, + [4082] = 4043, + [4083] = 4030, + [4084] = 4031, + [4085] = 4032, + [4086] = 4086, + [4087] = 3941, + [4088] = 4043, + [4089] = 3981, + [4090] = 4023, + [4091] = 3982, + [4092] = 4037, + [4093] = 4043, + [4094] = 4094, + [4095] = 4007, + [4096] = 4043, + [4097] = 4097, + [4098] = 3770, + [4099] = 3771, + [4100] = 4065, + [4101] = 3997, + [4102] = 4044, + [4103] = 4064, + [4104] = 3977, + [4105] = 3771, + [4106] = 3998, + [4107] = 3993, + [4108] = 3999, + [4109] = 4109, + [4110] = 4000, + [4111] = 4001, + [4112] = 4002, + [4113] = 4003, + [4114] = 3758, + [4115] = 4060, + [4116] = 3983, + [4117] = 4043, + [4118] = 3986, + [4119] = 4008, + [4120] = 4037, [4121] = 4121, - [4122] = 4014, - [4123] = 4015, - [4124] = 4010, - [4125] = 4071, - [4126] = 4011, - [4127] = 4089, - [4128] = 4018, - [4129] = 4019, - [4130] = 4050, - [4131] = 3709, - [4132] = 4108, - [4133] = 4025, - [4134] = 4030, - [4135] = 4034, - [4136] = 4085, - [4137] = 4072, - [4138] = 3751, - [4139] = 4040, - [4140] = 4054, - [4141] = 3998, - [4142] = 4050, - [4143] = 3709, - [4144] = 4078, - [4145] = 4110, - [4146] = 4110, - [4147] = 4147, - [4148] = 4148, + [4122] = 4016, + [4123] = 3941, + [4124] = 3980, + [4125] = 4039, + [4126] = 4009, + [4127] = 4127, + [4128] = 4128, + [4129] = 4065, + [4130] = 4024, + [4131] = 3980, + [4132] = 4016, + [4133] = 3984, + [4134] = 4031, + [4135] = 3985, + [4136] = 4010, + [4137] = 4137, + [4138] = 4029, + [4139] = 3975, + [4140] = 4060, + [4141] = 4141, + [4142] = 3714, + [4143] = 4109, + [4144] = 4030, + [4145] = 3984, + [4146] = 3985, + [4147] = 2068, + [4148] = 4032, [4149] = 4149, [4150] = 4150, [4151] = 4151, [4152] = 4152, [4153] = 4153, - [4154] = 3921, + [4154] = 3218, [4155] = 4155, [4156] = 4156, [4157] = 4157, - [4158] = 3921, + [4158] = 4150, [4159] = 4159, [4160] = 4160, - [4161] = 3771, + [4161] = 4161, [4162] = 4162, - [4163] = 3147, - [4164] = 3800, + [4163] = 4163, + [4164] = 4157, [4165] = 4165, - [4166] = 4157, - [4167] = 3870, - [4168] = 4152, + [4166] = 4166, + [4167] = 4167, + [4168] = 4168, [4169] = 4169, - [4170] = 4170, - [4171] = 4171, + [4170] = 2129, + [4171] = 3973, [4172] = 4172, [4173] = 4173, [4174] = 4174, - [4175] = 4148, + [4175] = 4175, [4176] = 4176, - [4177] = 3731, + [4177] = 4177, [4178] = 4178, - [4179] = 3921, + [4179] = 4179, [4180] = 4180, [4181] = 4181, - [4182] = 3921, - [4183] = 4178, + [4182] = 4182, + [4183] = 4168, [4184] = 4184, [4185] = 4185, - [4186] = 3800, + [4186] = 3172, [4187] = 4187, [4188] = 4188, - [4189] = 4189, - [4190] = 4190, - [4191] = 4052, - [4192] = 4178, + [4189] = 4149, + [4190] = 4004, + [4191] = 4191, + [4192] = 4192, [4193] = 4193, [4194] = 4194, - [4195] = 4110, + [4195] = 4195, [4196] = 4196, - [4197] = 4151, - [4198] = 4184, - [4199] = 4199, - [4200] = 4200, - [4201] = 4052, - [4202] = 4196, - [4203] = 4160, - [4204] = 3178, - [4205] = 4172, - [4206] = 4206, - [4207] = 4207, - [4208] = 4208, + [4197] = 4197, + [4198] = 4198, + [4199] = 2118, + [4200] = 3169, + [4201] = 4201, + [4202] = 4202, + [4203] = 4152, + [4204] = 4204, + [4205] = 4205, + [4206] = 4205, + [4207] = 4196, + [4208] = 3770, [4209] = 4209, - [4210] = 4173, - [4211] = 4151, - [4212] = 4212, + [4210] = 4194, + [4211] = 4211, + [4212] = 3855, [4213] = 4213, [4214] = 4214, [4215] = 4215, - [4216] = 4199, - [4217] = 4200, - [4218] = 4218, + [4216] = 4216, + [4217] = 4137, + [4218] = 4216, [4219] = 4219, - [4220] = 4220, - [4221] = 4221, - [4222] = 4222, - [4223] = 3154, - [4224] = 4052, - [4225] = 4225, - [4226] = 4226, - [4227] = 4227, + [4220] = 3877, + [4221] = 4137, + [4222] = 4157, + [4223] = 2124, + [4224] = 4224, + [4225] = 4201, + [4226] = 4137, + [4227] = 4224, [4228] = 4228, - [4229] = 4173, - [4230] = 4230, - [4231] = 4185, + [4229] = 4153, + [4230] = 3855, + [4231] = 4231, [4232] = 4232, - [4233] = 4233, - [4234] = 4160, + [4233] = 4162, + [4234] = 3758, [4235] = 4235, - [4236] = 4236, - [4237] = 4235, + [4236] = 4211, + [4237] = 4237, [4238] = 4238, - [4239] = 4239, - [4240] = 3800, - [4241] = 4241, - [4242] = 4193, + [4239] = 4152, + [4240] = 4180, + [4241] = 4181, + [4242] = 4242, [4243] = 4243, - [4244] = 4244, - [4245] = 4184, + [4244] = 4004, + [4245] = 4245, [4246] = 4246, - [4247] = 4220, - [4248] = 4152, - [4249] = 4157, - [4250] = 4250, - [4251] = 2115, - [4252] = 4199, - [4253] = 2118, - [4254] = 2115, - [4255] = 2105, - [4256] = 2118, - [4257] = 2105, - [4258] = 2094, - [4259] = 2072, - [4260] = 2101, - [4261] = 2094, - [4262] = 2101, + [4247] = 4247, + [4248] = 4248, + [4249] = 4219, + [4250] = 4162, + [4251] = 3973, + [4252] = 4205, + [4253] = 3973, + [4254] = 4254, + [4255] = 4255, + [4256] = 4198, + [4257] = 4216, + [4258] = 4232, + [4259] = 4168, + [4260] = 4004, + [4261] = 4261, + [4262] = 4172, [4263] = 4263, [4264] = 4264, - [4265] = 4200, - [4266] = 4266, - [4267] = 4181, - [4268] = 4268, - [4269] = 4233, - [4270] = 4266, - [4271] = 4193, - [4272] = 4233, - [4273] = 2072, - [4274] = 4274, - [4275] = 4196, - [4276] = 4276, - [4277] = 4185, - [4278] = 4278, - [4279] = 4266, - [4280] = 4212, - [4281] = 3800, - [4282] = 4282, - [4283] = 4150, - [4284] = 4162, + [4265] = 4184, + [4266] = 3973, + [4267] = 3855, + [4268] = 2126, + [4269] = 4219, + [4270] = 4181, + [4271] = 4153, + [4272] = 2120, + [4273] = 4184, + [4274] = 4211, + [4275] = 2118, + [4276] = 2120, + [4277] = 2121, + [4278] = 2124, + [4279] = 2126, + [4280] = 2129, + [4281] = 4150, + [4282] = 2121, + [4283] = 4180, + [4284] = 4232, [4285] = 4285, - [4286] = 4285, + [4286] = 3855, [4287] = 4287, - [4288] = 4209, - [4289] = 4162, - [4290] = 4165, - [4291] = 4291, - [4292] = 4292, - [4293] = 4159, - [4294] = 4294, + [4288] = 4288, + [4289] = 4289, + [4290] = 4290, + [4291] = 4288, + [4292] = 4213, + [4293] = 4293, + [4294] = 4288, [4295] = 4295, [4296] = 4296, [4297] = 4297, [4298] = 4298, - [4299] = 4299, + [4299] = 4297, [4300] = 4300, - [4301] = 4298, + [4301] = 4301, [4302] = 4302, [4303] = 4303, [4304] = 4304, [4305] = 4305, - [4306] = 4300, + [4306] = 4306, [4307] = 4307, - [4308] = 4307, - [4309] = 4309, + [4308] = 4308, + [4309] = 4288, [4310] = 4310, - [4311] = 4299, + [4311] = 4311, [4312] = 4312, [4313] = 4313, [4314] = 4314, - [4315] = 3176, + [4315] = 4308, [4316] = 4316, - [4317] = 4304, - [4318] = 4318, - [4319] = 4305, - [4320] = 4215, + [4317] = 4317, + [4318] = 3204, + [4319] = 4319, + [4320] = 4288, [4321] = 4321, - [4322] = 4300, - [4323] = 4276, + [4322] = 3197, + [4323] = 4323, [4324] = 4324, - [4325] = 4189, - [4326] = 4232, - [4327] = 4307, + [4325] = 4325, + [4326] = 4326, + [4327] = 3206, [4328] = 4328, [4329] = 4329, - [4330] = 4330, - [4331] = 4331, + [4330] = 4165, + [4331] = 3196, [4332] = 4332, - [4333] = 4333, - [4334] = 3192, - [4335] = 4335, + [4333] = 4175, + [4334] = 4334, + [4335] = 4288, [4336] = 4336, - [4337] = 4337, + [4337] = 4288, [4338] = 4338, - [4339] = 3187, - [4340] = 4299, - [4341] = 4295, - [4342] = 4329, + [4339] = 4339, + [4340] = 4340, + [4341] = 4341, + [4342] = 4342, [4343] = 4343, - [4344] = 4287, - [4345] = 4312, - [4346] = 4343, - [4347] = 3199, - [4348] = 4348, - [4349] = 4313, - [4350] = 4309, - [4351] = 4335, - [4352] = 4352, - [4353] = 4014, - [4354] = 4307, - [4355] = 4299, + [4344] = 4308, + [4345] = 4215, + [4346] = 4297, + [4347] = 4347, + [4348] = 4308, + [4349] = 4165, + [4350] = 4288, + [4351] = 4285, + [4352] = 4197, + [4353] = 4324, + [4354] = 4354, + [4355] = 4167, [4356] = 4356, - [4357] = 4250, - [4358] = 4358, - [4359] = 4330, - [4360] = 4295, - [4361] = 4213, - [4362] = 4219, - [4363] = 4292, - [4364] = 4238, + [4357] = 4175, + [4358] = 4316, + [4359] = 4296, + [4360] = 4360, + [4361] = 4336, + [4362] = 4254, + [4363] = 4314, + [4364] = 4193, [4365] = 4365, - [4366] = 4307, - [4367] = 4250, - [4368] = 4208, - [4369] = 4318, - [4370] = 4370, - [4371] = 4209, - [4372] = 4162, + [4366] = 4366, + [4367] = 4367, + [4368] = 4368, + [4369] = 4332, + [4370] = 4215, + [4371] = 4254, + [4372] = 4372, [4373] = 4165, - [4374] = 4307, - [4375] = 4375, - [4376] = 4376, - [4377] = 4165, - [4378] = 4378, - [4379] = 4312, - [4380] = 4380, - [4381] = 4356, - [4382] = 4307, + [4374] = 4167, + [4375] = 4325, + [4376] = 4264, + [4377] = 4377, + [4378] = 4288, + [4379] = 4155, + [4380] = 4264, + [4381] = 4155, + [4382] = 4382, [4383] = 4383, - [4384] = 4384, - [4385] = 4385, - [4386] = 4307, - [4387] = 4310, - [4388] = 4388, + [4384] = 4261, + [4385] = 4175, + [4386] = 4298, + [4387] = 4377, + [4388] = 4288, [4389] = 4389, [4390] = 4390, - [4391] = 4391, - [4392] = 4392, - [4393] = 4307, + [4391] = 4167, + [4392] = 4365, + [4393] = 4393, [4394] = 4394, - [4395] = 4395, - [4396] = 4365, - [4397] = 4213, - [4398] = 4219, - [4399] = 4399, - [4400] = 4307, - [4401] = 4159, - [4402] = 4329, - [4403] = 4403, - [4404] = 4356, - [4405] = 4307, - [4406] = 4406, - [4407] = 4330, - [4408] = 4298, - [4409] = 4307, - [4410] = 4410, - [4411] = 4384, + [4395] = 4305, + [4396] = 4396, + [4397] = 4397, + [4398] = 4307, + [4399] = 4293, + [4400] = 4377, + [4401] = 4169, + [4402] = 4288, + [4403] = 4155, + [4404] = 4372, + [4405] = 4405, + [4406] = 4390, + [4407] = 4407, + [4408] = 4235, + [4409] = 4303, + [4410] = 4365, + [4411] = 4065, [4412] = 4412, - [4413] = 4307, - [4414] = 4307, - [4415] = 4384, - [4416] = 4310, - [4417] = 4307, - [4418] = 4313, - [4419] = 4307, - [4420] = 4420, - [4421] = 4421, - [4422] = 4330, - [4423] = 4423, - [4424] = 4303, - [4425] = 4425, - [4426] = 4307, + [4413] = 4413, + [4414] = 4169, + [4415] = 4301, + [4416] = 4338, + [4417] = 4417, + [4418] = 4413, + [4419] = 4383, + [4420] = 4302, + [4421] = 4312, + [4422] = 4422, + [4423] = 4176, + [4424] = 4177, + [4425] = 4178, + [4426] = 4326, [4427] = 4427, - [4428] = 4213, - [4429] = 4219, - [4430] = 4352, - [4431] = 4228, - [4432] = 4432, - [4433] = 4423, + [4428] = 4288, + [4429] = 4429, + [4430] = 4264, + [4431] = 4397, + [4432] = 4308, + [4433] = 4433, [4434] = 4434, - [4435] = 4348, - [4436] = 4436, - [4437] = 4303, - [4438] = 4432, - [4439] = 4439, - [4440] = 4348, - [4441] = 4241, - [4442] = 4153, - [4443] = 4443, - [4444] = 4421, - [4445] = 4208, - [4446] = 4228, - [4447] = 4208, - [4448] = 4304, - [4449] = 4420, - [4450] = 4439, - [4451] = 4439, - [4452] = 4452, - [4453] = 4155, - [4454] = 4292, - [4455] = 4455, - [4456] = 4307, - [4457] = 4307, - [4458] = 4305, - [4459] = 4285, - [4460] = 4287, - [4461] = 4318, - [4462] = 4209, - [4463] = 4189, - [4464] = 4307, - [4465] = 4388, - [4466] = 4297, - [4467] = 4302, - [4468] = 4316, - [4469] = 4333, - [4470] = 4321, - [4471] = 4331, - [4472] = 4332, - [4473] = 4370, - [4474] = 4376, - [4475] = 4378, - [4476] = 4380, - [4477] = 4383, - [4478] = 4478, - [4479] = 4388, - [4480] = 4392, - [4481] = 4394, - [4482] = 4331, - [4483] = 4332, - [4484] = 4484, + [4435] = 4215, + [4436] = 4308, + [4437] = 4326, + [4438] = 4336, + [4439] = 4308, + [4440] = 4394, + [4441] = 4329, + [4442] = 4324, + [4443] = 4288, + [4444] = 4372, + [4445] = 4193, + [4446] = 4288, + [4447] = 4303, + [4448] = 4288, + [4449] = 4413, + [4450] = 4288, + [4451] = 4301, + [4452] = 4383, + [4453] = 4288, + [4454] = 4427, + [4455] = 4427, + [4456] = 4298, + [4457] = 4298, + [4458] = 4394, + [4459] = 4314, + [4460] = 4390, + [4461] = 4372, + [4462] = 4316, + [4463] = 4463, + [4464] = 4308, + [4465] = 4288, + [4466] = 4356, + [4467] = 4467, + [4468] = 4293, + [4469] = 4288, + [4470] = 4470, + [4471] = 4177, + [4472] = 4472, + [4473] = 4356, + [4474] = 4338, + [4475] = 4288, + [4476] = 4476, + [4477] = 4477, + [4478] = 4405, + [4479] = 4479, + [4480] = 4480, + [4481] = 4481, + [4482] = 4482, + [4483] = 4483, + [4484] = 4354, [4485] = 4485, [4486] = 4486, - [4487] = 4333, - [4488] = 4333, - [4489] = 4336, - [4490] = 4337, - [4491] = 4391, - [4492] = 4336, - [4493] = 4337, - [4494] = 4336, - [4495] = 4495, - [4496] = 4337, - [4497] = 4391, - [4498] = 4498, - [4499] = 4434, - [4500] = 4500, - [4501] = 4436, + [4487] = 4382, + [4488] = 4488, + [4489] = 4486, + [4490] = 4490, + [4491] = 4490, + [4492] = 4492, + [4493] = 4493, + [4494] = 4366, + [4495] = 4417, + [4496] = 4312, + [4497] = 4422, + [4498] = 4493, + [4499] = 4433, + [4500] = 4493, + [4501] = 4501, [4502] = 4502, - [4503] = 4484, + [4503] = 4503, [4504] = 4504, - [4505] = 4505, + [4505] = 4176, [4506] = 4506, [4507] = 4507, - [4508] = 4506, + [4508] = 4481, [4509] = 4509, [4510] = 4510, [4511] = 4511, - [4512] = 4452, - [4513] = 4276, - [4514] = 4189, - [4515] = 4515, - [4516] = 4516, - [4517] = 4509, - [4518] = 4297, - [4519] = 4232, - [4520] = 4302, - [4521] = 4521, - [4522] = 4522, - [4523] = 4484, - [4524] = 4510, - [4525] = 4316, - [4526] = 4526, - [4527] = 4485, - [4528] = 4528, - [4529] = 4529, - [4530] = 3154, - [4531] = 4531, - [4532] = 4532, - [4533] = 4391, + [4512] = 4177, + [4513] = 4513, + [4514] = 4514, + [4515] = 4479, + [4516] = 4178, + [4517] = 4517, + [4518] = 4518, + [4519] = 4502, + [4520] = 4310, + [4521] = 4463, + [4522] = 4295, + [4523] = 4323, + [4524] = 4340, + [4525] = 4300, + [4526] = 4310, + [4527] = 4506, + [4528] = 4507, + [4529] = 4481, + [4530] = 4490, + [4531] = 4311, + [4532] = 4506, + [4533] = 4507, [4534] = 4534, - [4535] = 4358, - [4536] = 4321, - [4537] = 4537, - [4538] = 4538, - [4539] = 4370, - [4540] = 4507, + [4535] = 4313, + [4536] = 4317, + [4537] = 4479, + [4538] = 4319, + [4539] = 4393, + [4540] = 4540, [4541] = 4541, - [4542] = 4502, - [4543] = 4543, - [4544] = 4370, - [4545] = 4376, - [4546] = 4378, - [4547] = 4547, - [4548] = 4548, - [4549] = 4509, - [4550] = 4550, - [4551] = 4380, - [4552] = 4510, - [4553] = 4550, - [4554] = 4376, - [4555] = 4383, - [4556] = 4375, - [4557] = 4452, - [4558] = 3147, - [4559] = 4559, - [4560] = 4394, - [4561] = 4561, - [4562] = 4562, - [4563] = 4378, - [4564] = 4532, - [4565] = 4565, - [4566] = 4380, + [4542] = 4311, + [4543] = 4313, + [4544] = 4317, + [4545] = 4319, + [4546] = 4328, + [4547] = 4334, + [4548] = 4341, + [4549] = 4342, + [4550] = 4405, + [4551] = 4479, + [4552] = 4328, + [4553] = 4334, + [4554] = 4554, + [4555] = 4341, + [4556] = 4342, + [4557] = 4557, + [4558] = 4304, + [4559] = 4389, + [4560] = 4396, + [4561] = 4343, + [4562] = 4429, + [4563] = 4563, + [4564] = 3172, + [4565] = 4502, + [4566] = 4566, [4567] = 4567, [4568] = 4568, - [4569] = 4569, - [4570] = 4570, - [4571] = 4241, + [4569] = 4485, + [4570] = 4285, + [4571] = 4571, [4572] = 4572, - [4573] = 4502, - [4574] = 4534, - [4575] = 4532, - [4576] = 4383, - [4577] = 4538, - [4578] = 4578, - [4579] = 4579, - [4580] = 4538, - [4581] = 4581, - [4582] = 4485, - [4583] = 4583, - [4584] = 4550, + [4573] = 4573, + [4574] = 4463, + [4575] = 4295, + [4576] = 4323, + [4577] = 4197, + [4578] = 4518, + [4579] = 4490, + [4580] = 4417, + [4581] = 4417, + [4582] = 4422, + [4583] = 4312, + [4584] = 4433, [4585] = 4585, - [4586] = 4395, - [4587] = 4365, - [4588] = 4399, - [4589] = 4403, - [4590] = 4153, - [4591] = 4509, - [4592] = 4510, - [4593] = 4238, - [4594] = 4395, - [4595] = 4365, - [4596] = 4399, - [4597] = 4388, - [4598] = 4485, - [4599] = 4403, - [4600] = 4538, - [4601] = 4390, - [4602] = 4392, - [4603] = 4478, - [4604] = 4531, - [4605] = 4394, - [4606] = 4606, - [4607] = 4375, - [4608] = 3420, - [4609] = 4609, + [4586] = 3169, + [4587] = 4587, + [4588] = 4422, + [4589] = 4463, + [4590] = 4295, + [4591] = 4323, + [4592] = 4340, + [4593] = 4300, + [4594] = 4340, + [4595] = 4595, + [4596] = 4433, + [4597] = 4213, + [4598] = 4483, + [4599] = 4595, + [4600] = 4600, + [4601] = 4601, + [4602] = 4585, + [4603] = 4603, + [4604] = 4310, + [4605] = 4605, + [4606] = 4554, + [4607] = 4311, + [4608] = 4608, + [4609] = 4313, [4610] = 4610, - [4611] = 4569, - [4612] = 4526, - [4613] = 4562, - [4614] = 4395, + [4611] = 4611, + [4612] = 4317, + [4613] = 4319, + [4614] = 4328, [4615] = 4615, - [4616] = 4526, - [4617] = 4617, - [4618] = 4399, - [4619] = 4619, - [4620] = 4403, - [4621] = 4569, - [4622] = 4532, - [4623] = 4617, - [4624] = 4331, - [4625] = 4375, - [4626] = 4452, - [4627] = 4297, - [4628] = 4522, - [4629] = 4302, - [4630] = 4316, - [4631] = 4631, - [4632] = 4321, - [4633] = 4332, - [4634] = 4392, - [4635] = 4635, - [4636] = 4636, - [4637] = 4637, - [4638] = 4638, - [4639] = 4639, - [4640] = 4640, - [4641] = 4641, - [4642] = 4642, - [4643] = 4643, + [4616] = 4616, + [4617] = 4334, + [4618] = 4300, + [4619] = 4485, + [4620] = 4620, + [4621] = 4503, + [4622] = 4513, + [4623] = 4623, + [4624] = 4506, + [4625] = 4481, + [4626] = 4341, + [4627] = 4627, + [4628] = 4507, + [4629] = 4342, + [4630] = 4304, + [4631] = 4389, + [4632] = 4304, + [4633] = 4389, + [4634] = 4396, + [4635] = 4396, + [4636] = 4343, + [4637] = 4429, + [4638] = 4483, + [4639] = 3413, + [4640] = 4518, + [4641] = 4343, + [4642] = 4504, + [4643] = 4510, [4644] = 4644, - [4645] = 4645, - [4646] = 4646, + [4645] = 4429, + [4646] = 4405, [4647] = 4647, [4648] = 4648, - [4649] = 4649, + [4649] = 4600, [4650] = 4650, [4651] = 4651, [4652] = 4652, @@ -8965,1072 +8976,1090 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4658] = 4658, [4659] = 4659, [4660] = 4660, - [4661] = 4155, - [4662] = 487, + [4661] = 3206, + [4662] = 4662, [4663] = 4663, [4664] = 4664, [4665] = 4665, [4666] = 4666, [4667] = 4667, - [4668] = 4668, + [4668] = 4652, [4669] = 4669, [4670] = 4670, - [4671] = 3407, - [4672] = 4642, + [4671] = 4671, + [4672] = 4672, [4673] = 4673, [4674] = 4674, [4675] = 4675, [4676] = 4676, - [4677] = 4650, - [4678] = 4668, + [4677] = 4677, + [4678] = 4678, [4679] = 4679, - [4680] = 4680, - [4681] = 4667, - [4682] = 4645, + [4680] = 4235, + [4681] = 4681, + [4682] = 4682, [4683] = 4683, [4684] = 4684, [4685] = 4685, [4686] = 4686, - [4687] = 4215, - [4688] = 4640, - [4689] = 4689, + [4687] = 4687, + [4688] = 4688, + [4689] = 4688, [4690] = 4690, [4691] = 4691, - [4692] = 4692, + [4692] = 4666, [4693] = 4693, [4694] = 4694, - [4695] = 4660, + [4695] = 4695, [4696] = 4696, [4697] = 4697, - [4698] = 4679, + [4698] = 4698, [4699] = 4699, [4700] = 4700, - [4701] = 4701, - [4702] = 4702, + [4701] = 4235, + [4702] = 4670, [4703] = 4703, - [4704] = 4680, + [4704] = 4704, [4705] = 4705, [4706] = 4706, [4707] = 4707, [4708] = 4708, [4709] = 4709, [4710] = 4710, - [4711] = 4711, + [4711] = 4698, [4712] = 4712, [4713] = 4713, [4714] = 4714, [4715] = 4715, - [4716] = 4635, + [4716] = 4480, [4717] = 4717, [4718] = 4718, [4719] = 4719, - [4720] = 4720, + [4720] = 4685, [4721] = 4721, - [4722] = 4722, + [4722] = 4671, [4723] = 4723, - [4724] = 4640, - [4725] = 4609, - [4726] = 4639, + [4724] = 4724, + [4725] = 4725, + [4726] = 4726, [4727] = 4727, - [4728] = 4647, - [4729] = 4498, - [4730] = 4676, - [4731] = 4645, + [4728] = 4728, + [4729] = 4729, + [4730] = 4235, + [4731] = 4731, [4732] = 4732, - [4733] = 4701, - [4734] = 4670, - [4735] = 4711, - [4736] = 4711, - [4737] = 4737, - [4738] = 4738, - [4739] = 4683, - [4740] = 4740, - [4741] = 4741, - [4742] = 4742, + [4733] = 4723, + [4734] = 4682, + [4735] = 4735, + [4736] = 4736, + [4737] = 4675, + [4738] = 4601, + [4739] = 4739, + [4740] = 4480, + [4741] = 4482, + [4742] = 4488, [4743] = 4743, [4744] = 4744, [4745] = 4745, - [4746] = 4670, - [4747] = 4717, - [4748] = 4719, - [4749] = 4720, - [4750] = 4721, + [4746] = 4746, + [4747] = 4674, + [4748] = 4748, + [4749] = 4672, + [4750] = 4750, [4751] = 4751, [4752] = 4752, - [4753] = 4653, - [4754] = 4742, - [4755] = 4755, - [4756] = 4744, - [4757] = 4705, - [4758] = 4751, - [4759] = 4690, - [4760] = 4752, - [4761] = 4697, + [4753] = 4753, + [4754] = 4754, + [4755] = 4703, + [4756] = 4751, + [4757] = 4757, + [4758] = 4758, + [4759] = 4509, + [4760] = 4757, + [4761] = 4761, [4762] = 4762, - [4763] = 4641, - [4764] = 3428, - [4765] = 4644, - [4766] = 4665, + [4763] = 4674, + [4764] = 4764, + [4765] = 4765, + [4766] = 4766, [4767] = 4767, - [4768] = 4666, - [4769] = 4769, - [4770] = 4667, - [4771] = 4653, - [4772] = 4669, - [4773] = 4521, - [4774] = 4701, - [4775] = 4775, - [4776] = 4606, - [4777] = 4685, - [4778] = 4706, - [4779] = 4779, + [4768] = 4651, + [4769] = 4739, + [4770] = 4687, + [4771] = 4771, + [4772] = 4683, + [4773] = 4773, + [4774] = 4683, + [4775] = 4745, + [4776] = 4482, + [4777] = 4658, + [4778] = 4659, + [4779] = 4654, [4780] = 4780, [4781] = 4781, - [4782] = 4782, - [4783] = 4640, - [4784] = 4529, - [4785] = 4779, - [4786] = 4647, - [4787] = 484, - [4788] = 4676, - [4789] = 4645, - [4790] = 4669, - [4791] = 4701, - [4792] = 4711, - [4793] = 4699, - [4794] = 4738, - [4795] = 4683, - [4796] = 4796, - [4797] = 4797, - [4798] = 4742, + [4782] = 4677, + [4783] = 4261, + [4784] = 4745, + [4785] = 4534, + [4786] = 4687, + [4787] = 4658, + [4788] = 4651, + [4789] = 4789, + [4790] = 4676, + [4791] = 4656, + [4792] = 4659, + [4793] = 4676, + [4794] = 4690, + [4795] = 4678, + [4796] = 4679, + [4797] = 4681, + [4798] = 4798, [4799] = 4799, - [4800] = 4717, - [4801] = 4719, - [4802] = 4738, - [4803] = 4720, - [4804] = 4721, - [4805] = 4683, - [4806] = 4742, - [4807] = 4640, - [4808] = 4521, - [4809] = 4692, - [4810] = 4714, - [4811] = 4640, - [4812] = 4743, - [4813] = 4813, - [4814] = 4814, - [4815] = 4647, - [4816] = 4647, - [4817] = 4718, - [4818] = 4676, - [4819] = 4645, - [4820] = 4820, - [4821] = 4701, - [4822] = 4711, - [4823] = 4670, - [4824] = 4824, - [4825] = 4738, + [4800] = 4691, + [4801] = 4678, + [4802] = 4705, + [4803] = 4656, + [4804] = 4750, + [4805] = 4805, + [4806] = 4693, + [4807] = 4674, + [4808] = 4750, + [4809] = 4809, + [4810] = 4754, + [4811] = 4751, + [4812] = 4758, + [4813] = 4660, + [4814] = 4757, + [4815] = 4488, + [4816] = 4662, + [4817] = 4817, + [4818] = 4766, + [4819] = 4767, + [4820] = 4663, + [4821] = 4821, + [4822] = 4739, + [4823] = 4823, + [4824] = 4664, + [4825] = 4825, [4826] = 4683, - [4827] = 4742, + [4827] = 4745, [4828] = 4828, - [4829] = 4751, - [4830] = 4715, - [4831] = 4717, - [4832] = 3192, - [4833] = 4719, - [4834] = 4720, - [4835] = 4721, - [4836] = 4723, - [4837] = 4837, - [4838] = 485, - [4839] = 4839, - [4840] = 4732, - [4841] = 4841, - [4842] = 4842, - [4843] = 4740, - [4844] = 4844, - [4845] = 4640, - [4846] = 4814, - [4847] = 4647, - [4848] = 4684, - [4849] = 4707, - [4850] = 4676, - [4851] = 4647, - [4852] = 4645, - [4853] = 4218, - [4854] = 4701, - [4855] = 4225, - [4856] = 4226, - [4857] = 4711, - [4858] = 4858, - [4859] = 4781, - [4860] = 4738, - [4861] = 4683, - [4862] = 4708, - [4863] = 4742, - [4864] = 4691, - [4865] = 4717, - [4866] = 4719, - [4867] = 4720, - [4868] = 4721, + [4829] = 4658, + [4830] = 4659, + [4831] = 4667, + [4832] = 4652, + [4833] = 4670, + [4834] = 4671, + [4835] = 4663, + [4836] = 4836, + [4837] = 4750, + [4838] = 4805, + [4839] = 4674, + [4840] = 4672, + [4841] = 4664, + [4842] = 4750, + [4843] = 4754, + [4844] = 4754, + [4845] = 4780, + [4846] = 4751, + [4847] = 4758, + [4848] = 4848, + [4849] = 4757, + [4850] = 4850, + [4851] = 486, + [4852] = 4852, + [4853] = 4766, + [4854] = 4767, + [4855] = 4676, + [4856] = 4739, + [4857] = 4724, + [4858] = 4678, + [4859] = 4683, + [4860] = 4708, + [4861] = 4745, + [4862] = 4679, + [4863] = 4658, + [4864] = 4659, + [4865] = 4751, + [4866] = 4681, + [4867] = 4781, + [4868] = 4694, [4869] = 4869, - [4870] = 4684, + [4870] = 4748, [4871] = 4871, - [4872] = 4710, - [4873] = 4691, - [4874] = 4640, - [4875] = 4875, - [4876] = 4647, - [4877] = 4676, - [4878] = 4645, - [4879] = 4879, - [4880] = 4701, - [4881] = 4711, - [4882] = 4645, - [4883] = 4738, - [4884] = 4683, - [4885] = 4742, - [4886] = 4702, - [4887] = 4717, - [4888] = 4888, - [4889] = 4719, - [4890] = 4720, - [4891] = 4721, - [4892] = 4703, - [4893] = 4711, - [4894] = 4690, - [4895] = 4709, - [4896] = 4696, - [4897] = 4645, - [4898] = 4155, - [4899] = 4738, - [4900] = 4683, - [4901] = 4901, - [4902] = 4742, - [4903] = 4717, - [4904] = 4719, - [4905] = 4685, - [4906] = 4720, - [4907] = 4721, - [4908] = 4908, - [4909] = 4717, - [4910] = 4719, - [4911] = 4720, - [4912] = 4738, - [4913] = 4683, - [4914] = 4721, - [4915] = 4742, - [4916] = 4606, - [4917] = 4717, - [4918] = 4719, - [4919] = 4720, - [4920] = 4721, - [4921] = 4752, - [4922] = 483, - [4923] = 4643, - [4924] = 4924, - [4925] = 4215, - [4926] = 4693, - [4927] = 4927, - [4928] = 4700, - [4929] = 4743, - [4930] = 4738, - [4931] = 4683, - [4932] = 4745, - [4933] = 4742, - [4934] = 4641, - [4935] = 4717, - [4936] = 4767, - [4937] = 4719, - [4938] = 4720, - [4939] = 4721, - [4940] = 4940, - [4941] = 4665, - [4942] = 4799, - [4943] = 4837, - [4944] = 3147, - [4945] = 4694, - [4946] = 4742, - [4947] = 4155, - [4948] = 4720, - [4949] = 4721, - [4950] = 4841, - [4951] = 4828, - [4952] = 4751, - [4953] = 4844, - [4954] = 4752, + [4872] = 4677, + [4873] = 4231, + [4874] = 484, + [4875] = 4674, + [4876] = 4214, + [4877] = 4750, + [4878] = 4238, + [4879] = 4754, + [4880] = 4255, + [4881] = 4751, + [4882] = 4882, + [4883] = 4758, + [4884] = 4757, + [4885] = 4885, + [4886] = 4688, + [4887] = 4766, + [4888] = 4767, + [4889] = 4739, + [4890] = 4695, + [4891] = 4683, + [4892] = 4690, + [4893] = 4745, + [4894] = 4658, + [4895] = 4659, + [4896] = 4691, + [4897] = 4897, + [4898] = 4898, + [4899] = 4693, + [4900] = 4704, + [4901] = 4674, + [4902] = 4694, + [4903] = 4750, + [4904] = 4771, + [4905] = 4657, + [4906] = 4754, + [4907] = 4695, + [4908] = 4751, + [4909] = 4758, + [4910] = 4758, + [4911] = 4696, + [4912] = 4757, + [4913] = 4697, + [4914] = 4805, + [4915] = 4766, + [4916] = 4767, + [4917] = 4798, + [4918] = 4686, + [4919] = 4739, + [4920] = 4761, + [4921] = 4725, + [4922] = 4771, + [4923] = 4683, + [4924] = 4745, + [4925] = 4658, + [4926] = 4659, + [4927] = 4780, + [4928] = 4928, + [4929] = 4718, + [4930] = 4705, + [4931] = 4679, + [4932] = 4932, + [4933] = 4751, + [4934] = 4934, + [4935] = 4935, + [4936] = 4766, + [4937] = 4767, + [4938] = 4739, + [4939] = 4939, + [4940] = 4789, + [4941] = 4683, + [4942] = 4836, + [4943] = 4745, + [4944] = 4658, + [4945] = 4659, + [4946] = 4710, + [4947] = 4947, + [4948] = 4948, + [4949] = 4949, + [4950] = 4950, + [4951] = 4712, + [4952] = 4713, + [4953] = 4766, + [4954] = 4767, [4955] = 4955, - [4956] = 4673, - [4957] = 4653, - [4958] = 4958, - [4959] = 4959, - [4960] = 4960, - [4961] = 4676, - [4962] = 4215, - [4963] = 4963, - [4964] = 4782, - [4965] = 4908, - [4966] = 4641, - [4967] = 4702, - [4968] = 4968, - [4969] = 4170, - [4970] = 4714, - [4971] = 4171, - [4972] = 4713, - [4973] = 4174, - [4974] = 4796, - [4975] = 4638, - [4976] = 3409, - [4977] = 4718, - [4978] = 4703, + [4956] = 4739, + [4957] = 4714, + [4958] = 4683, + [4959] = 4715, + [4960] = 4745, + [4961] = 4660, + [4962] = 4658, + [4963] = 4659, + [4964] = 4696, + [4965] = 4717, + [4966] = 4966, + [4967] = 4719, + [4968] = 4697, + [4969] = 4766, + [4970] = 4767, + [4971] = 4509, + [4972] = 4766, + [4973] = 4767, + [4974] = 4739, + [4975] = 489, + [4976] = 4683, + [4977] = 4754, + [4978] = 4745, [4979] = 4979, - [4980] = 4980, - [4981] = 4981, - [4982] = 4775, - [4983] = 4958, - [4984] = 4769, - [4985] = 4782, - [4986] = 4606, - [4987] = 4987, - [4988] = 4988, - [4989] = 4644, - [4990] = 4990, - [4991] = 4839, - [4992] = 4686, - [4993] = 4814, - [4994] = 4981, - [4995] = 4780, + [4980] = 4658, + [4981] = 4659, + [4982] = 4757, + [4983] = 4727, + [4984] = 4723, + [4985] = 4823, + [4986] = 4724, + [4987] = 4725, + [4988] = 4726, + [4989] = 4739, + [4990] = 4728, + [4991] = 4658, + [4992] = 4659, + [4993] = 4708, + [4994] = 4994, + [4995] = 4758, [4996] = 4996, - [4997] = 4997, - [4998] = 4998, - [4999] = 4999, - [5000] = 4963, - [5001] = 5001, - [5002] = 5002, - [5003] = 4709, - [5004] = 5004, - [5005] = 4648, + [4997] = 4780, + [4998] = 4682, + [4999] = 4729, + [5000] = 4726, + [5001] = 4935, + [5002] = 4781, + [5003] = 5003, + [5004] = 3417, + [5005] = 4731, [5006] = 5006, - [5007] = 4649, - [5008] = 4741, - [5009] = 4635, - [5010] = 4723, - [5011] = 5011, - [5012] = 4651, - [5013] = 4652, - [5014] = 5001, - [5015] = 5015, - [5016] = 4779, - [5017] = 4654, - [5018] = 4655, - [5019] = 4715, - [5020] = 4638, - [5021] = 4657, - [5022] = 4979, - [5023] = 4658, - [5024] = 4958, - [5025] = 4769, - [5026] = 4762, - [5027] = 4732, - [5028] = 4659, - [5029] = 4987, - [5030] = 4988, - [5031] = 5031, - [5032] = 5032, - [5033] = 4740, - [5034] = 4981, - [5035] = 5035, - [5036] = 4998, - [5037] = 4674, - [5038] = 5038, - [5039] = 5001, - [5040] = 5040, - [5041] = 4644, - [5042] = 5004, - [5043] = 4665, - [5044] = 4666, - [5045] = 4741, - [5046] = 4712, - [5047] = 4717, - [5048] = 4667, - [5049] = 4669, + [5007] = 4934, + [5008] = 4650, + [5009] = 4610, + [5010] = 5010, + [5011] = 4706, + [5012] = 4707, + [5013] = 4681, + [5014] = 4728, + [5015] = 4882, + [5016] = 5016, + [5017] = 4721, + [5018] = 4994, + [5019] = 5010, + [5020] = 5020, + [5021] = 4739, + [5022] = 4677, + [5023] = 5023, + [5024] = 3414, + [5025] = 4939, + [5026] = 5026, + [5027] = 5027, + [5028] = 4648, + [5029] = 5029, + [5030] = 4764, + [5031] = 4719, + [5032] = 4871, + [5033] = 4898, + [5034] = 4735, + [5035] = 4669, + [5036] = 5036, + [5037] = 5036, + [5038] = 4947, + [5039] = 4736, + [5040] = 5026, + [5041] = 4247, + [5042] = 4743, + [5043] = 4799, + [5044] = 4611, + [5045] = 4781, + [5046] = 4700, + [5047] = 4753, + [5048] = 4762, + [5049] = 5049, [5050] = 5050, - [5051] = 4719, - [5052] = 5052, - [5053] = 4720, - [5054] = 488, - [5055] = 4227, - [5056] = 4721, - [5057] = 5057, - [5058] = 4642, - [5059] = 4701, - [5060] = 4987, - [5061] = 5061, - [5062] = 4979, - [5063] = 4673, - [5064] = 5064, - [5065] = 4674, - [5066] = 4675, - [5067] = 4690, - [5068] = 5068, - [5069] = 4650, - [5070] = 4246, - [5071] = 4689, - [5072] = 4796, - [5073] = 4668, - [5074] = 4679, - [5075] = 4680, - [5076] = 4997, - [5077] = 4505, - [5078] = 3147, - [5079] = 4722, - [5080] = 4738, - [5081] = 4561, - [5082] = 4567, - [5083] = 4858, - [5084] = 4648, - [5085] = 4988, - [5086] = 4744, - [5087] = 4572, - [5088] = 5006, - [5089] = 4908, - [5090] = 4649, - [5091] = 4685, - [5092] = 4189, - [5093] = 5093, - [5094] = 4676, - [5095] = 4651, - [5096] = 4683, - [5097] = 4652, + [5051] = 5029, + [5052] = 487, + [5053] = 4885, + [5054] = 4746, + [5055] = 4966, + [5056] = 5056, + [5057] = 4766, + [5058] = 5003, + [5059] = 4767, + [5060] = 4939, + [5061] = 4657, + [5062] = 4648, + [5063] = 5063, + [5064] = 4662, + [5065] = 4739, + [5066] = 4705, + [5067] = 4159, + [5068] = 4163, + [5069] = 5023, + [5070] = 4174, + [5071] = 5026, + [5072] = 5072, + [5073] = 4764, + [5074] = 4871, + [5075] = 4669, + [5076] = 5036, + [5077] = 5077, + [5078] = 5078, + [5079] = 5072, + [5080] = 4799, + [5081] = 4655, + [5082] = 4762, + [5083] = 4885, + [5084] = 4966, + [5085] = 5085, + [5086] = 4928, + [5087] = 5003, + [5088] = 3169, + [5089] = 4509, + [5090] = 5090, + [5091] = 4687, + [5092] = 4869, + [5093] = 4683, + [5094] = 4482, + [5095] = 4261, + [5096] = 4656, + [5097] = 488, [5098] = 5098, - [5099] = 4689, - [5100] = 4654, - [5101] = 4655, - [5102] = 4797, - [5103] = 4666, - [5104] = 4692, - [5105] = 4215, - [5106] = 4693, - [5107] = 4869, - [5108] = 4694, - [5109] = 4660, - [5110] = 4657, - [5111] = 4697, - [5112] = 4998, - [5113] = 4699, - [5114] = 5114, - [5115] = 4658, - [5116] = 4996, - [5117] = 4700, - [5118] = 4745, - [5119] = 4663, - [5120] = 4659, - [5121] = 4675, - [5122] = 4775, - [5123] = 4780, - [5124] = 5004, - [5125] = 4820, - [5126] = 4767, - [5127] = 4742, - [5128] = 4705, - [5129] = 4706, - [5130] = 4707, - [5131] = 4799, - [5132] = 4708, - [5133] = 4837, - [5134] = 4710, - [5135] = 4664, - [5136] = 4968, - [5137] = 4841, - [5138] = 4844, - [5139] = 4824, - [5140] = 4713, - [5141] = 4990, - [5142] = 4875, - [5143] = 4505, - [5144] = 4155, - [5145] = 5145, - [5146] = 4521, - [5147] = 4529, - [5148] = 4828, - [5149] = 5149, - [5150] = 4738, - [5151] = 5151, - [5152] = 5152, - [5153] = 5153, - [5154] = 5154, - [5155] = 5155, - [5156] = 5156, - [5157] = 5157, - [5158] = 5158, - [5159] = 5153, - [5160] = 5160, - [5161] = 5161, - [5162] = 5162, + [5099] = 4898, + [5100] = 5100, + [5101] = 4659, + [5102] = 5102, + [5103] = 4675, + [5104] = 4718, + [5105] = 4704, + [5106] = 5106, + [5107] = 4710, + [5108] = 3169, + [5109] = 4674, + [5110] = 4852, + [5111] = 4771, + [5112] = 4699, + [5113] = 5113, + [5114] = 3424, + [5115] = 4745, + [5116] = 4750, + [5117] = 4698, + [5118] = 4950, + [5119] = 4712, + [5120] = 4177, + [5121] = 4754, + [5122] = 4823, + [5123] = 4751, + [5124] = 4821, + [5125] = 4713, + [5126] = 5126, + [5127] = 4261, + [5128] = 4727, + [5129] = 4758, + [5130] = 4729, + [5131] = 4261, + [5132] = 5132, + [5133] = 5063, + [5134] = 4789, + [5135] = 5023, + [5136] = 4757, + [5137] = 4731, + [5138] = 4735, + [5139] = 4650, + [5140] = 4736, + [5141] = 4935, + [5142] = 4955, + [5143] = 4651, + [5144] = 4714, + [5145] = 4743, + [5146] = 4746, + [5147] = 4994, + [5148] = 4706, + [5149] = 4707, + [5150] = 4715, + [5151] = 4655, + [5152] = 5010, + [5153] = 4721, + [5154] = 5100, + [5155] = 4658, + [5156] = 4717, + [5157] = 4235, + [5158] = 4667, + [5159] = 4699, + [5160] = 4766, + [5161] = 4767, + [5162] = 5063, [5163] = 5163, - [5164] = 5152, - [5165] = 5165, + [5164] = 5164, + [5165] = 5163, [5166] = 5166, - [5167] = 5167, + [5167] = 5163, [5168] = 5168, [5169] = 5169, [5170] = 5170, [5171] = 5171, - [5172] = 5152, - [5173] = 5151, - [5174] = 5174, - [5175] = 5152, - [5176] = 3199, + [5172] = 5172, + [5173] = 5173, + [5174] = 5163, + [5175] = 5016, + [5176] = 5176, [5177] = 5177, - [5178] = 5178, + [5178] = 5163, [5179] = 5179, [5180] = 5180, [5181] = 5181, [5182] = 5182, - [5183] = 5183, + [5183] = 5163, [5184] = 5184, [5185] = 5185, [5186] = 5186, [5187] = 5187, - [5188] = 5179, - [5189] = 5189, - [5190] = 5190, - [5191] = 5179, - [5192] = 4282, + [5188] = 5169, + [5189] = 3197, + [5190] = 4434, + [5191] = 5191, + [5192] = 5177, [5193] = 5193, - [5194] = 5194, - [5195] = 5195, + [5194] = 4248, + [5195] = 5173, [5196] = 5196, - [5197] = 3199, + [5197] = 5197, [5198] = 5198, - [5199] = 5165, - [5200] = 5162, - [5201] = 5181, + [5199] = 5186, + [5200] = 5200, + [5201] = 5201, [5202] = 5202, [5203] = 5203, - [5204] = 5204, - [5205] = 5154, - [5206] = 5152, + [5204] = 5163, + [5205] = 5205, + [5206] = 5206, [5207] = 5207, - [5208] = 5171, - [5209] = 5209, + [5208] = 5208, + [5209] = 5179, [5210] = 5210, - [5211] = 5211, - [5212] = 5195, + [5211] = 5172, + [5212] = 5212, [5213] = 5213, - [5214] = 5214, - [5215] = 5215, - [5216] = 5216, - [5217] = 5198, - [5218] = 5203, - [5219] = 5219, - [5220] = 5152, - [5221] = 5174, + [5214] = 5173, + [5215] = 5212, + [5216] = 4434, + [5217] = 4434, + [5218] = 5218, + [5219] = 5186, + [5220] = 5220, + [5221] = 5221, [5222] = 5222, - [5223] = 5223, - [5224] = 5207, + [5223] = 5201, + [5224] = 5202, [5225] = 5225, - [5226] = 5226, - [5227] = 5151, - [5228] = 640, + [5226] = 3196, + [5227] = 5203, + [5228] = 5228, [5229] = 5229, - [5230] = 5183, + [5230] = 5196, [5231] = 5231, - [5232] = 5214, - [5233] = 5233, - [5234] = 5179, + [5232] = 5232, + [5233] = 5225, + [5234] = 5234, [5235] = 5235, [5236] = 5236, - [5237] = 5161, - [5238] = 5154, - [5239] = 5216, - [5240] = 5203, + [5237] = 5187, + [5238] = 5238, + [5239] = 5173, + [5240] = 5240, [5241] = 5241, - [5242] = 5152, - [5243] = 5152, - [5244] = 5152, - [5245] = 5152, - [5246] = 5152, - [5247] = 5152, - [5248] = 5152, + [5242] = 5221, + [5243] = 5243, + [5244] = 5244, + [5245] = 5245, + [5246] = 5246, + [5247] = 5184, + [5248] = 5248, [5249] = 5249, - [5250] = 3187, - [5251] = 5165, - [5252] = 5154, - [5253] = 5216, - [5254] = 5152, - [5255] = 5179, - [5256] = 4207, - [5257] = 5257, - [5258] = 5154, - [5259] = 5259, - [5260] = 3192, - [5261] = 5210, - [5262] = 5214, - [5263] = 5263, - [5264] = 4328, - [5265] = 5216, - [5266] = 5186, + [5250] = 5250, + [5251] = 5166, + [5252] = 5191, + [5253] = 4185, + [5254] = 5254, + [5255] = 5185, + [5256] = 5163, + [5257] = 5163, + [5258] = 5163, + [5259] = 5163, + [5260] = 5163, + [5261] = 5163, + [5262] = 5163, + [5263] = 5163, + [5264] = 3197, + [5265] = 5218, + [5266] = 5266, [5267] = 5267, - [5268] = 5268, + [5268] = 3206, [5269] = 5269, - [5270] = 5222, + [5270] = 5270, [5271] = 5271, - [5272] = 5223, - [5273] = 5207, - [5274] = 5274, - [5275] = 5209, - [5276] = 5183, + [5272] = 5186, + [5273] = 5166, + [5274] = 5202, + [5275] = 5222, + [5276] = 5231, [5277] = 5277, - [5278] = 5231, - [5279] = 5216, - [5280] = 5233, - [5281] = 5222, - [5282] = 5154, - [5283] = 5283, - [5284] = 5259, - [5285] = 5285, - [5286] = 5152, - [5287] = 5152, - [5288] = 5288, - [5289] = 5152, - [5290] = 5163, - [5291] = 5291, - [5292] = 5223, + [5278] = 5225, + [5279] = 5279, + [5280] = 5280, + [5281] = 5173, + [5282] = 5282, + [5283] = 5240, + [5284] = 5241, + [5285] = 5221, + [5286] = 5245, + [5287] = 5200, + [5288] = 5184, + [5289] = 5248, + [5290] = 5185, + [5291] = 5250, + [5292] = 5250, [5293] = 5293, - [5294] = 5225, - [5295] = 3176, - [5296] = 5296, - [5297] = 5297, + [5294] = 5191, + [5295] = 3204, + [5296] = 3196, + [5297] = 5225, [5298] = 5298, [5299] = 5299, - [5300] = 5210, - [5301] = 5296, - [5302] = 5298, - [5303] = 5179, - [5304] = 5304, + [5300] = 5225, + [5301] = 5301, + [5302] = 5163, + [5303] = 5303, + [5304] = 5085, [5305] = 5305, - [5306] = 5306, + [5306] = 5241, [5307] = 5307, - [5308] = 5179, - [5309] = 5152, + [5308] = 5308, + [5309] = 5309, [5310] = 5310, - [5311] = 5184, - [5312] = 5241, + [5311] = 5248, + [5312] = 5222, [5313] = 5313, - [5314] = 5186, - [5315] = 3187, - [5316] = 5181, + [5314] = 5078, + [5315] = 5315, + [5316] = 5316, [5317] = 5317, - [5318] = 4999, - [5319] = 5296, - [5320] = 5198, - [5321] = 5298, - [5322] = 5161, - [5323] = 5233, - [5324] = 5304, + [5318] = 5318, + [5319] = 5310, + [5320] = 5320, + [5321] = 5321, + [5322] = 5245, + [5323] = 5207, + [5324] = 5324, [5325] = 5325, - [5326] = 5152, - [5327] = 5216, - [5328] = 5328, - [5329] = 5306, - [5330] = 5241, - [5331] = 5162, - [5332] = 5196, - [5333] = 5225, - [5334] = 5334, - [5335] = 5335, - [5336] = 5035, - [5337] = 5296, - [5338] = 5194, + [5326] = 5186, + [5327] = 5327, + [5328] = 5240, + [5329] = 5329, + [5330] = 5330, + [5331] = 3204, + [5332] = 5325, + [5333] = 5163, + [5334] = 5280, + [5335] = 5325, + [5336] = 5336, + [5337] = 5337, + [5338] = 5313, [5339] = 5339, - [5340] = 5231, - [5341] = 5335, - [5342] = 5181, - [5343] = 5298, - [5344] = 5263, - [5345] = 5345, - [5346] = 5153, - [5347] = 5152, - [5348] = 5304, - [5349] = 5171, - [5350] = 5350, - [5351] = 5351, - [5352] = 5259, - [5353] = 5189, - [5354] = 5179, - [5355] = 4328, + [5340] = 5228, + [5341] = 5163, + [5342] = 5225, + [5343] = 5206, + [5344] = 5220, + [5345] = 5270, + [5346] = 5346, + [5347] = 5347, + [5348] = 5348, + [5349] = 5347, + [5350] = 5346, + [5351] = 5271, + [5352] = 5313, + [5353] = 5207, + [5354] = 5163, + [5355] = 5166, [5356] = 5356, - [5357] = 5306, - [5358] = 5259, - [5359] = 5204, - [5360] = 5306, - [5361] = 5361, - [5362] = 5168, - [5363] = 3176, - [5364] = 4328, - [5365] = 5328, - [5366] = 5299, - [5367] = 5367, - [5368] = 5145, - [5369] = 5213, - [5370] = 5268, - [5371] = 5371, - [5372] = 5194, - [5373] = 5373, - [5374] = 5178, - [5375] = 5375, - [5376] = 5283, + [5357] = 5177, + [5358] = 5163, + [5359] = 5359, + [5360] = 5310, + [5361] = 5173, + [5362] = 5198, + [5363] = 5186, + [5364] = 5198, + [5365] = 5200, + [5366] = 5206, + [5367] = 5301, + [5368] = 5347, + [5369] = 5369, + [5370] = 5301, + [5371] = 5222, + [5372] = 5372, + [5373] = 5347, + [5374] = 5193, + [5375] = 5169, + [5376] = 5212, [5377] = 5377, - [5378] = 5378, - [5379] = 5335, - [5380] = 5380, - [5381] = 5381, - [5382] = 5382, - [5383] = 5383, + [5378] = 5280, + [5379] = 5231, + [5380] = 5176, + [5381] = 5185, + [5382] = 5271, + [5383] = 5173, [5384] = 5384, - [5385] = 5385, - [5386] = 5383, + [5385] = 694, + [5386] = 5321, [5387] = 5387, - [5388] = 5388, - [5389] = 5389, + [5388] = 5173, + [5389] = 5208, [5390] = 5390, - [5391] = 5391, - [5392] = 5381, + [5391] = 5180, + [5392] = 5212, [5393] = 5393, [5394] = 5394, [5395] = 5395, - [5396] = 5396, + [5396] = 5394, [5397] = 5397, [5398] = 5398, [5399] = 5399, - [5400] = 5382, + [5400] = 4765, [5401] = 5401, - [5402] = 5396, - [5403] = 5383, - [5404] = 5381, - [5405] = 5387, + [5402] = 5402, + [5403] = 5403, + [5404] = 5397, + [5405] = 5405, [5406] = 5406, - [5407] = 5395, - [5408] = 5408, + [5407] = 5407, + [5408] = 5403, [5409] = 5409, - [5410] = 5408, - [5411] = 492, - [5412] = 5391, - [5413] = 5408, - [5414] = 5387, + [5410] = 5398, + [5411] = 5411, + [5412] = 5412, + [5413] = 5397, + [5414] = 5398, [5415] = 5415, [5416] = 5416, - [5417] = 5396, + [5417] = 5417, [5418] = 5418, [5419] = 5419, [5420] = 5420, - [5421] = 5390, - [5422] = 5408, - [5423] = 5423, - [5424] = 5408, - [5425] = 5399, - [5426] = 5387, + [5421] = 5395, + [5422] = 5422, + [5423] = 5411, + [5424] = 5424, + [5425] = 5425, + [5426] = 5426, [5427] = 5395, - [5428] = 5394, + [5428] = 5426, [5429] = 5429, - [5430] = 5390, - [5431] = 5431, - [5432] = 5382, - [5433] = 5391, - [5434] = 5434, - [5435] = 5396, - [5436] = 5436, + [5430] = 5430, + [5431] = 5415, + [5432] = 5393, + [5433] = 5433, + [5434] = 5407, + [5435] = 5412, + [5436] = 5398, [5437] = 5437, [5438] = 5438, [5439] = 5439, - [5440] = 5396, - [5441] = 5441, - [5442] = 5387, - [5443] = 5395, + [5440] = 5440, + [5441] = 5429, + [5442] = 5412, + [5443] = 5437, [5444] = 5444, [5445] = 5445, [5446] = 5446, [5447] = 5447, - [5448] = 5415, - [5449] = 5449, - [5450] = 5415, - [5451] = 5451, - [5452] = 5390, - [5453] = 5453, - [5454] = 5387, - [5455] = 5415, - [5456] = 5395, - [5457] = 5395, - [5458] = 5458, - [5459] = 5459, - [5460] = 5460, - [5461] = 5383, - [5462] = 5462, - [5463] = 5393, - [5464] = 5464, - [5465] = 5383, - [5466] = 5387, - [5467] = 5467, - [5468] = 5387, - [5469] = 5387, - [5470] = 5395, - [5471] = 5393, - [5472] = 5399, - [5473] = 5473, - [5474] = 5415, + [5448] = 5448, + [5449] = 5398, + [5450] = 5450, + [5451] = 5401, + [5452] = 5395, + [5453] = 5417, + [5454] = 5402, + [5455] = 5448, + [5456] = 5456, + [5457] = 5402, + [5458] = 5395, + [5459] = 5397, + [5460] = 5395, + [5461] = 5461, + [5462] = 5415, + [5463] = 5463, + [5464] = 5398, + [5465] = 5395, + [5466] = 5466, + [5467] = 5461, + [5468] = 5429, + [5469] = 5469, + [5470] = 5470, + [5471] = 5415, + [5472] = 5424, + [5473] = 5424, + [5474] = 5395, [5475] = 5475, - [5476] = 5388, - [5477] = 5389, - [5478] = 5387, - [5479] = 5479, - [5480] = 5480, - [5481] = 5481, - [5482] = 5420, - [5483] = 5467, - [5484] = 5438, - [5485] = 5481, - [5486] = 5486, - [5487] = 5401, + [5476] = 5398, + [5477] = 5477, + [5478] = 5478, + [5479] = 5395, + [5480] = 5395, + [5481] = 5415, + [5482] = 5482, + [5483] = 5415, + [5484] = 5484, + [5485] = 5485, + [5486] = 5397, + [5487] = 5487, [5488] = 5488, - [5489] = 5393, - [5490] = 5490, - [5491] = 5406, - [5492] = 5406, - [5493] = 5438, - [5494] = 5481, + [5489] = 5469, + [5490] = 5398, + [5491] = 5395, + [5492] = 5492, + [5493] = 5405, + [5494] = 5406, [5495] = 5409, - [5496] = 5387, - [5497] = 5497, + [5496] = 5429, + [5497] = 5397, [5498] = 5498, - [5499] = 5395, - [5500] = 5481, - [5501] = 5395, - [5502] = 5395, - [5503] = 5382, - [5504] = 5504, + [5499] = 5415, + [5500] = 5456, + [5501] = 5475, + [5502] = 5482, + [5503] = 5437, + [5504] = 5418, [5505] = 5505, - [5506] = 5408, - [5507] = 5439, - [5508] = 5508, - [5509] = 5509, - [5510] = 5504, - [5511] = 5486, - [5512] = 5512, - [5513] = 5486, - [5514] = 5431, - [5515] = 5481, - [5516] = 5438, + [5506] = 5444, + [5507] = 5425, + [5508] = 5417, + [5509] = 5411, + [5510] = 5419, + [5511] = 5511, + [5512] = 5426, + [5513] = 5398, + [5514] = 5470, + [5515] = 5450, + [5516] = 5516, [5517] = 5517, - [5518] = 5437, - [5519] = 5387, - [5520] = 5520, - [5521] = 5401, - [5522] = 5429, - [5523] = 5446, - [5524] = 5464, - [5525] = 5393, - [5526] = 5382, - [5527] = 5383, - [5528] = 5390, - [5529] = 5395, - [5530] = 5486, - [5531] = 5531, - [5532] = 5399, - [5533] = 5451, - [5534] = 5534, - [5535] = 5394, - [5536] = 5429, - [5537] = 5396, - [5538] = 5398, - [5539] = 5396, - [5540] = 5520, - [5541] = 5541, - [5542] = 5418, - [5543] = 5434, - [5544] = 5438, - [5545] = 5399, - [5546] = 5464, - [5547] = 5444, - [5548] = 5486, - [5549] = 5520, - [5550] = 5550, - [5551] = 5551, - [5552] = 5438, - [5553] = 5553, - [5554] = 5554, - [5555] = 5555, - [5556] = 5554, - [5557] = 5387, - [5558] = 5558, - [5559] = 5396, - [5560] = 5508, - [5561] = 5561, - [5562] = 5395, - [5563] = 5561, - [5564] = 5387, - [5565] = 5397, + [5518] = 5518, + [5519] = 5519, + [5520] = 5424, + [5521] = 5521, + [5522] = 5398, + [5523] = 5448, + [5524] = 5456, + [5525] = 5485, + [5526] = 5444, + [5527] = 5517, + [5528] = 5395, + [5529] = 5424, + [5530] = 5402, + [5531] = 5397, + [5532] = 5532, + [5533] = 5533, + [5534] = 5395, + [5535] = 5535, + [5536] = 5402, + [5537] = 5407, + [5538] = 5050, + [5539] = 5395, + [5540] = 5540, + [5541] = 5405, + [5542] = 5417, + [5543] = 5543, + [5544] = 5518, + [5545] = 5545, + [5546] = 5445, + [5547] = 5547, + [5548] = 5403, + [5549] = 5450, + [5550] = 5425, + [5551] = 5446, + [5552] = 5552, + [5553] = 5433, + [5554] = 493, + [5555] = 5430, + [5556] = 5556, + [5557] = 5430, + [5558] = 5415, + [5559] = 5559, + [5560] = 5484, + [5561] = 5420, + [5562] = 5406, + [5563] = 5563, + [5564] = 5564, + [5565] = 5565, [5566] = 5566, - [5567] = 5395, + [5567] = 5401, [5568] = 5568, - [5569] = 5408, - [5570] = 5570, - [5571] = 5571, - [5572] = 5572, + [5569] = 5424, + [5570] = 5533, + [5571] = 5540, + [5572] = 5398, [5573] = 5573, [5574] = 5574, - [5575] = 5575, - [5576] = 5576, - [5577] = 5577, - [5578] = 5568, - [5579] = 5579, + [5575] = 5488, + [5576] = 5463, + [5577] = 5412, + [5578] = 5540, + [5579] = 5398, [5580] = 5580, - [5581] = 5581, - [5582] = 5441, - [5583] = 5555, - [5584] = 5415, - [5585] = 5458, - [5586] = 5566, - [5587] = 5439, - [5588] = 493, - [5589] = 5390, - [5590] = 5420, - [5591] = 5574, - [5592] = 5508, - [5593] = 5408, - [5594] = 5568, - [5595] = 5512, - [5596] = 5517, - [5597] = 5597, - [5598] = 5598, - [5599] = 5387, - [5600] = 5444, - [5601] = 5481, - [5602] = 5437, - [5603] = 5408, - [5604] = 5486, - [5605] = 5449, - [5606] = 5475, - [5607] = 5479, - [5608] = 5608, - [5609] = 5387, - [5610] = 5446, - [5611] = 5481, - [5612] = 5395, - [5613] = 5390, - [5614] = 5614, - [5615] = 5415, - [5616] = 5473, - [5617] = 5617, - [5618] = 5576, - [5619] = 5453, + [5581] = 5407, + [5582] = 5429, + [5583] = 5583, + [5584] = 5420, + [5585] = 5484, + [5586] = 5419, + [5587] = 5580, + [5588] = 5412, + [5589] = 5417, + [5590] = 5398, + [5591] = 5591, + [5592] = 5580, + [5593] = 5593, + [5594] = 5547, + [5595] = 5433, + [5596] = 5593, + [5597] = 5456, + [5598] = 5407, + [5599] = 5599, + [5600] = 5422, + [5601] = 5601, + [5602] = 5412, + [5603] = 5444, + [5604] = 5420, + [5605] = 5429, + [5606] = 5545, + [5607] = 5607, + [5608] = 5485, + [5609] = 5445, + [5610] = 5433, + [5611] = 5424, + [5612] = 5556, + [5613] = 5563, + [5614] = 5566, + [5615] = 5615, + [5616] = 5461, + [5617] = 5444, + [5618] = 5618, + [5619] = 5430, [5620] = 5620, - [5621] = 5614, - [5622] = 5481, - [5623] = 5623, - [5624] = 4955, - [5625] = 5486, - [5626] = 5497, - [5627] = 5398, - [5628] = 5438, - [5629] = 5408, - [5630] = 5630, - [5631] = 5395, - [5632] = 5449, - [5633] = 5460, - [5634] = 5459, - [5635] = 5398, - [5636] = 5598, - [5637] = 5391, - [5638] = 5408, - [5639] = 5509, - [5640] = 5396, - [5641] = 5437, - [5642] = 5520, - [5643] = 5504, - [5644] = 5644, - [5645] = 5396, - [5646] = 5453, - [5647] = 5459, - [5648] = 5438, - [5649] = 5382, - [5650] = 5383, - [5651] = 5387, - [5652] = 5395, - [5653] = 5390, - [5654] = 5654, - [5655] = 5388, - [5656] = 5437, - [5657] = 5387, - [5658] = 5395, - [5659] = 5504, - [5660] = 5395, - [5661] = 5486, - [5662] = 5577, - [5663] = 5396, - [5664] = 5052, - [5665] = 5458, - [5666] = 5666, - [5667] = 5597, - [5668] = 5577, - [5669] = 5669, - [5670] = 5597, - [5671] = 5671, - [5672] = 5520, - [5673] = 5608, - [5674] = 5666, - [5675] = 5577, - [5676] = 5520, - [5677] = 5577, - [5678] = 5577, - [5679] = 5577, - [5680] = 5577, - [5681] = 5415, - [5682] = 5654, - [5683] = 5581, - [5684] = 5684, - [5685] = 5620, - [5686] = 5434, - [5687] = 5558, - [5688] = 5387, - [5689] = 5504, - [5690] = 5551, - [5691] = 5437, - [5692] = 5623, - [5693] = 5520, - [5694] = 5391, - [5695] = 5389, - [5696] = 5696, - [5697] = 5447, - [5698] = 5669, - [5699] = 5541, - [5700] = 5460, - [5701] = 5408, - [5702] = 5409, - [5703] = 5684, - [5704] = 5395, - [5705] = 5705, - [5706] = 5550, - [5707] = 5382, - [5708] = 5383, - [5709] = 5709, - [5710] = 5390, - [5711] = 5464, - [5712] = 5437, - [5713] = 5713, - [5714] = 5714, - [5715] = 5467, - [5716] = 5437, - [5717] = 5382, - [5718] = 5623, - [5719] = 5669, - [5720] = 5720, - [5721] = 5720, - [5722] = 5387, - [5723] = 5395, - [5724] = 5520, - [5725] = 5397, - [5726] = 5439, + [5621] = 5395, + [5622] = 5622, + [5623] = 5412, + [5624] = 5565, + [5625] = 5573, + [5626] = 5398, + [5627] = 5463, + [5628] = 5477, + [5629] = 5417, + [5630] = 5420, + [5631] = 5418, + [5632] = 5487, + [5633] = 5395, + [5634] = 5424, + [5635] = 5450, + [5636] = 5636, + [5637] = 5395, + [5638] = 5429, + [5639] = 5429, + [5640] = 5640, + [5641] = 5446, + [5642] = 5622, + [5643] = 5643, + [5644] = 5439, + [5645] = 5444, + [5646] = 5646, + [5647] = 5450, + [5648] = 5648, + [5649] = 5649, + [5650] = 5429, + [5651] = 5448, + [5652] = 5402, + [5653] = 5433, + [5654] = 5397, + [5655] = 5429, + [5656] = 5656, + [5657] = 5444, + [5658] = 5658, + [5659] = 5466, + [5660] = 5658, + [5661] = 5450, + [5662] = 5466, + [5663] = 5615, + [5664] = 5448, + [5665] = 5402, + [5666] = 494, + [5667] = 5415, + [5668] = 5668, + [5669] = 5398, + [5670] = 5395, + [5671] = 5620, + [5672] = 5672, + [5673] = 5673, + [5674] = 5415, + [5675] = 5398, + [5676] = 5395, + [5677] = 5591, + [5678] = 5409, + [5679] = 5679, + [5680] = 5547, + [5681] = 5398, + [5682] = 5398, + [5683] = 5683, + [5684] = 5470, + [5685] = 5615, + [5686] = 5397, + [5687] = 5398, + [5688] = 5688, + [5689] = 5450, + [5690] = 5429, + [5691] = 5580, + [5692] = 5618, + [5693] = 5547, + [5694] = 5516, + [5695] = 5547, + [5696] = 5547, + [5697] = 5547, + [5698] = 5547, + [5699] = 5699, + [5700] = 5668, + [5701] = 5679, + [5702] = 5407, + [5703] = 5440, + [5704] = 5429, + [5705] = 5475, + [5706] = 5646, + [5707] = 5699, + [5708] = 5416, + [5709] = 5658, + [5710] = 5672, + [5711] = 5407, + [5712] = 5448, + [5713] = 5407, + [5714] = 5419, + [5715] = 5636, + [5716] = 5393, + [5717] = 5580, + [5718] = 5450, + [5719] = 5719, + [5720] = 5448, + [5721] = 5568, + [5722] = 5477, + [5723] = 5723, + [5724] = 5532, + [5725] = 5417, + [5726] = 5402, + [5727] = 5727, + [5728] = 5728, + [5729] = 5599, + [5730] = 5430, + [5731] = 5412, + [5732] = 5540, + [5733] = 5733, + [5734] = 5734, + [5735] = 5735, + [5736] = 5672, + [5737] = 5448, + [5738] = 5415, + [5739] = 5417, + [5740] = 5398, + [5741] = 5395, + [5742] = 5444, + [5743] = 5683, + [5744] = 5519, }; static TSCharacterRange sym_identifier_character_set_1[] = { @@ -10758,7 +10787,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ':') ADVANCE(84); if (lookahead == '[') ADVANCE(95); if (lookahead == '\\') ADVANCE(21); - if (lookahead == 'e') ADVANCE(199); + if (lookahead == 'e') ADVANCE(200); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || @@ -11100,7 +11129,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(100); if (lookahead == '.') ADVANCE(26); if (lookahead == '0') ADVANCE(171); - if (lookahead == ':') ADVANCE(84); if (lookahead == '<') ADVANCE(128); if (lookahead == '@') ADVANCE(98); if (lookahead == '[') ADVANCE(95); @@ -11127,6 +11155,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(100); if (lookahead == '.') ADVANCE(26); if (lookahead == '0') ADVANCE(171); + if (lookahead == ':') ADVANCE(84); if (lookahead == '<') ADVANCE(128); if (lookahead == '@') ADVANCE(98); if (lookahead == '[') ADVANCE(95); @@ -11752,12 +11781,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 196: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(87); + if (lookahead == 't') ADVANCE(185); if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(201); END_STATE(); case 197: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(185); + if (lookahead == 't') ADVANCE(87); if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(201); END_STATE(); case 198: @@ -13268,15 +13297,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [195] = {.lex_state = 66, .external_lex_state = 3}, [196] = {.lex_state = 66, .external_lex_state = 3}, [197] = {.lex_state = 66, .external_lex_state = 3}, - [198] = {.lex_state = 66, .external_lex_state = 2}, - [199] = {.lex_state = 66, .external_lex_state = 2}, - [200] = {.lex_state = 66, .external_lex_state = 3}, + [198] = {.lex_state = 66, .external_lex_state = 3}, + [199] = {.lex_state = 66, .external_lex_state = 3}, + [200] = {.lex_state = 66, .external_lex_state = 2}, [201] = {.lex_state = 66, .external_lex_state = 2}, [202] = {.lex_state = 66, .external_lex_state = 2}, [203] = {.lex_state = 66, .external_lex_state = 3}, [204] = {.lex_state = 66, .external_lex_state = 3}, [205] = {.lex_state = 66, .external_lex_state = 3}, - [206] = {.lex_state = 66, .external_lex_state = 3}, + [206] = {.lex_state = 66, .external_lex_state = 2}, [207] = {.lex_state = 66, .external_lex_state = 3}, [208] = {.lex_state = 66, .external_lex_state = 3}, [209] = {.lex_state = 66, .external_lex_state = 3}, @@ -13328,7 +13357,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [255] = {.lex_state = 66, .external_lex_state = 4}, [256] = {.lex_state = 66, .external_lex_state = 4}, [257] = {.lex_state = 66, .external_lex_state = 4}, - [258] = {.lex_state = 6, .external_lex_state = 5}, + [258] = {.lex_state = 66, .external_lex_state = 4}, [259] = {.lex_state = 66, .external_lex_state = 4}, [260] = {.lex_state = 66, .external_lex_state = 4}, [261] = {.lex_state = 66, .external_lex_state = 4}, @@ -13449,7 +13478,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [376] = {.lex_state = 66, .external_lex_state = 4}, [377] = {.lex_state = 66, .external_lex_state = 4}, [378] = {.lex_state = 66, .external_lex_state = 4}, - [379] = {.lex_state = 66, .external_lex_state = 4}, + [379] = {.lex_state = 6, .external_lex_state = 5}, [380] = {.lex_state = 66, .external_lex_state = 4}, [381] = {.lex_state = 66, .external_lex_state = 4}, [382] = {.lex_state = 66, .external_lex_state = 4}, @@ -13457,7 +13486,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [384] = {.lex_state = 66, .external_lex_state = 4}, [385] = {.lex_state = 66, .external_lex_state = 4}, [386] = {.lex_state = 66, .external_lex_state = 4}, - [387] = {.lex_state = 6, .external_lex_state = 5}, + [387] = {.lex_state = 66, .external_lex_state = 4}, [388] = {.lex_state = 66, .external_lex_state = 4}, [389] = {.lex_state = 66, .external_lex_state = 4}, [390] = {.lex_state = 66, .external_lex_state = 4}, @@ -13487,7 +13516,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [414] = {.lex_state = 66, .external_lex_state = 4}, [415] = {.lex_state = 66, .external_lex_state = 4}, [416] = {.lex_state = 66, .external_lex_state = 4}, - [417] = {.lex_state = 66, .external_lex_state = 4}, + [417] = {.lex_state = 6, .external_lex_state = 5}, [418] = {.lex_state = 66, .external_lex_state = 4}, [419] = {.lex_state = 66, .external_lex_state = 4}, [420] = {.lex_state = 66, .external_lex_state = 4}, @@ -13553,15 +13582,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [480] = {.lex_state = 5, .external_lex_state = 6}, [481] = {.lex_state = 66, .external_lex_state = 6}, [482] = {.lex_state = 66, .external_lex_state = 6}, - [483] = {.lex_state = 66, .external_lex_state = 3}, + [483] = {.lex_state = 66, .external_lex_state = 6}, [484] = {.lex_state = 66, .external_lex_state = 3}, - [485] = {.lex_state = 66, .external_lex_state = 3}, - [486] = {.lex_state = 7, .external_lex_state = 5}, + [485] = {.lex_state = 7, .external_lex_state = 5}, + [486] = {.lex_state = 66, .external_lex_state = 3}, [487] = {.lex_state = 66, .external_lex_state = 3}, [488] = {.lex_state = 66, .external_lex_state = 3}, - [489] = {.lex_state = 8, .external_lex_state = 5}, + [489] = {.lex_state = 66, .external_lex_state = 3}, [490] = {.lex_state = 8, .external_lex_state = 5}, - [491] = {.lex_state = 66, .external_lex_state = 3}, + [491] = {.lex_state = 8, .external_lex_state = 5}, [492] = {.lex_state = 66, .external_lex_state = 3}, [493] = {.lex_state = 66, .external_lex_state = 3}, [494] = {.lex_state = 66, .external_lex_state = 3}, @@ -13659,7 +13688,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [586] = {.lex_state = 66, .external_lex_state = 3}, [587] = {.lex_state = 66, .external_lex_state = 3}, [588] = {.lex_state = 66, .external_lex_state = 3}, - [589] = {.lex_state = 7, .external_lex_state = 7}, + [589] = {.lex_state = 66, .external_lex_state = 3}, [590] = {.lex_state = 66, .external_lex_state = 3}, [591] = {.lex_state = 66, .external_lex_state = 3}, [592] = {.lex_state = 66, .external_lex_state = 3}, @@ -13677,7 +13706,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [604] = {.lex_state = 66, .external_lex_state = 3}, [605] = {.lex_state = 66, .external_lex_state = 3}, [606] = {.lex_state = 66, .external_lex_state = 3}, - [607] = {.lex_state = 66, .external_lex_state = 3}, + [607] = {.lex_state = 7, .external_lex_state = 7}, [608] = {.lex_state = 66, .external_lex_state = 3}, [609] = {.lex_state = 66, .external_lex_state = 3}, [610] = {.lex_state = 66, .external_lex_state = 3}, @@ -13717,14 +13746,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [644] = {.lex_state = 66, .external_lex_state = 3}, [645] = {.lex_state = 66, .external_lex_state = 3}, [646] = {.lex_state = 66, .external_lex_state = 3}, - [647] = {.lex_state = 7, .external_lex_state = 7}, + [647] = {.lex_state = 66, .external_lex_state = 3}, [648] = {.lex_state = 66, .external_lex_state = 3}, [649] = {.lex_state = 66, .external_lex_state = 3}, [650] = {.lex_state = 66, .external_lex_state = 3}, [651] = {.lex_state = 66, .external_lex_state = 3}, [652] = {.lex_state = 66, .external_lex_state = 3}, [653] = {.lex_state = 66, .external_lex_state = 3}, - [654] = {.lex_state = 8, .external_lex_state = 7}, + [654] = {.lex_state = 66, .external_lex_state = 3}, [655] = {.lex_state = 66, .external_lex_state = 3}, [656] = {.lex_state = 66, .external_lex_state = 3}, [657] = {.lex_state = 66, .external_lex_state = 3}, @@ -13765,8 +13794,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [692] = {.lex_state = 66, .external_lex_state = 3}, [693] = {.lex_state = 66, .external_lex_state = 3}, [694] = {.lex_state = 66, .external_lex_state = 3}, - [695] = {.lex_state = 66, .external_lex_state = 3}, - [696] = {.lex_state = 66, .external_lex_state = 3}, + [695] = {.lex_state = 7, .external_lex_state = 7}, + [696] = {.lex_state = 8, .external_lex_state = 7}, [697] = {.lex_state = 66, .external_lex_state = 3}, [698] = {.lex_state = 66, .external_lex_state = 3}, [699] = {.lex_state = 66, .external_lex_state = 3}, @@ -13776,176 +13805,176 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [703] = {.lex_state = 66, .external_lex_state = 3}, [704] = {.lex_state = 66, .external_lex_state = 3}, [705] = {.lex_state = 66, .external_lex_state = 3}, - [706] = {.lex_state = 7, .external_lex_state = 7}, - [707] = {.lex_state = 66, .external_lex_state = 3}, + [706] = {.lex_state = 66, .external_lex_state = 3}, + [707] = {.lex_state = 9, .external_lex_state = 5}, [708] = {.lex_state = 66, .external_lex_state = 3}, [709] = {.lex_state = 9, .external_lex_state = 5}, [710] = {.lex_state = 66, .external_lex_state = 3}, [711] = {.lex_state = 66, .external_lex_state = 3}, [712] = {.lex_state = 66, .external_lex_state = 3}, - [713] = {.lex_state = 66, .external_lex_state = 3}, - [714] = {.lex_state = 66, .external_lex_state = 3}, + [713] = {.lex_state = 8, .external_lex_state = 2}, + [714] = {.lex_state = 7, .external_lex_state = 6}, [715] = {.lex_state = 66, .external_lex_state = 3}, - [716] = {.lex_state = 9, .external_lex_state = 5}, - [717] = {.lex_state = 66, .external_lex_state = 3}, + [716] = {.lex_state = 7, .external_lex_state = 7}, + [717] = {.lex_state = 66, .external_lex_state = 2}, [718] = {.lex_state = 66, .external_lex_state = 3}, - [719] = {.lex_state = 7, .external_lex_state = 2}, - [720] = {.lex_state = 8, .external_lex_state = 2}, - [721] = {.lex_state = 7, .external_lex_state = 7}, - [722] = {.lex_state = 8, .external_lex_state = 7}, - [723] = {.lex_state = 7, .external_lex_state = 6}, - [724] = {.lex_state = 8, .external_lex_state = 7}, - [725] = {.lex_state = 7, .external_lex_state = 6}, - [726] = {.lex_state = 7, .external_lex_state = 6}, - [727] = {.lex_state = 7, .external_lex_state = 8}, - [728] = {.lex_state = 7, .external_lex_state = 8}, - [729] = {.lex_state = 7, .external_lex_state = 2}, - [730] = {.lex_state = 8, .external_lex_state = 8}, - [731] = {.lex_state = 7, .external_lex_state = 6}, - [732] = {.lex_state = 7, .external_lex_state = 8}, - [733] = {.lex_state = 7, .external_lex_state = 6}, - [734] = {.lex_state = 8, .external_lex_state = 2}, - [735] = {.lex_state = 7, .external_lex_state = 8}, - [736] = {.lex_state = 9, .external_lex_state = 2}, - [737] = {.lex_state = 8, .external_lex_state = 8}, - [738] = {.lex_state = 9, .external_lex_state = 2}, + [719] = {.lex_state = 66, .external_lex_state = 3}, + [720] = {.lex_state = 66, .external_lex_state = 3}, + [721] = {.lex_state = 66, .external_lex_state = 2}, + [722] = {.lex_state = 66, .external_lex_state = 2}, + [723] = {.lex_state = 66, .external_lex_state = 2}, + [724] = {.lex_state = 66, .external_lex_state = 2}, + [725] = {.lex_state = 66, .external_lex_state = 2}, + [726] = {.lex_state = 66, .external_lex_state = 2}, + [727] = {.lex_state = 66, .external_lex_state = 2}, + [728] = {.lex_state = 7, .external_lex_state = 7}, + [729] = {.lex_state = 66, .external_lex_state = 3}, + [730] = {.lex_state = 66, .external_lex_state = 3}, + [731] = {.lex_state = 8, .external_lex_state = 7}, + [732] = {.lex_state = 7, .external_lex_state = 2}, + [733] = {.lex_state = 7, .external_lex_state = 2}, + [734] = {.lex_state = 8, .external_lex_state = 8}, + [735] = {.lex_state = 7, .external_lex_state = 6}, + [736] = {.lex_state = 7, .external_lex_state = 6}, + [737] = {.lex_state = 7, .external_lex_state = 8}, + [738] = {.lex_state = 8, .external_lex_state = 2}, [739] = {.lex_state = 7, .external_lex_state = 6}, - [740] = {.lex_state = 7, .external_lex_state = 6}, - [741] = {.lex_state = 7, .external_lex_state = 6}, + [740] = {.lex_state = 7, .external_lex_state = 8}, + [741] = {.lex_state = 7, .external_lex_state = 8}, [742] = {.lex_state = 7, .external_lex_state = 8}, - [743] = {.lex_state = 7, .external_lex_state = 6}, - [744] = {.lex_state = 66, .external_lex_state = 6}, - [745] = {.lex_state = 66, .external_lex_state = 2}, - [746] = {.lex_state = 66, .external_lex_state = 6}, - [747] = {.lex_state = 66, .external_lex_state = 6}, - [748] = {.lex_state = 66, .external_lex_state = 8}, - [749] = {.lex_state = 5, .external_lex_state = 7}, - [750] = {.lex_state = 66, .external_lex_state = 6}, - [751] = {.lex_state = 66, .external_lex_state = 8}, - [752] = {.lex_state = 66, .external_lex_state = 6}, - [753] = {.lex_state = 66, .external_lex_state = 8}, + [743] = {.lex_state = 8, .external_lex_state = 7}, + [744] = {.lex_state = 7, .external_lex_state = 6}, + [745] = {.lex_state = 8, .external_lex_state = 8}, + [746] = {.lex_state = 7, .external_lex_state = 8}, + [747] = {.lex_state = 7, .external_lex_state = 6}, + [748] = {.lex_state = 9, .external_lex_state = 2}, + [749] = {.lex_state = 9, .external_lex_state = 2}, + [750] = {.lex_state = 7, .external_lex_state = 6}, + [751] = {.lex_state = 7, .external_lex_state = 6}, + [752] = {.lex_state = 7, .external_lex_state = 6}, + [753] = {.lex_state = 66, .external_lex_state = 6}, [754] = {.lex_state = 5, .external_lex_state = 7}, - [755] = {.lex_state = 5, .external_lex_state = 7}, - [756] = {.lex_state = 66, .external_lex_state = 2}, - [757] = {.lex_state = 66, .external_lex_state = 2}, - [758] = {.lex_state = 66, .external_lex_state = 8}, - [759] = {.lex_state = 5, .external_lex_state = 7}, + [755] = {.lex_state = 66, .external_lex_state = 6}, + [756] = {.lex_state = 66, .external_lex_state = 8}, + [757] = {.lex_state = 5, .external_lex_state = 7}, + [758] = {.lex_state = 66, .external_lex_state = 6}, + [759] = {.lex_state = 66, .external_lex_state = 8}, [760] = {.lex_state = 66, .external_lex_state = 6}, [761] = {.lex_state = 66, .external_lex_state = 8}, - [762] = {.lex_state = 5, .external_lex_state = 7}, - [763] = {.lex_state = 66, .external_lex_state = 6}, - [764] = {.lex_state = 66, .external_lex_state = 8}, - [765] = {.lex_state = 5, .external_lex_state = 7}, - [766] = {.lex_state = 66, .external_lex_state = 6}, - [767] = {.lex_state = 66, .external_lex_state = 8}, + [762] = {.lex_state = 66, .external_lex_state = 2}, + [763] = {.lex_state = 66, .external_lex_state = 8}, + [764] = {.lex_state = 66, .external_lex_state = 6}, + [765] = {.lex_state = 66, .external_lex_state = 8}, + [766] = {.lex_state = 66, .external_lex_state = 8}, + [767] = {.lex_state = 66, .external_lex_state = 2}, [768] = {.lex_state = 5, .external_lex_state = 7}, [769] = {.lex_state = 66, .external_lex_state = 6}, - [770] = {.lex_state = 66, .external_lex_state = 8}, - [771] = {.lex_state = 5, .external_lex_state = 7}, - [772] = {.lex_state = 66, .external_lex_state = 6}, - [773] = {.lex_state = 66, .external_lex_state = 8}, + [770] = {.lex_state = 5, .external_lex_state = 7}, + [771] = {.lex_state = 66, .external_lex_state = 6}, + [772] = {.lex_state = 66, .external_lex_state = 8}, + [773] = {.lex_state = 5, .external_lex_state = 7}, [774] = {.lex_state = 66, .external_lex_state = 6}, - [775] = {.lex_state = 66, .external_lex_state = 8}, + [775] = {.lex_state = 66, .external_lex_state = 6}, [776] = {.lex_state = 66, .external_lex_state = 8}, - [777] = {.lex_state = 66, .external_lex_state = 8}, - [778] = {.lex_state = 66, .external_lex_state = 6}, - [779] = {.lex_state = 5, .external_lex_state = 8}, - [780] = {.lex_state = 5, .external_lex_state = 8}, - [781] = {.lex_state = 66, .external_lex_state = 2}, - [782] = {.lex_state = 5, .external_lex_state = 8}, - [783] = {.lex_state = 5, .external_lex_state = 8}, - [784] = {.lex_state = 66, .external_lex_state = 2}, - [785] = {.lex_state = 5, .external_lex_state = 8}, - [786] = {.lex_state = 5, .external_lex_state = 8}, - [787] = {.lex_state = 5, .external_lex_state = 2}, - [788] = {.lex_state = 5, .external_lex_state = 2}, - [789] = {.lex_state = 67, .external_lex_state = 9}, - [790] = {.lex_state = 68, .external_lex_state = 2}, - [791] = {.lex_state = 66, .external_lex_state = 6}, - [792] = {.lex_state = 5, .external_lex_state = 6}, - [793] = {.lex_state = 5, .external_lex_state = 2}, - [794] = {.lex_state = 5, .external_lex_state = 6}, - [795] = {.lex_state = 5, .external_lex_state = 2}, - [796] = {.lex_state = 5, .external_lex_state = 2}, - [797] = {.lex_state = 5, .external_lex_state = 2}, - [798] = {.lex_state = 10, .external_lex_state = 5}, + [777] = {.lex_state = 66, .external_lex_state = 6}, + [778] = {.lex_state = 66, .external_lex_state = 8}, + [779] = {.lex_state = 5, .external_lex_state = 7}, + [780] = {.lex_state = 66, .external_lex_state = 6}, + [781] = {.lex_state = 5, .external_lex_state = 7}, + [782] = {.lex_state = 66, .external_lex_state = 8}, + [783] = {.lex_state = 66, .external_lex_state = 2}, + [784] = {.lex_state = 5, .external_lex_state = 7}, + [785] = {.lex_state = 66, .external_lex_state = 6}, + [786] = {.lex_state = 66, .external_lex_state = 8}, + [787] = {.lex_state = 66, .external_lex_state = 8}, + [788] = {.lex_state = 5, .external_lex_state = 8}, + [789] = {.lex_state = 66, .external_lex_state = 2}, + [790] = {.lex_state = 5, .external_lex_state = 8}, + [791] = {.lex_state = 5, .external_lex_state = 8}, + [792] = {.lex_state = 66, .external_lex_state = 2}, + [793] = {.lex_state = 5, .external_lex_state = 8}, + [794] = {.lex_state = 5, .external_lex_state = 8}, + [795] = {.lex_state = 5, .external_lex_state = 8}, + [796] = {.lex_state = 67, .external_lex_state = 2}, + [797] = {.lex_state = 68, .external_lex_state = 9}, + [798] = {.lex_state = 5, .external_lex_state = 2}, [799] = {.lex_state = 5, .external_lex_state = 2}, - [800] = {.lex_state = 5, .external_lex_state = 6}, - [801] = {.lex_state = 66, .external_lex_state = 6}, - [802] = {.lex_state = 10, .external_lex_state = 5}, - [803] = {.lex_state = 5, .external_lex_state = 2}, - [804] = {.lex_state = 5, .external_lex_state = 6}, + [800] = {.lex_state = 10, .external_lex_state = 5}, + [801] = {.lex_state = 10, .external_lex_state = 5}, + [802] = {.lex_state = 66, .external_lex_state = 6}, + [803] = {.lex_state = 5, .external_lex_state = 6}, + [804] = {.lex_state = 5, .external_lex_state = 2}, [805] = {.lex_state = 5, .external_lex_state = 2}, - [806] = {.lex_state = 67, .external_lex_state = 10}, - [807] = {.lex_state = 5, .external_lex_state = 2}, - [808] = {.lex_state = 5, .external_lex_state = 6}, - [809] = {.lex_state = 67, .external_lex_state = 10}, - [810] = {.lex_state = 68, .external_lex_state = 3}, - [811] = {.lex_state = 66, .external_lex_state = 6}, + [806] = {.lex_state = 5, .external_lex_state = 2}, + [807] = {.lex_state = 68, .external_lex_state = 10}, + [808] = {.lex_state = 67, .external_lex_state = 3}, + [809] = {.lex_state = 68, .external_lex_state = 10}, + [810] = {.lex_state = 67, .external_lex_state = 3}, + [811] = {.lex_state = 5, .external_lex_state = 2}, [812] = {.lex_state = 5, .external_lex_state = 6}, - [813] = {.lex_state = 5, .external_lex_state = 2}, - [814] = {.lex_state = 67, .external_lex_state = 9}, - [815] = {.lex_state = 68, .external_lex_state = 2}, - [816] = {.lex_state = 5, .external_lex_state = 6}, + [813] = {.lex_state = 68, .external_lex_state = 9}, + [814] = {.lex_state = 67, .external_lex_state = 2}, + [815] = {.lex_state = 5, .external_lex_state = 6}, + [816] = {.lex_state = 5, .external_lex_state = 2}, [817] = {.lex_state = 5, .external_lex_state = 2}, - [818] = {.lex_state = 5, .external_lex_state = 6}, - [819] = {.lex_state = 5, .external_lex_state = 2}, - [820] = {.lex_state = 5, .external_lex_state = 6}, + [818] = {.lex_state = 5, .external_lex_state = 2}, + [819] = {.lex_state = 66, .external_lex_state = 6}, + [820] = {.lex_state = 5, .external_lex_state = 2}, [821] = {.lex_state = 5, .external_lex_state = 2}, [822] = {.lex_state = 5, .external_lex_state = 2}, - [823] = {.lex_state = 5, .external_lex_state = 2}, + [823] = {.lex_state = 5, .external_lex_state = 6}, [824] = {.lex_state = 5, .external_lex_state = 2}, - [825] = {.lex_state = 5, .external_lex_state = 2}, - [826] = {.lex_state = 5, .external_lex_state = 2}, + [825] = {.lex_state = 5, .external_lex_state = 6}, + [826] = {.lex_state = 5, .external_lex_state = 6}, [827] = {.lex_state = 5, .external_lex_state = 2}, - [828] = {.lex_state = 5, .external_lex_state = 2}, + [828] = {.lex_state = 5, .external_lex_state = 6}, [829] = {.lex_state = 5, .external_lex_state = 2}, [830] = {.lex_state = 5, .external_lex_state = 2}, - [831] = {.lex_state = 5, .external_lex_state = 2}, - [832] = {.lex_state = 5, .external_lex_state = 2}, - [833] = {.lex_state = 68, .external_lex_state = 3}, - [834] = {.lex_state = 66, .external_lex_state = 6}, - [835] = {.lex_state = 66, .external_lex_state = 7}, - [836] = {.lex_state = 66, .external_lex_state = 6}, - [837] = {.lex_state = 66, .external_lex_state = 8}, - [838] = {.lex_state = 66, .external_lex_state = 6}, - [839] = {.lex_state = 66, .external_lex_state = 8}, - [840] = {.lex_state = 66, .external_lex_state = 6}, - [841] = {.lex_state = 5, .external_lex_state = 6}, + [831] = {.lex_state = 5, .external_lex_state = 6}, + [832] = {.lex_state = 66, .external_lex_state = 6}, + [833] = {.lex_state = 5, .external_lex_state = 2}, + [834] = {.lex_state = 5, .external_lex_state = 2}, + [835] = {.lex_state = 5, .external_lex_state = 2}, + [836] = {.lex_state = 5, .external_lex_state = 2}, + [837] = {.lex_state = 5, .external_lex_state = 2}, + [838] = {.lex_state = 5, .external_lex_state = 2}, + [839] = {.lex_state = 5, .external_lex_state = 2}, + [840] = {.lex_state = 5, .external_lex_state = 2}, + [841] = {.lex_state = 5, .external_lex_state = 2}, [842] = {.lex_state = 5, .external_lex_state = 6}, - [843] = {.lex_state = 66, .external_lex_state = 8}, - [844] = {.lex_state = 66, .external_lex_state = 6}, + [843] = {.lex_state = 5, .external_lex_state = 6}, + [844] = {.lex_state = 5, .external_lex_state = 6}, [845] = {.lex_state = 5, .external_lex_state = 6}, [846] = {.lex_state = 5, .external_lex_state = 6}, [847] = {.lex_state = 5, .external_lex_state = 6}, [848] = {.lex_state = 5, .external_lex_state = 6}, - [849] = {.lex_state = 5, .external_lex_state = 6}, + [849] = {.lex_state = 66, .external_lex_state = 6}, [850] = {.lex_state = 66, .external_lex_state = 8}, [851] = {.lex_state = 66, .external_lex_state = 6}, - [852] = {.lex_state = 5, .external_lex_state = 6}, - [853] = {.lex_state = 5, .external_lex_state = 6}, + [852] = {.lex_state = 66, .external_lex_state = 8}, + [853] = {.lex_state = 66, .external_lex_state = 6}, [854] = {.lex_state = 5, .external_lex_state = 6}, [855] = {.lex_state = 5, .external_lex_state = 6}, [856] = {.lex_state = 5, .external_lex_state = 6}, - [857] = {.lex_state = 66, .external_lex_state = 6}, - [858] = {.lex_state = 66, .external_lex_state = 8}, - [859] = {.lex_state = 66, .external_lex_state = 6}, - [860] = {.lex_state = 5, .external_lex_state = 6}, + [857] = {.lex_state = 5, .external_lex_state = 6}, + [858] = {.lex_state = 66, .external_lex_state = 6}, + [859] = {.lex_state = 66, .external_lex_state = 8}, + [860] = {.lex_state = 66, .external_lex_state = 6}, [861] = {.lex_state = 5, .external_lex_state = 6}, [862] = {.lex_state = 5, .external_lex_state = 6}, [863] = {.lex_state = 5, .external_lex_state = 6}, - [864] = {.lex_state = 66, .external_lex_state = 6}, - [865] = {.lex_state = 66, .external_lex_state = 8}, + [864] = {.lex_state = 5, .external_lex_state = 6}, + [865] = {.lex_state = 5, .external_lex_state = 6}, [866] = {.lex_state = 66, .external_lex_state = 6}, - [867] = {.lex_state = 5, .external_lex_state = 6}, - [868] = {.lex_state = 5, .external_lex_state = 6}, + [867] = {.lex_state = 66, .external_lex_state = 8}, + [868] = {.lex_state = 66, .external_lex_state = 6}, [869] = {.lex_state = 5, .external_lex_state = 6}, [870] = {.lex_state = 5, .external_lex_state = 6}, [871] = {.lex_state = 5, .external_lex_state = 6}, - [872] = {.lex_state = 66, .external_lex_state = 6}, - [873] = {.lex_state = 66, .external_lex_state = 8}, - [874] = {.lex_state = 5, .external_lex_state = 6}, - [875] = {.lex_state = 5, .external_lex_state = 6}, + [872] = {.lex_state = 5, .external_lex_state = 6}, + [873] = {.lex_state = 66, .external_lex_state = 6}, + [874] = {.lex_state = 66, .external_lex_state = 8}, + [875] = {.lex_state = 66, .external_lex_state = 6}, [876] = {.lex_state = 5, .external_lex_state = 6}, [877] = {.lex_state = 5, .external_lex_state = 6}, [878] = {.lex_state = 5, .external_lex_state = 6}, @@ -13957,8 +13986,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [884] = {.lex_state = 5, .external_lex_state = 6}, [885] = {.lex_state = 5, .external_lex_state = 6}, [886] = {.lex_state = 66, .external_lex_state = 6}, - [887] = {.lex_state = 5, .external_lex_state = 6}, - [888] = {.lex_state = 5, .external_lex_state = 6}, + [887] = {.lex_state = 66, .external_lex_state = 8}, + [888] = {.lex_state = 66, .external_lex_state = 6}, [889] = {.lex_state = 5, .external_lex_state = 6}, [890] = {.lex_state = 5, .external_lex_state = 6}, [891] = {.lex_state = 5, .external_lex_state = 6}, @@ -13969,266 +13998,266 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [896] = {.lex_state = 5, .external_lex_state = 6}, [897] = {.lex_state = 5, .external_lex_state = 6}, [898] = {.lex_state = 5, .external_lex_state = 6}, - [899] = {.lex_state = 66, .external_lex_state = 6}, + [899] = {.lex_state = 5, .external_lex_state = 6}, [900] = {.lex_state = 5, .external_lex_state = 6}, - [901] = {.lex_state = 66, .external_lex_state = 7}, - [902] = {.lex_state = 66, .external_lex_state = 6}, - [903] = {.lex_state = 66, .external_lex_state = 7}, - [904] = {.lex_state = 66, .external_lex_state = 8}, + [901] = {.lex_state = 5, .external_lex_state = 6}, + [902] = {.lex_state = 5, .external_lex_state = 6}, + [903] = {.lex_state = 5, .external_lex_state = 6}, + [904] = {.lex_state = 5, .external_lex_state = 6}, [905] = {.lex_state = 66, .external_lex_state = 6}, [906] = {.lex_state = 66, .external_lex_state = 8}, - [907] = {.lex_state = 66, .external_lex_state = 8}, - [908] = {.lex_state = 66, .external_lex_state = 3}, - [909] = {.lex_state = 66, .external_lex_state = 2}, - [910] = {.lex_state = 66, .external_lex_state = 7}, - [911] = {.lex_state = 66, .external_lex_state = 7}, - [912] = {.lex_state = 10, .external_lex_state = 2}, - [913] = {.lex_state = 66, .external_lex_state = 2}, - [914] = {.lex_state = 66, .external_lex_state = 7}, + [907] = {.lex_state = 66, .external_lex_state = 6}, + [908] = {.lex_state = 66, .external_lex_state = 7}, + [909] = {.lex_state = 5, .external_lex_state = 6}, + [910] = {.lex_state = 66, .external_lex_state = 8}, + [911] = {.lex_state = 66, .external_lex_state = 8}, + [912] = {.lex_state = 66, .external_lex_state = 2}, + [913] = {.lex_state = 66, .external_lex_state = 6}, + [914] = {.lex_state = 66, .external_lex_state = 8}, [915] = {.lex_state = 10, .external_lex_state = 2}, - [916] = {.lex_state = 66, .external_lex_state = 8}, - [917] = {.lex_state = 66, .external_lex_state = 2}, - [918] = {.lex_state = 66, .external_lex_state = 3}, - [919] = {.lex_state = 66, .external_lex_state = 3}, - [920] = {.lex_state = 66, .external_lex_state = 7}, - [921] = {.lex_state = 66, .external_lex_state = 6}, - [922] = {.lex_state = 67, .external_lex_state = 10}, - [923] = {.lex_state = 66, .external_lex_state = 6}, - [924] = {.lex_state = 66, .external_lex_state = 8}, - [925] = {.lex_state = 66, .external_lex_state = 8}, - [926] = {.lex_state = 68, .external_lex_state = 3}, - [927] = {.lex_state = 67, .external_lex_state = 9}, - [928] = {.lex_state = 68, .external_lex_state = 2}, + [916] = {.lex_state = 66, .external_lex_state = 2}, + [917] = {.lex_state = 66, .external_lex_state = 8}, + [918] = {.lex_state = 67, .external_lex_state = 2}, + [919] = {.lex_state = 66, .external_lex_state = 2}, + [920] = {.lex_state = 68, .external_lex_state = 9}, + [921] = {.lex_state = 66, .external_lex_state = 3}, + [922] = {.lex_state = 66, .external_lex_state = 7}, + [923] = {.lex_state = 66, .external_lex_state = 2}, + [924] = {.lex_state = 66, .external_lex_state = 3}, + [925] = {.lex_state = 66, .external_lex_state = 3}, + [926] = {.lex_state = 66, .external_lex_state = 6}, + [927] = {.lex_state = 68, .external_lex_state = 10}, + [928] = {.lex_state = 67, .external_lex_state = 3}, [929] = {.lex_state = 66, .external_lex_state = 6}, - [930] = {.lex_state = 66, .external_lex_state = 2}, - [931] = {.lex_state = 66, .external_lex_state = 2}, - [932] = {.lex_state = 66, .external_lex_state = 2}, - [933] = {.lex_state = 66, .external_lex_state = 6}, - [934] = {.lex_state = 66, .external_lex_state = 3}, - [935] = {.lex_state = 5, .external_lex_state = 2}, - [936] = {.lex_state = 66, .external_lex_state = 2}, + [930] = {.lex_state = 66, .external_lex_state = 7}, + [931] = {.lex_state = 66, .external_lex_state = 6}, + [932] = {.lex_state = 66, .external_lex_state = 7}, + [933] = {.lex_state = 66, .external_lex_state = 3}, + [934] = {.lex_state = 66, .external_lex_state = 7}, + [935] = {.lex_state = 66, .external_lex_state = 6}, + [936] = {.lex_state = 66, .external_lex_state = 8}, [937] = {.lex_state = 66, .external_lex_state = 2}, - [938] = {.lex_state = 5, .external_lex_state = 7}, - [939] = {.lex_state = 5, .external_lex_state = 7}, - [940] = {.lex_state = 5, .external_lex_state = 7}, - [941] = {.lex_state = 66, .external_lex_state = 7}, - [942] = {.lex_state = 66, .external_lex_state = 6}, - [943] = {.lex_state = 5, .external_lex_state = 7}, - [944] = {.lex_state = 5, .external_lex_state = 7}, - [945] = {.lex_state = 5, .external_lex_state = 7}, - [946] = {.lex_state = 5, .external_lex_state = 7}, - [947] = {.lex_state = 5, .external_lex_state = 7}, - [948] = {.lex_state = 66, .external_lex_state = 2}, + [938] = {.lex_state = 66, .external_lex_state = 2}, + [939] = {.lex_state = 5, .external_lex_state = 2}, + [940] = {.lex_state = 66, .external_lex_state = 7}, + [941] = {.lex_state = 66, .external_lex_state = 2}, + [942] = {.lex_state = 66, .external_lex_state = 2}, + [943] = {.lex_state = 10, .external_lex_state = 2}, + [944] = {.lex_state = 66, .external_lex_state = 7}, + [945] = {.lex_state = 66, .external_lex_state = 8}, + [946] = {.lex_state = 66, .external_lex_state = 6}, + [947] = {.lex_state = 66, .external_lex_state = 2}, + [948] = {.lex_state = 5, .external_lex_state = 7}, [949] = {.lex_state = 5, .external_lex_state = 7}, - [950] = {.lex_state = 66, .external_lex_state = 5}, + [950] = {.lex_state = 66, .external_lex_state = 7}, [951] = {.lex_state = 5, .external_lex_state = 7}, - [952] = {.lex_state = 5, .external_lex_state = 7}, + [952] = {.lex_state = 66, .external_lex_state = 3}, [953] = {.lex_state = 66, .external_lex_state = 2}, - [954] = {.lex_state = 66, .external_lex_state = 7}, - [955] = {.lex_state = 66, .external_lex_state = 2}, - [956] = {.lex_state = 66, .external_lex_state = 2}, + [954] = {.lex_state = 66, .external_lex_state = 2}, + [955] = {.lex_state = 66, .external_lex_state = 5}, + [956] = {.lex_state = 5, .external_lex_state = 7}, [957] = {.lex_state = 5, .external_lex_state = 7}, - [958] = {.lex_state = 66, .external_lex_state = 2}, - [959] = {.lex_state = 66, .external_lex_state = 2}, - [960] = {.lex_state = 5, .external_lex_state = 7}, - [961] = {.lex_state = 5, .external_lex_state = 7}, - [962] = {.lex_state = 66, .external_lex_state = 2}, + [958] = {.lex_state = 66, .external_lex_state = 7}, + [959] = {.lex_state = 5, .external_lex_state = 7}, + [960] = {.lex_state = 66, .external_lex_state = 5}, + [961] = {.lex_state = 66, .external_lex_state = 2}, + [962] = {.lex_state = 5, .external_lex_state = 7}, [963] = {.lex_state = 5, .external_lex_state = 7}, - [964] = {.lex_state = 66, .external_lex_state = 5}, - [965] = {.lex_state = 66, .external_lex_state = 3}, - [966] = {.lex_state = 66, .external_lex_state = 7}, - [967] = {.lex_state = 66, .external_lex_state = 2}, + [964] = {.lex_state = 66, .external_lex_state = 7}, + [965] = {.lex_state = 66, .external_lex_state = 6}, + [966] = {.lex_state = 5, .external_lex_state = 7}, + [967] = {.lex_state = 5, .external_lex_state = 7}, [968] = {.lex_state = 66, .external_lex_state = 2}, - [969] = {.lex_state = 66, .external_lex_state = 8}, + [969] = {.lex_state = 5, .external_lex_state = 7}, [970] = {.lex_state = 5, .external_lex_state = 7}, [971] = {.lex_state = 66, .external_lex_state = 8}, - [972] = {.lex_state = 68, .external_lex_state = 3}, - [973] = {.lex_state = 67, .external_lex_state = 9}, - [974] = {.lex_state = 67, .external_lex_state = 9}, - [975] = {.lex_state = 67, .external_lex_state = 10}, - [976] = {.lex_state = 68, .external_lex_state = 3}, - [977] = {.lex_state = 68, .external_lex_state = 2}, - [978] = {.lex_state = 67, .external_lex_state = 9}, - [979] = {.lex_state = 67, .external_lex_state = 9}, - [980] = {.lex_state = 68, .external_lex_state = 2}, - [981] = {.lex_state = 68, .external_lex_state = 2}, - [982] = {.lex_state = 68, .external_lex_state = 2}, - [983] = {.lex_state = 66, .external_lex_state = 8}, - [984] = {.lex_state = 68, .external_lex_state = 2}, + [972] = {.lex_state = 66, .external_lex_state = 2}, + [973] = {.lex_state = 5, .external_lex_state = 7}, + [974] = {.lex_state = 66, .external_lex_state = 2}, + [975] = {.lex_state = 5, .external_lex_state = 7}, + [976] = {.lex_state = 5, .external_lex_state = 7}, + [977] = {.lex_state = 66, .external_lex_state = 2}, + [978] = {.lex_state = 66, .external_lex_state = 2}, + [979] = {.lex_state = 5, .external_lex_state = 7}, + [980] = {.lex_state = 66, .external_lex_state = 8}, + [981] = {.lex_state = 66, .external_lex_state = 8}, + [982] = {.lex_state = 66, .external_lex_state = 8}, + [983] = {.lex_state = 67, .external_lex_state = 3}, + [984] = {.lex_state = 68, .external_lex_state = 9}, [985] = {.lex_state = 66, .external_lex_state = 8}, - [986] = {.lex_state = 66, .external_lex_state = 8}, - [987] = {.lex_state = 68, .external_lex_state = 2}, - [988] = {.lex_state = 68, .external_lex_state = 2}, + [986] = {.lex_state = 67, .external_lex_state = 3}, + [987] = {.lex_state = 67, .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 = 67, .external_lex_state = 10}, - [992] = {.lex_state = 66, .external_lex_state = 8}, + [990] = {.lex_state = 67, .external_lex_state = 3}, + [991] = {.lex_state = 66, .external_lex_state = 8}, + [992] = {.lex_state = 67, .external_lex_state = 2}, [993] = {.lex_state = 66, .external_lex_state = 8}, - [994] = {.lex_state = 67, .external_lex_state = 10}, - [995] = {.lex_state = 67, .external_lex_state = 10}, - [996] = {.lex_state = 67, .external_lex_state = 10}, - [997] = {.lex_state = 67, .external_lex_state = 10}, - [998] = {.lex_state = 67, .external_lex_state = 10}, - [999] = {.lex_state = 68, .external_lex_state = 3}, - [1000] = {.lex_state = 68, .external_lex_state = 3}, - [1001] = {.lex_state = 66, .external_lex_state = 8}, - [1002] = {.lex_state = 68, .external_lex_state = 3}, - [1003] = {.lex_state = 68, .external_lex_state = 3}, + [994] = {.lex_state = 66, .external_lex_state = 8}, + [995] = {.lex_state = 68, .external_lex_state = 10}, + [996] = {.lex_state = 68, .external_lex_state = 9}, + [997] = {.lex_state = 66, .external_lex_state = 8}, + [998] = {.lex_state = 66, .external_lex_state = 8}, + [999] = {.lex_state = 67, .external_lex_state = 3}, + [1000] = {.lex_state = 68, .external_lex_state = 10}, + [1001] = {.lex_state = 67, .external_lex_state = 2}, + [1002] = {.lex_state = 67, .external_lex_state = 2}, + [1003] = {.lex_state = 68, .external_lex_state = 10}, [1004] = {.lex_state = 66, .external_lex_state = 8}, [1005] = {.lex_state = 66, .external_lex_state = 8}, - [1006] = {.lex_state = 68, .external_lex_state = 3}, - [1007] = {.lex_state = 68, .external_lex_state = 3}, - [1008] = {.lex_state = 66, .external_lex_state = 8}, - [1009] = {.lex_state = 66, .external_lex_state = 8}, + [1006] = {.lex_state = 68, .external_lex_state = 10}, + [1007] = {.lex_state = 68, .external_lex_state = 9}, + [1008] = {.lex_state = 67, .external_lex_state = 3}, + [1009] = {.lex_state = 68, .external_lex_state = 10}, [1010] = {.lex_state = 66, .external_lex_state = 8}, - [1011] = {.lex_state = 67, .external_lex_state = 9}, - [1012] = {.lex_state = 66, .external_lex_state = 8}, - [1013] = {.lex_state = 66, .external_lex_state = 8}, - [1014] = {.lex_state = 67, .external_lex_state = 10}, - [1015] = {.lex_state = 67, .external_lex_state = 10}, - [1016] = {.lex_state = 67, .external_lex_state = 9}, - [1017] = {.lex_state = 66, .external_lex_state = 5}, - [1018] = {.lex_state = 66, .external_lex_state = 8}, - [1019] = {.lex_state = 66, .external_lex_state = 8}, - [1020] = {.lex_state = 66, .external_lex_state = 8}, + [1011] = {.lex_state = 66, .external_lex_state = 8}, + [1012] = {.lex_state = 68, .external_lex_state = 10}, + [1013] = {.lex_state = 68, .external_lex_state = 10}, + [1014] = {.lex_state = 66, .external_lex_state = 8}, + [1015] = {.lex_state = 66, .external_lex_state = 8}, + [1016] = {.lex_state = 68, .external_lex_state = 9}, + [1017] = {.lex_state = 67, .external_lex_state = 2}, + [1018] = {.lex_state = 66, .external_lex_state = 5}, + [1019] = {.lex_state = 68, .external_lex_state = 10}, + [1020] = {.lex_state = 67, .external_lex_state = 3}, [1021] = {.lex_state = 66, .external_lex_state = 8}, - [1022] = {.lex_state = 67, .external_lex_state = 9}, + [1022] = {.lex_state = 66, .external_lex_state = 8}, [1023] = {.lex_state = 66, .external_lex_state = 8}, - [1024] = {.lex_state = 66, .external_lex_state = 8}, - [1025] = {.lex_state = 66, .external_lex_state = 5}, - [1026] = {.lex_state = 68, .external_lex_state = 2}, - [1027] = {.lex_state = 67, .external_lex_state = 9}, - [1028] = {.lex_state = 66, .external_lex_state = 8}, + [1024] = {.lex_state = 68, .external_lex_state = 10}, + [1025] = {.lex_state = 66, .external_lex_state = 8}, + [1026] = {.lex_state = 66, .external_lex_state = 8}, + [1027] = {.lex_state = 66, .external_lex_state = 8}, + [1028] = {.lex_state = 67, .external_lex_state = 2}, [1029] = {.lex_state = 66, .external_lex_state = 8}, [1030] = {.lex_state = 66, .external_lex_state = 8}, - [1031] = {.lex_state = 66, .external_lex_state = 8}, + [1031] = {.lex_state = 67, .external_lex_state = 2}, [1032] = {.lex_state = 66, .external_lex_state = 8}, - [1033] = {.lex_state = 67, .external_lex_state = 9}, - [1034] = {.lex_state = 66, .external_lex_state = 8}, - [1035] = {.lex_state = 67, .external_lex_state = 10}, + [1033] = {.lex_state = 66, .external_lex_state = 8}, + [1034] = {.lex_state = 68, .external_lex_state = 9}, + [1035] = {.lex_state = 66, .external_lex_state = 8}, [1036] = {.lex_state = 66, .external_lex_state = 8}, [1037] = {.lex_state = 66, .external_lex_state = 8}, - [1038] = {.lex_state = 67, .external_lex_state = 10}, - [1039] = {.lex_state = 68, .external_lex_state = 3}, + [1038] = {.lex_state = 66, .external_lex_state = 8}, + [1039] = {.lex_state = 66, .external_lex_state = 8}, [1040] = {.lex_state = 66, .external_lex_state = 8}, - [1041] = {.lex_state = 68, .external_lex_state = 2}, + [1041] = {.lex_state = 67, .external_lex_state = 2}, [1042] = {.lex_state = 66, .external_lex_state = 8}, [1043] = {.lex_state = 66, .external_lex_state = 8}, [1044] = {.lex_state = 66, .external_lex_state = 8}, - [1045] = {.lex_state = 66, .external_lex_state = 8}, - [1046] = {.lex_state = 66, .external_lex_state = 8}, - [1047] = {.lex_state = 66, .external_lex_state = 8}, - [1048] = {.lex_state = 5, .external_lex_state = 2}, - [1049] = {.lex_state = 67, .external_lex_state = 9}, - [1050] = {.lex_state = 67, .external_lex_state = 9}, - [1051] = {.lex_state = 66, .external_lex_state = 8}, - [1052] = {.lex_state = 66, .external_lex_state = 8}, - [1053] = {.lex_state = 66, .external_lex_state = 5}, - [1054] = {.lex_state = 66, .external_lex_state = 5}, - [1055] = {.lex_state = 66, .external_lex_state = 2}, - [1056] = {.lex_state = 66, .external_lex_state = 3}, - [1057] = {.lex_state = 66, .external_lex_state = 3}, - [1058] = {.lex_state = 66, .external_lex_state = 3}, - [1059] = {.lex_state = 66, .external_lex_state = 3}, - [1060] = {.lex_state = 66, .external_lex_state = 2}, - [1061] = {.lex_state = 66, .external_lex_state = 3}, - [1062] = {.lex_state = 66, .external_lex_state = 2}, - [1063] = {.lex_state = 66, .external_lex_state = 2}, - [1064] = {.lex_state = 66, .external_lex_state = 5}, - [1065] = {.lex_state = 66, .external_lex_state = 2}, + [1045] = {.lex_state = 68, .external_lex_state = 9}, + [1046] = {.lex_state = 66, .external_lex_state = 5}, + [1047] = {.lex_state = 66, .external_lex_state = 5}, + [1048] = {.lex_state = 68, .external_lex_state = 9}, + [1049] = {.lex_state = 68, .external_lex_state = 10}, + [1050] = {.lex_state = 67, .external_lex_state = 3}, + [1051] = {.lex_state = 68, .external_lex_state = 9}, + [1052] = {.lex_state = 67, .external_lex_state = 2}, + [1053] = {.lex_state = 68, .external_lex_state = 9}, + [1054] = {.lex_state = 5, .external_lex_state = 2}, + [1055] = {.lex_state = 68, .external_lex_state = 10}, + [1056] = {.lex_state = 68, .external_lex_state = 9}, + [1057] = {.lex_state = 67, .external_lex_state = 2}, + [1058] = {.lex_state = 67, .external_lex_state = 3}, + [1059] = {.lex_state = 66, .external_lex_state = 8}, + [1060] = {.lex_state = 66, .external_lex_state = 8}, + [1061] = {.lex_state = 68, .external_lex_state = 9}, + [1062] = {.lex_state = 66, .external_lex_state = 8}, + [1063] = {.lex_state = 66, .external_lex_state = 7}, + [1064] = {.lex_state = 66, .external_lex_state = 2}, + [1065] = {.lex_state = 66, .external_lex_state = 6}, [1066] = {.lex_state = 66, .external_lex_state = 8}, - [1067] = {.lex_state = 66, .external_lex_state = 3}, - [1068] = {.lex_state = 66, .external_lex_state = 6}, - [1069] = {.lex_state = 66, .external_lex_state = 3}, - [1070] = {.lex_state = 66, .external_lex_state = 2}, + [1067] = {.lex_state = 66, .external_lex_state = 5}, + [1068] = {.lex_state = 66, .external_lex_state = 5}, + [1069] = {.lex_state = 66, .external_lex_state = 2}, + [1070] = {.lex_state = 66, .external_lex_state = 8}, [1071] = {.lex_state = 66, .external_lex_state = 2}, - [1072] = {.lex_state = 66, .external_lex_state = 2}, - [1073] = {.lex_state = 66, .external_lex_state = 2}, - [1074] = {.lex_state = 66, .external_lex_state = 2}, + [1072] = {.lex_state = 66, .external_lex_state = 6}, + [1073] = {.lex_state = 66, .external_lex_state = 3}, + [1074] = {.lex_state = 66, .external_lex_state = 3}, [1075] = {.lex_state = 66, .external_lex_state = 2}, [1076] = {.lex_state = 66, .external_lex_state = 2}, [1077] = {.lex_state = 66, .external_lex_state = 2}, [1078] = {.lex_state = 66, .external_lex_state = 2}, [1079] = {.lex_state = 66, .external_lex_state = 2}, - [1080] = {.lex_state = 66, .external_lex_state = 2}, + [1080] = {.lex_state = 66, .external_lex_state = 5}, [1081] = {.lex_state = 66, .external_lex_state = 2}, [1082] = {.lex_state = 66, .external_lex_state = 2}, [1083] = {.lex_state = 66, .external_lex_state = 2}, - [1084] = {.lex_state = 66, .external_lex_state = 2}, - [1085] = {.lex_state = 66, .external_lex_state = 6}, + [1084] = {.lex_state = 66, .external_lex_state = 3}, + [1085] = {.lex_state = 66, .external_lex_state = 8}, [1086] = {.lex_state = 66, .external_lex_state = 2}, [1087] = {.lex_state = 66, .external_lex_state = 2}, - [1088] = {.lex_state = 66, .external_lex_state = 6}, + [1088] = {.lex_state = 66, .external_lex_state = 2}, [1089] = {.lex_state = 66, .external_lex_state = 2}, [1090] = {.lex_state = 66, .external_lex_state = 2}, - [1091] = {.lex_state = 66, .external_lex_state = 3}, + [1091] = {.lex_state = 66, .external_lex_state = 2}, [1092] = {.lex_state = 66, .external_lex_state = 2}, - [1093] = {.lex_state = 66, .external_lex_state = 5}, - [1094] = {.lex_state = 66, .external_lex_state = 3}, + [1093] = {.lex_state = 11, .external_lex_state = 7}, + [1094] = {.lex_state = 66, .external_lex_state = 8}, [1095] = {.lex_state = 66, .external_lex_state = 2}, - [1096] = {.lex_state = 66, .external_lex_state = 3}, - [1097] = {.lex_state = 66, .external_lex_state = 3}, + [1096] = {.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 = 3}, - [1100] = {.lex_state = 66, .external_lex_state = 2}, - [1101] = {.lex_state = 66, .external_lex_state = 2}, - [1102] = {.lex_state = 66, .external_lex_state = 8}, - [1103] = {.lex_state = 66, .external_lex_state = 3}, - [1104] = {.lex_state = 66, .external_lex_state = 3}, - [1105] = {.lex_state = 66, .external_lex_state = 8}, - [1106] = {.lex_state = 11, .external_lex_state = 7}, + [1099] = {.lex_state = 66, .external_lex_state = 2}, + [1100] = {.lex_state = 66, .external_lex_state = 8}, + [1101] = {.lex_state = 66, .external_lex_state = 6}, + [1102] = {.lex_state = 66, .external_lex_state = 2}, + [1103] = {.lex_state = 66, .external_lex_state = 2}, + [1104] = {.lex_state = 66, .external_lex_state = 5}, + [1105] = {.lex_state = 66, .external_lex_state = 5}, + [1106] = {.lex_state = 11, .external_lex_state = 6}, [1107] = {.lex_state = 66, .external_lex_state = 2}, - [1108] = {.lex_state = 66, .external_lex_state = 5}, - [1109] = {.lex_state = 66, .external_lex_state = 5}, + [1108] = {.lex_state = 66, .external_lex_state = 2}, + [1109] = {.lex_state = 66, .external_lex_state = 3}, [1110] = {.lex_state = 66, .external_lex_state = 2}, - [1111] = {.lex_state = 66, .external_lex_state = 2}, + [1111] = {.lex_state = 66, .external_lex_state = 3}, [1112] = {.lex_state = 66, .external_lex_state = 2}, - [1113] = {.lex_state = 66, .external_lex_state = 8}, - [1114] = {.lex_state = 66, .external_lex_state = 8}, - [1115] = {.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 = 6}, - [1119] = {.lex_state = 66, .external_lex_state = 2}, - [1120] = {.lex_state = 66, .external_lex_state = 2}, - [1121] = {.lex_state = 66, .external_lex_state = 2}, - [1122] = {.lex_state = 11, .external_lex_state = 6}, + [1113] = {.lex_state = 66, .external_lex_state = 2}, + [1114] = {.lex_state = 66, .external_lex_state = 2}, + [1115] = {.lex_state = 66, .external_lex_state = 3}, + [1116] = {.lex_state = 66, .external_lex_state = 5}, + [1117] = {.lex_state = 66, .external_lex_state = 3}, + [1118] = {.lex_state = 66, .external_lex_state = 2}, + [1119] = {.lex_state = 66, .external_lex_state = 3}, + [1120] = {.lex_state = 66, .external_lex_state = 3}, + [1121] = {.lex_state = 66, .external_lex_state = 3}, + [1122] = {.lex_state = 66, .external_lex_state = 3}, [1123] = {.lex_state = 66, .external_lex_state = 2}, - [1124] = {.lex_state = 66, .external_lex_state = 2}, + [1124] = {.lex_state = 11, .external_lex_state = 6}, [1125] = {.lex_state = 66, .external_lex_state = 2}, - [1126] = {.lex_state = 66, .external_lex_state = 2}, + [1126] = {.lex_state = 11, .external_lex_state = 7}, [1127] = {.lex_state = 66, .external_lex_state = 2}, [1128] = {.lex_state = 66, .external_lex_state = 2}, [1129] = {.lex_state = 66, .external_lex_state = 2}, [1130] = {.lex_state = 66, .external_lex_state = 2}, [1131] = {.lex_state = 66, .external_lex_state = 2}, [1132] = {.lex_state = 66, .external_lex_state = 2}, - [1133] = {.lex_state = 66, .external_lex_state = 2}, - [1134] = {.lex_state = 66, .external_lex_state = 8}, - [1135] = {.lex_state = 66, .external_lex_state = 2}, + [1133] = {.lex_state = 66, .external_lex_state = 3}, + [1134] = {.lex_state = 66, .external_lex_state = 3}, + [1135] = {.lex_state = 66, .external_lex_state = 3}, [1136] = {.lex_state = 66, .external_lex_state = 2}, [1137] = {.lex_state = 66, .external_lex_state = 2}, - [1138] = {.lex_state = 11, .external_lex_state = 7}, + [1138] = {.lex_state = 66, .external_lex_state = 2}, [1139] = {.lex_state = 66, .external_lex_state = 2}, [1140] = {.lex_state = 66, .external_lex_state = 2}, [1141] = {.lex_state = 66, .external_lex_state = 2}, - [1142] = {.lex_state = 66, .external_lex_state = 2}, + [1142] = {.lex_state = 66, .external_lex_state = 6}, [1143] = {.lex_state = 66, .external_lex_state = 2}, [1144] = {.lex_state = 66, .external_lex_state = 2}, - [1145] = {.lex_state = 66, .external_lex_state = 7}, - [1146] = {.lex_state = 66, .external_lex_state = 7}, + [1145] = {.lex_state = 66, .external_lex_state = 2}, + [1146] = {.lex_state = 66, .external_lex_state = 2}, [1147] = {.lex_state = 66, .external_lex_state = 2}, - [1148] = {.lex_state = 66, .external_lex_state = 8}, - [1149] = {.lex_state = 66, .external_lex_state = 3}, - [1150] = {.lex_state = 11, .external_lex_state = 6}, + [1148] = {.lex_state = 66, .external_lex_state = 2}, + [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 = 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 = 2}, - [1158] = {.lex_state = 66, .external_lex_state = 2}, + [1156] = {.lex_state = 66, .external_lex_state = 8}, + [1157] = {.lex_state = 66, .external_lex_state = 7}, + [1158] = {.lex_state = 66, .external_lex_state = 3}, [1159] = {.lex_state = 66, .external_lex_state = 2}, [1160] = {.lex_state = 66, .external_lex_state = 2}, [1161] = {.lex_state = 66, .external_lex_state = 2}, @@ -14317,14 +14346,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1244] = {.lex_state = 66, .external_lex_state = 2}, [1245] = {.lex_state = 66, .external_lex_state = 2}, [1246] = {.lex_state = 66, .external_lex_state = 2}, - [1247] = {.lex_state = 11, .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 = 2}, [1252] = {.lex_state = 66, .external_lex_state = 2}, [1253] = {.lex_state = 66, .external_lex_state = 2}, - [1254] = {.lex_state = 11, .external_lex_state = 2}, + [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}, @@ -14342,7 +14371,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [1272] = {.lex_state = 66, .external_lex_state = 3}, [1273] = {.lex_state = 66, .external_lex_state = 2}, [1274] = {.lex_state = 66, .external_lex_state = 2}, [1275] = {.lex_state = 66, .external_lex_state = 2}, @@ -14356,7 +14385,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 3}, + [1286] = {.lex_state = 66, .external_lex_state = 2}, [1287] = {.lex_state = 66, .external_lex_state = 2}, [1288] = {.lex_state = 66, .external_lex_state = 2}, [1289] = {.lex_state = 66, .external_lex_state = 2}, @@ -14401,7 +14430,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1328] = {.lex_state = 66, .external_lex_state = 2}, [1329] = {.lex_state = 66, .external_lex_state = 2}, [1330] = {.lex_state = 66, .external_lex_state = 2}, - [1331] = {.lex_state = 66, .external_lex_state = 2}, + [1331] = {.lex_state = 11, .external_lex_state = 2}, [1332] = {.lex_state = 66, .external_lex_state = 2}, [1333] = {.lex_state = 66, .external_lex_state = 2}, [1334] = {.lex_state = 66, .external_lex_state = 2}, @@ -14416,10 +14445,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1343] = {.lex_state = 66, .external_lex_state = 2}, [1344] = {.lex_state = 66, .external_lex_state = 2}, [1345] = {.lex_state = 66, .external_lex_state = 2}, - [1346] = {.lex_state = 66, .external_lex_state = 2}, + [1346] = {.lex_state = 11, .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 = 3}, + [1349] = {.lex_state = 66, .external_lex_state = 2}, [1350] = {.lex_state = 66, .external_lex_state = 2}, [1351] = {.lex_state = 66, .external_lex_state = 2}, [1352] = {.lex_state = 66, .external_lex_state = 2}, @@ -14448,29 +14477,29 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 3}, - [1379] = {.lex_state = 66, .external_lex_state = 3}, - [1380] = {.lex_state = 66, .external_lex_state = 3}, + [1378] = {.lex_state = 66, .external_lex_state = 2}, + [1379] = {.lex_state = 66, .external_lex_state = 2}, + [1380] = {.lex_state = 66, .external_lex_state = 2}, [1381] = {.lex_state = 66, .external_lex_state = 3}, [1382] = {.lex_state = 66, .external_lex_state = 2}, - [1383] = {.lex_state = 66, .external_lex_state = 3}, - [1384] = {.lex_state = 66, .external_lex_state = 3}, + [1383] = {.lex_state = 66, .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 = 2}, - [1390] = {.lex_state = 66, .external_lex_state = 2}, + [1390] = {.lex_state = 66, .external_lex_state = 3}, [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 = 66, .external_lex_state = 2}, [1395] = {.lex_state = 66, .external_lex_state = 2}, - [1396] = {.lex_state = 66, .external_lex_state = 3}, - [1397] = {.lex_state = 66, .external_lex_state = 3}, - [1398] = {.lex_state = 66, .external_lex_state = 3}, + [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 = 2}, - [1400] = {.lex_state = 66, .external_lex_state = 3}, + [1400] = {.lex_state = 66, .external_lex_state = 2}, [1401] = {.lex_state = 66, .external_lex_state = 2}, [1402] = {.lex_state = 66, .external_lex_state = 2}, [1403] = {.lex_state = 66, .external_lex_state = 2}, @@ -14481,7 +14510,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1408] = {.lex_state = 66, .external_lex_state = 2}, [1409] = {.lex_state = 66, .external_lex_state = 2}, [1410] = {.lex_state = 66, .external_lex_state = 2}, - [1411] = {.lex_state = 66, .external_lex_state = 3}, + [1411] = {.lex_state = 66, .external_lex_state = 2}, [1412] = {.lex_state = 66, .external_lex_state = 2}, [1413] = {.lex_state = 66, .external_lex_state = 2}, [1414] = {.lex_state = 66, .external_lex_state = 2}, @@ -14499,7 +14528,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1426] = {.lex_state = 66, .external_lex_state = 2}, [1427] = {.lex_state = 66, .external_lex_state = 2}, [1428] = {.lex_state = 66, .external_lex_state = 2}, - [1429] = {.lex_state = 11, .external_lex_state = 2}, + [1429] = {.lex_state = 66, .external_lex_state = 2}, [1430] = {.lex_state = 66, .external_lex_state = 2}, [1431] = {.lex_state = 66, .external_lex_state = 2}, [1432] = {.lex_state = 66, .external_lex_state = 2}, @@ -14519,70 +14548,70 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1446] = {.lex_state = 66, .external_lex_state = 2}, [1447] = {.lex_state = 66, .external_lex_state = 2}, [1448] = {.lex_state = 66, .external_lex_state = 2}, - [1449] = {.lex_state = 66, .external_lex_state = 2}, - [1450] = {.lex_state = 66, .external_lex_state = 2}, + [1449] = {.lex_state = 66, .external_lex_state = 3}, + [1450] = {.lex_state = 66, .external_lex_state = 3}, [1451] = {.lex_state = 66, .external_lex_state = 2}, - [1452] = {.lex_state = 66, .external_lex_state = 2}, + [1452] = {.lex_state = 66, .external_lex_state = 3}, [1453] = {.lex_state = 66, .external_lex_state = 2}, [1454] = {.lex_state = 66, .external_lex_state = 2}, [1455] = {.lex_state = 66, .external_lex_state = 2}, - [1456] = {.lex_state = 66, .external_lex_state = 2}, + [1456] = {.lex_state = 66, .external_lex_state = 3}, [1457] = {.lex_state = 66, .external_lex_state = 2}, [1458] = {.lex_state = 66, .external_lex_state = 2}, [1459] = {.lex_state = 66, .external_lex_state = 2}, [1460] = {.lex_state = 66, .external_lex_state = 2}, - [1461] = {.lex_state = 66, .external_lex_state = 2}, + [1461] = {.lex_state = 66, .external_lex_state = 3}, [1462] = {.lex_state = 66, .external_lex_state = 2}, [1463] = {.lex_state = 66, .external_lex_state = 2}, [1464] = {.lex_state = 66, .external_lex_state = 2}, [1465] = {.lex_state = 66, .external_lex_state = 2}, - [1466] = {.lex_state = 66, .external_lex_state = 2}, - [1467] = {.lex_state = 66, .external_lex_state = 2}, - [1468] = {.lex_state = 66, .external_lex_state = 2}, - [1469] = {.lex_state = 66, .external_lex_state = 2}, + [1466] = {.lex_state = 66, .external_lex_state = 3}, + [1467] = {.lex_state = 66, .external_lex_state = 3}, + [1468] = {.lex_state = 66, .external_lex_state = 3}, + [1469] = {.lex_state = 66, .external_lex_state = 3}, [1470] = {.lex_state = 66, .external_lex_state = 2}, - [1471] = {.lex_state = 66, .external_lex_state = 2}, - [1472] = {.lex_state = 66, .external_lex_state = 2}, + [1471] = {.lex_state = 66, .external_lex_state = 3}, + [1472] = {.lex_state = 66, .external_lex_state = 3}, [1473] = {.lex_state = 66, .external_lex_state = 2}, - [1474] = {.lex_state = 66, .external_lex_state = 2}, + [1474] = {.lex_state = 66, .external_lex_state = 3}, [1475] = {.lex_state = 66, .external_lex_state = 2}, - [1476] = {.lex_state = 66, .external_lex_state = 2}, + [1476] = {.lex_state = 66, .external_lex_state = 3}, [1477] = {.lex_state = 66, .external_lex_state = 2}, [1478] = {.lex_state = 66, .external_lex_state = 2}, - [1479] = {.lex_state = 66, .external_lex_state = 2}, + [1479] = {.lex_state = 66, .external_lex_state = 3}, [1480] = {.lex_state = 66, .external_lex_state = 2}, [1481] = {.lex_state = 66, .external_lex_state = 2}, [1482] = {.lex_state = 66, .external_lex_state = 2}, [1483] = {.lex_state = 66, .external_lex_state = 2}, - [1484] = {.lex_state = 66, .external_lex_state = 2}, - [1485] = {.lex_state = 66, .external_lex_state = 2}, + [1484] = {.lex_state = 66, .external_lex_state = 3}, + [1485] = {.lex_state = 66, .external_lex_state = 3}, [1486] = {.lex_state = 66, .external_lex_state = 2}, [1487] = {.lex_state = 66, .external_lex_state = 2}, - [1488] = {.lex_state = 66, .external_lex_state = 2}, - [1489] = {.lex_state = 66, .external_lex_state = 2}, - [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 = 66, .external_lex_state = 2}, - [1494] = {.lex_state = 66, .external_lex_state = 2}, - [1495] = {.lex_state = 66, .external_lex_state = 2}, + [1488] = {.lex_state = 66, .external_lex_state = 3}, + [1489] = {.lex_state = 66, .external_lex_state = 3}, + [1490] = {.lex_state = 66, .external_lex_state = 3}, + [1491] = {.lex_state = 66, .external_lex_state = 3}, + [1492] = {.lex_state = 66, .external_lex_state = 3}, + [1493] = {.lex_state = 66, .external_lex_state = 3}, + [1494] = {.lex_state = 66, .external_lex_state = 3}, + [1495] = {.lex_state = 66, .external_lex_state = 3}, [1496] = {.lex_state = 66, .external_lex_state = 2}, - [1497] = {.lex_state = 66, .external_lex_state = 2}, - [1498] = {.lex_state = 66, .external_lex_state = 2}, - [1499] = {.lex_state = 66, .external_lex_state = 2}, - [1500] = {.lex_state = 66, .external_lex_state = 2}, - [1501] = {.lex_state = 66, .external_lex_state = 2}, - [1502] = {.lex_state = 66, .external_lex_state = 2}, - [1503] = {.lex_state = 66, .external_lex_state = 2}, - [1504] = {.lex_state = 66, .external_lex_state = 2}, - [1505] = {.lex_state = 66, .external_lex_state = 2}, + [1497] = {.lex_state = 66, .external_lex_state = 3}, + [1498] = {.lex_state = 66, .external_lex_state = 3}, + [1499] = {.lex_state = 66, .external_lex_state = 3}, + [1500] = {.lex_state = 66, .external_lex_state = 3}, + [1501] = {.lex_state = 66, .external_lex_state = 3}, + [1502] = {.lex_state = 66, .external_lex_state = 3}, + [1503] = {.lex_state = 66, .external_lex_state = 3}, + [1504] = {.lex_state = 66, .external_lex_state = 3}, + [1505] = {.lex_state = 66, .external_lex_state = 3}, [1506] = {.lex_state = 66, .external_lex_state = 2}, [1507] = {.lex_state = 66, .external_lex_state = 2}, [1508] = {.lex_state = 66, .external_lex_state = 2}, [1509] = {.lex_state = 66, .external_lex_state = 2}, [1510] = {.lex_state = 66, .external_lex_state = 2}, - [1511] = {.lex_state = 66, .external_lex_state = 2}, - [1512] = {.lex_state = 66, .external_lex_state = 2}, + [1511] = {.lex_state = 66, .external_lex_state = 3}, + [1512] = {.lex_state = 66, .external_lex_state = 3}, [1513] = {.lex_state = 66, .external_lex_state = 2}, [1514] = {.lex_state = 66, .external_lex_state = 2}, [1515] = {.lex_state = 66, .external_lex_state = 2}, @@ -14590,25 +14619,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1517] = {.lex_state = 66, .external_lex_state = 2}, [1518] = {.lex_state = 66, .external_lex_state = 2}, [1519] = {.lex_state = 66, .external_lex_state = 2}, - [1520] = {.lex_state = 66, .external_lex_state = 2}, - [1521] = {.lex_state = 66, .external_lex_state = 2}, + [1520] = {.lex_state = 66, .external_lex_state = 3}, + [1521] = {.lex_state = 66, .external_lex_state = 3}, [1522] = {.lex_state = 66, .external_lex_state = 2}, - [1523] = {.lex_state = 66, .external_lex_state = 2}, - [1524] = {.lex_state = 66, .external_lex_state = 2}, - [1525] = {.lex_state = 66, .external_lex_state = 2}, + [1523] = {.lex_state = 66, .external_lex_state = 3}, + [1524] = {.lex_state = 66, .external_lex_state = 3}, + [1525] = {.lex_state = 66, .external_lex_state = 3}, [1526] = {.lex_state = 66, .external_lex_state = 2}, [1527] = {.lex_state = 66, .external_lex_state = 2}, [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}, + [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 = 2}, [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}, + [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}, @@ -14618,9 +14647,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1545] = {.lex_state = 66, .external_lex_state = 2}, [1546] = {.lex_state = 66, .external_lex_state = 2}, [1547] = {.lex_state = 66, .external_lex_state = 2}, - [1548] = {.lex_state = 66, .external_lex_state = 2}, + [1548] = {.lex_state = 66, .external_lex_state = 3}, [1549] = {.lex_state = 66, .external_lex_state = 2}, - [1550] = {.lex_state = 66, .external_lex_state = 2}, + [1550] = {.lex_state = 66, .external_lex_state = 3}, [1551] = {.lex_state = 66, .external_lex_state = 2}, [1552] = {.lex_state = 66, .external_lex_state = 2}, [1553] = {.lex_state = 66, .external_lex_state = 2}, @@ -14629,7 +14658,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1556] = {.lex_state = 66, .external_lex_state = 2}, [1557] = {.lex_state = 66, .external_lex_state = 2}, [1558] = {.lex_state = 66, .external_lex_state = 2}, - [1559] = {.lex_state = 66, .external_lex_state = 2}, + [1559] = {.lex_state = 66, .external_lex_state = 3}, [1560] = {.lex_state = 66, .external_lex_state = 2}, [1561] = {.lex_state = 66, .external_lex_state = 2}, [1562] = {.lex_state = 66, .external_lex_state = 2}, @@ -14639,11 +14668,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1566] = {.lex_state = 66, .external_lex_state = 2}, [1567] = {.lex_state = 66, .external_lex_state = 2}, [1568] = {.lex_state = 66, .external_lex_state = 2}, - [1569] = {.lex_state = 11, .external_lex_state = 2}, + [1569] = {.lex_state = 66, .external_lex_state = 2}, [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 = 3}, + [1573] = {.lex_state = 66, .external_lex_state = 2}, [1574] = {.lex_state = 66, .external_lex_state = 2}, [1575] = {.lex_state = 66, .external_lex_state = 2}, [1576] = {.lex_state = 66, .external_lex_state = 2}, @@ -14675,12 +14704,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1602] = {.lex_state = 66, .external_lex_state = 2}, [1603] = {.lex_state = 66, .external_lex_state = 2}, [1604] = {.lex_state = 66, .external_lex_state = 2}, - [1605] = {.lex_state = 66, .external_lex_state = 2}, + [1605] = {.lex_state = 66, .external_lex_state = 3}, [1606] = {.lex_state = 66, .external_lex_state = 2}, [1607] = {.lex_state = 66, .external_lex_state = 2}, [1608] = {.lex_state = 66, .external_lex_state = 2}, - [1609] = {.lex_state = 66, .external_lex_state = 2}, - [1610] = {.lex_state = 66, .external_lex_state = 2}, + [1609] = {.lex_state = 66, .external_lex_state = 3}, + [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}, @@ -14699,9 +14728,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1626] = {.lex_state = 66, .external_lex_state = 2}, [1627] = {.lex_state = 66, .external_lex_state = 2}, [1628] = {.lex_state = 66, .external_lex_state = 2}, - [1629] = {.lex_state = 66, .external_lex_state = 2}, - [1630] = {.lex_state = 66, .external_lex_state = 2}, - [1631] = {.lex_state = 66, .external_lex_state = 2}, + [1629] = {.lex_state = 66, .external_lex_state = 3}, + [1630] = {.lex_state = 66, .external_lex_state = 3}, + [1631] = {.lex_state = 66, .external_lex_state = 3}, [1632] = {.lex_state = 66, .external_lex_state = 2}, [1633] = {.lex_state = 66, .external_lex_state = 3}, [1634] = {.lex_state = 66, .external_lex_state = 2}, @@ -14714,14 +14743,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1641] = {.lex_state = 66, .external_lex_state = 2}, [1642] = {.lex_state = 66, .external_lex_state = 2}, [1643] = {.lex_state = 66, .external_lex_state = 3}, - [1644] = {.lex_state = 66, .external_lex_state = 3}, + [1644] = {.lex_state = 66, .external_lex_state = 2}, [1645] = {.lex_state = 66, .external_lex_state = 2}, [1646] = {.lex_state = 66, .external_lex_state = 2}, - [1647] = {.lex_state = 66, .external_lex_state = 3}, - [1648] = {.lex_state = 66, .external_lex_state = 3}, + [1647] = {.lex_state = 66, .external_lex_state = 2}, + [1648] = {.lex_state = 66, .external_lex_state = 2}, [1649] = {.lex_state = 66, .external_lex_state = 2}, [1650] = {.lex_state = 66, .external_lex_state = 2}, - [1651] = {.lex_state = 66, .external_lex_state = 3}, + [1651] = {.lex_state = 66, .external_lex_state = 2}, [1652] = {.lex_state = 66, .external_lex_state = 2}, [1653] = {.lex_state = 66, .external_lex_state = 2}, [1654] = {.lex_state = 66, .external_lex_state = 2}, @@ -14737,53 +14766,53 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1664] = {.lex_state = 66, .external_lex_state = 2}, [1665] = {.lex_state = 66, .external_lex_state = 2}, [1666] = {.lex_state = 66, .external_lex_state = 2}, - [1667] = {.lex_state = 66, .external_lex_state = 3}, + [1667] = {.lex_state = 66, .external_lex_state = 2}, [1668] = {.lex_state = 66, .external_lex_state = 2}, [1669] = {.lex_state = 66, .external_lex_state = 2}, - [1670] = {.lex_state = 66, .external_lex_state = 3}, - [1671] = {.lex_state = 66, .external_lex_state = 3}, - [1672] = {.lex_state = 66, .external_lex_state = 3}, - [1673] = {.lex_state = 66, .external_lex_state = 3}, - [1674] = {.lex_state = 66, .external_lex_state = 3}, + [1670] = {.lex_state = 66, .external_lex_state = 2}, + [1671] = {.lex_state = 66, .external_lex_state = 2}, + [1672] = {.lex_state = 66, .external_lex_state = 2}, + [1673] = {.lex_state = 66, .external_lex_state = 2}, + [1674] = {.lex_state = 66, .external_lex_state = 2}, [1675] = {.lex_state = 66, .external_lex_state = 2}, - [1676] = {.lex_state = 66, .external_lex_state = 3}, + [1676] = {.lex_state = 66, .external_lex_state = 2}, [1677] = {.lex_state = 66, .external_lex_state = 2}, [1678] = {.lex_state = 66, .external_lex_state = 2}, [1679] = {.lex_state = 66, .external_lex_state = 2}, - [1680] = {.lex_state = 66, .external_lex_state = 3}, + [1680] = {.lex_state = 66, .external_lex_state = 2}, [1681] = {.lex_state = 66, .external_lex_state = 2}, [1682] = {.lex_state = 66, .external_lex_state = 2}, - [1683] = {.lex_state = 66, .external_lex_state = 3}, + [1683] = {.lex_state = 66, .external_lex_state = 2}, [1684] = {.lex_state = 66, .external_lex_state = 2}, - [1685] = {.lex_state = 66, .external_lex_state = 3}, - [1686] = {.lex_state = 66, .external_lex_state = 3}, + [1685] = {.lex_state = 11, .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 = 3}, - [1691] = {.lex_state = 66, .external_lex_state = 3}, - [1692] = {.lex_state = 66, .external_lex_state = 3}, + [1690] = {.lex_state = 66, .external_lex_state = 2}, + [1691] = {.lex_state = 66, .external_lex_state = 2}, + [1692] = {.lex_state = 66, .external_lex_state = 2}, [1693] = {.lex_state = 66, .external_lex_state = 2}, [1694] = {.lex_state = 66, .external_lex_state = 2}, - [1695] = {.lex_state = 66, .external_lex_state = 3}, - [1696] = {.lex_state = 66, .external_lex_state = 3}, - [1697] = {.lex_state = 66, .external_lex_state = 3}, - [1698] = {.lex_state = 66, .external_lex_state = 3}, - [1699] = {.lex_state = 66, .external_lex_state = 3}, - [1700] = {.lex_state = 66, .external_lex_state = 3}, + [1695] = {.lex_state = 66, .external_lex_state = 2}, + [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}, + [1700] = {.lex_state = 66, .external_lex_state = 2}, [1701] = {.lex_state = 66, .external_lex_state = 2}, - [1702] = {.lex_state = 66, .external_lex_state = 3}, - [1703] = {.lex_state = 66, .external_lex_state = 3}, - [1704] = {.lex_state = 66, .external_lex_state = 3}, - [1705] = {.lex_state = 66, .external_lex_state = 3}, - [1706] = {.lex_state = 66, .external_lex_state = 3}, - [1707] = {.lex_state = 66, .external_lex_state = 3}, - [1708] = {.lex_state = 66, .external_lex_state = 3}, - [1709] = {.lex_state = 66, .external_lex_state = 3}, + [1702] = {.lex_state = 66, .external_lex_state = 2}, + [1703] = {.lex_state = 66, .external_lex_state = 2}, + [1704] = {.lex_state = 66, .external_lex_state = 2}, + [1705] = {.lex_state = 66, .external_lex_state = 2}, + [1706] = {.lex_state = 66, .external_lex_state = 2}, + [1707] = {.lex_state = 66, .external_lex_state = 2}, + [1708] = {.lex_state = 66, .external_lex_state = 2}, + [1709] = {.lex_state = 66, .external_lex_state = 2}, [1710] = {.lex_state = 66, .external_lex_state = 2}, [1711] = {.lex_state = 66, .external_lex_state = 2}, - [1712] = {.lex_state = 66, .external_lex_state = 3}, - [1713] = {.lex_state = 66, .external_lex_state = 3}, + [1712] = {.lex_state = 66, .external_lex_state = 2}, + [1713] = {.lex_state = 66, .external_lex_state = 2}, [1714] = {.lex_state = 66, .external_lex_state = 2}, [1715] = {.lex_state = 66, .external_lex_state = 2}, [1716] = {.lex_state = 66, .external_lex_state = 2}, @@ -14793,17 +14822,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1720] = {.lex_state = 66, .external_lex_state = 2}, [1721] = {.lex_state = 66, .external_lex_state = 2}, [1722] = {.lex_state = 66, .external_lex_state = 2}, - [1723] = {.lex_state = 66, .external_lex_state = 3}, + [1723] = {.lex_state = 11, .external_lex_state = 2}, [1724] = {.lex_state = 66, .external_lex_state = 2}, - [1725] = {.lex_state = 66, .external_lex_state = 3}, + [1725] = {.lex_state = 66, .external_lex_state = 2}, [1726] = {.lex_state = 66, .external_lex_state = 2}, [1727] = {.lex_state = 66, .external_lex_state = 2}, - [1728] = {.lex_state = 66, .external_lex_state = 3}, - [1729] = {.lex_state = 66, .external_lex_state = 3}, + [1728] = {.lex_state = 66, .external_lex_state = 2}, + [1729] = {.lex_state = 66, .external_lex_state = 2}, [1730] = {.lex_state = 66, .external_lex_state = 2}, [1731] = {.lex_state = 66, .external_lex_state = 2}, [1732] = {.lex_state = 66, .external_lex_state = 2}, - [1733] = {.lex_state = 66, .external_lex_state = 2}, + [1733] = {.lex_state = 66, .external_lex_state = 3}, [1734] = {.lex_state = 66, .external_lex_state = 2}, [1735] = {.lex_state = 66, .external_lex_state = 2}, [1736] = {.lex_state = 66, .external_lex_state = 2}, @@ -14819,7 +14848,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1746] = {.lex_state = 66, .external_lex_state = 2}, [1747] = {.lex_state = 66, .external_lex_state = 2}, [1748] = {.lex_state = 66, .external_lex_state = 2}, - [1749] = {.lex_state = 66, .external_lex_state = 3}, + [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}, @@ -14845,13 +14874,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1772] = {.lex_state = 66, .external_lex_state = 2}, [1773] = {.lex_state = 66, .external_lex_state = 2}, [1774] = {.lex_state = 66, .external_lex_state = 2}, - [1775] = {.lex_state = 66, .external_lex_state = 3}, + [1775] = {.lex_state = 66, .external_lex_state = 2}, [1776] = {.lex_state = 66, .external_lex_state = 2}, - [1777] = {.lex_state = 66, .external_lex_state = 3}, + [1777] = {.lex_state = 66, .external_lex_state = 2}, [1778] = {.lex_state = 66, .external_lex_state = 2}, - [1779] = {.lex_state = 66, .external_lex_state = 3}, + [1779] = {.lex_state = 66, .external_lex_state = 2}, [1780] = {.lex_state = 66, .external_lex_state = 2}, - [1781] = {.lex_state = 66, .external_lex_state = 3}, + [1781] = {.lex_state = 66, .external_lex_state = 2}, [1782] = {.lex_state = 66, .external_lex_state = 2}, [1783] = {.lex_state = 66, .external_lex_state = 2}, [1784] = {.lex_state = 66, .external_lex_state = 2}, @@ -14871,9 +14900,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 3}, + [1801] = {.lex_state = 66, .external_lex_state = 2}, [1802] = {.lex_state = 66, .external_lex_state = 2}, - [1803] = {.lex_state = 66, .external_lex_state = 3}, + [1803] = {.lex_state = 66, .external_lex_state = 2}, [1804] = {.lex_state = 66, .external_lex_state = 2}, [1805] = {.lex_state = 66, .external_lex_state = 2}, [1806] = {.lex_state = 66, .external_lex_state = 2}, @@ -14897,86 +14926,86 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1824] = {.lex_state = 66, .external_lex_state = 2}, [1825] = {.lex_state = 66, .external_lex_state = 2}, [1826] = {.lex_state = 66, .external_lex_state = 2}, - [1827] = {.lex_state = 11, .external_lex_state = 6}, - [1828] = {.lex_state = 11, .external_lex_state = 8}, - [1829] = {.lex_state = 11, .external_lex_state = 6}, - [1830] = {.lex_state = 11, .external_lex_state = 8}, - [1831] = {.lex_state = 11, .external_lex_state = 2}, - [1832] = {.lex_state = 12, .external_lex_state = 11}, - [1833] = {.lex_state = 12, .external_lex_state = 11}, - [1834] = {.lex_state = 13, .external_lex_state = 12}, - [1835] = {.lex_state = 66, .external_lex_state = 7}, - [1836] = {.lex_state = 66, .external_lex_state = 7}, - [1837] = {.lex_state = 13, .external_lex_state = 12}, - [1838] = {.lex_state = 12, .external_lex_state = 5}, - [1839] = {.lex_state = 12, .external_lex_state = 5}, - [1840] = {.lex_state = 12, .external_lex_state = 11}, - [1841] = {.lex_state = 66, .external_lex_state = 2}, - [1842] = {.lex_state = 66, .external_lex_state = 2}, - [1843] = {.lex_state = 12, .external_lex_state = 11}, - [1844] = {.lex_state = 66, .external_lex_state = 5}, - [1845] = {.lex_state = 66, .external_lex_state = 2}, - [1846] = {.lex_state = 66, .external_lex_state = 5}, - [1847] = {.lex_state = 66, .external_lex_state = 8}, - [1848] = {.lex_state = 66, .external_lex_state = 6}, - [1849] = {.lex_state = 66, .external_lex_state = 8}, - [1850] = {.lex_state = 66, .external_lex_state = 6}, - [1851] = {.lex_state = 66, .external_lex_state = 2}, + [1827] = {.lex_state = 66, .external_lex_state = 2}, + [1828] = {.lex_state = 66, .external_lex_state = 2}, + [1829] = {.lex_state = 66, .external_lex_state = 2}, + [1830] = {.lex_state = 66, .external_lex_state = 2}, + [1831] = {.lex_state = 66, .external_lex_state = 2}, + [1832] = {.lex_state = 66, .external_lex_state = 2}, + [1833] = {.lex_state = 66, .external_lex_state = 2}, + [1834] = {.lex_state = 66, .external_lex_state = 2}, + [1835] = {.lex_state = 66, .external_lex_state = 2}, + [1836] = {.lex_state = 11, .external_lex_state = 8}, + [1837] = {.lex_state = 11, .external_lex_state = 8}, + [1838] = {.lex_state = 11, .external_lex_state = 6}, + [1839] = {.lex_state = 11, .external_lex_state = 6}, + [1840] = {.lex_state = 11, .external_lex_state = 2}, + [1841] = {.lex_state = 12, .external_lex_state = 11}, + [1842] = {.lex_state = 12, .external_lex_state = 11}, + [1843] = {.lex_state = 13, .external_lex_state = 12}, + [1844] = {.lex_state = 66, .external_lex_state = 7}, + [1845] = {.lex_state = 13, .external_lex_state = 12}, + [1846] = {.lex_state = 66, .external_lex_state = 7}, + [1847] = {.lex_state = 12, .external_lex_state = 11}, + [1848] = {.lex_state = 12, .external_lex_state = 5}, + [1849] = {.lex_state = 12, .external_lex_state = 11}, + [1850] = {.lex_state = 66, .external_lex_state = 2}, + [1851] = {.lex_state = 12, .external_lex_state = 5}, [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}, + [1853] = {.lex_state = 66, .external_lex_state = 6}, + [1854] = {.lex_state = 66, .external_lex_state = 8}, + [1855] = {.lex_state = 66, .external_lex_state = 6}, [1856] = {.lex_state = 66, .external_lex_state = 2}, - [1857] = {.lex_state = 66, .external_lex_state = 6}, - [1858] = {.lex_state = 66, .external_lex_state = 2}, - [1859] = {.lex_state = 66, .external_lex_state = 2}, - [1860] = {.lex_state = 66, .external_lex_state = 6}, + [1857] = {.lex_state = 66, .external_lex_state = 2}, + [1858] = {.lex_state = 66, .external_lex_state = 5}, + [1859] = {.lex_state = 66, .external_lex_state = 5}, + [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 = 12, .external_lex_state = 11}, - [1864] = {.lex_state = 66, .external_lex_state = 2}, - [1865] = {.lex_state = 12, .external_lex_state = 11}, - [1866] = {.lex_state = 12, .external_lex_state = 11}, + [1863] = {.lex_state = 66, .external_lex_state = 2}, + [1864] = {.lex_state = 66, .external_lex_state = 8}, + [1865] = {.lex_state = 66, .external_lex_state = 2}, + [1866] = {.lex_state = 66, .external_lex_state = 2}, [1867] = {.lex_state = 66, .external_lex_state = 2}, [1868] = {.lex_state = 66, .external_lex_state = 6}, - [1869] = {.lex_state = 12, .external_lex_state = 11}, - [1870] = {.lex_state = 66, .external_lex_state = 6}, - [1871] = {.lex_state = 66, .external_lex_state = 6}, - [1872] = {.lex_state = 66, .external_lex_state = 2}, - [1873] = {.lex_state = 14, .external_lex_state = 11}, - [1874] = {.lex_state = 14, .external_lex_state = 11}, - [1875] = {.lex_state = 14, .external_lex_state = 11}, - [1876] = {.lex_state = 14, .external_lex_state = 11}, - [1877] = {.lex_state = 66, .external_lex_state = 2}, - [1878] = {.lex_state = 14, .external_lex_state = 11}, - [1879] = {.lex_state = 14, .external_lex_state = 11}, - [1880] = {.lex_state = 66, .external_lex_state = 2}, + [1869] = {.lex_state = 66, .external_lex_state = 2}, + [1870] = {.lex_state = 66, .external_lex_state = 2}, + [1871] = {.lex_state = 66, .external_lex_state = 2}, + [1872] = {.lex_state = 66, .external_lex_state = 6}, + [1873] = {.lex_state = 12, .external_lex_state = 11}, + [1874] = {.lex_state = 12, .external_lex_state = 11}, + [1875] = {.lex_state = 12, .external_lex_state = 11}, + [1876] = {.lex_state = 66, .external_lex_state = 6}, + [1877] = {.lex_state = 12, .external_lex_state = 11}, + [1878] = {.lex_state = 66, .external_lex_state = 6}, + [1879] = {.lex_state = 66, .external_lex_state = 2}, + [1880] = {.lex_state = 66, .external_lex_state = 6}, [1881] = {.lex_state = 14, .external_lex_state = 11}, [1882] = {.lex_state = 14, .external_lex_state = 11}, [1883] = {.lex_state = 14, .external_lex_state = 11}, - [1884] = {.lex_state = 66, .external_lex_state = 2}, - [1885] = {.lex_state = 14, .external_lex_state = 11}, - [1886] = {.lex_state = 14, .external_lex_state = 11}, + [1884] = {.lex_state = 14, .external_lex_state = 11}, + [1885] = {.lex_state = 66, .external_lex_state = 2}, + [1886] = {.lex_state = 66, .external_lex_state = 2}, [1887] = {.lex_state = 14, .external_lex_state = 11}, - [1888] = {.lex_state = 66, .external_lex_state = 2}, + [1888] = {.lex_state = 14, .external_lex_state = 11}, [1889] = {.lex_state = 66, .external_lex_state = 2}, - [1890] = {.lex_state = 14, .external_lex_state = 11}, + [1890] = {.lex_state = 66, .external_lex_state = 2}, [1891] = {.lex_state = 14, .external_lex_state = 11}, - [1892] = {.lex_state = 14, .external_lex_state = 11}, + [1892] = {.lex_state = 66, .external_lex_state = 2}, [1893] = {.lex_state = 14, .external_lex_state = 11}, - [1894] = {.lex_state = 66, .external_lex_state = 2}, + [1894] = {.lex_state = 14, .external_lex_state = 11}, [1895] = {.lex_state = 14, .external_lex_state = 11}, [1896] = {.lex_state = 14, .external_lex_state = 11}, [1897] = {.lex_state = 66, .external_lex_state = 2}, - [1898] = {.lex_state = 66, .external_lex_state = 2}, - [1899] = {.lex_state = 66, .external_lex_state = 2}, + [1898] = {.lex_state = 14, .external_lex_state = 11}, + [1899] = {.lex_state = 14, .external_lex_state = 11}, [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}, - [1906] = {.lex_state = 66, .external_lex_state = 2}, + [1902] = {.lex_state = 14, .external_lex_state = 11}, + [1903] = {.lex_state = 14, .external_lex_state = 11}, + [1904] = {.lex_state = 14, .external_lex_state = 11}, + [1905] = {.lex_state = 14, .external_lex_state = 11}, + [1906] = {.lex_state = 14, .external_lex_state = 11}, [1907] = {.lex_state = 66, .external_lex_state = 2}, [1908] = {.lex_state = 66, .external_lex_state = 2}, [1909] = {.lex_state = 66, .external_lex_state = 2}, @@ -14995,7 +15024,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1922] = {.lex_state = 66, .external_lex_state = 2}, [1923] = {.lex_state = 66, .external_lex_state = 2}, [1924] = {.lex_state = 66, .external_lex_state = 2}, - [1925] = {.lex_state = 66, .external_lex_state = 2}, + [1925] = {.lex_state = 66, .external_lex_state = 12}, [1926] = {.lex_state = 66, .external_lex_state = 2}, [1927] = {.lex_state = 66, .external_lex_state = 2}, [1928] = {.lex_state = 66, .external_lex_state = 2}, @@ -15074,110 +15103,110 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2001] = {.lex_state = 66, .external_lex_state = 2}, [2002] = {.lex_state = 66, .external_lex_state = 2}, [2003] = {.lex_state = 66, .external_lex_state = 2}, - [2004] = {.lex_state = 66, .external_lex_state = 3}, - [2005] = {.lex_state = 66, .external_lex_state = 3}, - [2006] = {.lex_state = 66, .external_lex_state = 12}, - [2007] = {.lex_state = 66, .external_lex_state = 12}, - [2008] = {.lex_state = 66, .external_lex_state = 3}, - [2009] = {.lex_state = 66, .external_lex_state = 3}, - [2010] = {.lex_state = 66, .external_lex_state = 13}, - [2011] = {.lex_state = 66, .external_lex_state = 13}, - [2012] = {.lex_state = 66, .external_lex_state = 13}, - [2013] = {.lex_state = 66, .external_lex_state = 13}, - [2014] = {.lex_state = 66, .external_lex_state = 13}, - [2015] = {.lex_state = 66, .external_lex_state = 13}, - [2016] = {.lex_state = 66, .external_lex_state = 13}, - [2017] = {.lex_state = 66, .external_lex_state = 13}, - [2018] = {.lex_state = 66, .external_lex_state = 13}, + [2004] = {.lex_state = 66, .external_lex_state = 2}, + [2005] = {.lex_state = 66, .external_lex_state = 2}, + [2006] = {.lex_state = 66, .external_lex_state = 2}, + [2007] = {.lex_state = 66, .external_lex_state = 2}, + [2008] = {.lex_state = 66, .external_lex_state = 2}, + [2009] = {.lex_state = 66, .external_lex_state = 2}, + [2010] = {.lex_state = 66, .external_lex_state = 2}, + [2011] = {.lex_state = 66, .external_lex_state = 2}, + [2012] = {.lex_state = 66, .external_lex_state = 2}, + [2013] = {.lex_state = 66, .external_lex_state = 2}, + [2014] = {.lex_state = 66, .external_lex_state = 12}, + [2015] = {.lex_state = 66, .external_lex_state = 3}, + [2016] = {.lex_state = 66, .external_lex_state = 3}, + [2017] = {.lex_state = 66, .external_lex_state = 3}, + [2018] = {.lex_state = 66, .external_lex_state = 3}, [2019] = {.lex_state = 66, .external_lex_state = 13}, [2020] = {.lex_state = 66, .external_lex_state = 13}, - [2021] = {.lex_state = 66, .external_lex_state = 12}, - [2022] = {.lex_state = 66, .external_lex_state = 12}, - [2023] = {.lex_state = 66, .external_lex_state = 12}, - [2024] = {.lex_state = 15, .external_lex_state = 11}, - [2025] = {.lex_state = 66, .external_lex_state = 12}, - [2026] = {.lex_state = 66, .external_lex_state = 12}, - [2027] = {.lex_state = 66, .external_lex_state = 12}, - [2028] = {.lex_state = 66, .external_lex_state = 12}, - [2029] = {.lex_state = 66, .external_lex_state = 12}, + [2021] = {.lex_state = 66, .external_lex_state = 13}, + [2022] = {.lex_state = 66, .external_lex_state = 13}, + [2023] = {.lex_state = 66, .external_lex_state = 13}, + [2024] = {.lex_state = 66, .external_lex_state = 13}, + [2025] = {.lex_state = 66, .external_lex_state = 13}, + [2026] = {.lex_state = 66, .external_lex_state = 13}, + [2027] = {.lex_state = 66, .external_lex_state = 13}, + [2028] = {.lex_state = 66, .external_lex_state = 13}, + [2029] = {.lex_state = 66, .external_lex_state = 13}, [2030] = {.lex_state = 66, .external_lex_state = 12}, [2031] = {.lex_state = 66, .external_lex_state = 12}, [2032] = {.lex_state = 15, .external_lex_state = 11}, - [2033] = {.lex_state = 15, .external_lex_state = 11}, - [2034] = {.lex_state = 15, .external_lex_state = 5}, - [2035] = {.lex_state = 23, .external_lex_state = 14}, - [2036] = {.lex_state = 23, .external_lex_state = 14}, - [2037] = {.lex_state = 15, .external_lex_state = 5}, - [2038] = {.lex_state = 15, .external_lex_state = 11}, - [2039] = {.lex_state = 15, .external_lex_state = 5}, - [2040] = {.lex_state = 15, .external_lex_state = 15}, - [2041] = {.lex_state = 15, .external_lex_state = 11}, + [2033] = {.lex_state = 66, .external_lex_state = 12}, + [2034] = {.lex_state = 15, .external_lex_state = 11}, + [2035] = {.lex_state = 66, .external_lex_state = 12}, + [2036] = {.lex_state = 66, .external_lex_state = 12}, + [2037] = {.lex_state = 66, .external_lex_state = 12}, + [2038] = {.lex_state = 66, .external_lex_state = 12}, + [2039] = {.lex_state = 66, .external_lex_state = 12}, + [2040] = {.lex_state = 66, .external_lex_state = 12}, + [2041] = {.lex_state = 66, .external_lex_state = 12}, [2042] = {.lex_state = 15, .external_lex_state = 11}, - [2043] = {.lex_state = 23, .external_lex_state = 14}, - [2044] = {.lex_state = 15, .external_lex_state = 11}, - [2045] = {.lex_state = 15, .external_lex_state = 11}, - [2046] = {.lex_state = 15, .external_lex_state = 15}, + [2043] = {.lex_state = 15, .external_lex_state = 5}, + [2044] = {.lex_state = 23, .external_lex_state = 14}, + [2045] = {.lex_state = 15, .external_lex_state = 5}, + [2046] = {.lex_state = 23, .external_lex_state = 14}, [2047] = {.lex_state = 15, .external_lex_state = 11}, - [2048] = {.lex_state = 15, .external_lex_state = 11}, + [2048] = {.lex_state = 15, .external_lex_state = 5}, [2049] = {.lex_state = 15, .external_lex_state = 11}, [2050] = {.lex_state = 15, .external_lex_state = 11}, [2051] = {.lex_state = 15, .external_lex_state = 15}, - [2052] = {.lex_state = 15, .external_lex_state = 11}, - [2053] = {.lex_state = 15, .external_lex_state = 11}, - [2054] = {.lex_state = 15, .external_lex_state = 15}, + [2052] = {.lex_state = 15, .external_lex_state = 15}, + [2053] = {.lex_state = 23, .external_lex_state = 14}, + [2054] = {.lex_state = 15, .external_lex_state = 11}, [2055] = {.lex_state = 15, .external_lex_state = 11}, - [2056] = {.lex_state = 23, .external_lex_state = 14}, - [2057] = {.lex_state = 15, .external_lex_state = 11}, - [2058] = {.lex_state = 15, .external_lex_state = 12}, - [2059] = {.lex_state = 15, .external_lex_state = 5}, - [2060] = {.lex_state = 15, .external_lex_state = 14}, - [2061] = {.lex_state = 15, .external_lex_state = 14}, - [2062] = {.lex_state = 15, .external_lex_state = 16}, - [2063] = {.lex_state = 15, .external_lex_state = 16}, - [2064] = {.lex_state = 15, .external_lex_state = 5}, - [2065] = {.lex_state = 23, .external_lex_state = 11}, - [2066] = {.lex_state = 23, .external_lex_state = 11}, - [2067] = {.lex_state = 15, .external_lex_state = 12}, - [2068] = {.lex_state = 15, .external_lex_state = 11}, - [2069] = {.lex_state = 15, .external_lex_state = 11}, - [2070] = {.lex_state = 15, .external_lex_state = 7}, - [2071] = {.lex_state = 66, .external_lex_state = 12}, - [2072] = {.lex_state = 15, .external_lex_state = 11}, - [2073] = {.lex_state = 15, .external_lex_state = 7}, - [2074] = {.lex_state = 15, .external_lex_state = 11}, - [2075] = {.lex_state = 15, .external_lex_state = 11}, - [2076] = {.lex_state = 15, .external_lex_state = 11}, - [2077] = {.lex_state = 15, .external_lex_state = 16}, + [2056] = {.lex_state = 15, .external_lex_state = 11}, + [2057] = {.lex_state = 15, .external_lex_state = 15}, + [2058] = {.lex_state = 23, .external_lex_state = 14}, + [2059] = {.lex_state = 15, .external_lex_state = 11}, + [2060] = {.lex_state = 15, .external_lex_state = 11}, + [2061] = {.lex_state = 15, .external_lex_state = 15}, + [2062] = {.lex_state = 15, .external_lex_state = 11}, + [2063] = {.lex_state = 15, .external_lex_state = 11}, + [2064] = {.lex_state = 15, .external_lex_state = 11}, + [2065] = {.lex_state = 15, .external_lex_state = 11}, + [2066] = {.lex_state = 15, .external_lex_state = 14}, + [2067] = {.lex_state = 15, .external_lex_state = 11}, + [2068] = {.lex_state = 15, .external_lex_state = 5}, + [2069] = {.lex_state = 15, .external_lex_state = 5}, + [2070] = {.lex_state = 15, .external_lex_state = 16}, + [2071] = {.lex_state = 15, .external_lex_state = 16}, + [2072] = {.lex_state = 15, .external_lex_state = 12}, + [2073] = {.lex_state = 23, .external_lex_state = 11}, + [2074] = {.lex_state = 23, .external_lex_state = 11}, + [2075] = {.lex_state = 15, .external_lex_state = 12}, + [2076] = {.lex_state = 15, .external_lex_state = 14}, + [2077] = {.lex_state = 15, .external_lex_state = 11}, [2078] = {.lex_state = 15, .external_lex_state = 11}, [2079] = {.lex_state = 15, .external_lex_state = 11}, [2080] = {.lex_state = 15, .external_lex_state = 11}, [2081] = {.lex_state = 15, .external_lex_state = 11}, - [2082] = {.lex_state = 15, .external_lex_state = 15}, + [2082] = {.lex_state = 15, .external_lex_state = 11}, [2083] = {.lex_state = 15, .external_lex_state = 11}, [2084] = {.lex_state = 15, .external_lex_state = 11}, [2085] = {.lex_state = 15, .external_lex_state = 11}, - [2086] = {.lex_state = 15, .external_lex_state = 11}, + [2086] = {.lex_state = 23, .external_lex_state = 14}, [2087] = {.lex_state = 15, .external_lex_state = 11}, [2088] = {.lex_state = 15, .external_lex_state = 11}, [2089] = {.lex_state = 15, .external_lex_state = 7}, [2090] = {.lex_state = 15, .external_lex_state = 11}, - [2091] = {.lex_state = 15, .external_lex_state = 15}, - [2092] = {.lex_state = 15, .external_lex_state = 11}, + [2091] = {.lex_state = 15, .external_lex_state = 11}, + [2092] = {.lex_state = 15, .external_lex_state = 15}, [2093] = {.lex_state = 15, .external_lex_state = 11}, - [2094] = {.lex_state = 15, .external_lex_state = 11}, - [2095] = {.lex_state = 15, .external_lex_state = 11}, + [2094] = {.lex_state = 15, .external_lex_state = 16}, + [2095] = {.lex_state = 15, .external_lex_state = 7}, [2096] = {.lex_state = 15, .external_lex_state = 11}, - [2097] = {.lex_state = 15, .external_lex_state = 7}, - [2098] = {.lex_state = 15, .external_lex_state = 11}, - [2099] = {.lex_state = 15, .external_lex_state = 16}, - [2100] = {.lex_state = 15, .external_lex_state = 11}, + [2097] = {.lex_state = 15, .external_lex_state = 11}, + [2098] = {.lex_state = 15, .external_lex_state = 7}, + [2099] = {.lex_state = 15, .external_lex_state = 7}, + [2100] = {.lex_state = 15, .external_lex_state = 15}, [2101] = {.lex_state = 15, .external_lex_state = 11}, [2102] = {.lex_state = 15, .external_lex_state = 11}, - [2103] = {.lex_state = 15, .external_lex_state = 7}, + [2103] = {.lex_state = 66, .external_lex_state = 12}, [2104] = {.lex_state = 15, .external_lex_state = 11}, - [2105] = {.lex_state = 15, .external_lex_state = 11}, + [2105] = {.lex_state = 15, .external_lex_state = 7}, [2106] = {.lex_state = 15, .external_lex_state = 11}, - [2107] = {.lex_state = 15, .external_lex_state = 11}, + [2107] = {.lex_state = 15, .external_lex_state = 16}, [2108] = {.lex_state = 15, .external_lex_state = 11}, [2109] = {.lex_state = 15, .external_lex_state = 11}, [2110] = {.lex_state = 15, .external_lex_state = 11}, @@ -15189,552 +15218,552 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2116] = {.lex_state = 15, .external_lex_state = 11}, [2117] = {.lex_state = 15, .external_lex_state = 11}, [2118] = {.lex_state = 15, .external_lex_state = 11}, - [2119] = {.lex_state = 15, .external_lex_state = 7}, + [2119] = {.lex_state = 15, .external_lex_state = 11}, [2120] = {.lex_state = 15, .external_lex_state = 11}, - [2121] = {.lex_state = 15, .external_lex_state = 15}, + [2121] = {.lex_state = 15, .external_lex_state = 11}, [2122] = {.lex_state = 15, .external_lex_state = 11}, [2123] = {.lex_state = 15, .external_lex_state = 11}, [2124] = {.lex_state = 15, .external_lex_state = 11}, [2125] = {.lex_state = 15, .external_lex_state = 11}, - [2126] = {.lex_state = 15, .external_lex_state = 15}, + [2126] = {.lex_state = 15, .external_lex_state = 11}, [2127] = {.lex_state = 15, .external_lex_state = 11}, [2128] = {.lex_state = 15, .external_lex_state = 11}, [2129] = {.lex_state = 15, .external_lex_state = 11}, - [2130] = {.lex_state = 15, .external_lex_state = 16}, - [2131] = {.lex_state = 15, .external_lex_state = 15}, - [2132] = {.lex_state = 15, .external_lex_state = 2}, - [2133] = {.lex_state = 15, .external_lex_state = 14}, - [2134] = {.lex_state = 15, .external_lex_state = 15}, - [2135] = {.lex_state = 15, .external_lex_state = 2}, + [2130] = {.lex_state = 15, .external_lex_state = 11}, + [2131] = {.lex_state = 15, .external_lex_state = 11}, + [2132] = {.lex_state = 15, .external_lex_state = 11}, + [2133] = {.lex_state = 15, .external_lex_state = 11}, + [2134] = {.lex_state = 15, .external_lex_state = 11}, + [2135] = {.lex_state = 15, .external_lex_state = 11}, [2136] = {.lex_state = 15, .external_lex_state = 15}, - [2137] = {.lex_state = 15, .external_lex_state = 8}, - [2138] = {.lex_state = 15, .external_lex_state = 14}, - [2139] = {.lex_state = 15, .external_lex_state = 12}, - [2140] = {.lex_state = 15, .external_lex_state = 2}, + [2137] = {.lex_state = 15, .external_lex_state = 11}, + [2138] = {.lex_state = 15, .external_lex_state = 7}, + [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 = 15}, - [2146] = {.lex_state = 15, .external_lex_state = 15}, - [2147] = {.lex_state = 15, .external_lex_state = 15}, + [2146] = {.lex_state = 15, .external_lex_state = 14}, + [2147] = {.lex_state = 15, .external_lex_state = 6}, [2148] = {.lex_state = 15, .external_lex_state = 15}, - [2149] = {.lex_state = 15, .external_lex_state = 15}, - [2150] = {.lex_state = 15, .external_lex_state = 6}, + [2149] = {.lex_state = 15, .external_lex_state = 2}, + [2150] = {.lex_state = 15, .external_lex_state = 15}, [2151] = {.lex_state = 15, .external_lex_state = 14}, - [2152] = {.lex_state = 15, .external_lex_state = 14}, - [2153] = {.lex_state = 15, .external_lex_state = 15}, - [2154] = {.lex_state = 15, .external_lex_state = 14}, - [2155] = {.lex_state = 15, .external_lex_state = 12}, - [2156] = {.lex_state = 15, .external_lex_state = 16}, - [2157] = {.lex_state = 15, .external_lex_state = 8}, + [2152] = {.lex_state = 15, .external_lex_state = 15}, + [2153] = {.lex_state = 15, .external_lex_state = 16}, + [2154] = {.lex_state = 15, .external_lex_state = 15}, + [2155] = {.lex_state = 15, .external_lex_state = 15}, + [2156] = {.lex_state = 15, .external_lex_state = 14}, + [2157] = {.lex_state = 15, .external_lex_state = 15}, [2158] = {.lex_state = 15, .external_lex_state = 15}, - [2159] = {.lex_state = 15, .external_lex_state = 6}, - [2160] = {.lex_state = 15, .external_lex_state = 15}, - [2161] = {.lex_state = 15, .external_lex_state = 15}, + [2159] = {.lex_state = 15, .external_lex_state = 15}, + [2160] = {.lex_state = 15, .external_lex_state = 6}, + [2161] = {.lex_state = 15, .external_lex_state = 2}, [2162] = {.lex_state = 15, .external_lex_state = 15}, - [2163] = {.lex_state = 15, .external_lex_state = 15}, + [2163] = {.lex_state = 15, .external_lex_state = 14}, [2164] = {.lex_state = 15, .external_lex_state = 15}, - [2165] = {.lex_state = 15, .external_lex_state = 15}, + [2165] = {.lex_state = 15, .external_lex_state = 14}, [2166] = {.lex_state = 15, .external_lex_state = 15}, - [2167] = {.lex_state = 15, .external_lex_state = 8}, - [2168] = {.lex_state = 15, .external_lex_state = 16}, - [2169] = {.lex_state = 15, .external_lex_state = 15}, - [2170] = {.lex_state = 15, .external_lex_state = 6}, + [2167] = {.lex_state = 15, .external_lex_state = 15}, + [2168] = {.lex_state = 15, .external_lex_state = 8}, + [2169] = {.lex_state = 15, .external_lex_state = 12}, + [2170] = {.lex_state = 15, .external_lex_state = 2}, [2171] = {.lex_state = 15, .external_lex_state = 15}, - [2172] = {.lex_state = 15, .external_lex_state = 16}, - [2173] = {.lex_state = 15, .external_lex_state = 12}, - [2174] = {.lex_state = 23, .external_lex_state = 15}, - [2175] = {.lex_state = 66, .external_lex_state = 12}, - [2176] = {.lex_state = 15, .external_lex_state = 7}, - [2177] = {.lex_state = 15, .external_lex_state = 12}, - [2178] = {.lex_state = 15, .external_lex_state = 12}, - [2179] = {.lex_state = 15, .external_lex_state = 16}, - [2180] = {.lex_state = 15, .external_lex_state = 12}, - [2181] = {.lex_state = 15, .external_lex_state = 16}, + [2172] = {.lex_state = 15, .external_lex_state = 15}, + [2173] = {.lex_state = 15, .external_lex_state = 8}, + [2174] = {.lex_state = 15, .external_lex_state = 15}, + [2175] = {.lex_state = 15, .external_lex_state = 16}, + [2176] = {.lex_state = 15, .external_lex_state = 6}, + [2177] = {.lex_state = 15, .external_lex_state = 8}, + [2178] = {.lex_state = 15, .external_lex_state = 15}, + [2179] = {.lex_state = 15, .external_lex_state = 12}, + [2180] = {.lex_state = 15, .external_lex_state = 16}, + [2181] = {.lex_state = 15, .external_lex_state = 15}, [2182] = {.lex_state = 15, .external_lex_state = 12}, - [2183] = {.lex_state = 15, .external_lex_state = 12}, - [2184] = {.lex_state = 15, .external_lex_state = 12}, - [2185] = {.lex_state = 15, .external_lex_state = 12}, + [2183] = {.lex_state = 15, .external_lex_state = 16}, + [2184] = {.lex_state = 15, .external_lex_state = 16}, + [2185] = {.lex_state = 15, .external_lex_state = 16}, [2186] = {.lex_state = 15, .external_lex_state = 16}, - [2187] = {.lex_state = 15, .external_lex_state = 12}, - [2188] = {.lex_state = 15, .external_lex_state = 12}, - [2189] = {.lex_state = 23, .external_lex_state = 15}, - [2190] = {.lex_state = 23, .external_lex_state = 15}, - [2191] = {.lex_state = 15, .external_lex_state = 7}, - [2192] = {.lex_state = 23, .external_lex_state = 14}, - [2193] = {.lex_state = 23, .external_lex_state = 14}, - [2194] = {.lex_state = 23, .external_lex_state = 15}, + [2187] = {.lex_state = 15, .external_lex_state = 16}, + [2188] = {.lex_state = 15, .external_lex_state = 16}, + [2189] = {.lex_state = 15, .external_lex_state = 14}, + [2190] = {.lex_state = 15, .external_lex_state = 12}, + [2191] = {.lex_state = 15, .external_lex_state = 12}, + [2192] = {.lex_state = 15, .external_lex_state = 14}, + [2193] = {.lex_state = 15, .external_lex_state = 7}, + [2194] = {.lex_state = 66, .external_lex_state = 12}, [2195] = {.lex_state = 15, .external_lex_state = 14}, - [2196] = {.lex_state = 15, .external_lex_state = 16}, - [2197] = {.lex_state = 15, .external_lex_state = 12}, - [2198] = {.lex_state = 15, .external_lex_state = 16}, - [2199] = {.lex_state = 15, .external_lex_state = 16}, + [2196] = {.lex_state = 23, .external_lex_state = 15}, + [2197] = {.lex_state = 23, .external_lex_state = 15}, + [2198] = {.lex_state = 15, .external_lex_state = 7}, + [2199] = {.lex_state = 15, .external_lex_state = 14}, [2200] = {.lex_state = 15, .external_lex_state = 8}, - [2201] = {.lex_state = 66, .external_lex_state = 12}, + [2201] = {.lex_state = 15, .external_lex_state = 12}, [2202] = {.lex_state = 15, .external_lex_state = 16}, - [2203] = {.lex_state = 15, .external_lex_state = 16}, - [2204] = {.lex_state = 15, .external_lex_state = 16}, - [2205] = {.lex_state = 15, .external_lex_state = 14}, - [2206] = {.lex_state = 15, .external_lex_state = 16}, - [2207] = {.lex_state = 15, .external_lex_state = 7}, - [2208] = {.lex_state = 15, .external_lex_state = 8}, - [2209] = {.lex_state = 66, .external_lex_state = 12}, + [2203] = {.lex_state = 23, .external_lex_state = 15}, + [2204] = {.lex_state = 23, .external_lex_state = 15}, + [2205] = {.lex_state = 66, .external_lex_state = 12}, + [2206] = {.lex_state = 23, .external_lex_state = 15}, + [2207] = {.lex_state = 23, .external_lex_state = 15}, + [2208] = {.lex_state = 66, .external_lex_state = 12}, + [2209] = {.lex_state = 15, .external_lex_state = 12}, [2210] = {.lex_state = 15, .external_lex_state = 16}, - [2211] = {.lex_state = 66, .external_lex_state = 12}, - [2212] = {.lex_state = 15, .external_lex_state = 14}, - [2213] = {.lex_state = 23, .external_lex_state = 15}, - [2214] = {.lex_state = 15, .external_lex_state = 7}, - [2215] = {.lex_state = 66, .external_lex_state = 12}, - [2216] = {.lex_state = 15, .external_lex_state = 16}, - [2217] = {.lex_state = 66, .external_lex_state = 12}, - [2218] = {.lex_state = 15, .external_lex_state = 8}, - [2219] = {.lex_state = 23, .external_lex_state = 15}, - [2220] = {.lex_state = 23, .external_lex_state = 15}, - [2221] = {.lex_state = 23, .external_lex_state = 15}, - [2222] = {.lex_state = 15, .external_lex_state = 14}, + [2211] = {.lex_state = 15, .external_lex_state = 12}, + [2212] = {.lex_state = 15, .external_lex_state = 12}, + [2213] = {.lex_state = 15, .external_lex_state = 8}, + [2214] = {.lex_state = 15, .external_lex_state = 12}, + [2215] = {.lex_state = 15, .external_lex_state = 12}, + [2216] = {.lex_state = 23, .external_lex_state = 15}, + [2217] = {.lex_state = 15, .external_lex_state = 12}, + [2218] = {.lex_state = 15, .external_lex_state = 7}, + [2219] = {.lex_state = 15, .external_lex_state = 16}, + [2220] = {.lex_state = 23, .external_lex_state = 11}, + [2221] = {.lex_state = 15, .external_lex_state = 14}, + [2222] = {.lex_state = 15, .external_lex_state = 8}, [2223] = {.lex_state = 15, .external_lex_state = 14}, - [2224] = {.lex_state = 15, .external_lex_state = 14}, + [2224] = {.lex_state = 15, .external_lex_state = 16}, [2225] = {.lex_state = 15, .external_lex_state = 14}, - [2226] = {.lex_state = 15, .external_lex_state = 14}, - [2227] = {.lex_state = 15, .external_lex_state = 14}, + [2226] = {.lex_state = 23, .external_lex_state = 15}, + [2227] = {.lex_state = 15, .external_lex_state = 16}, [2228] = {.lex_state = 15, .external_lex_state = 14}, - [2229] = {.lex_state = 15, .external_lex_state = 14}, - [2230] = {.lex_state = 23, .external_lex_state = 11}, - [2231] = {.lex_state = 15, .external_lex_state = 15}, - [2232] = {.lex_state = 15, .external_lex_state = 15}, - [2233] = {.lex_state = 15, .external_lex_state = 15}, - [2234] = {.lex_state = 15, .external_lex_state = 15}, - [2235] = {.lex_state = 15, .external_lex_state = 15}, - [2236] = {.lex_state = 15, .external_lex_state = 15}, - [2237] = {.lex_state = 15, .external_lex_state = 15}, - [2238] = {.lex_state = 15, .external_lex_state = 15}, + [2229] = {.lex_state = 15, .external_lex_state = 16}, + [2230] = {.lex_state = 23, .external_lex_state = 14}, + [2231] = {.lex_state = 15, .external_lex_state = 14}, + [2232] = {.lex_state = 23, .external_lex_state = 14}, + [2233] = {.lex_state = 66, .external_lex_state = 12}, + [2234] = {.lex_state = 15, .external_lex_state = 14}, + [2235] = {.lex_state = 66, .external_lex_state = 12}, + [2236] = {.lex_state = 15, .external_lex_state = 16}, + [2237] = {.lex_state = 66, .external_lex_state = 12}, + [2238] = {.lex_state = 15, .external_lex_state = 7}, [2239] = {.lex_state = 15, .external_lex_state = 14}, - [2240] = {.lex_state = 15, .external_lex_state = 15}, + [2240] = {.lex_state = 15, .external_lex_state = 12}, [2241] = {.lex_state = 15, .external_lex_state = 15}, - [2242] = {.lex_state = 15, .external_lex_state = 15}, - [2243] = {.lex_state = 15, .external_lex_state = 8}, + [2242] = {.lex_state = 15, .external_lex_state = 14}, + [2243] = {.lex_state = 15, .external_lex_state = 14}, [2244] = {.lex_state = 15, .external_lex_state = 15}, [2245] = {.lex_state = 15, .external_lex_state = 15}, - [2246] = {.lex_state = 15, .external_lex_state = 14}, - [2247] = {.lex_state = 15, .external_lex_state = 16}, + [2246] = {.lex_state = 15, .external_lex_state = 6}, + [2247] = {.lex_state = 15, .external_lex_state = 12}, [2248] = {.lex_state = 15, .external_lex_state = 15}, - [2249] = {.lex_state = 15, .external_lex_state = 14}, + [2249] = {.lex_state = 15, .external_lex_state = 15}, [2250] = {.lex_state = 15, .external_lex_state = 15}, [2251] = {.lex_state = 15, .external_lex_state = 15}, - [2252] = {.lex_state = 15, .external_lex_state = 15}, - [2253] = {.lex_state = 23, .external_lex_state = 14}, + [2252] = {.lex_state = 15, .external_lex_state = 2}, + [2253] = {.lex_state = 23, .external_lex_state = 16}, [2254] = {.lex_state = 15, .external_lex_state = 15}, - [2255] = {.lex_state = 15, .external_lex_state = 15}, + [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 = 15, .external_lex_state = 15}, + [2258] = {.lex_state = 23, .external_lex_state = 16}, [2259] = {.lex_state = 15, .external_lex_state = 15}, - [2260] = {.lex_state = 15, .external_lex_state = 16}, - [2261] = {.lex_state = 15, .external_lex_state = 15}, + [2260] = {.lex_state = 15, .external_lex_state = 15}, + [2261] = {.lex_state = 15, .external_lex_state = 14}, [2262] = {.lex_state = 15, .external_lex_state = 15}, - [2263] = {.lex_state = 23, .external_lex_state = 16}, + [2263] = {.lex_state = 15, .external_lex_state = 15}, [2264] = {.lex_state = 15, .external_lex_state = 15}, - [2265] = {.lex_state = 15, .external_lex_state = 12}, - [2266] = {.lex_state = 15, .external_lex_state = 16}, + [2265] = {.lex_state = 15, .external_lex_state = 15}, + [2266] = {.lex_state = 15, .external_lex_state = 15}, [2267] = {.lex_state = 15, .external_lex_state = 15}, [2268] = {.lex_state = 15, .external_lex_state = 15}, - [2269] = {.lex_state = 15, .external_lex_state = 2}, + [2269] = {.lex_state = 15, .external_lex_state = 12}, [2270] = {.lex_state = 15, .external_lex_state = 15}, - [2271] = {.lex_state = 15, .external_lex_state = 15}, - [2272] = {.lex_state = 15, .external_lex_state = 14}, + [2271] = {.lex_state = 15, .external_lex_state = 8}, + [2272] = {.lex_state = 23, .external_lex_state = 16}, [2273] = {.lex_state = 15, .external_lex_state = 15}, - [2274] = {.lex_state = 15, .external_lex_state = 15}, - [2275] = {.lex_state = 15, .external_lex_state = 15}, + [2274] = {.lex_state = 15, .external_lex_state = 14}, + [2275] = {.lex_state = 15, .external_lex_state = 14}, [2276] = {.lex_state = 15, .external_lex_state = 15}, - [2277] = {.lex_state = 15, .external_lex_state = 15}, - [2278] = {.lex_state = 15, .external_lex_state = 15}, - [2279] = {.lex_state = 15, .external_lex_state = 15}, + [2277] = {.lex_state = 15, .external_lex_state = 2}, + [2278] = {.lex_state = 23, .external_lex_state = 16}, + [2279] = {.lex_state = 23, .external_lex_state = 16}, [2280] = {.lex_state = 15, .external_lex_state = 15}, - [2281] = {.lex_state = 15, .external_lex_state = 15}, - [2282] = {.lex_state = 23, .external_lex_state = 16}, + [2281] = {.lex_state = 23, .external_lex_state = 14}, + [2282] = {.lex_state = 15, .external_lex_state = 15}, [2283] = {.lex_state = 15, .external_lex_state = 15}, [2284] = {.lex_state = 15, .external_lex_state = 15}, [2285] = {.lex_state = 15, .external_lex_state = 15}, - [2286] = {.lex_state = 15, .external_lex_state = 15}, + [2286] = {.lex_state = 15, .external_lex_state = 16}, [2287] = {.lex_state = 15, .external_lex_state = 15}, - [2288] = {.lex_state = 23, .external_lex_state = 14}, - [2289] = {.lex_state = 15, .external_lex_state = 15}, + [2288] = {.lex_state = 15, .external_lex_state = 8}, + [2289] = {.lex_state = 15, .external_lex_state = 16}, [2290] = {.lex_state = 15, .external_lex_state = 15}, [2291] = {.lex_state = 15, .external_lex_state = 15}, [2292] = {.lex_state = 15, .external_lex_state = 15}, - [2293] = {.lex_state = 15, .external_lex_state = 15}, + [2293] = {.lex_state = 15, .external_lex_state = 12}, [2294] = {.lex_state = 15, .external_lex_state = 16}, - [2295] = {.lex_state = 15, .external_lex_state = 14}, + [2295] = {.lex_state = 15, .external_lex_state = 12}, [2296] = {.lex_state = 15, .external_lex_state = 15}, [2297] = {.lex_state = 15, .external_lex_state = 15}, [2298] = {.lex_state = 15, .external_lex_state = 15}, [2299] = {.lex_state = 15, .external_lex_state = 15}, [2300] = {.lex_state = 15, .external_lex_state = 15}, [2301] = {.lex_state = 15, .external_lex_state = 15}, - [2302] = {.lex_state = 15, .external_lex_state = 6}, - [2303] = {.lex_state = 15, .external_lex_state = 14}, - [2304] = {.lex_state = 15, .external_lex_state = 16}, - [2305] = {.lex_state = 15, .external_lex_state = 16}, - [2306] = {.lex_state = 15, .external_lex_state = 12}, + [2302] = {.lex_state = 23, .external_lex_state = 16}, + [2303] = {.lex_state = 15, .external_lex_state = 15}, + [2304] = {.lex_state = 15, .external_lex_state = 12}, + [2305] = {.lex_state = 15, .external_lex_state = 15}, + [2306] = {.lex_state = 15, .external_lex_state = 15}, [2307] = {.lex_state = 15, .external_lex_state = 15}, - [2308] = {.lex_state = 23, .external_lex_state = 12}, + [2308] = {.lex_state = 15, .external_lex_state = 15}, [2309] = {.lex_state = 15, .external_lex_state = 15}, - [2310] = {.lex_state = 23, .external_lex_state = 16}, - [2311] = {.lex_state = 15, .external_lex_state = 2}, + [2310] = {.lex_state = 15, .external_lex_state = 15}, + [2311] = {.lex_state = 15, .external_lex_state = 6}, [2312] = {.lex_state = 15, .external_lex_state = 15}, [2313] = {.lex_state = 15, .external_lex_state = 15}, - [2314] = {.lex_state = 23, .external_lex_state = 16}, + [2314] = {.lex_state = 23, .external_lex_state = 14}, [2315] = {.lex_state = 15, .external_lex_state = 15}, - [2316] = {.lex_state = 15, .external_lex_state = 16}, + [2316] = {.lex_state = 15, .external_lex_state = 15}, [2317] = {.lex_state = 15, .external_lex_state = 15}, - [2318] = {.lex_state = 15, .external_lex_state = 16}, - [2319] = {.lex_state = 23, .external_lex_state = 12}, + [2318] = {.lex_state = 15, .external_lex_state = 6}, + [2319] = {.lex_state = 15, .external_lex_state = 12}, [2320] = {.lex_state = 15, .external_lex_state = 15}, [2321] = {.lex_state = 15, .external_lex_state = 16}, - [2322] = {.lex_state = 15, .external_lex_state = 15}, - [2323] = {.lex_state = 15, .external_lex_state = 6}, - [2324] = {.lex_state = 15, .external_lex_state = 12}, + [2322] = {.lex_state = 23, .external_lex_state = 12}, + [2323] = {.lex_state = 23, .external_lex_state = 12}, + [2324] = {.lex_state = 15, .external_lex_state = 15}, [2325] = {.lex_state = 15, .external_lex_state = 15}, - [2326] = {.lex_state = 15, .external_lex_state = 12}, + [2326] = {.lex_state = 15, .external_lex_state = 15}, [2327] = {.lex_state = 15, .external_lex_state = 15}, [2328] = {.lex_state = 15, .external_lex_state = 15}, - [2329] = {.lex_state = 23, .external_lex_state = 14}, - [2330] = {.lex_state = 15, .external_lex_state = 15}, - [2331] = {.lex_state = 15, .external_lex_state = 14}, - [2332] = {.lex_state = 15, .external_lex_state = 12}, + [2329] = {.lex_state = 15, .external_lex_state = 15}, + [2330] = {.lex_state = 23, .external_lex_state = 16}, + [2331] = {.lex_state = 15, .external_lex_state = 15}, + [2332] = {.lex_state = 15, .external_lex_state = 15}, [2333] = {.lex_state = 15, .external_lex_state = 15}, [2334] = {.lex_state = 15, .external_lex_state = 15}, [2335] = {.lex_state = 15, .external_lex_state = 15}, - [2336] = {.lex_state = 15, .external_lex_state = 6}, - [2337] = {.lex_state = 15, .external_lex_state = 8}, + [2336] = {.lex_state = 15, .external_lex_state = 15}, + [2337] = {.lex_state = 15, .external_lex_state = 15}, [2338] = {.lex_state = 15, .external_lex_state = 15}, [2339] = {.lex_state = 15, .external_lex_state = 15}, - [2340] = {.lex_state = 15, .external_lex_state = 6}, - [2341] = {.lex_state = 23, .external_lex_state = 16}, - [2342] = {.lex_state = 23, .external_lex_state = 16}, + [2340] = {.lex_state = 15, .external_lex_state = 15}, + [2341] = {.lex_state = 15, .external_lex_state = 15}, + [2342] = {.lex_state = 15, .external_lex_state = 15}, [2343] = {.lex_state = 15, .external_lex_state = 15}, - [2344] = {.lex_state = 15, .external_lex_state = 12}, + [2344] = {.lex_state = 15, .external_lex_state = 14}, [2345] = {.lex_state = 15, .external_lex_state = 15}, [2346] = {.lex_state = 15, .external_lex_state = 15}, [2347] = {.lex_state = 15, .external_lex_state = 15}, [2348] = {.lex_state = 15, .external_lex_state = 15}, [2349] = {.lex_state = 15, .external_lex_state = 15}, [2350] = {.lex_state = 15, .external_lex_state = 15}, - [2351] = {.lex_state = 15, .external_lex_state = 15}, - [2352] = {.lex_state = 15, .external_lex_state = 15}, - [2353] = {.lex_state = 15, .external_lex_state = 15}, - [2354] = {.lex_state = 15, .external_lex_state = 12}, - [2355] = {.lex_state = 15, .external_lex_state = 15}, - [2356] = {.lex_state = 15, .external_lex_state = 12}, - [2357] = {.lex_state = 15, .external_lex_state = 15}, - [2358] = {.lex_state = 15, .external_lex_state = 12}, + [2351] = {.lex_state = 15, .external_lex_state = 16}, + [2352] = {.lex_state = 15, .external_lex_state = 16}, + [2353] = {.lex_state = 15, .external_lex_state = 16}, + [2354] = {.lex_state = 15, .external_lex_state = 16}, + [2355] = {.lex_state = 15, .external_lex_state = 16}, + [2356] = {.lex_state = 15, .external_lex_state = 16}, + [2357] = {.lex_state = 15, .external_lex_state = 16}, + [2358] = {.lex_state = 15, .external_lex_state = 15}, [2359] = {.lex_state = 15, .external_lex_state = 15}, [2360] = {.lex_state = 15, .external_lex_state = 15}, - [2361] = {.lex_state = 15, .external_lex_state = 16}, + [2361] = {.lex_state = 15, .external_lex_state = 15}, [2362] = {.lex_state = 15, .external_lex_state = 15}, - [2363] = {.lex_state = 15, .external_lex_state = 16}, + [2363] = {.lex_state = 15, .external_lex_state = 15}, [2364] = {.lex_state = 15, .external_lex_state = 15}, - [2365] = {.lex_state = 23, .external_lex_state = 14}, - [2366] = {.lex_state = 23, .external_lex_state = 14}, - [2367] = {.lex_state = 15, .external_lex_state = 15}, - [2368] = {.lex_state = 15, .external_lex_state = 14}, + [2365] = {.lex_state = 15, .external_lex_state = 15}, + [2366] = {.lex_state = 15, .external_lex_state = 14}, + [2367] = {.lex_state = 23, .external_lex_state = 14}, + [2368] = {.lex_state = 23, .external_lex_state = 14}, [2369] = {.lex_state = 15, .external_lex_state = 15}, - [2370] = {.lex_state = 15, .external_lex_state = 15}, + [2370] = {.lex_state = 15, .external_lex_state = 14}, [2371] = {.lex_state = 15, .external_lex_state = 15}, - [2372] = {.lex_state = 15, .external_lex_state = 6}, - [2373] = {.lex_state = 15, .external_lex_state = 12}, - [2374] = {.lex_state = 15, .external_lex_state = 14}, + [2372] = {.lex_state = 15, .external_lex_state = 15}, + [2373] = {.lex_state = 15, .external_lex_state = 15}, + [2374] = {.lex_state = 15, .external_lex_state = 15}, [2375] = {.lex_state = 15, .external_lex_state = 15}, - [2376] = {.lex_state = 15, .external_lex_state = 15}, + [2376] = {.lex_state = 15, .external_lex_state = 6}, [2377] = {.lex_state = 15, .external_lex_state = 15}, [2378] = {.lex_state = 15, .external_lex_state = 15}, [2379] = {.lex_state = 15, .external_lex_state = 15}, [2380] = {.lex_state = 15, .external_lex_state = 15}, [2381] = {.lex_state = 15, .external_lex_state = 15}, [2382] = {.lex_state = 15, .external_lex_state = 15}, - [2383] = {.lex_state = 23, .external_lex_state = 16}, + [2383] = {.lex_state = 15, .external_lex_state = 15}, [2384] = {.lex_state = 15, .external_lex_state = 15}, [2385] = {.lex_state = 15, .external_lex_state = 15}, [2386] = {.lex_state = 15, .external_lex_state = 15}, - [2387] = {.lex_state = 23, .external_lex_state = 14}, - [2388] = {.lex_state = 15, .external_lex_state = 11}, - [2389] = {.lex_state = 15, .external_lex_state = 8}, - [2390] = {.lex_state = 15, .external_lex_state = 16}, - [2391] = {.lex_state = 15, .external_lex_state = 8}, - [2392] = {.lex_state = 15, .external_lex_state = 14}, - [2393] = {.lex_state = 15, .external_lex_state = 12}, - [2394] = {.lex_state = 16, .external_lex_state = 11}, - [2395] = {.lex_state = 16, .external_lex_state = 11}, - [2396] = {.lex_state = 16, .external_lex_state = 11}, - [2397] = {.lex_state = 16, .external_lex_state = 11}, - [2398] = {.lex_state = 15, .external_lex_state = 12}, - [2399] = {.lex_state = 15, .external_lex_state = 12}, - [2400] = {.lex_state = 15, .external_lex_state = 12}, + [2387] = {.lex_state = 15, .external_lex_state = 15}, + [2388] = {.lex_state = 15, .external_lex_state = 15}, + [2389] = {.lex_state = 15, .external_lex_state = 15}, + [2390] = {.lex_state = 23, .external_lex_state = 14}, + [2391] = {.lex_state = 15, .external_lex_state = 12}, + [2392] = {.lex_state = 15, .external_lex_state = 12}, + [2393] = {.lex_state = 15, .external_lex_state = 6}, + [2394] = {.lex_state = 15, .external_lex_state = 12}, + [2395] = {.lex_state = 23, .external_lex_state = 14}, + [2396] = {.lex_state = 15, .external_lex_state = 15}, + [2397] = {.lex_state = 15, .external_lex_state = 14}, + [2398] = {.lex_state = 15, .external_lex_state = 14}, + [2399] = {.lex_state = 16, .external_lex_state = 11}, + [2400] = {.lex_state = 15, .external_lex_state = 14}, [2401] = {.lex_state = 15, .external_lex_state = 12}, - [2402] = {.lex_state = 15, .external_lex_state = 12}, + [2402] = {.lex_state = 23, .external_lex_state = 12}, [2403] = {.lex_state = 15, .external_lex_state = 12}, [2404] = {.lex_state = 15, .external_lex_state = 12}, - [2405] = {.lex_state = 15, .external_lex_state = 12}, - [2406] = {.lex_state = 15, .external_lex_state = 12}, + [2405] = {.lex_state = 15, .external_lex_state = 16}, + [2406] = {.lex_state = 16, .external_lex_state = 11}, [2407] = {.lex_state = 15, .external_lex_state = 16}, - [2408] = {.lex_state = 16, .external_lex_state = 11}, - [2409] = {.lex_state = 15, .external_lex_state = 12}, - [2410] = {.lex_state = 16, .external_lex_state = 11}, - [2411] = {.lex_state = 16, .external_lex_state = 11}, - [2412] = {.lex_state = 16, .external_lex_state = 11}, - [2413] = {.lex_state = 16, .external_lex_state = 11}, - [2414] = {.lex_state = 16, .external_lex_state = 11}, - [2415] = {.lex_state = 16, .external_lex_state = 11}, - [2416] = {.lex_state = 15, .external_lex_state = 16}, - [2417] = {.lex_state = 15, .external_lex_state = 16}, + [2408] = {.lex_state = 15, .external_lex_state = 16}, + [2409] = {.lex_state = 15, .external_lex_state = 14}, + [2410] = {.lex_state = 15, .external_lex_state = 12}, + [2411] = {.lex_state = 15, .external_lex_state = 16}, + [2412] = {.lex_state = 15, .external_lex_state = 14}, + [2413] = {.lex_state = 15, .external_lex_state = 14}, + [2414] = {.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 = 16}, - [2419] = {.lex_state = 16, .external_lex_state = 11}, + [2419] = {.lex_state = 15, .external_lex_state = 16}, [2420] = {.lex_state = 15, .external_lex_state = 12}, - [2421] = {.lex_state = 15, .external_lex_state = 16}, - [2422] = {.lex_state = 15, .external_lex_state = 16}, + [2421] = {.lex_state = 15, .external_lex_state = 14}, + [2422] = {.lex_state = 15, .external_lex_state = 14}, [2423] = {.lex_state = 15, .external_lex_state = 16}, [2424] = {.lex_state = 15, .external_lex_state = 14}, - [2425] = {.lex_state = 15, .external_lex_state = 16}, - [2426] = {.lex_state = 16, .external_lex_state = 11}, - [2427] = {.lex_state = 15, .external_lex_state = 16}, - [2428] = {.lex_state = 15, .external_lex_state = 16}, - [2429] = {.lex_state = 15, .external_lex_state = 16}, - [2430] = {.lex_state = 15, .external_lex_state = 16}, - [2431] = {.lex_state = 66, .external_lex_state = 12}, - [2432] = {.lex_state = 15, .external_lex_state = 12}, + [2425] = {.lex_state = 15, .external_lex_state = 14}, + [2426] = {.lex_state = 15, .external_lex_state = 16}, + [2427] = {.lex_state = 15, .external_lex_state = 14}, + [2428] = {.lex_state = 23, .external_lex_state = 12}, + [2429] = {.lex_state = 15, .external_lex_state = 14}, + [2430] = {.lex_state = 15, .external_lex_state = 14}, + [2431] = {.lex_state = 15, .external_lex_state = 14}, + [2432] = {.lex_state = 15, .external_lex_state = 14}, [2433] = {.lex_state = 15, .external_lex_state = 16}, - [2434] = {.lex_state = 15, .external_lex_state = 16}, - [2435] = {.lex_state = 15, .external_lex_state = 16}, - [2436] = {.lex_state = 15, .external_lex_state = 16}, - [2437] = {.lex_state = 15, .external_lex_state = 16}, - [2438] = {.lex_state = 15, .external_lex_state = 16}, - [2439] = {.lex_state = 15, .external_lex_state = 12}, - [2440] = {.lex_state = 15, .external_lex_state = 16}, - [2441] = {.lex_state = 15, .external_lex_state = 16}, - [2442] = {.lex_state = 15, .external_lex_state = 16}, - [2443] = {.lex_state = 15, .external_lex_state = 12}, + [2434] = {.lex_state = 15, .external_lex_state = 14}, + [2435] = {.lex_state = 15, .external_lex_state = 14}, + [2436] = {.lex_state = 15, .external_lex_state = 12}, + [2437] = {.lex_state = 15, .external_lex_state = 14}, + [2438] = {.lex_state = 16, .external_lex_state = 11}, + [2439] = {.lex_state = 15, .external_lex_state = 14}, + [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 = 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}, + [2445] = {.lex_state = 15, .external_lex_state = 14}, + [2446] = {.lex_state = 15, .external_lex_state = 14}, + [2447] = {.lex_state = 15, .external_lex_state = 14}, [2448] = {.lex_state = 15, .external_lex_state = 16}, - [2449] = {.lex_state = 15, .external_lex_state = 16}, - [2450] = {.lex_state = 15, .external_lex_state = 12}, - [2451] = {.lex_state = 15, .external_lex_state = 16}, - [2452] = {.lex_state = 15, .external_lex_state = 16}, + [2449] = {.lex_state = 15, .external_lex_state = 14}, + [2450] = {.lex_state = 15, .external_lex_state = 16}, + [2451] = {.lex_state = 15, .external_lex_state = 14}, + [2452] = {.lex_state = 15, .external_lex_state = 14}, [2453] = {.lex_state = 15, .external_lex_state = 16}, [2454] = {.lex_state = 15, .external_lex_state = 16}, - [2455] = {.lex_state = 15, .external_lex_state = 14}, - [2456] = {.lex_state = 15, .external_lex_state = 14}, - [2457] = {.lex_state = 15, .external_lex_state = 14}, - [2458] = {.lex_state = 15, .external_lex_state = 12}, - [2459] = {.lex_state = 15, .external_lex_state = 14}, - [2460] = {.lex_state = 15, .external_lex_state = 14}, - [2461] = {.lex_state = 15, .external_lex_state = 16}, - [2462] = {.lex_state = 15, .external_lex_state = 14}, - [2463] = {.lex_state = 15, .external_lex_state = 16}, + [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}, + [2459] = {.lex_state = 15, .external_lex_state = 16}, + [2460] = {.lex_state = 15, .external_lex_state = 16}, + [2461] = {.lex_state = 15, .external_lex_state = 14}, + [2462] = {.lex_state = 66, .external_lex_state = 12}, + [2463] = {.lex_state = 16, .external_lex_state = 11}, [2464] = {.lex_state = 15, .external_lex_state = 12}, [2465] = {.lex_state = 15, .external_lex_state = 14}, - [2466] = {.lex_state = 23, .external_lex_state = 12}, - [2467] = {.lex_state = 15, .external_lex_state = 12}, - [2468] = {.lex_state = 15, .external_lex_state = 14}, - [2469] = {.lex_state = 15, .external_lex_state = 12}, + [2466] = {.lex_state = 15, .external_lex_state = 16}, + [2467] = {.lex_state = 15, .external_lex_state = 16}, + [2468] = {.lex_state = 15, .external_lex_state = 16}, + [2469] = {.lex_state = 23, .external_lex_state = 14}, [2470] = {.lex_state = 15, .external_lex_state = 16}, [2471] = {.lex_state = 15, .external_lex_state = 16}, [2472] = {.lex_state = 15, .external_lex_state = 14}, [2473] = {.lex_state = 15, .external_lex_state = 14}, - [2474] = {.lex_state = 15, .external_lex_state = 14}, + [2474] = {.lex_state = 15, .external_lex_state = 12}, [2475] = {.lex_state = 15, .external_lex_state = 14}, - [2476] = {.lex_state = 15, .external_lex_state = 16}, - [2477] = {.lex_state = 15, .external_lex_state = 14}, - [2478] = {.lex_state = 15, .external_lex_state = 14}, - [2479] = {.lex_state = 15, .external_lex_state = 12}, - [2480] = {.lex_state = 15, .external_lex_state = 14}, - [2481] = {.lex_state = 15, .external_lex_state = 14}, + [2476] = {.lex_state = 15, .external_lex_state = 14}, + [2477] = {.lex_state = 15, .external_lex_state = 16}, + [2478] = {.lex_state = 15, .external_lex_state = 8}, + [2479] = {.lex_state = 15, .external_lex_state = 16}, + [2480] = {.lex_state = 15, .external_lex_state = 12}, + [2481] = {.lex_state = 23, .external_lex_state = 14}, [2482] = {.lex_state = 15, .external_lex_state = 14}, - [2483] = {.lex_state = 15, .external_lex_state = 14}, - [2484] = {.lex_state = 15, .external_lex_state = 14}, - [2485] = {.lex_state = 15, .external_lex_state = 12}, + [2483] = {.lex_state = 15, .external_lex_state = 16}, + [2484] = {.lex_state = 15, .external_lex_state = 16}, + [2485] = {.lex_state = 15, .external_lex_state = 11}, [2486] = {.lex_state = 15, .external_lex_state = 16}, - [2487] = {.lex_state = 15, .external_lex_state = 16}, - [2488] = {.lex_state = 15, .external_lex_state = 16}, - [2489] = {.lex_state = 15, .external_lex_state = 16}, - [2490] = {.lex_state = 15, .external_lex_state = 16}, - [2491] = {.lex_state = 15, .external_lex_state = 16}, - [2492] = {.lex_state = 15, .external_lex_state = 12}, - [2493] = {.lex_state = 15, .external_lex_state = 14}, - [2494] = {.lex_state = 15, .external_lex_state = 14}, - [2495] = {.lex_state = 15, .external_lex_state = 12}, + [2487] = {.lex_state = 16, .external_lex_state = 11}, + [2488] = {.lex_state = 23, .external_lex_state = 16}, + [2489] = {.lex_state = 16, .external_lex_state = 11}, + [2490] = {.lex_state = 15, .external_lex_state = 14}, + [2491] = {.lex_state = 15, .external_lex_state = 12}, + [2492] = {.lex_state = 15, .external_lex_state = 14}, + [2493] = {.lex_state = 15, .external_lex_state = 16}, + [2494] = {.lex_state = 15, .external_lex_state = 16}, + [2495] = {.lex_state = 15, .external_lex_state = 8}, [2496] = {.lex_state = 15, .external_lex_state = 12}, [2497] = {.lex_state = 15, .external_lex_state = 12}, - [2498] = {.lex_state = 15, .external_lex_state = 16}, - [2499] = {.lex_state = 15, .external_lex_state = 12}, - [2500] = {.lex_state = 15, .external_lex_state = 12}, + [2498] = {.lex_state = 15, .external_lex_state = 14}, + [2499] = {.lex_state = 15, .external_lex_state = 11}, + [2500] = {.lex_state = 15, .external_lex_state = 16}, [2501] = {.lex_state = 15, .external_lex_state = 14}, - [2502] = {.lex_state = 15, .external_lex_state = 16}, - [2503] = {.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 = 14}, + [2502] = {.lex_state = 15, .external_lex_state = 12}, + [2503] = {.lex_state = 15, .external_lex_state = 14}, + [2504] = {.lex_state = 16, .external_lex_state = 11}, + [2505] = {.lex_state = 15, .external_lex_state = 14}, + [2506] = {.lex_state = 15, .external_lex_state = 12}, [2507] = {.lex_state = 15, .external_lex_state = 14}, [2508] = {.lex_state = 15, .external_lex_state = 16}, - [2509] = {.lex_state = 15, .external_lex_state = 16}, + [2509] = {.lex_state = 15, .external_lex_state = 14}, [2510] = {.lex_state = 15, .external_lex_state = 16}, - [2511] = {.lex_state = 15, .external_lex_state = 11}, + [2511] = {.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 = 14}, - [2515] = {.lex_state = 15, .external_lex_state = 16}, - [2516] = {.lex_state = 15, .external_lex_state = 14}, - [2517] = {.lex_state = 15, .external_lex_state = 14}, - [2518] = {.lex_state = 15, .external_lex_state = 14}, - [2519] = {.lex_state = 15, .external_lex_state = 14}, - [2520] = {.lex_state = 15, .external_lex_state = 14}, - [2521] = {.lex_state = 23, .external_lex_state = 14}, - [2522] = {.lex_state = 23, .external_lex_state = 14}, - [2523] = {.lex_state = 15, .external_lex_state = 16}, + [2513] = {.lex_state = 66, .external_lex_state = 12}, + [2514] = {.lex_state = 23, .external_lex_state = 16}, + [2515] = {.lex_state = 15, .external_lex_state = 12}, + [2516] = {.lex_state = 15, .external_lex_state = 12}, + [2517] = {.lex_state = 15, .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 = 14}, + [2522] = {.lex_state = 15, .external_lex_state = 16}, + [2523] = {.lex_state = 15, .external_lex_state = 14}, [2524] = {.lex_state = 15, .external_lex_state = 14}, - [2525] = {.lex_state = 23, .external_lex_state = 12}, - [2526] = {.lex_state = 15, .external_lex_state = 12}, - [2527] = {.lex_state = 15, .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}, + [2525] = {.lex_state = 15, .external_lex_state = 16}, + [2526] = {.lex_state = 15, .external_lex_state = 16}, + [2527] = {.lex_state = 15, .external_lex_state = 16}, + [2528] = {.lex_state = 15, .external_lex_state = 16}, + [2529] = {.lex_state = 15, .external_lex_state = 16}, + [2530] = {.lex_state = 15, .external_lex_state = 16}, [2531] = {.lex_state = 15, .external_lex_state = 14}, - [2532] = {.lex_state = 15, .external_lex_state = 14}, + [2532] = {.lex_state = 16, .external_lex_state = 11}, [2533] = {.lex_state = 15, .external_lex_state = 14}, - [2534] = {.lex_state = 15, .external_lex_state = 16}, - [2535] = {.lex_state = 15, .external_lex_state = 14}, - [2536] = {.lex_state = 15, .external_lex_state = 14}, - [2537] = {.lex_state = 15, .external_lex_state = 16}, - [2538] = {.lex_state = 16, .external_lex_state = 11}, - [2539] = {.lex_state = 15, .external_lex_state = 12}, - [2540] = {.lex_state = 15, .external_lex_state = 12}, + [2534] = {.lex_state = 15, .external_lex_state = 14}, + [2535] = {.lex_state = 15, .external_lex_state = 16}, + [2536] = {.lex_state = 15, .external_lex_state = 12}, + [2537] = {.lex_state = 16, .external_lex_state = 11}, + [2538] = {.lex_state = 15, .external_lex_state = 14}, + [2539] = {.lex_state = 15, .external_lex_state = 14}, + [2540] = {.lex_state = 15, .external_lex_state = 16}, [2541] = {.lex_state = 15, .external_lex_state = 12}, [2542] = {.lex_state = 15, .external_lex_state = 12}, - [2543] = {.lex_state = 15, .external_lex_state = 14}, - [2544] = {.lex_state = 15, .external_lex_state = 14}, - [2545] = {.lex_state = 15, .external_lex_state = 12}, - [2546] = {.lex_state = 15, .external_lex_state = 14}, - [2547] = {.lex_state = 15, .external_lex_state = 14}, + [2543] = {.lex_state = 15, .external_lex_state = 12}, + [2544] = {.lex_state = 16, .external_lex_state = 11}, + [2545] = {.lex_state = 16, .external_lex_state = 11}, + [2546] = {.lex_state = 16, .external_lex_state = 11}, + [2547] = {.lex_state = 16, .external_lex_state = 11}, [2548] = {.lex_state = 15, .external_lex_state = 12}, [2549] = {.lex_state = 15, .external_lex_state = 12}, - [2550] = {.lex_state = 23, .external_lex_state = 12}, - [2551] = {.lex_state = 15, .external_lex_state = 14}, - [2552] = {.lex_state = 23, .external_lex_state = 16}, - [2553] = {.lex_state = 23, .external_lex_state = 16}, - [2554] = {.lex_state = 15, .external_lex_state = 14}, - [2555] = {.lex_state = 15, .external_lex_state = 14}, - [2556] = {.lex_state = 15, .external_lex_state = 14}, - [2557] = {.lex_state = 15, .external_lex_state = 14}, - [2558] = {.lex_state = 66, .external_lex_state = 12}, - [2559] = {.lex_state = 15, .external_lex_state = 14}, - [2560] = {.lex_state = 15, .external_lex_state = 14}, - [2561] = {.lex_state = 15, .external_lex_state = 14}, - [2562] = {.lex_state = 15, .external_lex_state = 14}, - [2563] = {.lex_state = 15, .external_lex_state = 14}, + [2550] = {.lex_state = 15, .external_lex_state = 14}, + [2551] = {.lex_state = 15, .external_lex_state = 16}, + [2552] = {.lex_state = 15, .external_lex_state = 12}, + [2553] = {.lex_state = 15, .external_lex_state = 12}, + [2554] = {.lex_state = 15, .external_lex_state = 12}, + [2555] = {.lex_state = 15, .external_lex_state = 12}, + [2556] = {.lex_state = 15, .external_lex_state = 12}, + [2557] = {.lex_state = 15, .external_lex_state = 12}, + [2558] = {.lex_state = 15, .external_lex_state = 12}, + [2559] = {.lex_state = 15, .external_lex_state = 16}, + [2560] = {.lex_state = 15, .external_lex_state = 12}, + [2561] = {.lex_state = 15, .external_lex_state = 12}, + [2562] = {.lex_state = 15, .external_lex_state = 16}, + [2563] = {.lex_state = 15, .external_lex_state = 12}, [2564] = {.lex_state = 15, .external_lex_state = 14}, [2565] = {.lex_state = 15, .external_lex_state = 14}, - [2566] = {.lex_state = 15, .external_lex_state = 14}, - [2567] = {.lex_state = 15, .external_lex_state = 16}, - [2568] = {.lex_state = 15, .external_lex_state = 12}, + [2566] = {.lex_state = 15, .external_lex_state = 16}, + [2567] = {.lex_state = 15, .external_lex_state = 12}, + [2568] = {.lex_state = 15, .external_lex_state = 14}, [2569] = {.lex_state = 15, .external_lex_state = 16}, [2570] = {.lex_state = 15, .external_lex_state = 16}, - [2571] = {.lex_state = 15, .external_lex_state = 16}, - [2572] = {.lex_state = 15, .external_lex_state = 16}, - [2573] = {.lex_state = 15, .external_lex_state = 16}, - [2574] = {.lex_state = 15, .external_lex_state = 16}, - [2575] = {.lex_state = 23, .external_lex_state = 14}, - [2576] = {.lex_state = 23, .external_lex_state = 14}, + [2571] = {.lex_state = 15, .external_lex_state = 14}, + [2572] = {.lex_state = 16, .external_lex_state = 11}, + [2573] = {.lex_state = 15, .external_lex_state = 14}, + [2574] = {.lex_state = 15, .external_lex_state = 14}, + [2575] = {.lex_state = 23, .external_lex_state = 12}, + [2576] = {.lex_state = 15, .external_lex_state = 12}, [2577] = {.lex_state = 15, .external_lex_state = 16}, - [2578] = {.lex_state = 15, .external_lex_state = 16}, - [2579] = {.lex_state = 23, .external_lex_state = 14}, - [2580] = {.lex_state = 23, .external_lex_state = 14}, - [2581] = {.lex_state = 15, .external_lex_state = 12}, + [2578] = {.lex_state = 23, .external_lex_state = 15}, + [2579] = {.lex_state = 15, .external_lex_state = 16}, + [2580] = {.lex_state = 15, .external_lex_state = 16}, + [2581] = {.lex_state = 15, .external_lex_state = 16}, [2582] = {.lex_state = 15, .external_lex_state = 16}, [2583] = {.lex_state = 15, .external_lex_state = 16}, - [2584] = {.lex_state = 23, .external_lex_state = 15}, - [2585] = {.lex_state = 23, .external_lex_state = 15}, - [2586] = {.lex_state = 23, .external_lex_state = 16}, + [2584] = {.lex_state = 15, .external_lex_state = 16}, + [2585] = {.lex_state = 15, .external_lex_state = 16}, + [2586] = {.lex_state = 15, .external_lex_state = 16}, [2587] = {.lex_state = 15, .external_lex_state = 16}, - [2588] = {.lex_state = 23, .external_lex_state = 16}, + [2588] = {.lex_state = 15, .external_lex_state = 16}, [2589] = {.lex_state = 15, .external_lex_state = 16}, [2590] = {.lex_state = 15, .external_lex_state = 16}, [2591] = {.lex_state = 15, .external_lex_state = 16}, - [2592] = {.lex_state = 15, .external_lex_state = 12}, + [2592] = {.lex_state = 23, .external_lex_state = 16}, [2593] = {.lex_state = 15, .external_lex_state = 16}, [2594] = {.lex_state = 15, .external_lex_state = 16}, [2595] = {.lex_state = 15, .external_lex_state = 16}, - [2596] = {.lex_state = 15, .external_lex_state = 16}, + [2596] = {.lex_state = 23, .external_lex_state = 16}, [2597] = {.lex_state = 15, .external_lex_state = 16}, - [2598] = {.lex_state = 15, .external_lex_state = 16}, - [2599] = {.lex_state = 15, .external_lex_state = 12}, - [2600] = {.lex_state = 15, .external_lex_state = 12}, + [2598] = {.lex_state = 23, .external_lex_state = 14}, + [2599] = {.lex_state = 15, .external_lex_state = 16}, + [2600] = {.lex_state = 15, .external_lex_state = 16}, [2601] = {.lex_state = 15, .external_lex_state = 16}, [2602] = {.lex_state = 15, .external_lex_state = 16}, [2603] = {.lex_state = 15, .external_lex_state = 16}, [2604] = {.lex_state = 15, .external_lex_state = 16}, - [2605] = {.lex_state = 15, .external_lex_state = 6}, + [2605] = {.lex_state = 15, .external_lex_state = 16}, [2606] = {.lex_state = 15, .external_lex_state = 16}, [2607] = {.lex_state = 15, .external_lex_state = 16}, [2608] = {.lex_state = 15, .external_lex_state = 16}, - [2609] = {.lex_state = 15, .external_lex_state = 16}, + [2609] = {.lex_state = 15, .external_lex_state = 12}, [2610] = {.lex_state = 15, .external_lex_state = 16}, - [2611] = {.lex_state = 15, .external_lex_state = 6}, + [2611] = {.lex_state = 15, .external_lex_state = 12}, [2612] = {.lex_state = 15, .external_lex_state = 16}, - [2613] = {.lex_state = 15, .external_lex_state = 16}, + [2613] = {.lex_state = 15, .external_lex_state = 6}, [2614] = {.lex_state = 15, .external_lex_state = 16}, [2615] = {.lex_state = 15, .external_lex_state = 16}, [2616] = {.lex_state = 15, .external_lex_state = 16}, - [2617] = {.lex_state = 15, .external_lex_state = 16}, + [2617] = {.lex_state = 23, .external_lex_state = 14}, [2618] = {.lex_state = 15, .external_lex_state = 16}, - [2619] = {.lex_state = 15, .external_lex_state = 16}, + [2619] = {.lex_state = 15, .external_lex_state = 6}, [2620] = {.lex_state = 15, .external_lex_state = 16}, [2621] = {.lex_state = 15, .external_lex_state = 16}, - [2622] = {.lex_state = 15, .external_lex_state = 16}, + [2622] = {.lex_state = 15, .external_lex_state = 12}, [2623] = {.lex_state = 15, .external_lex_state = 16}, [2624] = {.lex_state = 15, .external_lex_state = 16}, [2625] = {.lex_state = 15, .external_lex_state = 16}, - [2626] = {.lex_state = 15, .external_lex_state = 16}, - [2627] = {.lex_state = 15, .external_lex_state = 16}, + [2626] = {.lex_state = 23, .external_lex_state = 14}, + [2627] = {.lex_state = 23, .external_lex_state = 14}, [2628] = {.lex_state = 15, .external_lex_state = 16}, [2629] = {.lex_state = 15, .external_lex_state = 16}, [2630] = {.lex_state = 15, .external_lex_state = 16}, [2631] = {.lex_state = 15, .external_lex_state = 16}, - [2632] = {.lex_state = 5, .external_lex_state = 12}, - [2633] = {.lex_state = 15, .external_lex_state = 14}, - [2634] = {.lex_state = 5, .external_lex_state = 12}, - [2635] = {.lex_state = 15, .external_lex_state = 14}, - [2636] = {.lex_state = 16, .external_lex_state = 12}, - [2637] = {.lex_state = 15, .external_lex_state = 14}, - [2638] = {.lex_state = 5, .external_lex_state = 2}, - [2639] = {.lex_state = 15, .external_lex_state = 15}, - [2640] = {.lex_state = 15, .external_lex_state = 14}, - [2641] = {.lex_state = 15, .external_lex_state = 14}, - [2642] = {.lex_state = 16, .external_lex_state = 12}, - [2643] = {.lex_state = 15, .external_lex_state = 14}, + [2632] = {.lex_state = 23, .external_lex_state = 15}, + [2633] = {.lex_state = 15, .external_lex_state = 16}, + [2634] = {.lex_state = 15, .external_lex_state = 16}, + [2635] = {.lex_state = 15, .external_lex_state = 16}, + [2636] = {.lex_state = 15, .external_lex_state = 16}, + [2637] = {.lex_state = 15, .external_lex_state = 16}, + [2638] = {.lex_state = 15, .external_lex_state = 16}, + [2639] = {.lex_state = 15, .external_lex_state = 12}, + [2640] = {.lex_state = 15, .external_lex_state = 12}, + [2641] = {.lex_state = 15, .external_lex_state = 16}, + [2642] = {.lex_state = 5, .external_lex_state = 12}, + [2643] = {.lex_state = 5, .external_lex_state = 12}, [2644] = {.lex_state = 15, .external_lex_state = 14}, [2645] = {.lex_state = 15, .external_lex_state = 14}, [2646] = {.lex_state = 15, .external_lex_state = 14}, - [2647] = {.lex_state = 5, .external_lex_state = 12}, + [2647] = {.lex_state = 5, .external_lex_state = 2}, [2648] = {.lex_state = 15, .external_lex_state = 14}, [2649] = {.lex_state = 15, .external_lex_state = 14}, - [2650] = {.lex_state = 5, .external_lex_state = 12}, - [2651] = {.lex_state = 5, .external_lex_state = 12}, - [2652] = {.lex_state = 5, .external_lex_state = 12}, - [2653] = {.lex_state = 15, .external_lex_state = 14}, - [2654] = {.lex_state = 15, .external_lex_state = 14}, - [2655] = {.lex_state = 15, .external_lex_state = 14}, - [2656] = {.lex_state = 15, .external_lex_state = 14}, - [2657] = {.lex_state = 5, .external_lex_state = 12}, - [2658] = {.lex_state = 5, .external_lex_state = 12}, + [2650] = {.lex_state = 15, .external_lex_state = 14}, + [2651] = {.lex_state = 15, .external_lex_state = 14}, + [2652] = {.lex_state = 15, .external_lex_state = 14}, + [2653] = {.lex_state = 16, .external_lex_state = 12}, + [2654] = {.lex_state = 16, .external_lex_state = 12}, + [2655] = {.lex_state = 16, .external_lex_state = 12}, + [2656] = {.lex_state = 16, .external_lex_state = 12}, + [2657] = {.lex_state = 15, .external_lex_state = 14}, + [2658] = {.lex_state = 15, .external_lex_state = 14}, [2659] = {.lex_state = 15, .external_lex_state = 14}, [2660] = {.lex_state = 15, .external_lex_state = 14}, - [2661] = {.lex_state = 5, .external_lex_state = 12}, - [2662] = {.lex_state = 15, .external_lex_state = 12}, + [2661] = {.lex_state = 15, .external_lex_state = 14}, + [2662] = {.lex_state = 15, .external_lex_state = 14}, [2663] = {.lex_state = 15, .external_lex_state = 14}, - [2664] = {.lex_state = 5, .external_lex_state = 12}, + [2664] = {.lex_state = 15, .external_lex_state = 14}, [2665] = {.lex_state = 15, .external_lex_state = 14}, [2666] = {.lex_state = 15, .external_lex_state = 14}, [2667] = {.lex_state = 15, .external_lex_state = 14}, @@ -15742,9 +15771,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2669] = {.lex_state = 15, .external_lex_state = 14}, [2670] = {.lex_state = 15, .external_lex_state = 14}, [2671] = {.lex_state = 15, .external_lex_state = 14}, - [2672] = {.lex_state = 16, .external_lex_state = 12}, + [2672] = {.lex_state = 15, .external_lex_state = 14}, [2673] = {.lex_state = 15, .external_lex_state = 14}, - [2674] = {.lex_state = 5, .external_lex_state = 12}, + [2674] = {.lex_state = 15, .external_lex_state = 14}, [2675] = {.lex_state = 15, .external_lex_state = 14}, [2676] = {.lex_state = 15, .external_lex_state = 14}, [2677] = {.lex_state = 15, .external_lex_state = 14}, @@ -15753,221 +15782,221 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2680] = {.lex_state = 15, .external_lex_state = 14}, [2681] = {.lex_state = 15, .external_lex_state = 14}, [2682] = {.lex_state = 15, .external_lex_state = 14}, - [2683] = {.lex_state = 5, .external_lex_state = 12}, + [2683] = {.lex_state = 15, .external_lex_state = 14}, [2684] = {.lex_state = 15, .external_lex_state = 14}, [2685] = {.lex_state = 15, .external_lex_state = 14}, [2686] = {.lex_state = 15, .external_lex_state = 14}, [2687] = {.lex_state = 15, .external_lex_state = 14}, - [2688] = {.lex_state = 5, .external_lex_state = 12}, - [2689] = {.lex_state = 16, .external_lex_state = 12}, - [2690] = {.lex_state = 16, .external_lex_state = 12}, - [2691] = {.lex_state = 16, .external_lex_state = 12}, + [2688] = {.lex_state = 15, .external_lex_state = 14}, + [2689] = {.lex_state = 15, .external_lex_state = 14}, + [2690] = {.lex_state = 15, .external_lex_state = 14}, + [2691] = {.lex_state = 15, .external_lex_state = 14}, [2692] = {.lex_state = 5, .external_lex_state = 12}, - [2693] = {.lex_state = 5, .external_lex_state = 12}, + [2693] = {.lex_state = 16, .external_lex_state = 12}, [2694] = {.lex_state = 16, .external_lex_state = 12}, [2695] = {.lex_state = 16, .external_lex_state = 12}, - [2696] = {.lex_state = 15, .external_lex_state = 14}, - [2697] = {.lex_state = 5, .external_lex_state = 12}, - [2698] = {.lex_state = 5, .external_lex_state = 12}, - [2699] = {.lex_state = 5, .external_lex_state = 12}, - [2700] = {.lex_state = 5, .external_lex_state = 2}, - [2701] = {.lex_state = 15, .external_lex_state = 14}, + [2696] = {.lex_state = 16, .external_lex_state = 12}, + [2697] = {.lex_state = 16, .external_lex_state = 12}, + [2698] = {.lex_state = 16, .external_lex_state = 12}, + [2699] = {.lex_state = 16, .external_lex_state = 12}, + [2700] = {.lex_state = 16, .external_lex_state = 12}, + [2701] = {.lex_state = 16, .external_lex_state = 12}, [2702] = {.lex_state = 15, .external_lex_state = 14}, - [2703] = {.lex_state = 16, .external_lex_state = 12}, - [2704] = {.lex_state = 5, .external_lex_state = 12}, - [2705] = {.lex_state = 16, .external_lex_state = 12}, - [2706] = {.lex_state = 16, .external_lex_state = 12}, - [2707] = {.lex_state = 15, .external_lex_state = 14}, - [2708] = {.lex_state = 5, .external_lex_state = 12}, - [2709] = {.lex_state = 5, .external_lex_state = 12}, + [2703] = {.lex_state = 15, .external_lex_state = 16}, + [2704] = {.lex_state = 15, .external_lex_state = 15}, + [2705] = {.lex_state = 5, .external_lex_state = 12}, + [2706] = {.lex_state = 5, .external_lex_state = 12}, + [2707] = {.lex_state = 16, .external_lex_state = 12}, + [2708] = {.lex_state = 5, .external_lex_state = 2}, + [2709] = {.lex_state = 15, .external_lex_state = 14}, [2710] = {.lex_state = 15, .external_lex_state = 14}, - [2711] = {.lex_state = 5, .external_lex_state = 12}, - [2712] = {.lex_state = 15, .external_lex_state = 16}, + [2711] = {.lex_state = 15, .external_lex_state = 14}, + [2712] = {.lex_state = 15, .external_lex_state = 14}, [2713] = {.lex_state = 15, .external_lex_state = 14}, [2714] = {.lex_state = 15, .external_lex_state = 14}, - [2715] = {.lex_state = 15, .external_lex_state = 14}, - [2716] = {.lex_state = 15, .external_lex_state = 14}, - [2717] = {.lex_state = 15, .external_lex_state = 14}, - [2718] = {.lex_state = 16, .external_lex_state = 12}, - [2719] = {.lex_state = 16, .external_lex_state = 12}, - [2720] = {.lex_state = 16, .external_lex_state = 12}, - [2721] = {.lex_state = 15, .external_lex_state = 14}, + [2715] = {.lex_state = 5, .external_lex_state = 12}, + [2716] = {.lex_state = 5, .external_lex_state = 12}, + [2717] = {.lex_state = 5, .external_lex_state = 12}, + [2718] = {.lex_state = 5, .external_lex_state = 12}, + [2719] = {.lex_state = 5, .external_lex_state = 12}, + [2720] = {.lex_state = 5, .external_lex_state = 12}, + [2721] = {.lex_state = 5, .external_lex_state = 12}, [2722] = {.lex_state = 5, .external_lex_state = 12}, - [2723] = {.lex_state = 15, .external_lex_state = 14}, - [2724] = {.lex_state = 66, .external_lex_state = 13}, - [2725] = {.lex_state = 66, .external_lex_state = 13}, - [2726] = {.lex_state = 66, .external_lex_state = 13}, - [2727] = {.lex_state = 66, .external_lex_state = 12}, - [2728] = {.lex_state = 66, .external_lex_state = 13}, - [2729] = {.lex_state = 66, .external_lex_state = 13}, - [2730] = {.lex_state = 66, .external_lex_state = 13}, - [2731] = {.lex_state = 5, .external_lex_state = 14}, - [2732] = {.lex_state = 66, .external_lex_state = 13}, - [2733] = {.lex_state = 5, .external_lex_state = 6}, - [2734] = {.lex_state = 5, .external_lex_state = 8}, - [2735] = {.lex_state = 5, .external_lex_state = 6}, - [2736] = {.lex_state = 5, .external_lex_state = 8}, - [2737] = {.lex_state = 5, .external_lex_state = 6}, - [2738] = {.lex_state = 5, .external_lex_state = 6}, - [2739] = {.lex_state = 5, .external_lex_state = 12}, - [2740] = {.lex_state = 66, .external_lex_state = 12}, - [2741] = {.lex_state = 5, .external_lex_state = 8}, - [2742] = {.lex_state = 5, .external_lex_state = 14}, - [2743] = {.lex_state = 5, .external_lex_state = 6}, - [2744] = {.lex_state = 5, .external_lex_state = 8}, + [2723] = {.lex_state = 5, .external_lex_state = 12}, + [2724] = {.lex_state = 5, .external_lex_state = 12}, + [2725] = {.lex_state = 5, .external_lex_state = 12}, + [2726] = {.lex_state = 5, .external_lex_state = 12}, + [2727] = {.lex_state = 5, .external_lex_state = 12}, + [2728] = {.lex_state = 5, .external_lex_state = 12}, + [2729] = {.lex_state = 5, .external_lex_state = 12}, + [2730] = {.lex_state = 5, .external_lex_state = 12}, + [2731] = {.lex_state = 5, .external_lex_state = 12}, + [2732] = {.lex_state = 5, .external_lex_state = 12}, + [2733] = {.lex_state = 15, .external_lex_state = 12}, + [2734] = {.lex_state = 66, .external_lex_state = 13}, + [2735] = {.lex_state = 66, .external_lex_state = 12}, + [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 = 66, .external_lex_state = 13}, + [2741] = {.lex_state = 5, .external_lex_state = 14}, + [2742] = {.lex_state = 66, .external_lex_state = 13}, + [2743] = {.lex_state = 5, .external_lex_state = 8}, + [2744] = {.lex_state = 5, .external_lex_state = 6}, [2745] = {.lex_state = 5, .external_lex_state = 6}, - [2746] = {.lex_state = 66, .external_lex_state = 12}, - [2747] = {.lex_state = 5, .external_lex_state = 6}, - [2748] = {.lex_state = 5, .external_lex_state = 8}, + [2746] = {.lex_state = 5, .external_lex_state = 8}, + [2747] = {.lex_state = 5, .external_lex_state = 8}, + [2748] = {.lex_state = 5, .external_lex_state = 6}, [2749] = {.lex_state = 5, .external_lex_state = 6}, - [2750] = {.lex_state = 5, .external_lex_state = 8}, - [2751] = {.lex_state = 5, .external_lex_state = 6}, - [2752] = {.lex_state = 5, .external_lex_state = 14}, - [2753] = {.lex_state = 5, .external_lex_state = 6}, + [2750] = {.lex_state = 5, .external_lex_state = 12}, + [2751] = {.lex_state = 66, .external_lex_state = 12}, + [2752] = {.lex_state = 5, .external_lex_state = 6}, + [2753] = {.lex_state = 5, .external_lex_state = 8}, [2754] = {.lex_state = 5, .external_lex_state = 6}, - [2755] = {.lex_state = 5, .external_lex_state = 6}, - [2756] = {.lex_state = 5, .external_lex_state = 8}, - [2757] = {.lex_state = 5, .external_lex_state = 6}, + [2755] = {.lex_state = 66, .external_lex_state = 12}, + [2756] = {.lex_state = 5, .external_lex_state = 6}, + [2757] = {.lex_state = 5, .external_lex_state = 8}, [2758] = {.lex_state = 5, .external_lex_state = 6}, - [2759] = {.lex_state = 5, .external_lex_state = 8}, - [2760] = {.lex_state = 5, .external_lex_state = 6}, - [2761] = {.lex_state = 5, .external_lex_state = 8}, + [2759] = {.lex_state = 5, .external_lex_state = 6}, + [2760] = {.lex_state = 5, .external_lex_state = 8}, + [2761] = {.lex_state = 5, .external_lex_state = 6}, [2762] = {.lex_state = 5, .external_lex_state = 6}, - [2763] = {.lex_state = 5, .external_lex_state = 6}, - [2764] = {.lex_state = 5, .external_lex_state = 8}, - [2765] = {.lex_state = 5, .external_lex_state = 6}, - [2766] = {.lex_state = 5, .external_lex_state = 14}, - [2767] = {.lex_state = 66, .external_lex_state = 12}, - [2768] = {.lex_state = 5, .external_lex_state = 6}, - [2769] = {.lex_state = 5, .external_lex_state = 6}, - [2770] = {.lex_state = 5, .external_lex_state = 8}, - [2771] = {.lex_state = 5, .external_lex_state = 6}, + [2763] = {.lex_state = 5, .external_lex_state = 8}, + [2764] = {.lex_state = 5, .external_lex_state = 6}, + [2765] = {.lex_state = 5, .external_lex_state = 8}, + [2766] = {.lex_state = 5, .external_lex_state = 6}, + [2767] = {.lex_state = 5, .external_lex_state = 6}, + [2768] = {.lex_state = 5, .external_lex_state = 8}, + [2769] = {.lex_state = 5, .external_lex_state = 14}, + [2770] = {.lex_state = 5, .external_lex_state = 6}, + [2771] = {.lex_state = 5, .external_lex_state = 8}, [2772] = {.lex_state = 5, .external_lex_state = 6}, - [2773] = {.lex_state = 5, .external_lex_state = 12}, - [2774] = {.lex_state = 5, .external_lex_state = 6}, - [2775] = {.lex_state = 5, .external_lex_state = 8}, + [2773] = {.lex_state = 5, .external_lex_state = 6}, + [2774] = {.lex_state = 5, .external_lex_state = 8}, + [2775] = {.lex_state = 5, .external_lex_state = 6}, [2776] = {.lex_state = 5, .external_lex_state = 6}, - [2777] = {.lex_state = 66, .external_lex_state = 12}, - [2778] = {.lex_state = 66, .external_lex_state = 12}, - [2779] = {.lex_state = 66, .external_lex_state = 12}, - [2780] = {.lex_state = 66, .external_lex_state = 12}, - [2781] = {.lex_state = 5, .external_lex_state = 12}, - [2782] = {.lex_state = 5, .external_lex_state = 2}, - [2783] = {.lex_state = 5, .external_lex_state = 12}, - [2784] = {.lex_state = 66, .external_lex_state = 13}, - [2785] = {.lex_state = 66, .external_lex_state = 12}, - [2786] = {.lex_state = 66, .external_lex_state = 13}, - [2787] = {.lex_state = 66, .external_lex_state = 12}, - [2788] = {.lex_state = 66, .external_lex_state = 13}, - [2789] = {.lex_state = 5, .external_lex_state = 2}, - [2790] = {.lex_state = 66, .external_lex_state = 12}, - [2791] = {.lex_state = 66, .external_lex_state = 12}, - [2792] = {.lex_state = 66, .external_lex_state = 13}, + [2777] = {.lex_state = 5, .external_lex_state = 8}, + [2778] = {.lex_state = 5, .external_lex_state = 6}, + [2779] = {.lex_state = 5, .external_lex_state = 6}, + [2780] = {.lex_state = 5, .external_lex_state = 14}, + [2781] = {.lex_state = 66, .external_lex_state = 12}, + [2782] = {.lex_state = 5, .external_lex_state = 12}, + [2783] = {.lex_state = 5, .external_lex_state = 6}, + [2784] = {.lex_state = 5, .external_lex_state = 14}, + [2785] = {.lex_state = 5, .external_lex_state = 6}, + [2786] = {.lex_state = 5, .external_lex_state = 6}, + [2787] = {.lex_state = 66, .external_lex_state = 13}, + [2788] = {.lex_state = 66, .external_lex_state = 12}, + [2789] = {.lex_state = 5, .external_lex_state = 12}, + [2790] = {.lex_state = 5, .external_lex_state = 2}, + [2791] = {.lex_state = 66, .external_lex_state = 13}, + [2792] = {.lex_state = 5, .external_lex_state = 2}, [2793] = {.lex_state = 5, .external_lex_state = 2}, - [2794] = {.lex_state = 66, .external_lex_state = 13}, - [2795] = {.lex_state = 66, .external_lex_state = 13}, - [2796] = {.lex_state = 66, .external_lex_state = 12}, - [2797] = {.lex_state = 5, .external_lex_state = 2}, - [2798] = {.lex_state = 66, .external_lex_state = 13}, - [2799] = {.lex_state = 66, .external_lex_state = 13}, - [2800] = {.lex_state = 5, .external_lex_state = 2}, + [2794] = {.lex_state = 66, .external_lex_state = 12}, + [2795] = {.lex_state = 5, .external_lex_state = 2}, + [2796] = {.lex_state = 66, .external_lex_state = 13}, + [2797] = {.lex_state = 66, .external_lex_state = 12}, + [2798] = {.lex_state = 66, .external_lex_state = 12}, + [2799] = {.lex_state = 66, .external_lex_state = 12}, + [2800] = {.lex_state = 66, .external_lex_state = 13}, [2801] = {.lex_state = 66, .external_lex_state = 13}, [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}, - [2809] = {.lex_state = 66, .external_lex_state = 13}, + [2805] = {.lex_state = 5, .external_lex_state = 2}, + [2806] = {.lex_state = 66, .external_lex_state = 12}, + [2807] = {.lex_state = 66, .external_lex_state = 12}, + [2808] = {.lex_state = 66, .external_lex_state = 12}, + [2809] = {.lex_state = 5, .external_lex_state = 12}, [2810] = {.lex_state = 66, .external_lex_state = 12}, - [2811] = {.lex_state = 66, .external_lex_state = 13}, + [2811] = {.lex_state = 5, .external_lex_state = 7}, [2812] = {.lex_state = 66, .external_lex_state = 13}, - [2813] = {.lex_state = 66, .external_lex_state = 13}, - [2814] = {.lex_state = 66, .external_lex_state = 13}, + [2813] = {.lex_state = 5, .external_lex_state = 7}, + [2814] = {.lex_state = 5, .external_lex_state = 7}, [2815] = {.lex_state = 66, .external_lex_state = 13}, - [2816] = {.lex_state = 66, .external_lex_state = 12}, + [2816] = {.lex_state = 66, .external_lex_state = 13}, [2817] = {.lex_state = 66, .external_lex_state = 13}, - [2818] = {.lex_state = 5, .external_lex_state = 7}, - [2819] = {.lex_state = 5, .external_lex_state = 7}, - [2820] = {.lex_state = 5, .external_lex_state = 7}, - [2821] = {.lex_state = 5, .external_lex_state = 7}, - [2822] = {.lex_state = 5, .external_lex_state = 7}, - [2823] = {.lex_state = 66, .external_lex_state = 12}, - [2824] = {.lex_state = 5, .external_lex_state = 7}, + [2818] = {.lex_state = 66, .external_lex_state = 13}, + [2819] = {.lex_state = 66, .external_lex_state = 13}, + [2820] = {.lex_state = 66, .external_lex_state = 13}, + [2821] = {.lex_state = 66, .external_lex_state = 12}, + [2822] = {.lex_state = 66, .external_lex_state = 13}, + [2823] = {.lex_state = 66, .external_lex_state = 13}, + [2824] = {.lex_state = 66, .external_lex_state = 13}, [2825] = {.lex_state = 66, .external_lex_state = 13}, [2826] = {.lex_state = 66, .external_lex_state = 13}, [2827] = {.lex_state = 66, .external_lex_state = 13}, - [2828] = {.lex_state = 5, .external_lex_state = 7}, - [2829] = {.lex_state = 5, .external_lex_state = 7}, + [2828] = {.lex_state = 66, .external_lex_state = 13}, + [2829] = {.lex_state = 66, .external_lex_state = 13}, [2830] = {.lex_state = 66, .external_lex_state = 13}, - [2831] = {.lex_state = 66, .external_lex_state = 3}, - [2832] = {.lex_state = 5, .external_lex_state = 7}, - [2833] = {.lex_state = 5, .external_lex_state = 7}, - [2834] = {.lex_state = 5, .external_lex_state = 7}, + [2831] = {.lex_state = 66, .external_lex_state = 13}, + [2832] = {.lex_state = 66, .external_lex_state = 13}, + [2833] = {.lex_state = 66, .external_lex_state = 13}, + [2834] = {.lex_state = 66, .external_lex_state = 12}, [2835] = {.lex_state = 66, .external_lex_state = 13}, [2836] = {.lex_state = 66, .external_lex_state = 13}, [2837] = {.lex_state = 66, .external_lex_state = 13}, - [2838] = {.lex_state = 66, .external_lex_state = 12}, + [2838] = {.lex_state = 66, .external_lex_state = 13}, [2839] = {.lex_state = 66, .external_lex_state = 13}, - [2840] = {.lex_state = 5, .external_lex_state = 7}, + [2840] = {.lex_state = 66, .external_lex_state = 13}, [2841] = {.lex_state = 66, .external_lex_state = 13}, - [2842] = {.lex_state = 5, .external_lex_state = 7}, - [2843] = {.lex_state = 5, .external_lex_state = 7}, - [2844] = {.lex_state = 5, .external_lex_state = 7}, + [2842] = {.lex_state = 66, .external_lex_state = 13}, + [2843] = {.lex_state = 66, .external_lex_state = 13}, + [2844] = {.lex_state = 66, .external_lex_state = 13}, [2845] = {.lex_state = 66, .external_lex_state = 13}, - [2846] = {.lex_state = 5, .external_lex_state = 7}, - [2847] = {.lex_state = 5, .external_lex_state = 7}, - [2848] = {.lex_state = 66, .external_lex_state = 13}, + [2846] = {.lex_state = 66, .external_lex_state = 13}, + [2847] = {.lex_state = 66, .external_lex_state = 13}, + [2848] = {.lex_state = 66, .external_lex_state = 3}, [2849] = {.lex_state = 66, .external_lex_state = 13}, - [2850] = {.lex_state = 66, .external_lex_state = 13}, + [2850] = {.lex_state = 66, .external_lex_state = 3}, [2851] = {.lex_state = 66, .external_lex_state = 13}, - [2852] = {.lex_state = 66, .external_lex_state = 13}, - [2853] = {.lex_state = 66, .external_lex_state = 13}, + [2852] = {.lex_state = 66, .external_lex_state = 12}, + [2853] = {.lex_state = 66, .external_lex_state = 12}, [2854] = {.lex_state = 66, .external_lex_state = 13}, [2855] = {.lex_state = 66, .external_lex_state = 13}, - [2856] = {.lex_state = 5, .external_lex_state = 7}, - [2857] = {.lex_state = 66, .external_lex_state = 13}, + [2856] = {.lex_state = 66, .external_lex_state = 13}, + [2857] = {.lex_state = 5, .external_lex_state = 7}, [2858] = {.lex_state = 66, .external_lex_state = 13}, [2859] = {.lex_state = 66, .external_lex_state = 13}, - [2860] = {.lex_state = 5, .external_lex_state = 7}, + [2860] = {.lex_state = 66, .external_lex_state = 13}, [2861] = {.lex_state = 66, .external_lex_state = 13}, - [2862] = {.lex_state = 66, .external_lex_state = 13}, - [2863] = {.lex_state = 66, .external_lex_state = 3}, - [2864] = {.lex_state = 66, .external_lex_state = 12}, + [2862] = {.lex_state = 66, .external_lex_state = 12}, + [2863] = {.lex_state = 66, .external_lex_state = 13}, + [2864] = {.lex_state = 66, .external_lex_state = 13}, [2865] = {.lex_state = 66, .external_lex_state = 13}, - [2866] = {.lex_state = 66, .external_lex_state = 13}, - [2867] = {.lex_state = 66, .external_lex_state = 12}, + [2866] = {.lex_state = 5, .external_lex_state = 7}, + [2867] = {.lex_state = 5, .external_lex_state = 7}, [2868] = {.lex_state = 66, .external_lex_state = 13}, [2869] = {.lex_state = 66, .external_lex_state = 13}, - [2870] = {.lex_state = 66, .external_lex_state = 13}, + [2870] = {.lex_state = 5, .external_lex_state = 7}, [2871] = {.lex_state = 66, .external_lex_state = 13}, [2872] = {.lex_state = 66, .external_lex_state = 13}, - [2873] = {.lex_state = 66, .external_lex_state = 3}, + [2873] = {.lex_state = 66, .external_lex_state = 13}, [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}, [2878] = {.lex_state = 66, .external_lex_state = 13}, [2879] = {.lex_state = 66, .external_lex_state = 13}, - [2880] = {.lex_state = 66, .external_lex_state = 13}, + [2880] = {.lex_state = 66, .external_lex_state = 12}, [2881] = {.lex_state = 66, .external_lex_state = 13}, [2882] = {.lex_state = 66, .external_lex_state = 13}, [2883] = {.lex_state = 66, .external_lex_state = 13}, [2884] = {.lex_state = 66, .external_lex_state = 13}, - [2885] = {.lex_state = 66, .external_lex_state = 12}, + [2885] = {.lex_state = 66, .external_lex_state = 13}, [2886] = {.lex_state = 5, .external_lex_state = 7}, [2887] = {.lex_state = 66, .external_lex_state = 13}, [2888] = {.lex_state = 66, .external_lex_state = 13}, [2889] = {.lex_state = 66, .external_lex_state = 13}, - [2890] = {.lex_state = 66, .external_lex_state = 12}, - [2891] = {.lex_state = 66, .external_lex_state = 13}, - [2892] = {.lex_state = 66, .external_lex_state = 13}, - [2893] = {.lex_state = 66, .external_lex_state = 13}, + [2890] = {.lex_state = 5, .external_lex_state = 7}, + [2891] = {.lex_state = 66, .external_lex_state = 12}, + [2892] = {.lex_state = 5, .external_lex_state = 7}, + [2893] = {.lex_state = 5, .external_lex_state = 7}, [2894] = {.lex_state = 66, .external_lex_state = 13}, [2895] = {.lex_state = 66, .external_lex_state = 13}, - [2896] = {.lex_state = 66, .external_lex_state = 13}, - [2897] = {.lex_state = 66, .external_lex_state = 13}, + [2896] = {.lex_state = 5, .external_lex_state = 7}, + [2897] = {.lex_state = 5, .external_lex_state = 7}, [2898] = {.lex_state = 66, .external_lex_state = 13}, [2899] = {.lex_state = 66, .external_lex_state = 13}, [2900] = {.lex_state = 66, .external_lex_state = 13}, @@ -15975,32 +16004,32 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2902] = {.lex_state = 66, .external_lex_state = 13}, [2903] = {.lex_state = 66, .external_lex_state = 13}, [2904] = {.lex_state = 66, .external_lex_state = 13}, - [2905] = {.lex_state = 66, .external_lex_state = 13}, - [2906] = {.lex_state = 66, .external_lex_state = 13}, + [2905] = {.lex_state = 5, .external_lex_state = 7}, + [2906] = {.lex_state = 5, .external_lex_state = 7}, [2907] = {.lex_state = 66, .external_lex_state = 13}, - [2908] = {.lex_state = 66, .external_lex_state = 13}, - [2909] = {.lex_state = 66, .external_lex_state = 13}, + [2908] = {.lex_state = 5, .external_lex_state = 7}, + [2909] = {.lex_state = 5, .external_lex_state = 7}, [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 = 66, .external_lex_state = 13}, [2914] = {.lex_state = 66, .external_lex_state = 13}, - [2915] = {.lex_state = 66, .external_lex_state = 12}, - [2916] = {.lex_state = 66, .external_lex_state = 13}, + [2915] = {.lex_state = 66, .external_lex_state = 13}, + [2916] = {.lex_state = 66, .external_lex_state = 3}, [2917] = {.lex_state = 66, .external_lex_state = 13}, - [2918] = {.lex_state = 66, .external_lex_state = 13}, - [2919] = {.lex_state = 66, .external_lex_state = 13}, + [2918] = {.lex_state = 5, .external_lex_state = 7}, + [2919] = {.lex_state = 5, .external_lex_state = 7}, [2920] = {.lex_state = 66, .external_lex_state = 13}, [2921] = {.lex_state = 66, .external_lex_state = 13}, - [2922] = {.lex_state = 66, .external_lex_state = 12}, + [2922] = {.lex_state = 66, .external_lex_state = 13}, [2923] = {.lex_state = 66, .external_lex_state = 13}, - [2924] = {.lex_state = 66, .external_lex_state = 13}, - [2925] = {.lex_state = 66, .external_lex_state = 13}, + [2924] = {.lex_state = 66, .external_lex_state = 12}, + [2925] = {.lex_state = 66, .external_lex_state = 12}, [2926] = {.lex_state = 66, .external_lex_state = 13}, [2927] = {.lex_state = 66, .external_lex_state = 13}, [2928] = {.lex_state = 66, .external_lex_state = 13}, [2929] = {.lex_state = 66, .external_lex_state = 13}, - [2930] = {.lex_state = 66, .external_lex_state = 13}, + [2930] = {.lex_state = 5, .external_lex_state = 7}, [2931] = {.lex_state = 66, .external_lex_state = 13}, [2932] = {.lex_state = 66, .external_lex_state = 13}, [2933] = {.lex_state = 66, .external_lex_state = 13}, @@ -16033,7 +16062,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2960] = {.lex_state = 66, .external_lex_state = 13}, [2961] = {.lex_state = 66, .external_lex_state = 13}, [2962] = {.lex_state = 66, .external_lex_state = 13}, - [2963] = {.lex_state = 5, .external_lex_state = 2}, + [2963] = {.lex_state = 66, .external_lex_state = 13}, [2964] = {.lex_state = 66, .external_lex_state = 13}, [2965] = {.lex_state = 66, .external_lex_state = 13}, [2966] = {.lex_state = 66, .external_lex_state = 13}, @@ -16056,13 +16085,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2983] = {.lex_state = 66, .external_lex_state = 13}, [2984] = {.lex_state = 66, .external_lex_state = 13}, [2985] = {.lex_state = 66, .external_lex_state = 13}, - [2986] = {.lex_state = 17, .external_lex_state = 11}, + [2986] = {.lex_state = 66, .external_lex_state = 13}, [2987] = {.lex_state = 66, .external_lex_state = 13}, [2988] = {.lex_state = 66, .external_lex_state = 13}, [2989] = {.lex_state = 66, .external_lex_state = 13}, [2990] = {.lex_state = 66, .external_lex_state = 13}, - [2991] = {.lex_state = 66, .external_lex_state = 13}, - [2992] = {.lex_state = 66, .external_lex_state = 13}, + [2991] = {.lex_state = 66, .external_lex_state = 12}, + [2992] = {.lex_state = 5, .external_lex_state = 2}, [2993] = {.lex_state = 66, .external_lex_state = 13}, [2994] = {.lex_state = 66, .external_lex_state = 13}, [2995] = {.lex_state = 66, .external_lex_state = 13}, @@ -16084,7 +16113,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3011] = {.lex_state = 66, .external_lex_state = 13}, [3012] = {.lex_state = 66, .external_lex_state = 13}, [3013] = {.lex_state = 66, .external_lex_state = 13}, - [3014] = {.lex_state = 66, .external_lex_state = 13}, + [3014] = {.lex_state = 66, .external_lex_state = 12}, [3015] = {.lex_state = 66, .external_lex_state = 13}, [3016] = {.lex_state = 66, .external_lex_state = 13}, [3017] = {.lex_state = 66, .external_lex_state = 13}, @@ -16108,247 +16137,247 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3035] = {.lex_state = 66, .external_lex_state = 13}, [3036] = {.lex_state = 66, .external_lex_state = 13}, [3037] = {.lex_state = 66, .external_lex_state = 13}, - [3038] = {.lex_state = 17, .external_lex_state = 11}, + [3038] = {.lex_state = 66, .external_lex_state = 13}, [3039] = {.lex_state = 66, .external_lex_state = 13}, [3040] = {.lex_state = 66, .external_lex_state = 13}, [3041] = {.lex_state = 66, .external_lex_state = 13}, [3042] = {.lex_state = 66, .external_lex_state = 13}, - [3043] = {.lex_state = 66, .external_lex_state = 12}, + [3043] = {.lex_state = 17, .external_lex_state = 11}, [3044] = {.lex_state = 66, .external_lex_state = 13}, [3045] = {.lex_state = 66, .external_lex_state = 13}, [3046] = {.lex_state = 66, .external_lex_state = 13}, [3047] = {.lex_state = 66, .external_lex_state = 13}, - [3048] = {.lex_state = 66, .external_lex_state = 13}, + [3048] = {.lex_state = 17, .external_lex_state = 11}, [3049] = {.lex_state = 66, .external_lex_state = 13}, [3050] = {.lex_state = 66, .external_lex_state = 13}, [3051] = {.lex_state = 66, .external_lex_state = 13}, [3052] = {.lex_state = 66, .external_lex_state = 13}, [3053] = {.lex_state = 66, .external_lex_state = 13}, - [3054] = {.lex_state = 5, .external_lex_state = 2}, + [3054] = {.lex_state = 66, .external_lex_state = 13}, [3055] = {.lex_state = 66, .external_lex_state = 13}, [3056] = {.lex_state = 66, .external_lex_state = 13}, - [3057] = {.lex_state = 5, .external_lex_state = 2}, + [3057] = {.lex_state = 66, .external_lex_state = 13}, [3058] = {.lex_state = 66, .external_lex_state = 13}, [3059] = {.lex_state = 66, .external_lex_state = 13}, [3060] = {.lex_state = 66, .external_lex_state = 13}, - [3061] = {.lex_state = 5, .external_lex_state = 2}, - [3062] = {.lex_state = 5, .external_lex_state = 2}, + [3061] = {.lex_state = 66, .external_lex_state = 13}, + [3062] = {.lex_state = 66, .external_lex_state = 13}, [3063] = {.lex_state = 66, .external_lex_state = 13}, - [3064] = {.lex_state = 5, .external_lex_state = 2}, + [3064] = {.lex_state = 66, .external_lex_state = 13}, [3065] = {.lex_state = 5, .external_lex_state = 2}, [3066] = {.lex_state = 5, .external_lex_state = 2}, - [3067] = {.lex_state = 66, .external_lex_state = 13}, + [3067] = {.lex_state = 5, .external_lex_state = 2}, [3068] = {.lex_state = 5, .external_lex_state = 2}, [3069] = {.lex_state = 66, .external_lex_state = 13}, - [3070] = {.lex_state = 66, .external_lex_state = 13}, + [3070] = {.lex_state = 5, .external_lex_state = 2}, [3071] = {.lex_state = 66, .external_lex_state = 13}, - [3072] = {.lex_state = 66, .external_lex_state = 12}, - [3073] = {.lex_state = 66, .external_lex_state = 12}, - [3074] = {.lex_state = 66, .external_lex_state = 12}, - [3075] = {.lex_state = 66, .external_lex_state = 12}, - [3076] = {.lex_state = 18, .external_lex_state = 12}, - [3077] = {.lex_state = 66, .external_lex_state = 2}, - [3078] = {.lex_state = 66, .external_lex_state = 12}, - [3079] = {.lex_state = 66, .external_lex_state = 12}, - [3080] = {.lex_state = 18, .external_lex_state = 12}, - [3081] = {.lex_state = 18, .external_lex_state = 12}, - [3082] = {.lex_state = 66, .external_lex_state = 2}, + [3072] = {.lex_state = 5, .external_lex_state = 2}, + [3073] = {.lex_state = 66, .external_lex_state = 13}, + [3074] = {.lex_state = 66, .external_lex_state = 13}, + [3075] = {.lex_state = 5, .external_lex_state = 2}, + [3076] = {.lex_state = 5, .external_lex_state = 2}, + [3077] = {.lex_state = 66, .external_lex_state = 13}, + [3078] = {.lex_state = 66, .external_lex_state = 13}, + [3079] = {.lex_state = 66, .external_lex_state = 13}, + [3080] = {.lex_state = 66, .external_lex_state = 13}, + [3081] = {.lex_state = 66, .external_lex_state = 13}, + [3082] = {.lex_state = 66, .external_lex_state = 12}, [3083] = {.lex_state = 66, .external_lex_state = 12}, - [3084] = {.lex_state = 18, .external_lex_state = 12}, - [3085] = {.lex_state = 15, .external_lex_state = 14}, - [3086] = {.lex_state = 17, .external_lex_state = 12}, - [3087] = {.lex_state = 17, .external_lex_state = 12}, - [3088] = {.lex_state = 14, .external_lex_state = 16}, - [3089] = {.lex_state = 17, .external_lex_state = 15}, - [3090] = {.lex_state = 17, .external_lex_state = 15}, - [3091] = {.lex_state = 17, .external_lex_state = 15}, - [3092] = {.lex_state = 17, .external_lex_state = 16}, - [3093] = {.lex_state = 17, .external_lex_state = 16}, - [3094] = {.lex_state = 17, .external_lex_state = 15}, - [3095] = {.lex_state = 18, .external_lex_state = 15}, - [3096] = {.lex_state = 15, .external_lex_state = 14}, - [3097] = {.lex_state = 17, .external_lex_state = 16}, - [3098] = {.lex_state = 18, .external_lex_state = 15}, - [3099] = {.lex_state = 15, .external_lex_state = 14}, - [3100] = {.lex_state = 14, .external_lex_state = 16}, + [3084] = {.lex_state = 66, .external_lex_state = 12}, + [3085] = {.lex_state = 66, .external_lex_state = 12}, + [3086] = {.lex_state = 15, .external_lex_state = 14}, + [3087] = {.lex_state = 66, .external_lex_state = 12}, + [3088] = {.lex_state = 18, .external_lex_state = 12}, + [3089] = {.lex_state = 18, .external_lex_state = 12}, + [3090] = {.lex_state = 66, .external_lex_state = 12}, + [3091] = {.lex_state = 66, .external_lex_state = 2}, + [3092] = {.lex_state = 66, .external_lex_state = 2}, + [3093] = {.lex_state = 66, .external_lex_state = 12}, + [3094] = {.lex_state = 18, .external_lex_state = 12}, + [3095] = {.lex_state = 18, .external_lex_state = 12}, + [3096] = {.lex_state = 17, .external_lex_state = 12}, + [3097] = {.lex_state = 17, .external_lex_state = 12}, + [3098] = {.lex_state = 17, .external_lex_state = 16}, + [3099] = {.lex_state = 17, .external_lex_state = 16}, + [3100] = {.lex_state = 17, .external_lex_state = 15}, [3101] = {.lex_state = 14, .external_lex_state = 16}, - [3102] = {.lex_state = 14, .external_lex_state = 16}, - [3103] = {.lex_state = 17, .external_lex_state = 14}, - [3104] = {.lex_state = 15, .external_lex_state = 14}, + [3102] = {.lex_state = 17, .external_lex_state = 15}, + [3103] = {.lex_state = 17, .external_lex_state = 15}, + [3104] = {.lex_state = 17, .external_lex_state = 15}, [3105] = {.lex_state = 18, .external_lex_state = 15}, - [3106] = {.lex_state = 17, .external_lex_state = 16}, + [3106] = {.lex_state = 14, .external_lex_state = 16}, [3107] = {.lex_state = 18, .external_lex_state = 15}, [3108] = {.lex_state = 18, .external_lex_state = 15}, [3109] = {.lex_state = 18, .external_lex_state = 15}, [3110] = {.lex_state = 18, .external_lex_state = 15}, - [3111] = {.lex_state = 18, .external_lex_state = 15}, + [3111] = {.lex_state = 17, .external_lex_state = 14}, [3112] = {.lex_state = 18, .external_lex_state = 15}, [3113] = {.lex_state = 18, .external_lex_state = 15}, - [3114] = {.lex_state = 18, .external_lex_state = 11}, + [3114] = {.lex_state = 14, .external_lex_state = 16}, [3115] = {.lex_state = 18, .external_lex_state = 15}, [3116] = {.lex_state = 18, .external_lex_state = 15}, [3117] = {.lex_state = 18, .external_lex_state = 15}, - [3118] = {.lex_state = 17, .external_lex_state = 14}, - [3119] = {.lex_state = 14, .external_lex_state = 16}, + [3118] = {.lex_state = 18, .external_lex_state = 15}, + [3119] = {.lex_state = 18, .external_lex_state = 15}, [3120] = {.lex_state = 15, .external_lex_state = 14}, [3121] = {.lex_state = 18, .external_lex_state = 15}, - [3122] = {.lex_state = 15, .external_lex_state = 12}, - [3123] = {.lex_state = 15, .external_lex_state = 12}, - [3124] = {.lex_state = 18, .external_lex_state = 14}, - [3125] = {.lex_state = 15, .external_lex_state = 12}, - [3126] = {.lex_state = 15, .external_lex_state = 12}, - [3127] = {.lex_state = 15, .external_lex_state = 12}, - [3128] = {.lex_state = 15, .external_lex_state = 12}, - [3129] = {.lex_state = 15, .external_lex_state = 12}, - [3130] = {.lex_state = 18, .external_lex_state = 11}, - [3131] = {.lex_state = 66, .external_lex_state = 14}, - [3132] = {.lex_state = 15, .external_lex_state = 12}, - [3133] = {.lex_state = 15, .external_lex_state = 12}, - [3134] = {.lex_state = 15, .external_lex_state = 12}, + [3122] = {.lex_state = 15, .external_lex_state = 14}, + [3123] = {.lex_state = 18, .external_lex_state = 15}, + [3124] = {.lex_state = 15, .external_lex_state = 14}, + [3125] = {.lex_state = 15, .external_lex_state = 14}, + [3126] = {.lex_state = 17, .external_lex_state = 16}, + [3127] = {.lex_state = 14, .external_lex_state = 16}, + [3128] = {.lex_state = 18, .external_lex_state = 11}, + [3129] = {.lex_state = 14, .external_lex_state = 16}, + [3130] = {.lex_state = 17, .external_lex_state = 14}, + [3131] = {.lex_state = 17, .external_lex_state = 16}, + [3132] = {.lex_state = 18, .external_lex_state = 14}, + [3133] = {.lex_state = 18, .external_lex_state = 14}, + [3134] = {.lex_state = 18, .external_lex_state = 14}, [3135] = {.lex_state = 15, .external_lex_state = 12}, [3136] = {.lex_state = 15, .external_lex_state = 12}, [3137] = {.lex_state = 15, .external_lex_state = 12}, - [3138] = {.lex_state = 66, .external_lex_state = 13}, - [3139] = {.lex_state = 66, .external_lex_state = 13}, - [3140] = {.lex_state = 18, .external_lex_state = 14}, - [3141] = {.lex_state = 66, .external_lex_state = 12}, + [3138] = {.lex_state = 18, .external_lex_state = 14}, + [3139] = {.lex_state = 18, .external_lex_state = 14}, + [3140] = {.lex_state = 18, .external_lex_state = 11}, + [3141] = {.lex_state = 18, .external_lex_state = 14}, [3142] = {.lex_state = 18, .external_lex_state = 14}, - [3143] = {.lex_state = 18, .external_lex_state = 14}, - [3144] = {.lex_state = 66, .external_lex_state = 13}, + [3143] = {.lex_state = 66, .external_lex_state = 14}, + [3144] = {.lex_state = 15, .external_lex_state = 12}, [3145] = {.lex_state = 18, .external_lex_state = 14}, - [3146] = {.lex_state = 66, .external_lex_state = 14}, - [3147] = {.lex_state = 9, .external_lex_state = 11}, - [3148] = {.lex_state = 18, .external_lex_state = 12}, - [3149] = {.lex_state = 17, .external_lex_state = 14}, + [3146] = {.lex_state = 15, .external_lex_state = 12}, + [3147] = {.lex_state = 15, .external_lex_state = 12}, + [3148] = {.lex_state = 18, .external_lex_state = 14}, + [3149] = {.lex_state = 15, .external_lex_state = 12}, [3150] = {.lex_state = 15, .external_lex_state = 12}, [3151] = {.lex_state = 15, .external_lex_state = 12}, - [3152] = {.lex_state = 18, .external_lex_state = 14}, - [3153] = {.lex_state = 18, .external_lex_state = 11}, - [3154] = {.lex_state = 9, .external_lex_state = 11}, - [3155] = {.lex_state = 66, .external_lex_state = 14}, - [3156] = {.lex_state = 66, .external_lex_state = 13}, - [3157] = {.lex_state = 66, .external_lex_state = 13}, + [3152] = {.lex_state = 18, .external_lex_state = 11}, + [3153] = {.lex_state = 18, .external_lex_state = 14}, + [3154] = {.lex_state = 18, .external_lex_state = 14}, + [3155] = {.lex_state = 15, .external_lex_state = 12}, + [3156] = {.lex_state = 18, .external_lex_state = 11}, + [3157] = {.lex_state = 18, .external_lex_state = 11}, [3158] = {.lex_state = 15, .external_lex_state = 12}, - [3159] = {.lex_state = 18, .external_lex_state = 11}, - [3160] = {.lex_state = 66, .external_lex_state = 13}, + [3159] = {.lex_state = 18, .external_lex_state = 14}, + [3160] = {.lex_state = 15, .external_lex_state = 12}, [3161] = {.lex_state = 18, .external_lex_state = 11}, [3162] = {.lex_state = 18, .external_lex_state = 14}, [3163] = {.lex_state = 66, .external_lex_state = 13}, - [3164] = {.lex_state = 66, .external_lex_state = 14}, - [3165] = {.lex_state = 66, .external_lex_state = 14}, - [3166] = {.lex_state = 18, .external_lex_state = 11}, - [3167] = {.lex_state = 66, .external_lex_state = 14}, - [3168] = {.lex_state = 15, .external_lex_state = 12}, - [3169] = {.lex_state = 66, .external_lex_state = 14}, + [3164] = {.lex_state = 15, .external_lex_state = 12}, + [3165] = {.lex_state = 17, .external_lex_state = 14}, + [3166] = {.lex_state = 66, .external_lex_state = 13}, + [3167] = {.lex_state = 18, .external_lex_state = 11}, + [3168] = {.lex_state = 66, .external_lex_state = 14}, + [3169] = {.lex_state = 9, .external_lex_state = 11}, [3170] = {.lex_state = 17, .external_lex_state = 14}, - [3171] = {.lex_state = 15, .external_lex_state = 12}, - [3172] = {.lex_state = 15, .external_lex_state = 12}, - [3173] = {.lex_state = 15, .external_lex_state = 14}, - [3174] = {.lex_state = 15, .external_lex_state = 16}, - [3175] = {.lex_state = 15, .external_lex_state = 14}, - [3176] = {.lex_state = 9, .external_lex_state = 12}, - [3177] = {.lex_state = 66, .external_lex_state = 12}, - [3178] = {.lex_state = 18, .external_lex_state = 12}, + [3171] = {.lex_state = 66, .external_lex_state = 14}, + [3172] = {.lex_state = 9, .external_lex_state = 11}, + [3173] = {.lex_state = 66, .external_lex_state = 14}, + [3174] = {.lex_state = 18, .external_lex_state = 11}, + [3175] = {.lex_state = 18, .external_lex_state = 11}, + [3176] = {.lex_state = 66, .external_lex_state = 13}, + [3177] = {.lex_state = 66, .external_lex_state = 14}, + [3178] = {.lex_state = 18, .external_lex_state = 11}, [3179] = {.lex_state = 15, .external_lex_state = 12}, - [3180] = {.lex_state = 15, .external_lex_state = 12}, - [3181] = {.lex_state = 18, .external_lex_state = 11}, - [3182] = {.lex_state = 15, .external_lex_state = 14}, + [3180] = {.lex_state = 66, .external_lex_state = 13}, + [3181] = {.lex_state = 66, .external_lex_state = 14}, + [3182] = {.lex_state = 18, .external_lex_state = 12}, [3183] = {.lex_state = 15, .external_lex_state = 12}, - [3184] = {.lex_state = 66, .external_lex_state = 12}, - [3185] = {.lex_state = 15, .external_lex_state = 12}, - [3186] = {.lex_state = 15, .external_lex_state = 12}, - [3187] = {.lex_state = 9, .external_lex_state = 12}, - [3188] = {.lex_state = 5, .external_lex_state = 12}, - [3189] = {.lex_state = 15, .external_lex_state = 12}, - [3190] = {.lex_state = 15, .external_lex_state = 12}, - [3191] = {.lex_state = 18, .external_lex_state = 14}, - [3192] = {.lex_state = 9, .external_lex_state = 12}, - [3193] = {.lex_state = 18, .external_lex_state = 11}, - [3194] = {.lex_state = 15, .external_lex_state = 16}, - [3195] = {.lex_state = 18, .external_lex_state = 11}, - [3196] = {.lex_state = 66, .external_lex_state = 14}, - [3197] = {.lex_state = 15, .external_lex_state = 12}, - [3198] = {.lex_state = 66, .external_lex_state = 14}, - [3199] = {.lex_state = 9, .external_lex_state = 12}, - [3200] = {.lex_state = 18, .external_lex_state = 11}, - [3201] = {.lex_state = 66, .external_lex_state = 14}, + [3184] = {.lex_state = 66, .external_lex_state = 13}, + [3185] = {.lex_state = 66, .external_lex_state = 13}, + [3186] = {.lex_state = 18, .external_lex_state = 11}, + [3187] = {.lex_state = 66, .external_lex_state = 12}, + [3188] = {.lex_state = 15, .external_lex_state = 12}, + [3189] = {.lex_state = 66, .external_lex_state = 13}, + [3190] = {.lex_state = 66, .external_lex_state = 14}, + [3191] = {.lex_state = 18, .external_lex_state = 11}, + [3192] = {.lex_state = 15, .external_lex_state = 12}, + [3193] = {.lex_state = 15, .external_lex_state = 12}, + [3194] = {.lex_state = 15, .external_lex_state = 12}, + [3195] = {.lex_state = 15, .external_lex_state = 14}, + [3196] = {.lex_state = 9, .external_lex_state = 12}, + [3197] = {.lex_state = 9, .external_lex_state = 11}, + [3198] = {.lex_state = 5, .external_lex_state = 12}, + [3199] = {.lex_state = 66, .external_lex_state = 12}, + [3200] = {.lex_state = 66, .external_lex_state = 14}, + [3201] = {.lex_state = 15, .external_lex_state = 14}, [3202] = {.lex_state = 15, .external_lex_state = 14}, - [3203] = {.lex_state = 15, .external_lex_state = 12}, - [3204] = {.lex_state = 15, .external_lex_state = 16}, - [3205] = {.lex_state = 15, .external_lex_state = 12}, - [3206] = {.lex_state = 15, .external_lex_state = 12}, - [3207] = {.lex_state = 15, .external_lex_state = 12}, - [3208] = {.lex_state = 15, .external_lex_state = 12}, - [3209] = {.lex_state = 15, .external_lex_state = 12}, + [3203] = {.lex_state = 15, .external_lex_state = 14}, + [3204] = {.lex_state = 9, .external_lex_state = 12}, + [3205] = {.lex_state = 66, .external_lex_state = 12}, + [3206] = {.lex_state = 9, .external_lex_state = 11}, + [3207] = {.lex_state = 9, .external_lex_state = 12}, + [3208] = {.lex_state = 66, .external_lex_state = 14}, + [3209] = {.lex_state = 66, .external_lex_state = 14}, [3210] = {.lex_state = 15, .external_lex_state = 12}, [3211] = {.lex_state = 9, .external_lex_state = 11}, - [3212] = {.lex_state = 18, .external_lex_state = 14}, - [3213] = {.lex_state = 15, .external_lex_state = 12}, - [3214] = {.lex_state = 18, .external_lex_state = 11}, - [3215] = {.lex_state = 15, .external_lex_state = 16}, - [3216] = {.lex_state = 9, .external_lex_state = 11}, - [3217] = {.lex_state = 18, .external_lex_state = 14}, - [3218] = {.lex_state = 18, .external_lex_state = 14}, - [3219] = {.lex_state = 18, .external_lex_state = 14}, - [3220] = {.lex_state = 18, .external_lex_state = 14}, - [3221] = {.lex_state = 9, .external_lex_state = 11}, + [3212] = {.lex_state = 15, .external_lex_state = 12}, + [3213] = {.lex_state = 15, .external_lex_state = 16}, + [3214] = {.lex_state = 15, .external_lex_state = 16}, + [3215] = {.lex_state = 66, .external_lex_state = 14}, + [3216] = {.lex_state = 15, .external_lex_state = 12}, + [3217] = {.lex_state = 9, .external_lex_state = 11}, + [3218] = {.lex_state = 18, .external_lex_state = 12}, + [3219] = {.lex_state = 15, .external_lex_state = 12}, + [3220] = {.lex_state = 15, .external_lex_state = 12}, + [3221] = {.lex_state = 15, .external_lex_state = 12}, [3222] = {.lex_state = 15, .external_lex_state = 12}, - [3223] = {.lex_state = 9, .external_lex_state = 11}, + [3223] = {.lex_state = 15, .external_lex_state = 12}, [3224] = {.lex_state = 15, .external_lex_state = 12}, - [3225] = {.lex_state = 15, .external_lex_state = 14}, - [3226] = {.lex_state = 66, .external_lex_state = 14}, + [3225] = {.lex_state = 15, .external_lex_state = 12}, + [3226] = {.lex_state = 9, .external_lex_state = 12}, [3227] = {.lex_state = 15, .external_lex_state = 16}, - [3228] = {.lex_state = 18, .external_lex_state = 11}, - [3229] = {.lex_state = 15, .external_lex_state = 12}, - [3230] = {.lex_state = 66, .external_lex_state = 12}, - [3231] = {.lex_state = 66, .external_lex_state = 12}, - [3232] = {.lex_state = 66, .external_lex_state = 12}, - [3233] = {.lex_state = 66, .external_lex_state = 12}, - [3234] = {.lex_state = 9, .external_lex_state = 12}, - [3235] = {.lex_state = 9, .external_lex_state = 12}, - [3236] = {.lex_state = 66, .external_lex_state = 12}, - [3237] = {.lex_state = 66, .external_lex_state = 12}, - [3238] = {.lex_state = 66, .external_lex_state = 12}, - [3239] = {.lex_state = 66, .external_lex_state = 12}, + [3228] = {.lex_state = 15, .external_lex_state = 12}, + [3229] = {.lex_state = 15, .external_lex_state = 16}, + [3230] = {.lex_state = 15, .external_lex_state = 12}, + [3231] = {.lex_state = 15, .external_lex_state = 12}, + [3232] = {.lex_state = 15, .external_lex_state = 12}, + [3233] = {.lex_state = 15, .external_lex_state = 12}, + [3234] = {.lex_state = 15, .external_lex_state = 12}, + [3235] = {.lex_state = 15, .external_lex_state = 12}, + [3236] = {.lex_state = 15, .external_lex_state = 12}, + [3237] = {.lex_state = 15, .external_lex_state = 16}, + [3238] = {.lex_state = 15, .external_lex_state = 14}, + [3239] = {.lex_state = 15, .external_lex_state = 12}, [3240] = {.lex_state = 66, .external_lex_state = 12}, - [3241] = {.lex_state = 66, .external_lex_state = 12}, - [3242] = {.lex_state = 66, .external_lex_state = 12}, - [3243] = {.lex_state = 66, .external_lex_state = 12}, - [3244] = {.lex_state = 66, .external_lex_state = 12}, + [3241] = {.lex_state = 5, .external_lex_state = 14}, + [3242] = {.lex_state = 5, .external_lex_state = 14}, + [3243] = {.lex_state = 5, .external_lex_state = 14}, + [3244] = {.lex_state = 5, .external_lex_state = 14}, [3245] = {.lex_state = 66, .external_lex_state = 12}, [3246] = {.lex_state = 66, .external_lex_state = 12}, - [3247] = {.lex_state = 18, .external_lex_state = 12}, + [3247] = {.lex_state = 5, .external_lex_state = 14}, [3248] = {.lex_state = 66, .external_lex_state = 12}, - [3249] = {.lex_state = 66, .external_lex_state = 12}, - [3250] = {.lex_state = 66, .external_lex_state = 12}, + [3249] = {.lex_state = 5, .external_lex_state = 14}, + [3250] = {.lex_state = 5, .external_lex_state = 14}, [3251] = {.lex_state = 66, .external_lex_state = 12}, - [3252] = {.lex_state = 66, .external_lex_state = 12}, - [3253] = {.lex_state = 66, .external_lex_state = 12}, - [3254] = {.lex_state = 66, .external_lex_state = 12}, - [3255] = {.lex_state = 66, .external_lex_state = 12}, - [3256] = {.lex_state = 66, .external_lex_state = 12}, + [3252] = {.lex_state = 5, .external_lex_state = 14}, + [3253] = {.lex_state = 5, .external_lex_state = 14}, + [3254] = {.lex_state = 18, .external_lex_state = 14}, + [3255] = {.lex_state = 9, .external_lex_state = 12}, + [3256] = {.lex_state = 9, .external_lex_state = 11}, [3257] = {.lex_state = 66, .external_lex_state = 12}, - [3258] = {.lex_state = 66, .external_lex_state = 12}, - [3259] = {.lex_state = 66, .external_lex_state = 12}, - [3260] = {.lex_state = 66, .external_lex_state = 12}, + [3258] = {.lex_state = 9, .external_lex_state = 12}, + [3259] = {.lex_state = 5, .external_lex_state = 14}, + [3260] = {.lex_state = 5, .external_lex_state = 14}, [3261] = {.lex_state = 66, .external_lex_state = 12}, [3262] = {.lex_state = 66, .external_lex_state = 12}, - [3263] = {.lex_state = 66, .external_lex_state = 12}, + [3263] = {.lex_state = 5, .external_lex_state = 14}, [3264] = {.lex_state = 66, .external_lex_state = 12}, - [3265] = {.lex_state = 66, .external_lex_state = 12}, - [3266] = {.lex_state = 66, .external_lex_state = 12}, - [3267] = {.lex_state = 66, .external_lex_state = 12}, - [3268] = {.lex_state = 66, .external_lex_state = 12}, - [3269] = {.lex_state = 66, .external_lex_state = 12}, - [3270] = {.lex_state = 66, .external_lex_state = 12}, - [3271] = {.lex_state = 66, .external_lex_state = 12}, + [3265] = {.lex_state = 5, .external_lex_state = 14}, + [3266] = {.lex_state = 5, .external_lex_state = 14}, + [3267] = {.lex_state = 5, .external_lex_state = 14}, + [3268] = {.lex_state = 5, .external_lex_state = 14}, + [3269] = {.lex_state = 5, .external_lex_state = 14}, + [3270] = {.lex_state = 5, .external_lex_state = 14}, + [3271] = {.lex_state = 5, .external_lex_state = 14}, [3272] = {.lex_state = 66, .external_lex_state = 12}, [3273] = {.lex_state = 66, .external_lex_state = 12}, - [3274] = {.lex_state = 66, .external_lex_state = 12}, - [3275] = {.lex_state = 66, .external_lex_state = 12}, - [3276] = {.lex_state = 9, .external_lex_state = 12}, + [3274] = {.lex_state = 5, .external_lex_state = 14}, + [3275] = {.lex_state = 18, .external_lex_state = 14}, + [3276] = {.lex_state = 66, .external_lex_state = 12}, [3277] = {.lex_state = 66, .external_lex_state = 12}, - [3278] = {.lex_state = 18, .external_lex_state = 11}, + [3278] = {.lex_state = 5, .external_lex_state = 14}, [3279] = {.lex_state = 66, .external_lex_state = 12}, [3280] = {.lex_state = 66, .external_lex_state = 12}, [3281] = {.lex_state = 66, .external_lex_state = 12}, @@ -16359,2444 +16388,2462 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3286] = {.lex_state = 66, .external_lex_state = 12}, [3287] = {.lex_state = 66, .external_lex_state = 12}, [3288] = {.lex_state = 66, .external_lex_state = 12}, - [3289] = {.lex_state = 66, .external_lex_state = 12}, + [3289] = {.lex_state = 5, .external_lex_state = 14}, [3290] = {.lex_state = 66, .external_lex_state = 12}, - [3291] = {.lex_state = 18, .external_lex_state = 14}, + [3291] = {.lex_state = 18, .external_lex_state = 11}, [3292] = {.lex_state = 66, .external_lex_state = 12}, - [3293] = {.lex_state = 66, .external_lex_state = 12}, + [3293] = {.lex_state = 5, .external_lex_state = 14}, [3294] = {.lex_state = 66, .external_lex_state = 12}, [3295] = {.lex_state = 66, .external_lex_state = 12}, [3296] = {.lex_state = 66, .external_lex_state = 12}, [3297] = {.lex_state = 66, .external_lex_state = 12}, [3298] = {.lex_state = 66, .external_lex_state = 12}, - [3299] = {.lex_state = 9, .external_lex_state = 11}, + [3299] = {.lex_state = 66, .external_lex_state = 12}, [3300] = {.lex_state = 66, .external_lex_state = 12}, - [3301] = {.lex_state = 9, .external_lex_state = 12}, + [3301] = {.lex_state = 5, .external_lex_state = 14}, [3302] = {.lex_state = 66, .external_lex_state = 12}, [3303] = {.lex_state = 66, .external_lex_state = 12}, - [3304] = {.lex_state = 66, .external_lex_state = 12}, + [3304] = {.lex_state = 5, .external_lex_state = 14}, [3305] = {.lex_state = 66, .external_lex_state = 12}, [3306] = {.lex_state = 66, .external_lex_state = 12}, [3307] = {.lex_state = 66, .external_lex_state = 12}, [3308] = {.lex_state = 66, .external_lex_state = 12}, [3309] = {.lex_state = 66, .external_lex_state = 12}, - [3310] = {.lex_state = 18, .external_lex_state = 11}, - [3311] = {.lex_state = 18, .external_lex_state = 14}, - [3312] = {.lex_state = 18, .external_lex_state = 14}, + [3310] = {.lex_state = 66, .external_lex_state = 12}, + [3311] = {.lex_state = 66, .external_lex_state = 12}, + [3312] = {.lex_state = 9, .external_lex_state = 12}, [3313] = {.lex_state = 66, .external_lex_state = 12}, - [3314] = {.lex_state = 66, .external_lex_state = 12}, - [3315] = {.lex_state = 5, .external_lex_state = 14}, - [3316] = {.lex_state = 5, .external_lex_state = 14}, - [3317] = {.lex_state = 5, .external_lex_state = 14}, - [3318] = {.lex_state = 5, .external_lex_state = 14}, - [3319] = {.lex_state = 5, .external_lex_state = 14}, - [3320] = {.lex_state = 5, .external_lex_state = 14}, - [3321] = {.lex_state = 18, .external_lex_state = 11}, - [3322] = {.lex_state = 18, .external_lex_state = 12}, - [3323] = {.lex_state = 5, .external_lex_state = 14}, - [3324] = {.lex_state = 5, .external_lex_state = 14}, - [3325] = {.lex_state = 5, .external_lex_state = 15}, - [3326] = {.lex_state = 18, .external_lex_state = 12}, + [3314] = {.lex_state = 5, .external_lex_state = 14}, + [3315] = {.lex_state = 66, .external_lex_state = 12}, + [3316] = {.lex_state = 9, .external_lex_state = 12}, + [3317] = {.lex_state = 66, .external_lex_state = 12}, + [3318] = {.lex_state = 66, .external_lex_state = 12}, + [3319] = {.lex_state = 66, .external_lex_state = 12}, + [3320] = {.lex_state = 66, .external_lex_state = 12}, + [3321] = {.lex_state = 66, .external_lex_state = 12}, + [3322] = {.lex_state = 66, .external_lex_state = 12}, + [3323] = {.lex_state = 66, .external_lex_state = 12}, + [3324] = {.lex_state = 66, .external_lex_state = 12}, + [3325] = {.lex_state = 18, .external_lex_state = 11}, + [3326] = {.lex_state = 66, .external_lex_state = 12}, [3327] = {.lex_state = 5, .external_lex_state = 14}, - [3328] = {.lex_state = 18, .external_lex_state = 16}, - [3329] = {.lex_state = 5, .external_lex_state = 14}, - [3330] = {.lex_state = 5, .external_lex_state = 14}, - [3331] = {.lex_state = 18, .external_lex_state = 11}, - [3332] = {.lex_state = 18, .external_lex_state = 12}, - [3333] = {.lex_state = 18, .external_lex_state = 14}, - [3334] = {.lex_state = 5, .external_lex_state = 14}, - [3335] = {.lex_state = 5, .external_lex_state = 14}, - [3336] = {.lex_state = 18, .external_lex_state = 11}, - [3337] = {.lex_state = 5, .external_lex_state = 14}, - [3338] = {.lex_state = 18, .external_lex_state = 14}, - [3339] = {.lex_state = 18, .external_lex_state = 12}, - [3340] = {.lex_state = 18, .external_lex_state = 14}, - [3341] = {.lex_state = 5, .external_lex_state = 15}, - [3342] = {.lex_state = 15, .external_lex_state = 16}, - [3343] = {.lex_state = 5, .external_lex_state = 16}, - [3344] = {.lex_state = 18, .external_lex_state = 12}, + [3328] = {.lex_state = 66, .external_lex_state = 12}, + [3329] = {.lex_state = 66, .external_lex_state = 12}, + [3330] = {.lex_state = 18, .external_lex_state = 14}, + [3331] = {.lex_state = 66, .external_lex_state = 12}, + [3332] = {.lex_state = 66, .external_lex_state = 12}, + [3333] = {.lex_state = 66, .external_lex_state = 12}, + [3334] = {.lex_state = 66, .external_lex_state = 12}, + [3335] = {.lex_state = 66, .external_lex_state = 12}, + [3336] = {.lex_state = 66, .external_lex_state = 12}, + [3337] = {.lex_state = 66, .external_lex_state = 12}, + [3338] = {.lex_state = 66, .external_lex_state = 12}, + [3339] = {.lex_state = 66, .external_lex_state = 12}, + [3340] = {.lex_state = 66, .external_lex_state = 12}, + [3341] = {.lex_state = 66, .external_lex_state = 12}, + [3342] = {.lex_state = 5, .external_lex_state = 14}, + [3343] = {.lex_state = 18, .external_lex_state = 12}, + [3344] = {.lex_state = 66, .external_lex_state = 12}, [3345] = {.lex_state = 18, .external_lex_state = 14}, - [3346] = {.lex_state = 18, .external_lex_state = 11}, - [3347] = {.lex_state = 5, .external_lex_state = 14}, - [3348] = {.lex_state = 5, .external_lex_state = 14}, - [3349] = {.lex_state = 18, .external_lex_state = 12}, - [3350] = {.lex_state = 5, .external_lex_state = 14}, - [3351] = {.lex_state = 5, .external_lex_state = 12}, - [3352] = {.lex_state = 18, .external_lex_state = 16}, - [3353] = {.lex_state = 18, .external_lex_state = 12}, - [3354] = {.lex_state = 18, .external_lex_state = 16}, - [3355] = {.lex_state = 5, .external_lex_state = 11}, - [3356] = {.lex_state = 5, .external_lex_state = 11}, + [3346] = {.lex_state = 5, .external_lex_state = 11}, + [3347] = {.lex_state = 5, .external_lex_state = 11}, + [3348] = {.lex_state = 18, .external_lex_state = 12}, + [3349] = {.lex_state = 5, .external_lex_state = 16}, + [3350] = {.lex_state = 18, .external_lex_state = 11}, + [3351] = {.lex_state = 18, .external_lex_state = 14}, + [3352] = {.lex_state = 18, .external_lex_state = 12}, + [3353] = {.lex_state = 18, .external_lex_state = 11}, + [3354] = {.lex_state = 5, .external_lex_state = 11}, + [3355] = {.lex_state = 18, .external_lex_state = 14}, + [3356] = {.lex_state = 18, .external_lex_state = 12}, [3357] = {.lex_state = 5, .external_lex_state = 11}, [3358] = {.lex_state = 5, .external_lex_state = 11}, [3359] = {.lex_state = 5, .external_lex_state = 11}, - [3360] = {.lex_state = 18, .external_lex_state = 12}, - [3361] = {.lex_state = 5, .external_lex_state = 11}, - [3362] = {.lex_state = 18, .external_lex_state = 14}, + [3360] = {.lex_state = 5, .external_lex_state = 15}, + [3361] = {.lex_state = 18, .external_lex_state = 11}, + [3362] = {.lex_state = 5, .external_lex_state = 11}, [3363] = {.lex_state = 18, .external_lex_state = 12}, - [3364] = {.lex_state = 18, .external_lex_state = 14}, - [3365] = {.lex_state = 5, .external_lex_state = 14}, - [3366] = {.lex_state = 5, .external_lex_state = 14}, - [3367] = {.lex_state = 5, .external_lex_state = 14}, - [3368] = {.lex_state = 5, .external_lex_state = 14}, - [3369] = {.lex_state = 5, .external_lex_state = 14}, - [3370] = {.lex_state = 18, .external_lex_state = 16}, - [3371] = {.lex_state = 18, .external_lex_state = 12}, - [3372] = {.lex_state = 5, .external_lex_state = 14}, - [3373] = {.lex_state = 5, .external_lex_state = 14}, - [3374] = {.lex_state = 18, .external_lex_state = 14}, - [3375] = {.lex_state = 5, .external_lex_state = 14}, - [3376] = {.lex_state = 18, .external_lex_state = 14}, - [3377] = {.lex_state = 5, .external_lex_state = 14}, - [3378] = {.lex_state = 18, .external_lex_state = 14}, + [3364] = {.lex_state = 5, .external_lex_state = 11}, + [3365] = {.lex_state = 18, .external_lex_state = 12}, + [3366] = {.lex_state = 5, .external_lex_state = 11}, + [3367] = {.lex_state = 18, .external_lex_state = 14}, + [3368] = {.lex_state = 18, .external_lex_state = 11}, + [3369] = {.lex_state = 5, .external_lex_state = 11}, + [3370] = {.lex_state = 5, .external_lex_state = 11}, + [3371] = {.lex_state = 15, .external_lex_state = 16}, + [3372] = {.lex_state = 5, .external_lex_state = 15}, + [3373] = {.lex_state = 5, .external_lex_state = 11}, + [3374] = {.lex_state = 18, .external_lex_state = 12}, + [3375] = {.lex_state = 18, .external_lex_state = 16}, + [3376] = {.lex_state = 18, .external_lex_state = 12}, + [3377] = {.lex_state = 18, .external_lex_state = 14}, + [3378] = {.lex_state = 18, .external_lex_state = 12}, [3379] = {.lex_state = 5, .external_lex_state = 14}, [3380] = {.lex_state = 18, .external_lex_state = 14}, - [3381] = {.lex_state = 5, .external_lex_state = 11}, - [3382] = {.lex_state = 5, .external_lex_state = 11}, + [3381] = {.lex_state = 18, .external_lex_state = 12}, + [3382] = {.lex_state = 5, .external_lex_state = 14}, [3383] = {.lex_state = 18, .external_lex_state = 14}, - [3384] = {.lex_state = 5, .external_lex_state = 14}, - [3385] = {.lex_state = 18, .external_lex_state = 14}, - [3386] = {.lex_state = 5, .external_lex_state = 11}, - [3387] = {.lex_state = 5, .external_lex_state = 11}, - [3388] = {.lex_state = 5, .external_lex_state = 14}, - [3389] = {.lex_state = 18, .external_lex_state = 12}, - [3390] = {.lex_state = 5, .external_lex_state = 11}, - [3391] = {.lex_state = 9, .external_lex_state = 12}, - [3392] = {.lex_state = 5, .external_lex_state = 14}, + [3384] = {.lex_state = 18, .external_lex_state = 14}, + [3385] = {.lex_state = 18, .external_lex_state = 16}, + [3386] = {.lex_state = 5, .external_lex_state = 14}, + [3387] = {.lex_state = 5, .external_lex_state = 14}, + [3388] = {.lex_state = 18, .external_lex_state = 12}, + [3389] = {.lex_state = 18, .external_lex_state = 16}, + [3390] = {.lex_state = 9, .external_lex_state = 12}, + [3391] = {.lex_state = 18, .external_lex_state = 14}, + [3392] = {.lex_state = 18, .external_lex_state = 14}, [3393] = {.lex_state = 5, .external_lex_state = 11}, [3394] = {.lex_state = 18, .external_lex_state = 14}, - [3395] = {.lex_state = 5, .external_lex_state = 16}, - [3396] = {.lex_state = 5, .external_lex_state = 14}, + [3395] = {.lex_state = 18, .external_lex_state = 16}, + [3396] = {.lex_state = 5, .external_lex_state = 16}, [3397] = {.lex_state = 5, .external_lex_state = 14}, - [3398] = {.lex_state = 5, .external_lex_state = 14}, + [3398] = {.lex_state = 18, .external_lex_state = 14}, [3399] = {.lex_state = 5, .external_lex_state = 14}, - [3400] = {.lex_state = 5, .external_lex_state = 14}, - [3401] = {.lex_state = 18, .external_lex_state = 16}, + [3400] = {.lex_state = 18, .external_lex_state = 16}, + [3401] = {.lex_state = 18, .external_lex_state = 12}, [3402] = {.lex_state = 5, .external_lex_state = 14}, - [3403] = {.lex_state = 5, .external_lex_state = 11}, - [3404] = {.lex_state = 18, .external_lex_state = 16}, - [3405] = {.lex_state = 18, .external_lex_state = 14}, - [3406] = {.lex_state = 5, .external_lex_state = 11}, - [3407] = {.lex_state = 18, .external_lex_state = 11}, - [3408] = {.lex_state = 5, .external_lex_state = 12}, - [3409] = {.lex_state = 18, .external_lex_state = 11}, - [3410] = {.lex_state = 5, .external_lex_state = 12}, - [3411] = {.lex_state = 66, .external_lex_state = 12}, - [3412] = {.lex_state = 18, .external_lex_state = 11}, - [3413] = {.lex_state = 66, .external_lex_state = 12}, - [3414] = {.lex_state = 18, .external_lex_state = 11}, - [3415] = {.lex_state = 5, .external_lex_state = 12}, + [3403] = {.lex_state = 18, .external_lex_state = 14}, + [3404] = {.lex_state = 5, .external_lex_state = 12}, + [3405] = {.lex_state = 5, .external_lex_state = 14}, + [3406] = {.lex_state = 19, .external_lex_state = 17}, + [3407] = {.lex_state = 5, .external_lex_state = 12}, + [3408] = {.lex_state = 66, .external_lex_state = 12}, + [3409] = {.lex_state = 5, .external_lex_state = 12}, + [3410] = {.lex_state = 5, .external_lex_state = 11}, + [3411] = {.lex_state = 5, .external_lex_state = 12}, + [3412] = {.lex_state = 5, .external_lex_state = 11}, + [3413] = {.lex_state = 18, .external_lex_state = 11}, + [3414] = {.lex_state = 18, .external_lex_state = 14}, + [3415] = {.lex_state = 18, .external_lex_state = 11}, [3416] = {.lex_state = 18, .external_lex_state = 11}, - [3417] = {.lex_state = 18, .external_lex_state = 11}, - [3418] = {.lex_state = 5, .external_lex_state = 11}, + [3417] = {.lex_state = 18, .external_lex_state = 14}, + [3418] = {.lex_state = 66, .external_lex_state = 12}, [3419] = {.lex_state = 18, .external_lex_state = 11}, - [3420] = {.lex_state = 18, .external_lex_state = 14}, - [3421] = {.lex_state = 19, .external_lex_state = 17}, - [3422] = {.lex_state = 18, .external_lex_state = 14}, - [3423] = {.lex_state = 5, .external_lex_state = 12}, + [3420] = {.lex_state = 5, .external_lex_state = 12}, + [3421] = {.lex_state = 18, .external_lex_state = 11}, + [3422] = {.lex_state = 15, .external_lex_state = 11}, + [3423] = {.lex_state = 18, .external_lex_state = 11}, [3424] = {.lex_state = 18, .external_lex_state = 14}, - [3425] = {.lex_state = 5, .external_lex_state = 11}, - [3426] = {.lex_state = 15, .external_lex_state = 11}, + [3425] = {.lex_state = 5, .external_lex_state = 12}, + [3426] = {.lex_state = 18, .external_lex_state = 14}, [3427] = {.lex_state = 18, .external_lex_state = 11}, - [3428] = {.lex_state = 18, .external_lex_state = 11}, - [3429] = {.lex_state = 18, .external_lex_state = 11}, - [3430] = {.lex_state = 5, .external_lex_state = 12}, - [3431] = {.lex_state = 5, .external_lex_state = 12}, + [3428] = {.lex_state = 18, .external_lex_state = 16}, + [3429] = {.lex_state = 18, .external_lex_state = 14}, + [3430] = {.lex_state = 5, .external_lex_state = 11}, + [3431] = {.lex_state = 5, .external_lex_state = 11}, [3432] = {.lex_state = 5, .external_lex_state = 12}, - [3433] = {.lex_state = 5, .external_lex_state = 11}, - [3434] = {.lex_state = 15, .external_lex_state = 11}, - [3435] = {.lex_state = 18, .external_lex_state = 14}, - [3436] = {.lex_state = 5, .external_lex_state = 11}, - [3437] = {.lex_state = 5, .external_lex_state = 11}, - [3438] = {.lex_state = 18, .external_lex_state = 11}, - [3439] = {.lex_state = 15, .external_lex_state = 11}, - [3440] = {.lex_state = 18, .external_lex_state = 14}, - [3441] = {.lex_state = 5, .external_lex_state = 12}, - [3442] = {.lex_state = 18, .external_lex_state = 14}, - [3443] = {.lex_state = 18, .external_lex_state = 12}, - [3444] = {.lex_state = 15, .external_lex_state = 12}, - [3445] = {.lex_state = 15, .external_lex_state = 12}, - [3446] = {.lex_state = 15, .external_lex_state = 12}, - [3447] = {.lex_state = 5, .external_lex_state = 12}, - [3448] = {.lex_state = 5, .external_lex_state = 12}, - [3449] = {.lex_state = 5, .external_lex_state = 16}, - [3450] = {.lex_state = 5, .external_lex_state = 16}, - [3451] = {.lex_state = 15, .external_lex_state = 11}, + [3433] = {.lex_state = 15, .external_lex_state = 11}, + [3434] = {.lex_state = 5, .external_lex_state = 11}, + [3435] = {.lex_state = 15, .external_lex_state = 11}, + [3436] = {.lex_state = 18, .external_lex_state = 14}, + [3437] = {.lex_state = 5, .external_lex_state = 12}, + [3438] = {.lex_state = 18, .external_lex_state = 14}, + [3439] = {.lex_state = 5, .external_lex_state = 12}, + [3440] = {.lex_state = 18, .external_lex_state = 11}, + [3441] = {.lex_state = 5, .external_lex_state = 11}, + [3442] = {.lex_state = 18, .external_lex_state = 11}, + [3443] = {.lex_state = 18, .external_lex_state = 11}, + [3444] = {.lex_state = 18, .external_lex_state = 11}, + [3445] = {.lex_state = 5, .external_lex_state = 16}, + [3446] = {.lex_state = 5, .external_lex_state = 12}, + [3447] = {.lex_state = 5, .external_lex_state = 14}, + [3448] = {.lex_state = 5, .external_lex_state = 16}, + [3449] = {.lex_state = 5, .external_lex_state = 14}, + [3450] = {.lex_state = 15, .external_lex_state = 11}, + [3451] = {.lex_state = 5, .external_lex_state = 12}, [3452] = {.lex_state = 5, .external_lex_state = 12}, - [3453] = {.lex_state = 5, .external_lex_state = 16}, - [3454] = {.lex_state = 15, .external_lex_state = 11}, - [3455] = {.lex_state = 18, .external_lex_state = 12}, + [3453] = {.lex_state = 18, .external_lex_state = 12}, + [3454] = {.lex_state = 18, .external_lex_state = 12}, + [3455] = {.lex_state = 5, .external_lex_state = 12}, [3456] = {.lex_state = 5, .external_lex_state = 12}, [3457] = {.lex_state = 5, .external_lex_state = 12}, - [3458] = {.lex_state = 18, .external_lex_state = 12}, - [3459] = {.lex_state = 18, .external_lex_state = 11}, - [3460] = {.lex_state = 18, .external_lex_state = 12}, - [3461] = {.lex_state = 18, .external_lex_state = 11}, - [3462] = {.lex_state = 18, .external_lex_state = 11}, - [3463] = {.lex_state = 66, .external_lex_state = 13}, + [3458] = {.lex_state = 5, .external_lex_state = 12}, + [3459] = {.lex_state = 5, .external_lex_state = 14}, + [3460] = {.lex_state = 15, .external_lex_state = 12}, + [3461] = {.lex_state = 5, .external_lex_state = 12}, + [3462] = {.lex_state = 15, .external_lex_state = 12}, + [3463] = {.lex_state = 15, .external_lex_state = 12}, [3464] = {.lex_state = 5, .external_lex_state = 12}, - [3465] = {.lex_state = 5, .external_lex_state = 12}, - [3466] = {.lex_state = 5, .external_lex_state = 14}, + [3465] = {.lex_state = 15, .external_lex_state = 12}, + [3466] = {.lex_state = 18, .external_lex_state = 14}, [3467] = {.lex_state = 5, .external_lex_state = 12}, - [3468] = {.lex_state = 15, .external_lex_state = 11}, - [3469] = {.lex_state = 15, .external_lex_state = 11}, - [3470] = {.lex_state = 5, .external_lex_state = 12}, - [3471] = {.lex_state = 15, .external_lex_state = 11}, - [3472] = {.lex_state = 5, .external_lex_state = 12}, + [3468] = {.lex_state = 18, .external_lex_state = 12}, + [3469] = {.lex_state = 5, .external_lex_state = 12}, + [3470] = {.lex_state = 18, .external_lex_state = 16}, + [3471] = {.lex_state = 5, .external_lex_state = 14}, + [3472] = {.lex_state = 18, .external_lex_state = 11}, [3473] = {.lex_state = 5, .external_lex_state = 12}, [3474] = {.lex_state = 5, .external_lex_state = 12}, - [3475] = {.lex_state = 66, .external_lex_state = 12}, - [3476] = {.lex_state = 5, .external_lex_state = 12}, - [3477] = {.lex_state = 5, .external_lex_state = 14}, - [3478] = {.lex_state = 15, .external_lex_state = 11}, - [3479] = {.lex_state = 5, .external_lex_state = 12}, - [3480] = {.lex_state = 15, .external_lex_state = 12}, - [3481] = {.lex_state = 18, .external_lex_state = 11}, + [3475] = {.lex_state = 5, .external_lex_state = 12}, + [3476] = {.lex_state = 15, .external_lex_state = 11}, + [3477] = {.lex_state = 18, .external_lex_state = 11}, + [3478] = {.lex_state = 5, .external_lex_state = 14}, + [3479] = {.lex_state = 15, .external_lex_state = 11}, + [3480] = {.lex_state = 18, .external_lex_state = 11}, + [3481] = {.lex_state = 5, .external_lex_state = 16}, [3482] = {.lex_state = 5, .external_lex_state = 12}, - [3483] = {.lex_state = 5, .external_lex_state = 16}, - [3484] = {.lex_state = 18, .external_lex_state = 11}, - [3485] = {.lex_state = 15, .external_lex_state = 12}, - [3486] = {.lex_state = 18, .external_lex_state = 11}, + [3483] = {.lex_state = 15, .external_lex_state = 12}, + [3484] = {.lex_state = 15, .external_lex_state = 12}, + [3485] = {.lex_state = 5, .external_lex_state = 12}, + [3486] = {.lex_state = 15, .external_lex_state = 12}, [3487] = {.lex_state = 5, .external_lex_state = 12}, - [3488] = {.lex_state = 5, .external_lex_state = 14}, - [3489] = {.lex_state = 18, .external_lex_state = 16}, + [3488] = {.lex_state = 18, .external_lex_state = 12}, + [3489] = {.lex_state = 5, .external_lex_state = 12}, [3490] = {.lex_state = 5, .external_lex_state = 12}, - [3491] = {.lex_state = 15, .external_lex_state = 12}, + [3491] = {.lex_state = 5, .external_lex_state = 12}, [3492] = {.lex_state = 5, .external_lex_state = 12}, [3493] = {.lex_state = 5, .external_lex_state = 12}, - [3494] = {.lex_state = 15, .external_lex_state = 12}, - [3495] = {.lex_state = 5, .external_lex_state = 12}, - [3496] = {.lex_state = 5, .external_lex_state = 12}, - [3497] = {.lex_state = 5, .external_lex_state = 12}, - [3498] = {.lex_state = 5, .external_lex_state = 12}, - [3499] = {.lex_state = 5, .external_lex_state = 14}, - [3500] = {.lex_state = 5, .external_lex_state = 16}, + [3494] = {.lex_state = 5, .external_lex_state = 12}, + [3495] = {.lex_state = 66, .external_lex_state = 13}, + [3496] = {.lex_state = 18, .external_lex_state = 11}, + [3497] = {.lex_state = 15, .external_lex_state = 11}, + [3498] = {.lex_state = 18, .external_lex_state = 11}, + [3499] = {.lex_state = 5, .external_lex_state = 12}, + [3500] = {.lex_state = 5, .external_lex_state = 12}, [3501] = {.lex_state = 5, .external_lex_state = 12}, [3502] = {.lex_state = 5, .external_lex_state = 12}, [3503] = {.lex_state = 5, .external_lex_state = 12}, [3504] = {.lex_state = 15, .external_lex_state = 11}, - [3505] = {.lex_state = 5, .external_lex_state = 12}, - [3506] = {.lex_state = 18, .external_lex_state = 14}, - [3507] = {.lex_state = 5, .external_lex_state = 14}, - [3508] = {.lex_state = 5, .external_lex_state = 12}, - [3509] = {.lex_state = 5, .external_lex_state = 11}, - [3510] = {.lex_state = 5, .external_lex_state = 11}, - [3511] = {.lex_state = 5, .external_lex_state = 12}, + [3505] = {.lex_state = 15, .external_lex_state = 11}, + [3506] = {.lex_state = 15, .external_lex_state = 11}, + [3507] = {.lex_state = 66, .external_lex_state = 12}, + [3508] = {.lex_state = 5, .external_lex_state = 16}, + [3509] = {.lex_state = 5, .external_lex_state = 16}, + [3510] = {.lex_state = 18, .external_lex_state = 11}, + [3511] = {.lex_state = 66, .external_lex_state = 15}, [3512] = {.lex_state = 5, .external_lex_state = 11}, - [3513] = {.lex_state = 5, .external_lex_state = 11}, + [3513] = {.lex_state = 5, .external_lex_state = 14}, [3514] = {.lex_state = 5, .external_lex_state = 11}, [3515] = {.lex_state = 5, .external_lex_state = 11}, - [3516] = {.lex_state = 5, .external_lex_state = 14}, - [3517] = {.lex_state = 5, .external_lex_state = 16}, - [3518] = {.lex_state = 5, .external_lex_state = 16}, + [3516] = {.lex_state = 5, .external_lex_state = 11}, + [3517] = {.lex_state = 5, .external_lex_state = 11}, + [3518] = {.lex_state = 5, .external_lex_state = 11}, [3519] = {.lex_state = 5, .external_lex_state = 16}, [3520] = {.lex_state = 5, .external_lex_state = 16}, - [3521] = {.lex_state = 5, .external_lex_state = 16}, - [3522] = {.lex_state = 5, .external_lex_state = 16}, - [3523] = {.lex_state = 5, .external_lex_state = 16}, - [3524] = {.lex_state = 5, .external_lex_state = 16}, - [3525] = {.lex_state = 66, .external_lex_state = 15}, - [3526] = {.lex_state = 5, .external_lex_state = 12}, + [3521] = {.lex_state = 5, .external_lex_state = 11}, + [3522] = {.lex_state = 5, .external_lex_state = 14}, + [3523] = {.lex_state = 5, .external_lex_state = 14}, + [3524] = {.lex_state = 5, .external_lex_state = 14}, + [3525] = {.lex_state = 5, .external_lex_state = 16}, + [3526] = {.lex_state = 5, .external_lex_state = 14}, [3527] = {.lex_state = 5, .external_lex_state = 14}, - [3528] = {.lex_state = 5, .external_lex_state = 11}, + [3528] = {.lex_state = 5, .external_lex_state = 14}, [3529] = {.lex_state = 5, .external_lex_state = 14}, - [3530] = {.lex_state = 18, .external_lex_state = 12}, + [3530] = {.lex_state = 5, .external_lex_state = 14}, [3531] = {.lex_state = 5, .external_lex_state = 14}, - [3532] = {.lex_state = 5, .external_lex_state = 12}, - [3533] = {.lex_state = 5, .external_lex_state = 11}, - [3534] = {.lex_state = 5, .external_lex_state = 11}, + [3532] = {.lex_state = 5, .external_lex_state = 14}, + [3533] = {.lex_state = 5, .external_lex_state = 14}, + [3534] = {.lex_state = 5, .external_lex_state = 14}, [3535] = {.lex_state = 5, .external_lex_state = 14}, [3536] = {.lex_state = 5, .external_lex_state = 11}, - [3537] = {.lex_state = 5, .external_lex_state = 11}, - [3538] = {.lex_state = 5, .external_lex_state = 14}, - [3539] = {.lex_state = 5, .external_lex_state = 14}, - [3540] = {.lex_state = 5, .external_lex_state = 12}, - [3541] = {.lex_state = 5, .external_lex_state = 12}, - [3542] = {.lex_state = 5, .external_lex_state = 11}, - [3543] = {.lex_state = 5, .external_lex_state = 16}, + [3537] = {.lex_state = 5, .external_lex_state = 14}, + [3538] = {.lex_state = 5, .external_lex_state = 16}, + [3539] = {.lex_state = 5, .external_lex_state = 12}, + [3540] = {.lex_state = 5, .external_lex_state = 14}, + [3541] = {.lex_state = 5, .external_lex_state = 14}, + [3542] = {.lex_state = 5, .external_lex_state = 14}, + [3543] = {.lex_state = 5, .external_lex_state = 14}, [3544] = {.lex_state = 5, .external_lex_state = 14}, - [3545] = {.lex_state = 5, .external_lex_state = 16}, - [3546] = {.lex_state = 5, .external_lex_state = 11}, + [3545] = {.lex_state = 5, .external_lex_state = 14}, + [3546] = {.lex_state = 5, .external_lex_state = 14}, [3547] = {.lex_state = 5, .external_lex_state = 14}, - [3548] = {.lex_state = 5, .external_lex_state = 16}, + [3548] = {.lex_state = 5, .external_lex_state = 14}, [3549] = {.lex_state = 5, .external_lex_state = 14}, - [3550] = {.lex_state = 5, .external_lex_state = 11}, - [3551] = {.lex_state = 5, .external_lex_state = 14}, - [3552] = {.lex_state = 5, .external_lex_state = 11}, - [3553] = {.lex_state = 5, .external_lex_state = 14}, - [3554] = {.lex_state = 5, .external_lex_state = 11}, - [3555] = {.lex_state = 5, .external_lex_state = 14}, - [3556] = {.lex_state = 5, .external_lex_state = 16}, + [3550] = {.lex_state = 5, .external_lex_state = 14}, + [3551] = {.lex_state = 66, .external_lex_state = 15}, + [3552] = {.lex_state = 5, .external_lex_state = 12}, + [3553] = {.lex_state = 5, .external_lex_state = 11}, + [3554] = {.lex_state = 5, .external_lex_state = 14}, + [3555] = {.lex_state = 5, .external_lex_state = 11}, + [3556] = {.lex_state = 5, .external_lex_state = 14}, [3557] = {.lex_state = 5, .external_lex_state = 14}, - [3558] = {.lex_state = 5, .external_lex_state = 14}, + [3558] = {.lex_state = 5, .external_lex_state = 12}, [3559] = {.lex_state = 5, .external_lex_state = 14}, [3560] = {.lex_state = 5, .external_lex_state = 14}, - [3561] = {.lex_state = 5, .external_lex_state = 14}, - [3562] = {.lex_state = 5, .external_lex_state = 14}, + [3561] = {.lex_state = 5, .external_lex_state = 11}, + [3562] = {.lex_state = 5, .external_lex_state = 11}, [3563] = {.lex_state = 5, .external_lex_state = 14}, - [3564] = {.lex_state = 5, .external_lex_state = 11}, - [3565] = {.lex_state = 5, .external_lex_state = 14}, - [3566] = {.lex_state = 5, .external_lex_state = 14}, - [3567] = {.lex_state = 5, .external_lex_state = 14}, - [3568] = {.lex_state = 5, .external_lex_state = 11}, + [3564] = {.lex_state = 5, .external_lex_state = 14}, + [3565] = {.lex_state = 5, .external_lex_state = 12}, + [3566] = {.lex_state = 5, .external_lex_state = 12}, + [3567] = {.lex_state = 5, .external_lex_state = 16}, + [3568] = {.lex_state = 5, .external_lex_state = 14}, [3569] = {.lex_state = 5, .external_lex_state = 14}, [3570] = {.lex_state = 5, .external_lex_state = 14}, [3571] = {.lex_state = 5, .external_lex_state = 14}, - [3572] = {.lex_state = 5, .external_lex_state = 14}, - [3573] = {.lex_state = 5, .external_lex_state = 14}, - [3574] = {.lex_state = 5, .external_lex_state = 11}, - [3575] = {.lex_state = 5, .external_lex_state = 14}, - [3576] = {.lex_state = 5, .external_lex_state = 14}, - [3577] = {.lex_state = 5, .external_lex_state = 16}, - [3578] = {.lex_state = 5, .external_lex_state = 16}, - [3579] = {.lex_state = 5, .external_lex_state = 14}, - [3580] = {.lex_state = 5, .external_lex_state = 14}, - [3581] = {.lex_state = 5, .external_lex_state = 14}, - [3582] = {.lex_state = 5, .external_lex_state = 14}, - [3583] = {.lex_state = 5, .external_lex_state = 12}, - [3584] = {.lex_state = 5, .external_lex_state = 16}, - [3585] = {.lex_state = 5, .external_lex_state = 16}, + [3572] = {.lex_state = 5, .external_lex_state = 11}, + [3573] = {.lex_state = 5, .external_lex_state = 16}, + [3574] = {.lex_state = 5, .external_lex_state = 16}, + [3575] = {.lex_state = 5, .external_lex_state = 11}, + [3576] = {.lex_state = 5, .external_lex_state = 16}, + [3577] = {.lex_state = 5, .external_lex_state = 14}, + [3578] = {.lex_state = 5, .external_lex_state = 11}, + [3579] = {.lex_state = 5, .external_lex_state = 11}, + [3580] = {.lex_state = 5, .external_lex_state = 11}, + [3581] = {.lex_state = 18, .external_lex_state = 12}, + [3582] = {.lex_state = 5, .external_lex_state = 16}, + [3583] = {.lex_state = 5, .external_lex_state = 16}, + [3584] = {.lex_state = 5, .external_lex_state = 14}, + [3585] = {.lex_state = 5, .external_lex_state = 12}, [3586] = {.lex_state = 5, .external_lex_state = 16}, - [3587] = {.lex_state = 5, .external_lex_state = 16}, - [3588] = {.lex_state = 5, .external_lex_state = 16}, + [3587] = {.lex_state = 5, .external_lex_state = 11}, + [3588] = {.lex_state = 5, .external_lex_state = 11}, [3589] = {.lex_state = 5, .external_lex_state = 16}, - [3590] = {.lex_state = 5, .external_lex_state = 16}, - [3591] = {.lex_state = 5, .external_lex_state = 16}, - [3592] = {.lex_state = 66, .external_lex_state = 15}, + [3590] = {.lex_state = 5, .external_lex_state = 11}, + [3591] = {.lex_state = 5, .external_lex_state = 11}, + [3592] = {.lex_state = 5, .external_lex_state = 11}, [3593] = {.lex_state = 5, .external_lex_state = 16}, - [3594] = {.lex_state = 5, .external_lex_state = 16}, + [3594] = {.lex_state = 5, .external_lex_state = 14}, [3595] = {.lex_state = 5, .external_lex_state = 16}, [3596] = {.lex_state = 5, .external_lex_state = 16}, - [3597] = {.lex_state = 5, .external_lex_state = 11}, - [3598] = {.lex_state = 66, .external_lex_state = 15}, - [3599] = {.lex_state = 5, .external_lex_state = 14}, - [3600] = {.lex_state = 5, .external_lex_state = 14}, - [3601] = {.lex_state = 5, .external_lex_state = 14}, - [3602] = {.lex_state = 5, .external_lex_state = 14}, - [3603] = {.lex_state = 5, .external_lex_state = 14}, + [3597] = {.lex_state = 5, .external_lex_state = 16}, + [3598] = {.lex_state = 5, .external_lex_state = 16}, + [3599] = {.lex_state = 5, .external_lex_state = 16}, + [3600] = {.lex_state = 5, .external_lex_state = 16}, + [3601] = {.lex_state = 5, .external_lex_state = 16}, + [3602] = {.lex_state = 5, .external_lex_state = 11}, + [3603] = {.lex_state = 5, .external_lex_state = 16}, [3604] = {.lex_state = 5, .external_lex_state = 11}, [3605] = {.lex_state = 66, .external_lex_state = 15}, - [3606] = {.lex_state = 5, .external_lex_state = 11}, - [3607] = {.lex_state = 5, .external_lex_state = 11}, - [3608] = {.lex_state = 66, .external_lex_state = 15}, + [3606] = {.lex_state = 5, .external_lex_state = 16}, + [3607] = {.lex_state = 5, .external_lex_state = 14}, + [3608] = {.lex_state = 5, .external_lex_state = 16}, [3609] = {.lex_state = 66, .external_lex_state = 15}, - [3610] = {.lex_state = 5, .external_lex_state = 11}, + [3610] = {.lex_state = 5, .external_lex_state = 14}, [3611] = {.lex_state = 66, .external_lex_state = 15}, - [3612] = {.lex_state = 66, .external_lex_state = 15}, - [3613] = {.lex_state = 5, .external_lex_state = 14}, - [3614] = {.lex_state = 5, .external_lex_state = 14}, - [3615] = {.lex_state = 5, .external_lex_state = 14}, - [3616] = {.lex_state = 5, .external_lex_state = 11}, - [3617] = {.lex_state = 5, .external_lex_state = 14}, - [3618] = {.lex_state = 5, .external_lex_state = 11}, - [3619] = {.lex_state = 18, .external_lex_state = 16}, + [3612] = {.lex_state = 5, .external_lex_state = 16}, + [3613] = {.lex_state = 66, .external_lex_state = 15}, + [3614] = {.lex_state = 66, .external_lex_state = 15}, + [3615] = {.lex_state = 66, .external_lex_state = 15}, + [3616] = {.lex_state = 5, .external_lex_state = 14}, + [3617] = {.lex_state = 5, .external_lex_state = 16}, + [3618] = {.lex_state = 5, .external_lex_state = 16}, + [3619] = {.lex_state = 5, .external_lex_state = 11}, [3620] = {.lex_state = 5, .external_lex_state = 11}, - [3621] = {.lex_state = 5, .external_lex_state = 12}, - [3622] = {.lex_state = 66, .external_lex_state = 12}, - [3623] = {.lex_state = 66, .external_lex_state = 5}, - [3624] = {.lex_state = 18, .external_lex_state = 16}, - [3625] = {.lex_state = 5, .external_lex_state = 11}, - [3626] = {.lex_state = 5, .external_lex_state = 12}, - [3627] = {.lex_state = 5, .external_lex_state = 11}, + [3621] = {.lex_state = 66, .external_lex_state = 14}, + [3622] = {.lex_state = 5, .external_lex_state = 11}, + [3623] = {.lex_state = 5, .external_lex_state = 12}, + [3624] = {.lex_state = 66, .external_lex_state = 5}, + [3625] = {.lex_state = 66, .external_lex_state = 12}, + [3626] = {.lex_state = 66, .external_lex_state = 14}, + [3627] = {.lex_state = 5, .external_lex_state = 12}, [3628] = {.lex_state = 5, .external_lex_state = 11}, - [3629] = {.lex_state = 0, .external_lex_state = 18}, - [3630] = {.lex_state = 0, .external_lex_state = 18}, - [3631] = {.lex_state = 66, .external_lex_state = 14}, - [3632] = {.lex_state = 5, .external_lex_state = 11}, - [3633] = {.lex_state = 66, .external_lex_state = 14}, - [3634] = {.lex_state = 18, .external_lex_state = 16}, - [3635] = {.lex_state = 5, .external_lex_state = 11}, - [3636] = {.lex_state = 5, .external_lex_state = 12}, + [3629] = {.lex_state = 66, .external_lex_state = 5}, + [3630] = {.lex_state = 5, .external_lex_state = 12}, + [3631] = {.lex_state = 5, .external_lex_state = 12}, + [3632] = {.lex_state = 0, .external_lex_state = 18}, + [3633] = {.lex_state = 66, .external_lex_state = 5}, + [3634] = {.lex_state = 5, .external_lex_state = 11}, + [3635] = {.lex_state = 18, .external_lex_state = 16}, + [3636] = {.lex_state = 66, .external_lex_state = 16}, [3637] = {.lex_state = 0, .external_lex_state = 18}, - [3638] = {.lex_state = 0, .external_lex_state = 18}, + [3638] = {.lex_state = 5, .external_lex_state = 11}, [3639] = {.lex_state = 66, .external_lex_state = 14}, [3640] = {.lex_state = 66, .external_lex_state = 14}, - [3641] = {.lex_state = 0, .external_lex_state = 18}, - [3642] = {.lex_state = 0, .external_lex_state = 18}, - [3643] = {.lex_state = 66, .external_lex_state = 14}, - [3644] = {.lex_state = 66, .external_lex_state = 14}, - [3645] = {.lex_state = 0, .external_lex_state = 18}, - [3646] = {.lex_state = 0, .external_lex_state = 18}, + [3641] = {.lex_state = 15, .external_lex_state = 11}, + [3642] = {.lex_state = 18, .external_lex_state = 16}, + [3643] = {.lex_state = 0, .external_lex_state = 18}, + [3644] = {.lex_state = 0, .external_lex_state = 18}, + [3645] = {.lex_state = 66, .external_lex_state = 14}, + [3646] = {.lex_state = 66, .external_lex_state = 5}, [3647] = {.lex_state = 66, .external_lex_state = 14}, - [3648] = {.lex_state = 66, .external_lex_state = 14}, - [3649] = {.lex_state = 0, .external_lex_state = 18}, + [3648] = {.lex_state = 0, .external_lex_state = 18}, + [3649] = {.lex_state = 5, .external_lex_state = 12}, [3650] = {.lex_state = 0, .external_lex_state = 18}, - [3651] = {.lex_state = 66, .external_lex_state = 14}, + [3651] = {.lex_state = 0, .external_lex_state = 18}, [3652] = {.lex_state = 66, .external_lex_state = 14}, - [3653] = {.lex_state = 0, .external_lex_state = 18}, - [3654] = {.lex_state = 0, .external_lex_state = 18}, - [3655] = {.lex_state = 66, .external_lex_state = 14}, - [3656] = {.lex_state = 66, .external_lex_state = 14}, - [3657] = {.lex_state = 0, .external_lex_state = 18}, + [3653] = {.lex_state = 66, .external_lex_state = 14}, + [3654] = {.lex_state = 5, .external_lex_state = 11}, + [3655] = {.lex_state = 5, .external_lex_state = 12}, + [3656] = {.lex_state = 0, .external_lex_state = 18}, + [3657] = {.lex_state = 5, .external_lex_state = 11}, [3658] = {.lex_state = 0, .external_lex_state = 18}, - [3659] = {.lex_state = 66, .external_lex_state = 16}, - [3660] = {.lex_state = 0, .external_lex_state = 18}, - [3661] = {.lex_state = 0, .external_lex_state = 18}, - [3662] = {.lex_state = 0, .external_lex_state = 18}, + [3659] = {.lex_state = 66, .external_lex_state = 14}, + [3660] = {.lex_state = 66, .external_lex_state = 14}, + [3661] = {.lex_state = 66, .external_lex_state = 14}, + [3662] = {.lex_state = 5, .external_lex_state = 12}, [3663] = {.lex_state = 0, .external_lex_state = 18}, - [3664] = {.lex_state = 66, .external_lex_state = 14}, - [3665] = {.lex_state = 0, .external_lex_state = 18}, - [3666] = {.lex_state = 5, .external_lex_state = 11}, - [3667] = {.lex_state = 66, .external_lex_state = 14}, - [3668] = {.lex_state = 18, .external_lex_state = 16}, - [3669] = {.lex_state = 5, .external_lex_state = 12}, - [3670] = {.lex_state = 0, .external_lex_state = 18}, - [3671] = {.lex_state = 66, .external_lex_state = 16}, - [3672] = {.lex_state = 0, .external_lex_state = 18}, - [3673] = {.lex_state = 5, .external_lex_state = 12}, - [3674] = {.lex_state = 66, .external_lex_state = 5}, + [3664] = {.lex_state = 0, .external_lex_state = 18}, + [3665] = {.lex_state = 66, .external_lex_state = 14}, + [3666] = {.lex_state = 66, .external_lex_state = 14}, + [3667] = {.lex_state = 18, .external_lex_state = 16}, + [3668] = {.lex_state = 5, .external_lex_state = 12}, + [3669] = {.lex_state = 0, .external_lex_state = 18}, + [3670] = {.lex_state = 66, .external_lex_state = 14}, + [3671] = {.lex_state = 5, .external_lex_state = 11}, + [3672] = {.lex_state = 66, .external_lex_state = 14}, + [3673] = {.lex_state = 0, .external_lex_state = 18}, + [3674] = {.lex_state = 0, .external_lex_state = 18}, [3675] = {.lex_state = 0, .external_lex_state = 18}, - [3676] = {.lex_state = 66, .external_lex_state = 14}, - [3677] = {.lex_state = 15, .external_lex_state = 11}, - [3678] = {.lex_state = 66, .external_lex_state = 5}, - [3679] = {.lex_state = 66, .external_lex_state = 16}, - [3680] = {.lex_state = 66, .external_lex_state = 14}, - [3681] = {.lex_state = 5, .external_lex_state = 12}, - [3682] = {.lex_state = 5, .external_lex_state = 12}, - [3683] = {.lex_state = 5, .external_lex_state = 11}, - [3684] = {.lex_state = 5, .external_lex_state = 11}, + [3676] = {.lex_state = 0, .external_lex_state = 18}, + [3677] = {.lex_state = 18, .external_lex_state = 16}, + [3678] = {.lex_state = 0, .external_lex_state = 18}, + [3679] = {.lex_state = 5, .external_lex_state = 12}, + [3680] = {.lex_state = 0, .external_lex_state = 18}, + [3681] = {.lex_state = 66, .external_lex_state = 14}, + [3682] = {.lex_state = 5, .external_lex_state = 11}, + [3683] = {.lex_state = 0, .external_lex_state = 18}, + [3684] = {.lex_state = 0, .external_lex_state = 18}, [3685] = {.lex_state = 66, .external_lex_state = 16}, - [3686] = {.lex_state = 5, .external_lex_state = 12}, - [3687] = {.lex_state = 66, .external_lex_state = 5}, - [3688] = {.lex_state = 66, .external_lex_state = 16}, - [3689] = {.lex_state = 5, .external_lex_state = 11}, - [3690] = {.lex_state = 5, .external_lex_state = 11}, + [3686] = {.lex_state = 66, .external_lex_state = 16}, + [3687] = {.lex_state = 5, .external_lex_state = 11}, + [3688] = {.lex_state = 5, .external_lex_state = 11}, + [3689] = {.lex_state = 66, .external_lex_state = 16}, + [3690] = {.lex_state = 0, .external_lex_state = 18}, [3691] = {.lex_state = 66, .external_lex_state = 16}, - [3692] = {.lex_state = 66, .external_lex_state = 5}, - [3693] = {.lex_state = 5, .external_lex_state = 11}, - [3694] = {.lex_state = 5, .external_lex_state = 11}, + [3692] = {.lex_state = 66, .external_lex_state = 16}, + [3693] = {.lex_state = 66, .external_lex_state = 5}, + [3694] = {.lex_state = 66, .external_lex_state = 16}, [3695] = {.lex_state = 66, .external_lex_state = 16}, - [3696] = {.lex_state = 5, .external_lex_state = 12}, - [3697] = {.lex_state = 66, .external_lex_state = 16}, + [3696] = {.lex_state = 0, .external_lex_state = 18}, + [3697] = {.lex_state = 5, .external_lex_state = 11}, [3698] = {.lex_state = 5, .external_lex_state = 11}, [3699] = {.lex_state = 5, .external_lex_state = 11}, [3700] = {.lex_state = 5, .external_lex_state = 11}, [3701] = {.lex_state = 5, .external_lex_state = 11}, - [3702] = {.lex_state = 5, .external_lex_state = 11}, + [3702] = {.lex_state = 66, .external_lex_state = 5}, [3703] = {.lex_state = 5, .external_lex_state = 11}, [3704] = {.lex_state = 5, .external_lex_state = 11}, [3705] = {.lex_state = 5, .external_lex_state = 11}, - [3706] = {.lex_state = 66, .external_lex_state = 14}, - [3707] = {.lex_state = 66, .external_lex_state = 5}, - [3708] = {.lex_state = 0, .external_lex_state = 18}, - [3709] = {.lex_state = 66, .external_lex_state = 15}, - [3710] = {.lex_state = 5, .external_lex_state = 12}, - [3711] = {.lex_state = 5, .external_lex_state = 16}, + [3706] = {.lex_state = 5, .external_lex_state = 11}, + [3707] = {.lex_state = 5, .external_lex_state = 11}, + [3708] = {.lex_state = 5, .external_lex_state = 11}, + [3709] = {.lex_state = 66, .external_lex_state = 14}, + [3710] = {.lex_state = 0, .external_lex_state = 18}, + [3711] = {.lex_state = 5, .external_lex_state = 12}, [3712] = {.lex_state = 5, .external_lex_state = 12}, - [3713] = {.lex_state = 5, .external_lex_state = 12}, - [3714] = {.lex_state = 5, .external_lex_state = 12}, + [3713] = {.lex_state = 5, .external_lex_state = 14}, + [3714] = {.lex_state = 18, .external_lex_state = 11}, [3715] = {.lex_state = 5, .external_lex_state = 12}, [3716] = {.lex_state = 5, .external_lex_state = 12}, - [3717] = {.lex_state = 66, .external_lex_state = 15}, + [3717] = {.lex_state = 5, .external_lex_state = 16}, [3718] = {.lex_state = 5, .external_lex_state = 12}, - [3719] = {.lex_state = 5, .external_lex_state = 12}, + [3719] = {.lex_state = 18, .external_lex_state = 11}, [3720] = {.lex_state = 5, .external_lex_state = 12}, - [3721] = {.lex_state = 5, .external_lex_state = 12}, + [3721] = {.lex_state = 18, .external_lex_state = 11}, [3722] = {.lex_state = 5, .external_lex_state = 12}, - [3723] = {.lex_state = 5, .external_lex_state = 14}, - [3724] = {.lex_state = 18, .external_lex_state = 16}, - [3725] = {.lex_state = 18, .external_lex_state = 16}, - [3726] = {.lex_state = 18, .external_lex_state = 11}, + [3723] = {.lex_state = 5, .external_lex_state = 12}, + [3724] = {.lex_state = 5, .external_lex_state = 14}, + [3725] = {.lex_state = 5, .external_lex_state = 12}, + [3726] = {.lex_state = 5, .external_lex_state = 12}, [3727] = {.lex_state = 5, .external_lex_state = 12}, - [3728] = {.lex_state = 5, .external_lex_state = 16}, + [3728] = {.lex_state = 5, .external_lex_state = 12}, [3729] = {.lex_state = 5, .external_lex_state = 12}, - [3730] = {.lex_state = 18, .external_lex_state = 11}, - [3731] = {.lex_state = 15, .external_lex_state = 12}, - [3732] = {.lex_state = 18, .external_lex_state = 11}, - [3733] = {.lex_state = 18, .external_lex_state = 16}, - [3734] = {.lex_state = 5, .external_lex_state = 12}, - [3735] = {.lex_state = 18, .external_lex_state = 16}, + [3730] = {.lex_state = 18, .external_lex_state = 16}, + [3731] = {.lex_state = 5, .external_lex_state = 12}, + [3732] = {.lex_state = 66, .external_lex_state = 15}, + [3733] = {.lex_state = 18, .external_lex_state = 11}, + [3734] = {.lex_state = 20, .external_lex_state = 11}, + [3735] = {.lex_state = 18, .external_lex_state = 11}, [3736] = {.lex_state = 5, .external_lex_state = 12}, - [3737] = {.lex_state = 5, .external_lex_state = 12}, - [3738] = {.lex_state = 5, .external_lex_state = 12}, - [3739] = {.lex_state = 5, .external_lex_state = 12}, - [3740] = {.lex_state = 5, .external_lex_state = 12}, - [3741] = {.lex_state = 5, .external_lex_state = 14}, - [3742] = {.lex_state = 5, .external_lex_state = 12}, - [3743] = {.lex_state = 18, .external_lex_state = 16}, - [3744] = {.lex_state = 5, .external_lex_state = 16}, - [3745] = {.lex_state = 5, .external_lex_state = 12}, + [3737] = {.lex_state = 20, .external_lex_state = 14}, + [3738] = {.lex_state = 5, .external_lex_state = 16}, + [3739] = {.lex_state = 18, .external_lex_state = 11}, + [3740] = {.lex_state = 5, .external_lex_state = 16}, + [3741] = {.lex_state = 5, .external_lex_state = 12}, + [3742] = {.lex_state = 18, .external_lex_state = 16}, + [3743] = {.lex_state = 5, .external_lex_state = 12}, + [3744] = {.lex_state = 18, .external_lex_state = 11}, + [3745] = {.lex_state = 18, .external_lex_state = 11}, [3746] = {.lex_state = 5, .external_lex_state = 12}, [3747] = {.lex_state = 5, .external_lex_state = 12}, - [3748] = {.lex_state = 20, .external_lex_state = 14}, - [3749] = {.lex_state = 5, .external_lex_state = 16}, - [3750] = {.lex_state = 5, .external_lex_state = 12}, - [3751] = {.lex_state = 18, .external_lex_state = 11}, + [3748] = {.lex_state = 5, .external_lex_state = 12}, + [3749] = {.lex_state = 5, .external_lex_state = 12}, + [3750] = {.lex_state = 5, .external_lex_state = 16}, + [3751] = {.lex_state = 5, .external_lex_state = 12}, [3752] = {.lex_state = 5, .external_lex_state = 12}, [3753] = {.lex_state = 5, .external_lex_state = 12}, [3754] = {.lex_state = 5, .external_lex_state = 12}, - [3755] = {.lex_state = 5, .external_lex_state = 12}, - [3756] = {.lex_state = 18, .external_lex_state = 11}, + [3755] = {.lex_state = 5, .external_lex_state = 16}, + [3756] = {.lex_state = 5, .external_lex_state = 12}, [3757] = {.lex_state = 5, .external_lex_state = 12}, - [3758] = {.lex_state = 5, .external_lex_state = 16}, + [3758] = {.lex_state = 15, .external_lex_state = 12}, [3759] = {.lex_state = 5, .external_lex_state = 12}, - [3760] = {.lex_state = 5, .external_lex_state = 12}, + [3760] = {.lex_state = 18, .external_lex_state = 16}, [3761] = {.lex_state = 5, .external_lex_state = 12}, [3762] = {.lex_state = 5, .external_lex_state = 12}, - [3763] = {.lex_state = 18, .external_lex_state = 11}, + [3763] = {.lex_state = 5, .external_lex_state = 12}, [3764] = {.lex_state = 5, .external_lex_state = 12}, - [3765] = {.lex_state = 5, .external_lex_state = 12}, + [3765] = {.lex_state = 18, .external_lex_state = 16}, [3766] = {.lex_state = 5, .external_lex_state = 12}, - [3767] = {.lex_state = 5, .external_lex_state = 12}, + [3767] = {.lex_state = 18, .external_lex_state = 16}, [3768] = {.lex_state = 5, .external_lex_state = 12}, - [3769] = {.lex_state = 5, .external_lex_state = 12}, - [3770] = {.lex_state = 5, .external_lex_state = 12}, - [3771] = {.lex_state = 15, .external_lex_state = 12}, + [3769] = {.lex_state = 18, .external_lex_state = 16}, + [3770] = {.lex_state = 15, .external_lex_state = 12}, + [3771] = {.lex_state = 66, .external_lex_state = 15}, [3772] = {.lex_state = 5, .external_lex_state = 12}, - [3773] = {.lex_state = 5, .external_lex_state = 14}, + [3773] = {.lex_state = 5, .external_lex_state = 12}, [3774] = {.lex_state = 5, .external_lex_state = 12}, - [3775] = {.lex_state = 18, .external_lex_state = 11}, - [3776] = {.lex_state = 5, .external_lex_state = 16}, + [3775] = {.lex_state = 5, .external_lex_state = 12}, + [3776] = {.lex_state = 5, .external_lex_state = 14}, [3777] = {.lex_state = 5, .external_lex_state = 12}, - [3778] = {.lex_state = 20, .external_lex_state = 11}, + [3778] = {.lex_state = 5, .external_lex_state = 12}, [3779] = {.lex_state = 5, .external_lex_state = 12}, - [3780] = {.lex_state = 18, .external_lex_state = 16}, - [3781] = {.lex_state = 18, .external_lex_state = 11}, - [3782] = {.lex_state = 18, .external_lex_state = 11}, + [3780] = {.lex_state = 5, .external_lex_state = 12}, + [3781] = {.lex_state = 5, .external_lex_state = 16}, + [3782] = {.lex_state = 5, .external_lex_state = 12}, [3783] = {.lex_state = 18, .external_lex_state = 11}, [3784] = {.lex_state = 18, .external_lex_state = 11}, [3785] = {.lex_state = 18, .external_lex_state = 11}, [3786] = {.lex_state = 18, .external_lex_state = 11}, - [3787] = {.lex_state = 66, .external_lex_state = 15}, - [3788] = {.lex_state = 66, .external_lex_state = 11}, + [3787] = {.lex_state = 18, .external_lex_state = 11}, + [3788] = {.lex_state = 5, .external_lex_state = 12}, [3789] = {.lex_state = 5, .external_lex_state = 11}, - [3790] = {.lex_state = 15, .external_lex_state = 16}, - [3791] = {.lex_state = 5, .external_lex_state = 11}, - [3792] = {.lex_state = 66, .external_lex_state = 11}, - [3793] = {.lex_state = 5, .external_lex_state = 11}, - [3794] = {.lex_state = 5, .external_lex_state = 14}, - [3795] = {.lex_state = 15, .external_lex_state = 12}, - [3796] = {.lex_state = 15, .external_lex_state = 16}, - [3797] = {.lex_state = 15, .external_lex_state = 12}, - [3798] = {.lex_state = 5, .external_lex_state = 11}, + [3790] = {.lex_state = 66, .external_lex_state = 11}, + [3791] = {.lex_state = 66, .external_lex_state = 15}, + [3792] = {.lex_state = 66, .external_lex_state = 15}, + [3793] = {.lex_state = 66, .external_lex_state = 15}, + [3794] = {.lex_state = 5, .external_lex_state = 11}, + [3795] = {.lex_state = 66, .external_lex_state = 11}, + [3796] = {.lex_state = 5, .external_lex_state = 11}, + [3797] = {.lex_state = 5, .external_lex_state = 11}, + [3798] = {.lex_state = 66, .external_lex_state = 5}, [3799] = {.lex_state = 66, .external_lex_state = 5}, - [3800] = {.lex_state = 66, .external_lex_state = 15}, - [3801] = {.lex_state = 15, .external_lex_state = 12}, - [3802] = {.lex_state = 15, .external_lex_state = 12}, - [3803] = {.lex_state = 5, .external_lex_state = 11}, - [3804] = {.lex_state = 66, .external_lex_state = 5}, - [3805] = {.lex_state = 66, .external_lex_state = 5}, - [3806] = {.lex_state = 5, .external_lex_state = 11}, - [3807] = {.lex_state = 66, .external_lex_state = 5}, - [3808] = {.lex_state = 5, .external_lex_state = 11}, - [3809] = {.lex_state = 5, .external_lex_state = 11}, - [3810] = {.lex_state = 5, .external_lex_state = 16}, - [3811] = {.lex_state = 66, .external_lex_state = 11}, - [3812] = {.lex_state = 5, .external_lex_state = 11}, - [3813] = {.lex_state = 66, .external_lex_state = 11}, - [3814] = {.lex_state = 5, .external_lex_state = 11}, + [3800] = {.lex_state = 66, .external_lex_state = 5}, + [3801] = {.lex_state = 66, .external_lex_state = 5}, + [3802] = {.lex_state = 66, .external_lex_state = 15}, + [3803] = {.lex_state = 5, .external_lex_state = 14}, + [3804] = {.lex_state = 5, .external_lex_state = 11}, + [3805] = {.lex_state = 66, .external_lex_state = 15}, + [3806] = {.lex_state = 66, .external_lex_state = 15}, + [3807] = {.lex_state = 66, .external_lex_state = 15}, + [3808] = {.lex_state = 66, .external_lex_state = 15}, + [3809] = {.lex_state = 66, .external_lex_state = 15}, + [3810] = {.lex_state = 66, .external_lex_state = 11}, + [3811] = {.lex_state = 66, .external_lex_state = 15}, + [3812] = {.lex_state = 5, .external_lex_state = 14}, + [3813] = {.lex_state = 5, .external_lex_state = 11}, + [3814] = {.lex_state = 66, .external_lex_state = 11}, [3815] = {.lex_state = 66, .external_lex_state = 15}, - [3816] = {.lex_state = 66, .external_lex_state = 15}, - [3817] = {.lex_state = 15, .external_lex_state = 12}, + [3816] = {.lex_state = 15, .external_lex_state = 16}, + [3817] = {.lex_state = 5, .external_lex_state = 11}, [3818] = {.lex_state = 5, .external_lex_state = 11}, [3819] = {.lex_state = 5, .external_lex_state = 11}, - [3820] = {.lex_state = 5, .external_lex_state = 14}, + [3820] = {.lex_state = 66, .external_lex_state = 11}, [3821] = {.lex_state = 5, .external_lex_state = 11}, [3822] = {.lex_state = 66, .external_lex_state = 5}, - [3823] = {.lex_state = 66, .external_lex_state = 15}, - [3824] = {.lex_state = 5, .external_lex_state = 11}, - [3825] = {.lex_state = 66, .external_lex_state = 5}, - [3826] = {.lex_state = 66, .external_lex_state = 5}, - [3827] = {.lex_state = 66, .external_lex_state = 15}, - [3828] = {.lex_state = 66, .external_lex_state = 15}, - [3829] = {.lex_state = 66, .external_lex_state = 12}, - [3830] = {.lex_state = 66, .external_lex_state = 5}, - [3831] = {.lex_state = 15, .external_lex_state = 11}, - [3832] = {.lex_state = 66, .external_lex_state = 11}, - [3833] = {.lex_state = 66, .external_lex_state = 5}, - [3834] = {.lex_state = 66, .external_lex_state = 5}, + [3823] = {.lex_state = 5, .external_lex_state = 11}, + [3824] = {.lex_state = 15, .external_lex_state = 16}, + [3825] = {.lex_state = 66, .external_lex_state = 15}, + [3826] = {.lex_state = 15, .external_lex_state = 16}, + [3827] = {.lex_state = 5, .external_lex_state = 11}, + [3828] = {.lex_state = 66, .external_lex_state = 12}, + [3829] = {.lex_state = 5, .external_lex_state = 14}, + [3830] = {.lex_state = 66, .external_lex_state = 15}, + [3831] = {.lex_state = 66, .external_lex_state = 5}, + [3832] = {.lex_state = 5, .external_lex_state = 11}, + [3833] = {.lex_state = 15, .external_lex_state = 11}, + [3834] = {.lex_state = 5, .external_lex_state = 11}, [3835] = {.lex_state = 66, .external_lex_state = 15}, - [3836] = {.lex_state = 66, .external_lex_state = 15}, + [3836] = {.lex_state = 15, .external_lex_state = 16}, [3837] = {.lex_state = 66, .external_lex_state = 15}, [3838] = {.lex_state = 66, .external_lex_state = 15}, - [3839] = {.lex_state = 15, .external_lex_state = 12}, + [3839] = {.lex_state = 66, .external_lex_state = 15}, [3840] = {.lex_state = 66, .external_lex_state = 15}, - [3841] = {.lex_state = 5, .external_lex_state = 11}, - [3842] = {.lex_state = 5, .external_lex_state = 11}, - [3843] = {.lex_state = 66, .external_lex_state = 12}, - [3844] = {.lex_state = 66, .external_lex_state = 15}, - [3845] = {.lex_state = 66, .external_lex_state = 5}, - [3846] = {.lex_state = 66, .external_lex_state = 15}, - [3847] = {.lex_state = 66, .external_lex_state = 11}, - [3848] = {.lex_state = 66, .external_lex_state = 15}, - [3849] = {.lex_state = 66, .external_lex_state = 5}, - [3850] = {.lex_state = 15, .external_lex_state = 16}, - [3851] = {.lex_state = 15, .external_lex_state = 16}, - [3852] = {.lex_state = 5, .external_lex_state = 11}, - [3853] = {.lex_state = 66, .external_lex_state = 15}, + [3841] = {.lex_state = 66, .external_lex_state = 15}, + [3842] = {.lex_state = 66, .external_lex_state = 5}, + [3843] = {.lex_state = 66, .external_lex_state = 5}, + [3844] = {.lex_state = 5, .external_lex_state = 11}, + [3845] = {.lex_state = 15, .external_lex_state = 16}, + [3846] = {.lex_state = 15, .external_lex_state = 16}, + [3847] = {.lex_state = 5, .external_lex_state = 16}, + [3848] = {.lex_state = 15, .external_lex_state = 12}, + [3849] = {.lex_state = 66, .external_lex_state = 11}, + [3850] = {.lex_state = 5, .external_lex_state = 11}, + [3851] = {.lex_state = 5, .external_lex_state = 11}, + [3852] = {.lex_state = 66, .external_lex_state = 5}, + [3853] = {.lex_state = 15, .external_lex_state = 12}, [3854] = {.lex_state = 66, .external_lex_state = 15}, [3855] = {.lex_state = 66, .external_lex_state = 15}, - [3856] = {.lex_state = 66, .external_lex_state = 15}, - [3857] = {.lex_state = 66, .external_lex_state = 15}, - [3858] = {.lex_state = 66, .external_lex_state = 15}, + [3856] = {.lex_state = 15, .external_lex_state = 12}, + [3857] = {.lex_state = 15, .external_lex_state = 12}, + [3858] = {.lex_state = 15, .external_lex_state = 12}, [3859] = {.lex_state = 15, .external_lex_state = 16}, - [3860] = {.lex_state = 66, .external_lex_state = 15}, - [3861] = {.lex_state = 18, .external_lex_state = 12}, + [3860] = {.lex_state = 18, .external_lex_state = 12}, + [3861] = {.lex_state = 5, .external_lex_state = 11}, [3862] = {.lex_state = 66, .external_lex_state = 15}, - [3863] = {.lex_state = 15, .external_lex_state = 16}, + [3863] = {.lex_state = 66, .external_lex_state = 12}, [3864] = {.lex_state = 5, .external_lex_state = 11}, - [3865] = {.lex_state = 66, .external_lex_state = 11}, + [3865] = {.lex_state = 66, .external_lex_state = 5}, [3866] = {.lex_state = 5, .external_lex_state = 11}, - [3867] = {.lex_state = 15, .external_lex_state = 16}, - [3868] = {.lex_state = 5, .external_lex_state = 11}, - [3869] = {.lex_state = 66, .external_lex_state = 2}, - [3870] = {.lex_state = 66, .external_lex_state = 15}, - [3871] = {.lex_state = 66, .external_lex_state = 14}, - [3872] = {.lex_state = 67, .external_lex_state = 17}, - [3873] = {.lex_state = 14, .external_lex_state = 11}, - [3874] = {.lex_state = 66, .external_lex_state = 15}, - [3875] = {.lex_state = 18, .external_lex_state = 12}, - [3876] = {.lex_state = 14, .external_lex_state = 11}, - [3877] = {.lex_state = 18, .external_lex_state = 12}, - [3878] = {.lex_state = 18, .external_lex_state = 12}, - [3879] = {.lex_state = 5, .external_lex_state = 12}, - [3880] = {.lex_state = 16, .external_lex_state = 19}, - [3881] = {.lex_state = 14, .external_lex_state = 11}, - [3882] = {.lex_state = 66, .external_lex_state = 16}, - [3883] = {.lex_state = 66, .external_lex_state = 11}, + [3867] = {.lex_state = 66, .external_lex_state = 5}, + [3868] = {.lex_state = 15, .external_lex_state = 12}, + [3869] = {.lex_state = 66, .external_lex_state = 11}, + [3870] = {.lex_state = 5, .external_lex_state = 11}, + [3871] = {.lex_state = 66, .external_lex_state = 15}, + [3872] = {.lex_state = 66, .external_lex_state = 5}, + [3873] = {.lex_state = 18, .external_lex_state = 15}, + [3874] = {.lex_state = 66, .external_lex_state = 14}, + [3875] = {.lex_state = 66, .external_lex_state = 16}, + [3876] = {.lex_state = 0, .external_lex_state = 18}, + [3877] = {.lex_state = 66, .external_lex_state = 15}, + [3878] = {.lex_state = 66, .external_lex_state = 16}, + [3879] = {.lex_state = 66, .external_lex_state = 16}, + [3880] = {.lex_state = 14, .external_lex_state = 11}, + [3881] = {.lex_state = 66, .external_lex_state = 16}, + [3882] = {.lex_state = 66, .external_lex_state = 11}, + [3883] = {.lex_state = 18, .external_lex_state = 12}, [3884] = {.lex_state = 66, .external_lex_state = 16}, - [3885] = {.lex_state = 66, .external_lex_state = 16}, - [3886] = {.lex_state = 66, .external_lex_state = 16}, - [3887] = {.lex_state = 66, .external_lex_state = 11}, - [3888] = {.lex_state = 0, .external_lex_state = 18}, - [3889] = {.lex_state = 18, .external_lex_state = 12}, - [3890] = {.lex_state = 67, .external_lex_state = 17}, - [3891] = {.lex_state = 66, .external_lex_state = 2}, + [3885] = {.lex_state = 14, .external_lex_state = 11}, + [3886] = {.lex_state = 0, .external_lex_state = 18}, + [3887] = {.lex_state = 66, .external_lex_state = 16}, + [3888] = {.lex_state = 66, .external_lex_state = 16}, + [3889] = {.lex_state = 66, .external_lex_state = 14}, + [3890] = {.lex_state = 16, .external_lex_state = 19}, + [3891] = {.lex_state = 14, .external_lex_state = 11}, [3892] = {.lex_state = 66, .external_lex_state = 11}, - [3893] = {.lex_state = 14, .external_lex_state = 11}, - [3894] = {.lex_state = 66, .external_lex_state = 16}, + [3893] = {.lex_state = 68, .external_lex_state = 17}, + [3894] = {.lex_state = 66, .external_lex_state = 12}, [3895] = {.lex_state = 14, .external_lex_state = 11}, - [3896] = {.lex_state = 16, .external_lex_state = 19}, - [3897] = {.lex_state = 66, .external_lex_state = 14}, - [3898] = {.lex_state = 66, .external_lex_state = 12}, - [3899] = {.lex_state = 67, .external_lex_state = 17}, - [3900] = {.lex_state = 18, .external_lex_state = 12}, - [3901] = {.lex_state = 66, .external_lex_state = 16}, - [3902] = {.lex_state = 18, .external_lex_state = 12}, - [3903] = {.lex_state = 66, .external_lex_state = 16}, - [3904] = {.lex_state = 67, .external_lex_state = 17}, - [3905] = {.lex_state = 67, .external_lex_state = 17}, - [3906] = {.lex_state = 14, .external_lex_state = 11}, - [3907] = {.lex_state = 66, .external_lex_state = 16}, - [3908] = {.lex_state = 18, .external_lex_state = 15}, - [3909] = {.lex_state = 66, .external_lex_state = 14}, - [3910] = {.lex_state = 66, .external_lex_state = 2}, - [3911] = {.lex_state = 14, .external_lex_state = 11}, + [3896] = {.lex_state = 14, .external_lex_state = 11}, + [3897] = {.lex_state = 68, .external_lex_state = 17}, + [3898] = {.lex_state = 18, .external_lex_state = 12}, + [3899] = {.lex_state = 18, .external_lex_state = 12}, + [3900] = {.lex_state = 66, .external_lex_state = 14}, + [3901] = {.lex_state = 66, .external_lex_state = 2}, + [3902] = {.lex_state = 14, .external_lex_state = 11}, + [3903] = {.lex_state = 66, .external_lex_state = 14}, + [3904] = {.lex_state = 16, .external_lex_state = 19}, + [3905] = {.lex_state = 66, .external_lex_state = 16}, + [3906] = {.lex_state = 16, .external_lex_state = 19}, + [3907] = {.lex_state = 14, .external_lex_state = 11}, + [3908] = {.lex_state = 18, .external_lex_state = 12}, + [3909] = {.lex_state = 66, .external_lex_state = 11}, + [3910] = {.lex_state = 18, .external_lex_state = 12}, + [3911] = {.lex_state = 68, .external_lex_state = 17}, [3912] = {.lex_state = 14, .external_lex_state = 11}, - [3913] = {.lex_state = 66, .external_lex_state = 16}, - [3914] = {.lex_state = 66, .external_lex_state = 11}, - [3915] = {.lex_state = 66, .external_lex_state = 16}, - [3916] = {.lex_state = 66, .external_lex_state = 14}, - [3917] = {.lex_state = 66, .external_lex_state = 16}, - [3918] = {.lex_state = 67, .external_lex_state = 17}, + [3913] = {.lex_state = 14, .external_lex_state = 11}, + [3914] = {.lex_state = 66, .external_lex_state = 16}, + [3915] = {.lex_state = 66, .external_lex_state = 14}, + [3916] = {.lex_state = 66, .external_lex_state = 16}, + [3917] = {.lex_state = 66, .external_lex_state = 14}, + [3918] = {.lex_state = 66, .external_lex_state = 16}, [3919] = {.lex_state = 66, .external_lex_state = 11}, - [3920] = {.lex_state = 67, .external_lex_state = 17}, - [3921] = {.lex_state = 66, .external_lex_state = 15}, - [3922] = {.lex_state = 0, .external_lex_state = 18}, - [3923] = {.lex_state = 66, .external_lex_state = 16}, - [3924] = {.lex_state = 67, .external_lex_state = 17}, - [3925] = {.lex_state = 66, .external_lex_state = 16}, - [3926] = {.lex_state = 66, .external_lex_state = 16}, - [3927] = {.lex_state = 66, .external_lex_state = 16}, - [3928] = {.lex_state = 14, .external_lex_state = 11}, + [3920] = {.lex_state = 18, .external_lex_state = 12}, + [3921] = {.lex_state = 68, .external_lex_state = 17}, + [3922] = {.lex_state = 16, .external_lex_state = 19}, + [3923] = {.lex_state = 66, .external_lex_state = 2}, + [3924] = {.lex_state = 68, .external_lex_state = 17}, + [3925] = {.lex_state = 14, .external_lex_state = 11}, + [3926] = {.lex_state = 14, .external_lex_state = 11}, + [3927] = {.lex_state = 68, .external_lex_state = 17}, + [3928] = {.lex_state = 68, .external_lex_state = 17}, [3929] = {.lex_state = 66, .external_lex_state = 16}, [3930] = {.lex_state = 66, .external_lex_state = 16}, - [3931] = {.lex_state = 66, .external_lex_state = 15}, - [3932] = {.lex_state = 67, .external_lex_state = 17}, - [3933] = {.lex_state = 66, .external_lex_state = 14}, - [3934] = {.lex_state = 18, .external_lex_state = 16}, - [3935] = {.lex_state = 66, .external_lex_state = 11}, - [3936] = {.lex_state = 67, .external_lex_state = 17}, - [3937] = {.lex_state = 66, .external_lex_state = 12}, - [3938] = {.lex_state = 16, .external_lex_state = 19}, - [3939] = {.lex_state = 66, .external_lex_state = 16}, - [3940] = {.lex_state = 66, .external_lex_state = 2}, - [3941] = {.lex_state = 18, .external_lex_state = 14}, - [3942] = {.lex_state = 66, .external_lex_state = 16}, + [3931] = {.lex_state = 68, .external_lex_state = 17}, + [3932] = {.lex_state = 66, .external_lex_state = 16}, + [3933] = {.lex_state = 66, .external_lex_state = 2}, + [3934] = {.lex_state = 66, .external_lex_state = 16}, + [3935] = {.lex_state = 66, .external_lex_state = 2}, + [3936] = {.lex_state = 66, .external_lex_state = 12}, + [3937] = {.lex_state = 66, .external_lex_state = 14}, + [3938] = {.lex_state = 18, .external_lex_state = 16}, + [3939] = {.lex_state = 68, .external_lex_state = 17}, + [3940] = {.lex_state = 66, .external_lex_state = 16}, + [3941] = {.lex_state = 66, .external_lex_state = 2}, + [3942] = {.lex_state = 66, .external_lex_state = 15}, [3943] = {.lex_state = 66, .external_lex_state = 15}, - [3944] = {.lex_state = 66, .external_lex_state = 2}, - [3945] = {.lex_state = 66, .external_lex_state = 14}, - [3946] = {.lex_state = 18, .external_lex_state = 12}, - [3947] = {.lex_state = 66, .external_lex_state = 11}, - [3948] = {.lex_state = 66, .external_lex_state = 11}, - [3949] = {.lex_state = 67, .external_lex_state = 17}, - [3950] = {.lex_state = 67, .external_lex_state = 17}, - [3951] = {.lex_state = 66, .external_lex_state = 11}, - [3952] = {.lex_state = 66, .external_lex_state = 11}, - [3953] = {.lex_state = 66, .external_lex_state = 14}, - [3954] = {.lex_state = 14, .external_lex_state = 11}, - [3955] = {.lex_state = 14, .external_lex_state = 11}, + [3944] = {.lex_state = 66, .external_lex_state = 11}, + [3945] = {.lex_state = 68, .external_lex_state = 17}, + [3946] = {.lex_state = 66, .external_lex_state = 11}, + [3947] = {.lex_state = 18, .external_lex_state = 12}, + [3948] = {.lex_state = 18, .external_lex_state = 12}, + [3949] = {.lex_state = 18, .external_lex_state = 12}, + [3950] = {.lex_state = 18, .external_lex_state = 12}, + [3951] = {.lex_state = 18, .external_lex_state = 12}, + [3952] = {.lex_state = 18, .external_lex_state = 12}, + [3953] = {.lex_state = 66, .external_lex_state = 16}, + [3954] = {.lex_state = 66, .external_lex_state = 11}, + [3955] = {.lex_state = 5, .external_lex_state = 12}, [3956] = {.lex_state = 66, .external_lex_state = 2}, - [3957] = {.lex_state = 66, .external_lex_state = 11}, - [3958] = {.lex_state = 14, .external_lex_state = 11}, - [3959] = {.lex_state = 66, .external_lex_state = 2}, - [3960] = {.lex_state = 16, .external_lex_state = 19}, - [3961] = {.lex_state = 66, .external_lex_state = 14}, - [3962] = {.lex_state = 18, .external_lex_state = 12}, - [3963] = {.lex_state = 18, .external_lex_state = 12}, - [3964] = {.lex_state = 18, .external_lex_state = 12}, - [3965] = {.lex_state = 18, .external_lex_state = 12}, + [3957] = {.lex_state = 66, .external_lex_state = 16}, + [3958] = {.lex_state = 66, .external_lex_state = 14}, + [3959] = {.lex_state = 68, .external_lex_state = 17}, + [3960] = {.lex_state = 66, .external_lex_state = 16}, + [3961] = {.lex_state = 18, .external_lex_state = 14}, + [3962] = {.lex_state = 66, .external_lex_state = 14}, + [3963] = {.lex_state = 66, .external_lex_state = 2}, + [3964] = {.lex_state = 66, .external_lex_state = 11}, + [3965] = {.lex_state = 66, .external_lex_state = 15}, [3966] = {.lex_state = 18, .external_lex_state = 12}, - [3967] = {.lex_state = 18, .external_lex_state = 12}, - [3968] = {.lex_state = 66, .external_lex_state = 16}, - [3969] = {.lex_state = 66, .external_lex_state = 14}, - [3970] = {.lex_state = 66, .external_lex_state = 16}, - [3971] = {.lex_state = 15, .external_lex_state = 16}, - [3972] = {.lex_state = 66, .external_lex_state = 15}, - [3973] = {.lex_state = 66, .external_lex_state = 14}, + [3967] = {.lex_state = 66, .external_lex_state = 16}, + [3968] = {.lex_state = 68, .external_lex_state = 17}, + [3969] = {.lex_state = 14, .external_lex_state = 11}, + [3970] = {.lex_state = 66, .external_lex_state = 11}, + [3971] = {.lex_state = 66, .external_lex_state = 16}, + [3972] = {.lex_state = 66, .external_lex_state = 11}, + [3973] = {.lex_state = 66, .external_lex_state = 15}, [3974] = {.lex_state = 66, .external_lex_state = 11}, - [3975] = {.lex_state = 66, .external_lex_state = 11}, - [3976] = {.lex_state = 66, .external_lex_state = 14}, - [3977] = {.lex_state = 66, .external_lex_state = 11}, + [3975] = {.lex_state = 66, .external_lex_state = 15}, + [3976] = {.lex_state = 15, .external_lex_state = 16}, + [3977] = {.lex_state = 66, .external_lex_state = 12}, [3978] = {.lex_state = 66, .external_lex_state = 11}, [3979] = {.lex_state = 66, .external_lex_state = 11}, [3980] = {.lex_state = 66, .external_lex_state = 11}, [3981] = {.lex_state = 66, .external_lex_state = 11}, [3982] = {.lex_state = 66, .external_lex_state = 11}, - [3983] = {.lex_state = 66, .external_lex_state = 16}, - [3984] = {.lex_state = 66, .external_lex_state = 15}, + [3983] = {.lex_state = 66, .external_lex_state = 11}, + [3984] = {.lex_state = 66, .external_lex_state = 11}, [3985] = {.lex_state = 66, .external_lex_state = 11}, - [3986] = {.lex_state = 15, .external_lex_state = 14}, - [3987] = {.lex_state = 66, .external_lex_state = 11}, + [3986] = {.lex_state = 66, .external_lex_state = 11}, + [3987] = {.lex_state = 15, .external_lex_state = 15}, [3988] = {.lex_state = 66, .external_lex_state = 11}, [3989] = {.lex_state = 66, .external_lex_state = 11}, - [3990] = {.lex_state = 66, .external_lex_state = 14}, + [3990] = {.lex_state = 66, .external_lex_state = 11}, [3991] = {.lex_state = 66, .external_lex_state = 11}, - [3992] = {.lex_state = 66, .external_lex_state = 12}, - [3993] = {.lex_state = 66, .external_lex_state = 11}, - [3994] = {.lex_state = 66, .external_lex_state = 11}, - [3995] = {.lex_state = 66, .external_lex_state = 16}, - [3996] = {.lex_state = 66, .external_lex_state = 15}, + [3992] = {.lex_state = 66, .external_lex_state = 11}, + [3993] = {.lex_state = 66, .external_lex_state = 12}, + [3994] = {.lex_state = 66, .external_lex_state = 16}, + [3995] = {.lex_state = 66, .external_lex_state = 11}, + [3996] = {.lex_state = 66, .external_lex_state = 11}, [3997] = {.lex_state = 66, .external_lex_state = 11}, - [3998] = {.lex_state = 66, .external_lex_state = 16}, - [3999] = {.lex_state = 66, .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 = 11}, [4001] = {.lex_state = 66, .external_lex_state = 11}, - [4002] = {.lex_state = 66, .external_lex_state = 7}, + [4002] = {.lex_state = 66, .external_lex_state = 11}, [4003] = {.lex_state = 66, .external_lex_state = 11}, - [4004] = {.lex_state = 15, .external_lex_state = 16}, - [4005] = {.lex_state = 66, .external_lex_state = 11}, + [4004] = {.lex_state = 66, .external_lex_state = 12}, + [4005] = {.lex_state = 66, .external_lex_state = 16}, [4006] = {.lex_state = 66, .external_lex_state = 11}, [4007] = {.lex_state = 66, .external_lex_state = 11}, [4008] = {.lex_state = 66, .external_lex_state = 11}, - [4009] = {.lex_state = 66, .external_lex_state = 15}, + [4009] = {.lex_state = 66, .external_lex_state = 11}, [4010] = {.lex_state = 66, .external_lex_state = 11}, [4011] = {.lex_state = 66, .external_lex_state = 11}, [4012] = {.lex_state = 66, .external_lex_state = 11}, - [4013] = {.lex_state = 66, .external_lex_state = 14}, - [4014] = {.lex_state = 66, .external_lex_state = 15}, - [4015] = {.lex_state = 66, .external_lex_state = 15}, - [4016] = {.lex_state = 66, .external_lex_state = 11}, - [4017] = {.lex_state = 66, .external_lex_state = 15}, + [4013] = {.lex_state = 66, .external_lex_state = 11}, + [4014] = {.lex_state = 15, .external_lex_state = 16}, + [4015] = {.lex_state = 66, .external_lex_state = 8}, + [4016] = {.lex_state = 66, .external_lex_state = 15}, + [4017] = {.lex_state = 15, .external_lex_state = 15}, [4018] = {.lex_state = 66, .external_lex_state = 11}, [4019] = {.lex_state = 66, .external_lex_state = 11}, - [4020] = {.lex_state = 66, .external_lex_state = 14}, + [4020] = {.lex_state = 66, .external_lex_state = 11}, [4021] = {.lex_state = 66, .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 = 11}, - [4025] = {.lex_state = 66, .external_lex_state = 11}, - [4026] = {.lex_state = 15, .external_lex_state = 15}, - [4027] = {.lex_state = 66, .external_lex_state = 14}, - [4028] = {.lex_state = 66, .external_lex_state = 15}, - [4029] = {.lex_state = 66, .external_lex_state = 16}, + [4024] = {.lex_state = 66, .external_lex_state = 15}, + [4025] = {.lex_state = 66, .external_lex_state = 14}, + [4026] = {.lex_state = 66, .external_lex_state = 14}, + [4027] = {.lex_state = 66, .external_lex_state = 11}, + [4028] = {.lex_state = 66, .external_lex_state = 11}, + [4029] = {.lex_state = 66, .external_lex_state = 11}, [4030] = {.lex_state = 66, .external_lex_state = 11}, - [4031] = {.lex_state = 66, .external_lex_state = 16}, - [4032] = {.lex_state = 66, .external_lex_state = 14}, - [4033] = {.lex_state = 12, .external_lex_state = 12}, + [4031] = {.lex_state = 66, .external_lex_state = 11}, + [4032] = {.lex_state = 66, .external_lex_state = 11}, + [4033] = {.lex_state = 66, .external_lex_state = 11}, [4034] = {.lex_state = 66, .external_lex_state = 11}, - [4035] = {.lex_state = 66, .external_lex_state = 15}, - [4036] = {.lex_state = 66, .external_lex_state = 14}, - [4037] = {.lex_state = 15, .external_lex_state = 15}, + [4035] = {.lex_state = 66, .external_lex_state = 11}, + [4036] = {.lex_state = 66, .external_lex_state = 11}, + [4037] = {.lex_state = 66, .external_lex_state = 11}, [4038] = {.lex_state = 66, .external_lex_state = 11}, - [4039] = {.lex_state = 66, .external_lex_state = 11}, - [4040] = {.lex_state = 66, .external_lex_state = 11}, - [4041] = {.lex_state = 66, .external_lex_state = 11}, - [4042] = {.lex_state = 66, .external_lex_state = 11}, - [4043] = {.lex_state = 66, .external_lex_state = 11}, - [4044] = {.lex_state = 66, .external_lex_state = 11}, - [4045] = {.lex_state = 66, .external_lex_state = 14}, - [4046] = {.lex_state = 66, .external_lex_state = 11}, + [4039] = {.lex_state = 66, .external_lex_state = 14}, + [4040] = {.lex_state = 12, .external_lex_state = 12}, + [4041] = {.lex_state = 66, .external_lex_state = 16}, + [4042] = {.lex_state = 66, .external_lex_state = 15}, + [4043] = {.lex_state = 66, .external_lex_state = 14}, + [4044] = {.lex_state = 66, .external_lex_state = 12}, + [4045] = {.lex_state = 66, .external_lex_state = 16}, + [4046] = {.lex_state = 15, .external_lex_state = 15}, [4047] = {.lex_state = 66, .external_lex_state = 11}, - [4048] = {.lex_state = 66, .external_lex_state = 12}, - [4049] = {.lex_state = 66, .external_lex_state = 14}, + [4048] = {.lex_state = 66, .external_lex_state = 14}, + [4049] = {.lex_state = 66, .external_lex_state = 15}, [4050] = {.lex_state = 66, .external_lex_state = 11}, - [4051] = {.lex_state = 66, .external_lex_state = 14}, - [4052] = {.lex_state = 66, .external_lex_state = 12}, + [4051] = {.lex_state = 66, .external_lex_state = 11}, + [4052] = {.lex_state = 66, .external_lex_state = 14}, [4053] = {.lex_state = 66, .external_lex_state = 16}, [4054] = {.lex_state = 66, .external_lex_state = 11}, [4055] = {.lex_state = 66, .external_lex_state = 11}, - [4056] = {.lex_state = 66, .external_lex_state = 14}, - [4057] = {.lex_state = 66, .external_lex_state = 16}, - [4058] = {.lex_state = 15, .external_lex_state = 15}, + [4056] = {.lex_state = 66, .external_lex_state = 11}, + [4057] = {.lex_state = 66, .external_lex_state = 11}, + [4058] = {.lex_state = 66, .external_lex_state = 11}, [4059] = {.lex_state = 66, .external_lex_state = 11}, - [4060] = {.lex_state = 66, .external_lex_state = 16}, - [4061] = {.lex_state = 15, .external_lex_state = 14}, - [4062] = {.lex_state = 66, .external_lex_state = 11}, + [4060] = {.lex_state = 66, .external_lex_state = 14}, + [4061] = {.lex_state = 66, .external_lex_state = 15}, + [4062] = {.lex_state = 66, .external_lex_state = 14}, [4063] = {.lex_state = 66, .external_lex_state = 14}, - [4064] = {.lex_state = 66, .external_lex_state = 11}, - [4065] = {.lex_state = 66, .external_lex_state = 14}, - [4066] = {.lex_state = 66, .external_lex_state = 8}, - [4067] = {.lex_state = 66, .external_lex_state = 11}, + [4064] = {.lex_state = 66, .external_lex_state = 12}, + [4065] = {.lex_state = 66, .external_lex_state = 16}, + [4066] = {.lex_state = 66, .external_lex_state = 16}, + [4067] = {.lex_state = 66, .external_lex_state = 14}, [4068] = {.lex_state = 66, .external_lex_state = 11}, [4069] = {.lex_state = 66, .external_lex_state = 11}, [4070] = {.lex_state = 66, .external_lex_state = 11}, - [4071] = {.lex_state = 66, .external_lex_state = 12}, - [4072] = {.lex_state = 66, .external_lex_state = 12}, + [4071] = {.lex_state = 66, .external_lex_state = 11}, + [4072] = {.lex_state = 66, .external_lex_state = 11}, [4073] = {.lex_state = 66, .external_lex_state = 11}, - [4074] = {.lex_state = 66, .external_lex_state = 11}, + [4074] = {.lex_state = 66, .external_lex_state = 15}, [4075] = {.lex_state = 66, .external_lex_state = 11}, [4076] = {.lex_state = 66, .external_lex_state = 11}, - [4077] = {.lex_state = 66, .external_lex_state = 11}, + [4077] = {.lex_state = 66, .external_lex_state = 14}, [4078] = {.lex_state = 66, .external_lex_state = 11}, - [4079] = {.lex_state = 66, .external_lex_state = 12}, + [4079] = {.lex_state = 66, .external_lex_state = 15}, [4080] = {.lex_state = 66, .external_lex_state = 11}, [4081] = {.lex_state = 66, .external_lex_state = 11}, - [4082] = {.lex_state = 66, .external_lex_state = 12}, + [4082] = {.lex_state = 66, .external_lex_state = 14}, [4083] = {.lex_state = 66, .external_lex_state = 11}, - [4084] = {.lex_state = 66, .external_lex_state = 6}, - [4085] = {.lex_state = 66, .external_lex_state = 12}, + [4084] = {.lex_state = 66, .external_lex_state = 11}, + [4085] = {.lex_state = 66, .external_lex_state = 11}, [4086] = {.lex_state = 66, .external_lex_state = 14}, - [4087] = {.lex_state = 66, .external_lex_state = 11}, - [4088] = {.lex_state = 66, .external_lex_state = 11}, + [4087] = {.lex_state = 66, .external_lex_state = 7}, + [4088] = {.lex_state = 66, .external_lex_state = 14}, [4089] = {.lex_state = 66, .external_lex_state = 11}, - [4090] = {.lex_state = 66, .external_lex_state = 16}, + [4090] = {.lex_state = 66, .external_lex_state = 11}, [4091] = {.lex_state = 66, .external_lex_state = 11}, - [4092] = {.lex_state = 66, .external_lex_state = 12}, - [4093] = {.lex_state = 66, .external_lex_state = 11}, + [4092] = {.lex_state = 66, .external_lex_state = 11}, + [4093] = {.lex_state = 66, .external_lex_state = 14}, [4094] = {.lex_state = 66, .external_lex_state = 11}, [4095] = {.lex_state = 66, .external_lex_state = 11}, - [4096] = {.lex_state = 66, .external_lex_state = 11}, + [4096] = {.lex_state = 66, .external_lex_state = 14}, [4097] = {.lex_state = 66, .external_lex_state = 11}, - [4098] = {.lex_state = 66, .external_lex_state = 11}, - [4099] = {.lex_state = 66, .external_lex_state = 11}, - [4100] = {.lex_state = 66, .external_lex_state = 16}, + [4098] = {.lex_state = 15, .external_lex_state = 14}, + [4099] = {.lex_state = 66, .external_lex_state = 15}, + [4100] = {.lex_state = 66, .external_lex_state = 15}, [4101] = {.lex_state = 66, .external_lex_state = 11}, - [4102] = {.lex_state = 66, .external_lex_state = 11}, - [4103] = {.lex_state = 66, .external_lex_state = 11}, - [4104] = {.lex_state = 66, .external_lex_state = 11}, - [4105] = {.lex_state = 66, .external_lex_state = 12}, - [4106] = {.lex_state = 66, .external_lex_state = 16}, - [4107] = {.lex_state = 66, .external_lex_state = 15}, + [4102] = {.lex_state = 66, .external_lex_state = 12}, + [4103] = {.lex_state = 66, .external_lex_state = 12}, + [4104] = {.lex_state = 66, .external_lex_state = 12}, + [4105] = {.lex_state = 66, .external_lex_state = 16}, + [4106] = {.lex_state = 66, .external_lex_state = 11}, + [4107] = {.lex_state = 66, .external_lex_state = 12}, [4108] = {.lex_state = 66, .external_lex_state = 11}, - [4109] = {.lex_state = 66, .external_lex_state = 11}, - [4110] = {.lex_state = 66, .external_lex_state = 12}, + [4109] = {.lex_state = 66, .external_lex_state = 12}, + [4110] = {.lex_state = 66, .external_lex_state = 11}, [4111] = {.lex_state = 66, .external_lex_state = 11}, [4112] = {.lex_state = 66, .external_lex_state = 11}, [4113] = {.lex_state = 66, .external_lex_state = 11}, - [4114] = {.lex_state = 66, .external_lex_state = 11}, - [4115] = {.lex_state = 66, .external_lex_state = 16}, + [4114] = {.lex_state = 15, .external_lex_state = 14}, + [4115] = {.lex_state = 66, .external_lex_state = 15}, [4116] = {.lex_state = 66, .external_lex_state = 11}, - [4117] = {.lex_state = 66, .external_lex_state = 11}, + [4117] = {.lex_state = 66, .external_lex_state = 14}, [4118] = {.lex_state = 66, .external_lex_state = 11}, - [4119] = {.lex_state = 66, .external_lex_state = 15}, + [4119] = {.lex_state = 66, .external_lex_state = 11}, [4120] = {.lex_state = 66, .external_lex_state = 11}, - [4121] = {.lex_state = 66, .external_lex_state = 14}, - [4122] = {.lex_state = 66, .external_lex_state = 14}, - [4123] = {.lex_state = 66, .external_lex_state = 14}, + [4121] = {.lex_state = 66, .external_lex_state = 16}, + [4122] = {.lex_state = 66, .external_lex_state = 15}, + [4123] = {.lex_state = 66, .external_lex_state = 6}, [4124] = {.lex_state = 66, .external_lex_state = 11}, [4125] = {.lex_state = 66, .external_lex_state = 12}, [4126] = {.lex_state = 66, .external_lex_state = 11}, - [4127] = {.lex_state = 66, .external_lex_state = 11}, - [4128] = {.lex_state = 66, .external_lex_state = 11}, - [4129] = {.lex_state = 66, .external_lex_state = 11}, - [4130] = {.lex_state = 66, .external_lex_state = 11}, - [4131] = {.lex_state = 66, .external_lex_state = 15}, - [4132] = {.lex_state = 66, .external_lex_state = 11}, + [4127] = {.lex_state = 66, .external_lex_state = 16}, + [4128] = {.lex_state = 66, .external_lex_state = 16}, + [4129] = {.lex_state = 66, .external_lex_state = 14}, + [4130] = {.lex_state = 66, .external_lex_state = 14}, + [4131] = {.lex_state = 66, .external_lex_state = 11}, + [4132] = {.lex_state = 66, .external_lex_state = 15}, [4133] = {.lex_state = 66, .external_lex_state = 11}, [4134] = {.lex_state = 66, .external_lex_state = 11}, [4135] = {.lex_state = 66, .external_lex_state = 11}, - [4136] = {.lex_state = 66, .external_lex_state = 12}, + [4136] = {.lex_state = 66, .external_lex_state = 11}, [4137] = {.lex_state = 66, .external_lex_state = 12}, - [4138] = {.lex_state = 15, .external_lex_state = 12}, - [4139] = {.lex_state = 66, .external_lex_state = 11}, - [4140] = {.lex_state = 66, .external_lex_state = 11}, - [4141] = {.lex_state = 66, .external_lex_state = 16}, - [4142] = {.lex_state = 66, .external_lex_state = 11}, - [4143] = {.lex_state = 66, .external_lex_state = 14}, + [4138] = {.lex_state = 66, .external_lex_state = 11}, + [4139] = {.lex_state = 66, .external_lex_state = 16}, + [4140] = {.lex_state = 66, .external_lex_state = 16}, + [4141] = {.lex_state = 66, .external_lex_state = 12}, + [4142] = {.lex_state = 15, .external_lex_state = 12}, + [4143] = {.lex_state = 66, .external_lex_state = 12}, [4144] = {.lex_state = 66, .external_lex_state = 11}, - [4145] = {.lex_state = 66, .external_lex_state = 16}, - [4146] = {.lex_state = 66, .external_lex_state = 14}, - [4147] = {.lex_state = 66, .external_lex_state = 14}, - [4148] = {.lex_state = 66, .external_lex_state = 12}, - [4149] = {.lex_state = 67, .external_lex_state = 17}, - [4150] = {.lex_state = 66, .external_lex_state = 12}, + [4145] = {.lex_state = 66, .external_lex_state = 11}, + [4146] = {.lex_state = 66, .external_lex_state = 11}, + [4147] = {.lex_state = 66, .external_lex_state = 11}, + [4148] = {.lex_state = 66, .external_lex_state = 11}, + [4149] = {.lex_state = 66, .external_lex_state = 12}, + [4150] = {.lex_state = 66, .external_lex_state = 11}, [4151] = {.lex_state = 66, .external_lex_state = 11}, - [4152] = {.lex_state = 66, .external_lex_state = 15}, - [4153] = {.lex_state = 18, .external_lex_state = 11}, - [4154] = {.lex_state = 66, .external_lex_state = 16}, - [4155] = {.lex_state = 66, .external_lex_state = 15}, + [4152] = {.lex_state = 66, .external_lex_state = 12}, + [4153] = {.lex_state = 66, .external_lex_state = 14}, + [4154] = {.lex_state = 15, .external_lex_state = 15}, + [4155] = {.lex_state = 66, .external_lex_state = 12}, [4156] = {.lex_state = 66, .external_lex_state = 16}, - [4157] = {.lex_state = 66, .external_lex_state = 12}, - [4158] = {.lex_state = 66, .external_lex_state = 15}, - [4159] = {.lex_state = 18, .external_lex_state = 11}, - [4160] = {.lex_state = 66, .external_lex_state = 12}, - [4161] = {.lex_state = 12, .external_lex_state = 11}, - [4162] = {.lex_state = 66, .external_lex_state = 12}, - [4163] = {.lex_state = 66, .external_lex_state = 15}, - [4164] = {.lex_state = 66, .external_lex_state = 14}, + [4157] = {.lex_state = 66, .external_lex_state = 11}, + [4158] = {.lex_state = 66, .external_lex_state = 11}, + [4159] = {.lex_state = 0, .external_lex_state = 18}, + [4160] = {.lex_state = 66, .external_lex_state = 11}, + [4161] = {.lex_state = 66, .external_lex_state = 16}, + [4162] = {.lex_state = 66, .external_lex_state = 11}, + [4163] = {.lex_state = 0, .external_lex_state = 18}, + [4164] = {.lex_state = 66, .external_lex_state = 11}, [4165] = {.lex_state = 66, .external_lex_state = 12}, [4166] = {.lex_state = 66, .external_lex_state = 12}, - [4167] = {.lex_state = 66, .external_lex_state = 15}, - [4168] = {.lex_state = 66, .external_lex_state = 16}, - [4169] = {.lex_state = 66, .external_lex_state = 14}, - [4170] = {.lex_state = 0, .external_lex_state = 18}, - [4171] = {.lex_state = 0, .external_lex_state = 18}, - [4172] = {.lex_state = 66, .external_lex_state = 14}, + [4167] = {.lex_state = 66, .external_lex_state = 12}, + [4168] = {.lex_state = 66, .external_lex_state = 11}, + [4169] = {.lex_state = 18, .external_lex_state = 11}, + [4170] = {.lex_state = 66, .external_lex_state = 14}, + [4171] = {.lex_state = 66, .external_lex_state = 15}, + [4172] = {.lex_state = 66, .external_lex_state = 12}, [4173] = {.lex_state = 66, .external_lex_state = 11}, [4174] = {.lex_state = 0, .external_lex_state = 18}, - [4175] = {.lex_state = 66, .external_lex_state = 14}, - [4176] = {.lex_state = 66, .external_lex_state = 16}, - [4177] = {.lex_state = 12, .external_lex_state = 11}, - [4178] = {.lex_state = 66, .external_lex_state = 14}, - [4179] = {.lex_state = 66, .external_lex_state = 11}, + [4175] = {.lex_state = 66, .external_lex_state = 12}, + [4176] = {.lex_state = 18, .external_lex_state = 11}, + [4177] = {.lex_state = 18, .external_lex_state = 11}, + [4178] = {.lex_state = 18, .external_lex_state = 11}, + [4179] = {.lex_state = 18, .external_lex_state = 11}, [4180] = {.lex_state = 66, .external_lex_state = 14}, - [4181] = {.lex_state = 66, .external_lex_state = 12}, - [4182] = {.lex_state = 66, .external_lex_state = 14}, - [4183] = {.lex_state = 66, .external_lex_state = 15}, - [4184] = {.lex_state = 66, .external_lex_state = 11}, - [4185] = {.lex_state = 15, .external_lex_state = 16}, - [4186] = {.lex_state = 66, .external_lex_state = 16}, - [4187] = {.lex_state = 18, .external_lex_state = 11}, + [4181] = {.lex_state = 66, .external_lex_state = 14}, + [4182] = {.lex_state = 68, .external_lex_state = 17}, + [4183] = {.lex_state = 66, .external_lex_state = 11}, + [4184] = {.lex_state = 66, .external_lex_state = 14}, + [4185] = {.lex_state = 68, .external_lex_state = 17}, + [4186] = {.lex_state = 66, .external_lex_state = 15}, + [4187] = {.lex_state = 66, .external_lex_state = 14}, [4188] = {.lex_state = 66, .external_lex_state = 12}, - [4189] = {.lex_state = 18, .external_lex_state = 11}, - [4190] = {.lex_state = 66, .external_lex_state = 16}, - [4191] = {.lex_state = 66, .external_lex_state = 15}, - [4192] = {.lex_state = 66, .external_lex_state = 16}, - [4193] = {.lex_state = 66, .external_lex_state = 11}, - [4194] = {.lex_state = 66, .external_lex_state = 14}, - [4195] = {.lex_state = 66, .external_lex_state = 15}, - [4196] = {.lex_state = 66, .external_lex_state = 14}, - [4197] = {.lex_state = 66, .external_lex_state = 11}, - [4198] = {.lex_state = 66, .external_lex_state = 11}, - [4199] = {.lex_state = 66, .external_lex_state = 15}, + [4189] = {.lex_state = 66, .external_lex_state = 14}, + [4190] = {.lex_state = 66, .external_lex_state = 15}, + [4191] = {.lex_state = 66, .external_lex_state = 16}, + [4192] = {.lex_state = 66, .external_lex_state = 11}, + [4193] = {.lex_state = 18, .external_lex_state = 11}, + [4194] = {.lex_state = 66, .external_lex_state = 12}, + [4195] = {.lex_state = 66, .external_lex_state = 12}, + [4196] = {.lex_state = 66, .external_lex_state = 12}, + [4197] = {.lex_state = 18, .external_lex_state = 11}, + [4198] = {.lex_state = 5, .external_lex_state = 12}, + [4199] = {.lex_state = 66, .external_lex_state = 14}, [4200] = {.lex_state = 66, .external_lex_state = 15}, - [4201] = {.lex_state = 66, .external_lex_state = 16}, - [4202] = {.lex_state = 66, .external_lex_state = 15}, + [4201] = {.lex_state = 66, .external_lex_state = 15}, + [4202] = {.lex_state = 66, .external_lex_state = 11}, [4203] = {.lex_state = 66, .external_lex_state = 12}, - [4204] = {.lex_state = 15, .external_lex_state = 15}, - [4205] = {.lex_state = 66, .external_lex_state = 12}, - [4206] = {.lex_state = 66, .external_lex_state = 16}, - [4207] = {.lex_state = 67, .external_lex_state = 17}, - [4208] = {.lex_state = 66, .external_lex_state = 12}, - [4209] = {.lex_state = 66, .external_lex_state = 12}, - [4210] = {.lex_state = 66, .external_lex_state = 11}, - [4211] = {.lex_state = 66, .external_lex_state = 11}, - [4212] = {.lex_state = 5, .external_lex_state = 12}, - [4213] = {.lex_state = 66, .external_lex_state = 12}, - [4214] = {.lex_state = 66, .external_lex_state = 12}, - [4215] = {.lex_state = 66, .external_lex_state = 15}, - [4216] = {.lex_state = 66, .external_lex_state = 16}, - [4217] = {.lex_state = 66, .external_lex_state = 16}, - [4218] = {.lex_state = 0, .external_lex_state = 18}, + [4204] = {.lex_state = 66, .external_lex_state = 14}, + [4205] = {.lex_state = 66, .external_lex_state = 16}, + [4206] = {.lex_state = 66, .external_lex_state = 15}, + [4207] = {.lex_state = 66, .external_lex_state = 14}, + [4208] = {.lex_state = 12, .external_lex_state = 11}, + [4209] = {.lex_state = 66, .external_lex_state = 11}, + [4210] = {.lex_state = 66, .external_lex_state = 14}, + [4211] = {.lex_state = 15, .external_lex_state = 16}, + [4212] = {.lex_state = 66, .external_lex_state = 12}, + [4213] = {.lex_state = 18, .external_lex_state = 11}, + [4214] = {.lex_state = 0, .external_lex_state = 18}, + [4215] = {.lex_state = 66, .external_lex_state = 12}, + [4216] = {.lex_state = 66, .external_lex_state = 15}, + [4217] = {.lex_state = 66, .external_lex_state = 15}, + [4218] = {.lex_state = 66, .external_lex_state = 16}, [4219] = {.lex_state = 66, .external_lex_state = 12}, - [4220] = {.lex_state = 66, .external_lex_state = 14}, - [4221] = {.lex_state = 66, .external_lex_state = 11}, + [4220] = {.lex_state = 66, .external_lex_state = 15}, + [4221] = {.lex_state = 66, .external_lex_state = 14}, [4222] = {.lex_state = 66, .external_lex_state = 11}, - [4223] = {.lex_state = 66, .external_lex_state = 15}, - [4224] = {.lex_state = 66, .external_lex_state = 14}, - [4225] = {.lex_state = 0, .external_lex_state = 18}, - [4226] = {.lex_state = 0, .external_lex_state = 18}, - [4227] = {.lex_state = 0, .external_lex_state = 18}, - [4228] = {.lex_state = 18, .external_lex_state = 11}, - [4229] = {.lex_state = 66, .external_lex_state = 11}, - [4230] = {.lex_state = 66, .external_lex_state = 11}, - [4231] = {.lex_state = 15, .external_lex_state = 16}, - [4232] = {.lex_state = 18, .external_lex_state = 11}, - [4233] = {.lex_state = 66, .external_lex_state = 15}, - [4234] = {.lex_state = 66, .external_lex_state = 12}, - [4235] = {.lex_state = 66, .external_lex_state = 14}, - [4236] = {.lex_state = 66, .external_lex_state = 11}, - [4237] = {.lex_state = 66, .external_lex_state = 12}, - [4238] = {.lex_state = 18, .external_lex_state = 11}, - [4239] = {.lex_state = 67, .external_lex_state = 17}, - [4240] = {.lex_state = 66, .external_lex_state = 12}, - [4241] = {.lex_state = 18, .external_lex_state = 11}, - [4242] = {.lex_state = 66, .external_lex_state = 11}, + [4223] = {.lex_state = 66, .external_lex_state = 14}, + [4224] = {.lex_state = 66, .external_lex_state = 12}, + [4225] = {.lex_state = 66, .external_lex_state = 14}, + [4226] = {.lex_state = 66, .external_lex_state = 16}, + [4227] = {.lex_state = 66, .external_lex_state = 12}, + [4228] = {.lex_state = 66, .external_lex_state = 16}, + [4229] = {.lex_state = 66, .external_lex_state = 15}, + [4230] = {.lex_state = 66, .external_lex_state = 14}, + [4231] = {.lex_state = 0, .external_lex_state = 18}, + [4232] = {.lex_state = 66, .external_lex_state = 16}, + [4233] = {.lex_state = 66, .external_lex_state = 11}, + [4234] = {.lex_state = 12, .external_lex_state = 11}, + [4235] = {.lex_state = 66, .external_lex_state = 15}, + [4236] = {.lex_state = 15, .external_lex_state = 16}, + [4237] = {.lex_state = 68, .external_lex_state = 17}, + [4238] = {.lex_state = 0, .external_lex_state = 18}, + [4239] = {.lex_state = 66, .external_lex_state = 12}, + [4240] = {.lex_state = 66, .external_lex_state = 16}, + [4241] = {.lex_state = 66, .external_lex_state = 16}, + [4242] = {.lex_state = 66, .external_lex_state = 14}, [4243] = {.lex_state = 66, .external_lex_state = 14}, - [4244] = {.lex_state = 66, .external_lex_state = 11}, - [4245] = {.lex_state = 66, .external_lex_state = 11}, - [4246] = {.lex_state = 0, .external_lex_state = 18}, - [4247] = {.lex_state = 66, .external_lex_state = 15}, - [4248] = {.lex_state = 66, .external_lex_state = 14}, + [4244] = {.lex_state = 66, .external_lex_state = 14}, + [4245] = {.lex_state = 66, .external_lex_state = 14}, + [4246] = {.lex_state = 66, .external_lex_state = 16}, + [4247] = {.lex_state = 0, .external_lex_state = 18}, + [4248] = {.lex_state = 68, .external_lex_state = 17}, [4249] = {.lex_state = 66, .external_lex_state = 12}, - [4250] = {.lex_state = 18, .external_lex_state = 11}, - [4251] = {.lex_state = 66, .external_lex_state = 14}, + [4250] = {.lex_state = 66, .external_lex_state = 11}, + [4251] = {.lex_state = 66, .external_lex_state = 16}, [4252] = {.lex_state = 66, .external_lex_state = 14}, - [4253] = {.lex_state = 66, .external_lex_state = 14}, - [4254] = {.lex_state = 66, .external_lex_state = 15}, - [4255] = {.lex_state = 66, .external_lex_state = 14}, - [4256] = {.lex_state = 66, .external_lex_state = 15}, - [4257] = {.lex_state = 66, .external_lex_state = 15}, + [4253] = {.lex_state = 66, .external_lex_state = 11}, + [4254] = {.lex_state = 18, .external_lex_state = 11}, + [4255] = {.lex_state = 0, .external_lex_state = 18}, + [4256] = {.lex_state = 5, .external_lex_state = 12}, + [4257] = {.lex_state = 66, .external_lex_state = 14}, [4258] = {.lex_state = 66, .external_lex_state = 15}, - [4259] = {.lex_state = 66, .external_lex_state = 15}, - [4260] = {.lex_state = 66, .external_lex_state = 15}, - [4261] = {.lex_state = 66, .external_lex_state = 14}, + [4259] = {.lex_state = 66, .external_lex_state = 11}, + [4260] = {.lex_state = 66, .external_lex_state = 16}, + [4261] = {.lex_state = 66, .external_lex_state = 15}, [4262] = {.lex_state = 66, .external_lex_state = 14}, - [4263] = {.lex_state = 66, .external_lex_state = 12}, - [4264] = {.lex_state = 66, .external_lex_state = 16}, - [4265] = {.lex_state = 66, .external_lex_state = 14}, - [4266] = {.lex_state = 66, .external_lex_state = 16}, - [4267] = {.lex_state = 66, .external_lex_state = 14}, - [4268] = {.lex_state = 66, .external_lex_state = 11}, - [4269] = {.lex_state = 66, .external_lex_state = 16}, - [4270] = {.lex_state = 66, .external_lex_state = 14}, - [4271] = {.lex_state = 66, .external_lex_state = 11}, + [4263] = {.lex_state = 66, .external_lex_state = 11}, + [4264] = {.lex_state = 66, .external_lex_state = 12}, + [4265] = {.lex_state = 66, .external_lex_state = 15}, + [4266] = {.lex_state = 66, .external_lex_state = 14}, + [4267] = {.lex_state = 66, .external_lex_state = 16}, + [4268] = {.lex_state = 66, .external_lex_state = 14}, + [4269] = {.lex_state = 66, .external_lex_state = 12}, + [4270] = {.lex_state = 66, .external_lex_state = 15}, + [4271] = {.lex_state = 66, .external_lex_state = 16}, [4272] = {.lex_state = 66, .external_lex_state = 14}, - [4273] = {.lex_state = 66, .external_lex_state = 14}, - [4274] = {.lex_state = 66, .external_lex_state = 11}, - [4275] = {.lex_state = 66, .external_lex_state = 16}, - [4276] = {.lex_state = 18, .external_lex_state = 11}, - [4277] = {.lex_state = 15, .external_lex_state = 16}, - [4278] = {.lex_state = 66, .external_lex_state = 16}, + [4273] = {.lex_state = 66, .external_lex_state = 16}, + [4274] = {.lex_state = 15, .external_lex_state = 16}, + [4275] = {.lex_state = 66, .external_lex_state = 15}, + [4276] = {.lex_state = 66, .external_lex_state = 15}, + [4277] = {.lex_state = 66, .external_lex_state = 15}, + [4278] = {.lex_state = 66, .external_lex_state = 15}, [4279] = {.lex_state = 66, .external_lex_state = 15}, - [4280] = {.lex_state = 5, .external_lex_state = 12}, - [4281] = {.lex_state = 66, .external_lex_state = 15}, - [4282] = {.lex_state = 67, .external_lex_state = 17}, - [4283] = {.lex_state = 66, .external_lex_state = 12}, + [4280] = {.lex_state = 66, .external_lex_state = 15}, + [4281] = {.lex_state = 66, .external_lex_state = 11}, + [4282] = {.lex_state = 66, .external_lex_state = 14}, + [4283] = {.lex_state = 66, .external_lex_state = 15}, [4284] = {.lex_state = 66, .external_lex_state = 14}, - [4285] = {.lex_state = 66, .external_lex_state = 14}, + [4285] = {.lex_state = 18, .external_lex_state = 11}, [4286] = {.lex_state = 66, .external_lex_state = 15}, - [4287] = {.lex_state = 66, .external_lex_state = 15}, - [4288] = {.lex_state = 66, .external_lex_state = 16}, - [4289] = {.lex_state = 66, .external_lex_state = 16}, - [4290] = {.lex_state = 66, .external_lex_state = 16}, - [4291] = {.lex_state = 15, .external_lex_state = 11}, - [4292] = {.lex_state = 66, .external_lex_state = 20}, - [4293] = {.lex_state = 18, .external_lex_state = 12}, - [4294] = {.lex_state = 15, .external_lex_state = 16}, - [4295] = {.lex_state = 66, .external_lex_state = 15}, - [4296] = {.lex_state = 66, .external_lex_state = 12}, - [4297] = {.lex_state = 66, .external_lex_state = 12}, - [4298] = {.lex_state = 66, .external_lex_state = 11}, - [4299] = {.lex_state = 66, .external_lex_state = 16}, - [4300] = {.lex_state = 66, .external_lex_state = 11}, - [4301] = {.lex_state = 66, .external_lex_state = 11}, + [4287] = {.lex_state = 66, .external_lex_state = 16}, + [4288] = {.lex_state = 66, .external_lex_state = 12}, + [4289] = {.lex_state = 3, .external_lex_state = 15}, + [4290] = {.lex_state = 66, .external_lex_state = 12}, + [4291] = {.lex_state = 66, .external_lex_state = 12}, + [4292] = {.lex_state = 15, .external_lex_state = 16}, + [4293] = {.lex_state = 66, .external_lex_state = 11}, + [4294] = {.lex_state = 66, .external_lex_state = 12}, + [4295] = {.lex_state = 66, .external_lex_state = 12}, + [4296] = {.lex_state = 66, .external_lex_state = 15}, + [4297] = {.lex_state = 66, .external_lex_state = 20}, + [4298] = {.lex_state = 66, .external_lex_state = 15}, + [4299] = {.lex_state = 66, .external_lex_state = 20}, + [4300] = {.lex_state = 66, .external_lex_state = 12}, + [4301] = {.lex_state = 66, .external_lex_state = 14}, [4302] = {.lex_state = 66, .external_lex_state = 12}, - [4303] = {.lex_state = 66, .external_lex_state = 20}, - [4304] = {.lex_state = 66, .external_lex_state = 20}, - [4305] = {.lex_state = 66, .external_lex_state = 11}, + [4303] = {.lex_state = 66, .external_lex_state = 11}, + [4304] = {.lex_state = 66, .external_lex_state = 12}, + [4305] = {.lex_state = 66, .external_lex_state = 12}, [4306] = {.lex_state = 66, .external_lex_state = 11}, - [4307] = {.lex_state = 66, .external_lex_state = 12}, - [4308] = {.lex_state = 66, .external_lex_state = 12}, - [4309] = {.lex_state = 66, .external_lex_state = 15}, - [4310] = {.lex_state = 66, .external_lex_state = 20}, - [4311] = {.lex_state = 66, .external_lex_state = 16}, - [4312] = {.lex_state = 66, .external_lex_state = 20}, - [4313] = {.lex_state = 66, .external_lex_state = 11}, - [4314] = {.lex_state = 66, .external_lex_state = 11}, - [4315] = {.lex_state = 66, .external_lex_state = 15}, - [4316] = {.lex_state = 66, .external_lex_state = 12}, - [4317] = {.lex_state = 66, .external_lex_state = 20}, - [4318] = {.lex_state = 66, .external_lex_state = 11}, - [4319] = {.lex_state = 66, .external_lex_state = 11}, - [4320] = {.lex_state = 66, .external_lex_state = 11}, - [4321] = {.lex_state = 66, .external_lex_state = 12}, - [4322] = {.lex_state = 66, .external_lex_state = 11}, - [4323] = {.lex_state = 15, .external_lex_state = 16}, - [4324] = {.lex_state = 66, .external_lex_state = 14}, - [4325] = {.lex_state = 15, .external_lex_state = 16}, - [4326] = {.lex_state = 15, .external_lex_state = 16}, - [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 = 15}, - [4331] = {.lex_state = 66, .external_lex_state = 12}, + [4307] = {.lex_state = 66, .external_lex_state = 11}, + [4308] = {.lex_state = 66, .external_lex_state = 14}, + [4309] = {.lex_state = 66, .external_lex_state = 12}, + [4310] = {.lex_state = 66, .external_lex_state = 12}, + [4311] = {.lex_state = 66, .external_lex_state = 12}, + [4312] = {.lex_state = 66, .external_lex_state = 15}, + [4313] = {.lex_state = 66, .external_lex_state = 12}, + [4314] = {.lex_state = 66, .external_lex_state = 20}, + [4315] = {.lex_state = 66, .external_lex_state = 14}, + [4316] = {.lex_state = 66, .external_lex_state = 15}, + [4317] = {.lex_state = 66, .external_lex_state = 12}, + [4318] = {.lex_state = 66, .external_lex_state = 15}, + [4319] = {.lex_state = 66, .external_lex_state = 12}, + [4320] = {.lex_state = 66, .external_lex_state = 12}, + [4321] = {.lex_state = 12, .external_lex_state = 12}, + [4322] = {.lex_state = 66, .external_lex_state = 15}, + [4323] = {.lex_state = 66, .external_lex_state = 12}, + [4324] = {.lex_state = 66, .external_lex_state = 20}, + [4325] = {.lex_state = 66, .external_lex_state = 12}, + [4326] = {.lex_state = 66, .external_lex_state = 20}, + [4327] = {.lex_state = 66, .external_lex_state = 15}, + [4328] = {.lex_state = 66, .external_lex_state = 12}, + [4329] = {.lex_state = 66, .external_lex_state = 12}, + [4330] = {.lex_state = 66, .external_lex_state = 16}, + [4331] = {.lex_state = 66, .external_lex_state = 15}, [4332] = {.lex_state = 66, .external_lex_state = 12}, - [4333] = {.lex_state = 66, .external_lex_state = 12}, - [4334] = {.lex_state = 66, .external_lex_state = 15}, + [4333] = {.lex_state = 66, .external_lex_state = 15}, + [4334] = {.lex_state = 66, .external_lex_state = 12}, [4335] = {.lex_state = 66, .external_lex_state = 12}, - [4336] = {.lex_state = 66, .external_lex_state = 12}, + [4336] = {.lex_state = 66, .external_lex_state = 20}, [4337] = {.lex_state = 66, .external_lex_state = 12}, - [4338] = {.lex_state = 66, .external_lex_state = 5}, - [4339] = {.lex_state = 66, .external_lex_state = 15}, - [4340] = {.lex_state = 66, .external_lex_state = 16}, - [4341] = {.lex_state = 66, .external_lex_state = 16}, - [4342] = {.lex_state = 66, .external_lex_state = 11}, - [4343] = {.lex_state = 66, .external_lex_state = 11}, + [4338] = {.lex_state = 66, .external_lex_state = 20}, + [4339] = {.lex_state = 3, .external_lex_state = 15}, + [4340] = {.lex_state = 66, .external_lex_state = 12}, + [4341] = {.lex_state = 66, .external_lex_state = 12}, + [4342] = {.lex_state = 66, .external_lex_state = 12}, + [4343] = {.lex_state = 66, .external_lex_state = 12}, [4344] = {.lex_state = 66, .external_lex_state = 14}, - [4345] = {.lex_state = 66, .external_lex_state = 20}, - [4346] = {.lex_state = 66, .external_lex_state = 11}, - [4347] = {.lex_state = 66, .external_lex_state = 15}, - [4348] = {.lex_state = 66, .external_lex_state = 20}, - [4349] = {.lex_state = 66, .external_lex_state = 11}, - [4350] = {.lex_state = 66, .external_lex_state = 15}, - [4351] = {.lex_state = 66, .external_lex_state = 14}, - [4352] = {.lex_state = 66, .external_lex_state = 12}, - [4353] = {.lex_state = 66, .external_lex_state = 12}, - [4354] = {.lex_state = 66, .external_lex_state = 12}, - [4355] = {.lex_state = 66, .external_lex_state = 16}, - [4356] = {.lex_state = 66, .external_lex_state = 20}, - [4357] = {.lex_state = 15, .external_lex_state = 16}, - [4358] = {.lex_state = 66, .external_lex_state = 11}, + [4345] = {.lex_state = 66, .external_lex_state = 15}, + [4346] = {.lex_state = 66, .external_lex_state = 20}, + [4347] = {.lex_state = 66, .external_lex_state = 12}, + [4348] = {.lex_state = 66, .external_lex_state = 14}, + [4349] = {.lex_state = 66, .external_lex_state = 15}, + [4350] = {.lex_state = 66, .external_lex_state = 12}, + [4351] = {.lex_state = 15, .external_lex_state = 16}, + [4352] = {.lex_state = 15, .external_lex_state = 16}, + [4353] = {.lex_state = 66, .external_lex_state = 20}, + [4354] = {.lex_state = 66, .external_lex_state = 11}, + [4355] = {.lex_state = 66, .external_lex_state = 15}, + [4356] = {.lex_state = 66, .external_lex_state = 16}, + [4357] = {.lex_state = 66, .external_lex_state = 14}, + [4358] = {.lex_state = 66, .external_lex_state = 16}, [4359] = {.lex_state = 66, .external_lex_state = 15}, [4360] = {.lex_state = 66, .external_lex_state = 14}, - [4361] = {.lex_state = 66, .external_lex_state = 15}, - [4362] = {.lex_state = 66, .external_lex_state = 15}, + [4361] = {.lex_state = 66, .external_lex_state = 20}, + [4362] = {.lex_state = 18, .external_lex_state = 12}, [4363] = {.lex_state = 66, .external_lex_state = 20}, - [4364] = {.lex_state = 15, .external_lex_state = 16}, - [4365] = {.lex_state = 66, .external_lex_state = 15}, - [4366] = {.lex_state = 66, .external_lex_state = 12}, - [4367] = {.lex_state = 18, .external_lex_state = 12}, - [4368] = {.lex_state = 66, .external_lex_state = 15}, - [4369] = {.lex_state = 66, .external_lex_state = 11}, - [4370] = {.lex_state = 66, .external_lex_state = 12}, - [4371] = {.lex_state = 66, .external_lex_state = 15}, - [4372] = {.lex_state = 66, .external_lex_state = 15}, - [4373] = {.lex_state = 66, .external_lex_state = 15}, - [4374] = {.lex_state = 66, .external_lex_state = 12}, + [4364] = {.lex_state = 18, .external_lex_state = 12}, + [4365] = {.lex_state = 66, .external_lex_state = 11}, + [4366] = {.lex_state = 66, .external_lex_state = 11}, + [4367] = {.lex_state = 15, .external_lex_state = 16}, + [4368] = {.lex_state = 66, .external_lex_state = 14}, + [4369] = {.lex_state = 66, .external_lex_state = 12}, + [4370] = {.lex_state = 66, .external_lex_state = 14}, + [4371] = {.lex_state = 15, .external_lex_state = 16}, + [4372] = {.lex_state = 66, .external_lex_state = 16}, + [4373] = {.lex_state = 66, .external_lex_state = 14}, + [4374] = {.lex_state = 66, .external_lex_state = 14}, [4375] = {.lex_state = 66, .external_lex_state = 12}, - [4376] = {.lex_state = 66, .external_lex_state = 12}, - [4377] = {.lex_state = 66, .external_lex_state = 14}, + [4376] = {.lex_state = 66, .external_lex_state = 14}, + [4377] = {.lex_state = 66, .external_lex_state = 20}, [4378] = {.lex_state = 66, .external_lex_state = 12}, - [4379] = {.lex_state = 66, .external_lex_state = 20}, - [4380] = {.lex_state = 66, .external_lex_state = 12}, - [4381] = {.lex_state = 66, .external_lex_state = 20}, - [4382] = {.lex_state = 66, .external_lex_state = 12}, - [4383] = {.lex_state = 66, .external_lex_state = 12}, - [4384] = {.lex_state = 66, .external_lex_state = 20}, - [4385] = {.lex_state = 66, .external_lex_state = 14}, - [4386] = {.lex_state = 66, .external_lex_state = 12}, + [4379] = {.lex_state = 66, .external_lex_state = 14}, + [4380] = {.lex_state = 66, .external_lex_state = 15}, + [4381] = {.lex_state = 66, .external_lex_state = 15}, + [4382] = {.lex_state = 66, .external_lex_state = 11}, + [4383] = {.lex_state = 66, .external_lex_state = 11}, + [4384] = {.lex_state = 66, .external_lex_state = 11}, + [4385] = {.lex_state = 66, .external_lex_state = 16}, + [4386] = {.lex_state = 66, .external_lex_state = 15}, [4387] = {.lex_state = 66, .external_lex_state = 20}, [4388] = {.lex_state = 66, .external_lex_state = 12}, [4389] = {.lex_state = 66, .external_lex_state = 12}, [4390] = {.lex_state = 66, .external_lex_state = 11}, - [4391] = {.lex_state = 66, .external_lex_state = 12}, - [4392] = {.lex_state = 66, .external_lex_state = 12}, - [4393] = {.lex_state = 66, .external_lex_state = 12}, - [4394] = {.lex_state = 66, .external_lex_state = 12}, + [4391] = {.lex_state = 66, .external_lex_state = 16}, + [4392] = {.lex_state = 66, .external_lex_state = 11}, + [4393] = {.lex_state = 66, .external_lex_state = 11}, + [4394] = {.lex_state = 66, .external_lex_state = 20}, [4395] = {.lex_state = 66, .external_lex_state = 12}, [4396] = {.lex_state = 66, .external_lex_state = 12}, - [4397] = {.lex_state = 66, .external_lex_state = 16}, - [4398] = {.lex_state = 66, .external_lex_state = 16}, - [4399] = {.lex_state = 66, .external_lex_state = 12}, - [4400] = {.lex_state = 66, .external_lex_state = 12}, + [4397] = {.lex_state = 66, .external_lex_state = 14}, + [4398] = {.lex_state = 66, .external_lex_state = 11}, + [4399] = {.lex_state = 66, .external_lex_state = 11}, + [4400] = {.lex_state = 66, .external_lex_state = 20}, [4401] = {.lex_state = 15, .external_lex_state = 16}, - [4402] = {.lex_state = 66, .external_lex_state = 11}, - [4403] = {.lex_state = 66, .external_lex_state = 12}, - [4404] = {.lex_state = 66, .external_lex_state = 20}, + [4402] = {.lex_state = 66, .external_lex_state = 12}, + [4403] = {.lex_state = 66, .external_lex_state = 16}, + [4404] = {.lex_state = 66, .external_lex_state = 16}, [4405] = {.lex_state = 66, .external_lex_state = 12}, - [4406] = {.lex_state = 12, .external_lex_state = 12}, - [4407] = {.lex_state = 66, .external_lex_state = 15}, + [4406] = {.lex_state = 66, .external_lex_state = 11}, + [4407] = {.lex_state = 66, .external_lex_state = 12}, [4408] = {.lex_state = 66, .external_lex_state = 11}, - [4409] = {.lex_state = 66, .external_lex_state = 12}, - [4410] = {.lex_state = 3, .external_lex_state = 15}, - [4411] = {.lex_state = 66, .external_lex_state = 20}, - [4412] = {.lex_state = 66, .external_lex_state = 12}, - [4413] = {.lex_state = 66, .external_lex_state = 12}, - [4414] = {.lex_state = 66, .external_lex_state = 12}, - [4415] = {.lex_state = 66, .external_lex_state = 20}, + [4409] = {.lex_state = 66, .external_lex_state = 11}, + [4410] = {.lex_state = 66, .external_lex_state = 11}, + [4411] = {.lex_state = 66, .external_lex_state = 12}, + [4412] = {.lex_state = 12, .external_lex_state = 12}, + [4413] = {.lex_state = 66, .external_lex_state = 11}, + [4414] = {.lex_state = 18, .external_lex_state = 12}, + [4415] = {.lex_state = 66, .external_lex_state = 15}, [4416] = {.lex_state = 66, .external_lex_state = 20}, [4417] = {.lex_state = 66, .external_lex_state = 12}, [4418] = {.lex_state = 66, .external_lex_state = 11}, - [4419] = {.lex_state = 66, .external_lex_state = 12}, + [4419] = {.lex_state = 66, .external_lex_state = 11}, [4420] = {.lex_state = 66, .external_lex_state = 12}, [4421] = {.lex_state = 66, .external_lex_state = 12}, - [4422] = {.lex_state = 66, .external_lex_state = 15}, - [4423] = {.lex_state = 66, .external_lex_state = 12}, - [4424] = {.lex_state = 66, .external_lex_state = 20}, - [4425] = {.lex_state = 66, .external_lex_state = 12}, - [4426] = {.lex_state = 66, .external_lex_state = 12}, - [4427] = {.lex_state = 3, .external_lex_state = 15}, - [4428] = {.lex_state = 66, .external_lex_state = 14}, - [4429] = {.lex_state = 66, .external_lex_state = 14}, - [4430] = {.lex_state = 66, .external_lex_state = 12}, - [4431] = {.lex_state = 18, .external_lex_state = 12}, - [4432] = {.lex_state = 66, .external_lex_state = 12}, + [4422] = {.lex_state = 66, .external_lex_state = 12}, + [4423] = {.lex_state = 15, .external_lex_state = 16}, + [4424] = {.lex_state = 15, .external_lex_state = 16}, + [4425] = {.lex_state = 15, .external_lex_state = 16}, + [4426] = {.lex_state = 66, .external_lex_state = 20}, + [4427] = {.lex_state = 66, .external_lex_state = 20}, + [4428] = {.lex_state = 66, .external_lex_state = 12}, + [4429] = {.lex_state = 66, .external_lex_state = 12}, + [4430] = {.lex_state = 66, .external_lex_state = 16}, + [4431] = {.lex_state = 66, .external_lex_state = 12}, + [4432] = {.lex_state = 66, .external_lex_state = 14}, [4433] = {.lex_state = 66, .external_lex_state = 12}, - [4434] = {.lex_state = 66, .external_lex_state = 11}, - [4435] = {.lex_state = 66, .external_lex_state = 20}, - [4436] = {.lex_state = 66, .external_lex_state = 11}, + [4434] = {.lex_state = 66, .external_lex_state = 15}, + [4435] = {.lex_state = 66, .external_lex_state = 16}, + [4436] = {.lex_state = 66, .external_lex_state = 14}, [4437] = {.lex_state = 66, .external_lex_state = 20}, - [4438] = {.lex_state = 66, .external_lex_state = 12}, - [4439] = {.lex_state = 66, .external_lex_state = 20}, + [4438] = {.lex_state = 66, .external_lex_state = 20}, + [4439] = {.lex_state = 66, .external_lex_state = 14}, [4440] = {.lex_state = 66, .external_lex_state = 20}, - [4441] = {.lex_state = 15, .external_lex_state = 16}, - [4442] = {.lex_state = 15, .external_lex_state = 16}, - [4443] = {.lex_state = 3, .external_lex_state = 15}, - [4444] = {.lex_state = 66, .external_lex_state = 12}, - [4445] = {.lex_state = 66, .external_lex_state = 16}, - [4446] = {.lex_state = 15, .external_lex_state = 16}, - [4447] = {.lex_state = 66, .external_lex_state = 14}, - [4448] = {.lex_state = 66, .external_lex_state = 20}, - [4449] = {.lex_state = 66, .external_lex_state = 12}, - [4450] = {.lex_state = 66, .external_lex_state = 20}, - [4451] = {.lex_state = 66, .external_lex_state = 20}, - [4452] = {.lex_state = 66, .external_lex_state = 12}, - [4453] = {.lex_state = 66, .external_lex_state = 11}, + [4441] = {.lex_state = 66, .external_lex_state = 12}, + [4442] = {.lex_state = 66, .external_lex_state = 20}, + [4443] = {.lex_state = 66, .external_lex_state = 12}, + [4444] = {.lex_state = 66, .external_lex_state = 16}, + [4445] = {.lex_state = 15, .external_lex_state = 16}, + [4446] = {.lex_state = 66, .external_lex_state = 12}, + [4447] = {.lex_state = 66, .external_lex_state = 11}, + [4448] = {.lex_state = 66, .external_lex_state = 12}, + [4449] = {.lex_state = 66, .external_lex_state = 11}, + [4450] = {.lex_state = 66, .external_lex_state = 12}, + [4451] = {.lex_state = 66, .external_lex_state = 16}, + [4452] = {.lex_state = 66, .external_lex_state = 11}, + [4453] = {.lex_state = 66, .external_lex_state = 12}, [4454] = {.lex_state = 66, .external_lex_state = 20}, - [4455] = {.lex_state = 12, .external_lex_state = 12}, - [4456] = {.lex_state = 66, .external_lex_state = 12}, - [4457] = {.lex_state = 66, .external_lex_state = 12}, - [4458] = {.lex_state = 66, .external_lex_state = 11}, - [4459] = {.lex_state = 66, .external_lex_state = 16}, - [4460] = {.lex_state = 66, .external_lex_state = 16}, - [4461] = {.lex_state = 66, .external_lex_state = 11}, + [4455] = {.lex_state = 66, .external_lex_state = 20}, + [4456] = {.lex_state = 66, .external_lex_state = 15}, + [4457] = {.lex_state = 66, .external_lex_state = 15}, + [4458] = {.lex_state = 66, .external_lex_state = 20}, + [4459] = {.lex_state = 66, .external_lex_state = 20}, + [4460] = {.lex_state = 66, .external_lex_state = 11}, + [4461] = {.lex_state = 66, .external_lex_state = 16}, [4462] = {.lex_state = 66, .external_lex_state = 14}, - [4463] = {.lex_state = 15, .external_lex_state = 11}, - [4464] = {.lex_state = 66, .external_lex_state = 12}, - [4465] = {.lex_state = 66, .external_lex_state = 14}, + [4463] = {.lex_state = 66, .external_lex_state = 12}, + [4464] = {.lex_state = 66, .external_lex_state = 14}, + [4465] = {.lex_state = 66, .external_lex_state = 12}, [4466] = {.lex_state = 66, .external_lex_state = 15}, - [4467] = {.lex_state = 66, .external_lex_state = 15}, - [4468] = {.lex_state = 66, .external_lex_state = 15}, - [4469] = {.lex_state = 66, .external_lex_state = 14}, - [4470] = {.lex_state = 66, .external_lex_state = 15}, - [4471] = {.lex_state = 66, .external_lex_state = 16}, - [4472] = {.lex_state = 66, .external_lex_state = 16}, - [4473] = {.lex_state = 66, .external_lex_state = 15}, - [4474] = {.lex_state = 66, .external_lex_state = 15}, - [4475] = {.lex_state = 66, .external_lex_state = 15}, - [4476] = {.lex_state = 66, .external_lex_state = 15}, - [4477] = {.lex_state = 66, .external_lex_state = 15}, - [4478] = {.lex_state = 66, .external_lex_state = 12}, - [4479] = {.lex_state = 66, .external_lex_state = 15}, - [4480] = {.lex_state = 66, .external_lex_state = 15}, - [4481] = {.lex_state = 66, .external_lex_state = 15}, - [4482] = {.lex_state = 66, .external_lex_state = 15}, - [4483] = {.lex_state = 66, .external_lex_state = 15}, - [4484] = {.lex_state = 66, .external_lex_state = 21}, - [4485] = {.lex_state = 66, .external_lex_state = 14}, - [4486] = {.lex_state = 66, .external_lex_state = 14}, - [4487] = {.lex_state = 66, .external_lex_state = 15}, - [4488] = {.lex_state = 66, .external_lex_state = 16}, - [4489] = {.lex_state = 66, .external_lex_state = 15}, - [4490] = {.lex_state = 66, .external_lex_state = 15}, - [4491] = {.lex_state = 66, .external_lex_state = 15}, - [4492] = {.lex_state = 66, .external_lex_state = 16}, - [4493] = {.lex_state = 66, .external_lex_state = 16}, + [4467] = {.lex_state = 15, .external_lex_state = 11}, + [4468] = {.lex_state = 66, .external_lex_state = 11}, + [4469] = {.lex_state = 66, .external_lex_state = 12}, + [4470] = {.lex_state = 66, .external_lex_state = 12}, + [4471] = {.lex_state = 15, .external_lex_state = 11}, + [4472] = {.lex_state = 3, .external_lex_state = 15}, + [4473] = {.lex_state = 66, .external_lex_state = 14}, + [4474] = {.lex_state = 66, .external_lex_state = 20}, + [4475] = {.lex_state = 66, .external_lex_state = 12}, + [4476] = {.lex_state = 66, .external_lex_state = 5}, + [4477] = {.lex_state = 66, .external_lex_state = 11}, + [4478] = {.lex_state = 66, .external_lex_state = 15}, + [4479] = {.lex_state = 66, .external_lex_state = 14}, + [4480] = {.lex_state = 66, .external_lex_state = 12}, + [4481] = {.lex_state = 66, .external_lex_state = 14}, + [4482] = {.lex_state = 66, .external_lex_state = 12}, + [4483] = {.lex_state = 66, .external_lex_state = 21}, + [4484] = {.lex_state = 66, .external_lex_state = 14}, + [4485] = {.lex_state = 66, .external_lex_state = 5}, + [4486] = {.lex_state = 66, .external_lex_state = 13}, + [4487] = {.lex_state = 66, .external_lex_state = 14}, + [4488] = {.lex_state = 66, .external_lex_state = 12}, + [4489] = {.lex_state = 66, .external_lex_state = 13}, + [4490] = {.lex_state = 66, .external_lex_state = 16}, + [4491] = {.lex_state = 66, .external_lex_state = 16}, + [4492] = {.lex_state = 66, .external_lex_state = 11}, + [4493] = {.lex_state = 66, .external_lex_state = 21}, [4494] = {.lex_state = 66, .external_lex_state = 14}, - [4495] = {.lex_state = 66, .external_lex_state = 15}, + [4495] = {.lex_state = 66, .external_lex_state = 14}, [4496] = {.lex_state = 66, .external_lex_state = 14}, [4497] = {.lex_state = 66, .external_lex_state = 14}, - [4498] = {.lex_state = 66, .external_lex_state = 11}, + [4498] = {.lex_state = 66, .external_lex_state = 21}, [4499] = {.lex_state = 66, .external_lex_state = 14}, - [4500] = {.lex_state = 66, .external_lex_state = 12}, - [4501] = {.lex_state = 66, .external_lex_state = 14}, + [4500] = {.lex_state = 66, .external_lex_state = 21}, + [4501] = {.lex_state = 66, .external_lex_state = 11}, [4502] = {.lex_state = 66, .external_lex_state = 21}, - [4503] = {.lex_state = 66, .external_lex_state = 21}, - [4504] = {.lex_state = 66, .external_lex_state = 14}, - [4505] = {.lex_state = 66, .external_lex_state = 12}, - [4506] = {.lex_state = 66, .external_lex_state = 13}, - [4507] = {.lex_state = 66, .external_lex_state = 15}, - [4508] = {.lex_state = 66, .external_lex_state = 13}, - [4509] = {.lex_state = 66, .external_lex_state = 14}, - [4510] = {.lex_state = 66, .external_lex_state = 16}, - [4511] = {.lex_state = 66, .external_lex_state = 16}, - [4512] = {.lex_state = 66, .external_lex_state = 16}, - [4513] = {.lex_state = 18, .external_lex_state = 12}, - [4514] = {.lex_state = 18, .external_lex_state = 12}, - [4515] = {.lex_state = 18, .external_lex_state = 12}, - [4516] = {.lex_state = 66, .external_lex_state = 11}, + [4503] = {.lex_state = 66, .external_lex_state = 12}, + [4504] = {.lex_state = 66, .external_lex_state = 12}, + [4505] = {.lex_state = 18, .external_lex_state = 12}, + [4506] = {.lex_state = 66, .external_lex_state = 14}, + [4507] = {.lex_state = 66, .external_lex_state = 16}, + [4508] = {.lex_state = 66, .external_lex_state = 14}, + [4509] = {.lex_state = 66, .external_lex_state = 12}, + [4510] = {.lex_state = 66, .external_lex_state = 12}, + [4511] = {.lex_state = 66, .external_lex_state = 13}, + [4512] = {.lex_state = 18, .external_lex_state = 12}, + [4513] = {.lex_state = 66, .external_lex_state = 12}, + [4514] = {.lex_state = 66, .external_lex_state = 11}, + [4515] = {.lex_state = 66, .external_lex_state = 14}, + [4516] = {.lex_state = 18, .external_lex_state = 12}, [4517] = {.lex_state = 66, .external_lex_state = 14}, - [4518] = {.lex_state = 66, .external_lex_state = 16}, - [4519] = {.lex_state = 18, .external_lex_state = 12}, + [4518] = {.lex_state = 66, .external_lex_state = 5}, + [4519] = {.lex_state = 66, .external_lex_state = 21}, [4520] = {.lex_state = 66, .external_lex_state = 16}, - [4521] = {.lex_state = 66, .external_lex_state = 12}, - [4522] = {.lex_state = 66, .external_lex_state = 12}, - [4523] = {.lex_state = 66, .external_lex_state = 21}, - [4524] = {.lex_state = 66, .external_lex_state = 16}, - [4525] = {.lex_state = 66, .external_lex_state = 16}, - [4526] = {.lex_state = 66, .external_lex_state = 5}, + [4521] = {.lex_state = 66, .external_lex_state = 14}, + [4522] = {.lex_state = 66, .external_lex_state = 14}, + [4523] = {.lex_state = 66, .external_lex_state = 14}, + [4524] = {.lex_state = 66, .external_lex_state = 14}, + [4525] = {.lex_state = 66, .external_lex_state = 14}, + [4526] = {.lex_state = 66, .external_lex_state = 14}, [4527] = {.lex_state = 66, .external_lex_state = 14}, - [4528] = {.lex_state = 66, .external_lex_state = 11}, - [4529] = {.lex_state = 66, .external_lex_state = 12}, - [4530] = {.lex_state = 66, .external_lex_state = 12}, - [4531] = {.lex_state = 66, .external_lex_state = 12}, + [4528] = {.lex_state = 66, .external_lex_state = 16}, + [4529] = {.lex_state = 66, .external_lex_state = 14}, + [4530] = {.lex_state = 66, .external_lex_state = 16}, + [4531] = {.lex_state = 66, .external_lex_state = 16}, [4532] = {.lex_state = 66, .external_lex_state = 14}, [4533] = {.lex_state = 66, .external_lex_state = 16}, - [4534] = {.lex_state = 66, .external_lex_state = 14}, - [4535] = {.lex_state = 66, .external_lex_state = 14}, + [4534] = {.lex_state = 66, .external_lex_state = 11}, + [4535] = {.lex_state = 66, .external_lex_state = 16}, [4536] = {.lex_state = 66, .external_lex_state = 16}, - [4537] = {.lex_state = 66, .external_lex_state = 11}, + [4537] = {.lex_state = 66, .external_lex_state = 14}, [4538] = {.lex_state = 66, .external_lex_state = 16}, - [4539] = {.lex_state = 66, .external_lex_state = 16}, - [4540] = {.lex_state = 66, .external_lex_state = 15}, - [4541] = {.lex_state = 66, .external_lex_state = 11}, - [4542] = {.lex_state = 66, .external_lex_state = 21}, - [4543] = {.lex_state = 66, .external_lex_state = 11}, + [4539] = {.lex_state = 66, .external_lex_state = 14}, + [4540] = {.lex_state = 66, .external_lex_state = 12}, + [4541] = {.lex_state = 66, .external_lex_state = 16}, + [4542] = {.lex_state = 66, .external_lex_state = 14}, + [4543] = {.lex_state = 66, .external_lex_state = 14}, [4544] = {.lex_state = 66, .external_lex_state = 14}, [4545] = {.lex_state = 66, .external_lex_state = 14}, [4546] = {.lex_state = 66, .external_lex_state = 14}, - [4547] = {.lex_state = 66, .external_lex_state = 11}, - [4548] = {.lex_state = 66, .external_lex_state = 11}, + [4547] = {.lex_state = 66, .external_lex_state = 14}, + [4548] = {.lex_state = 66, .external_lex_state = 14}, [4549] = {.lex_state = 66, .external_lex_state = 14}, - [4550] = {.lex_state = 66, .external_lex_state = 5}, + [4550] = {.lex_state = 66, .external_lex_state = 16}, [4551] = {.lex_state = 66, .external_lex_state = 14}, [4552] = {.lex_state = 66, .external_lex_state = 16}, - [4553] = {.lex_state = 66, .external_lex_state = 5}, - [4554] = {.lex_state = 66, .external_lex_state = 16}, - [4555] = {.lex_state = 66, .external_lex_state = 14}, - [4556] = {.lex_state = 66, .external_lex_state = 15}, - [4557] = {.lex_state = 66, .external_lex_state = 15}, - [4558] = {.lex_state = 66, .external_lex_state = 12}, - [4559] = {.lex_state = 66, .external_lex_state = 11}, + [4553] = {.lex_state = 66, .external_lex_state = 16}, + [4554] = {.lex_state = 66, .external_lex_state = 14}, + [4555] = {.lex_state = 66, .external_lex_state = 16}, + [4556] = {.lex_state = 66, .external_lex_state = 16}, + [4557] = {.lex_state = 66, .external_lex_state = 12}, + [4558] = {.lex_state = 66, .external_lex_state = 14}, + [4559] = {.lex_state = 66, .external_lex_state = 14}, [4560] = {.lex_state = 66, .external_lex_state = 14}, - [4561] = {.lex_state = 66, .external_lex_state = 11}, - [4562] = {.lex_state = 66, .external_lex_state = 13}, - [4563] = {.lex_state = 66, .external_lex_state = 16}, - [4564] = {.lex_state = 66, .external_lex_state = 14}, - [4565] = {.lex_state = 66, .external_lex_state = 2}, - [4566] = {.lex_state = 66, .external_lex_state = 16}, + [4561] = {.lex_state = 66, .external_lex_state = 14}, + [4562] = {.lex_state = 66, .external_lex_state = 14}, + [4563] = {.lex_state = 66, .external_lex_state = 11}, + [4564] = {.lex_state = 66, .external_lex_state = 12}, + [4565] = {.lex_state = 66, .external_lex_state = 21}, + [4566] = {.lex_state = 66, .external_lex_state = 14}, [4567] = {.lex_state = 66, .external_lex_state = 11}, - [4568] = {.lex_state = 66, .external_lex_state = 2}, - [4569] = {.lex_state = 66, .external_lex_state = 21}, - [4570] = {.lex_state = 66, .external_lex_state = 11}, - [4571] = {.lex_state = 18, .external_lex_state = 12}, - [4572] = {.lex_state = 66, .external_lex_state = 11}, - [4573] = {.lex_state = 66, .external_lex_state = 21}, - [4574] = {.lex_state = 66, .external_lex_state = 12}, - [4575] = {.lex_state = 66, .external_lex_state = 14}, + [4568] = {.lex_state = 18, .external_lex_state = 12}, + [4569] = {.lex_state = 66, .external_lex_state = 5}, + [4570] = {.lex_state = 18, .external_lex_state = 12}, + [4571] = {.lex_state = 66, .external_lex_state = 11}, + [4572] = {.lex_state = 66, .external_lex_state = 2}, + [4573] = {.lex_state = 66, .external_lex_state = 11}, + [4574] = {.lex_state = 66, .external_lex_state = 16}, + [4575] = {.lex_state = 66, .external_lex_state = 16}, [4576] = {.lex_state = 66, .external_lex_state = 16}, - [4577] = {.lex_state = 66, .external_lex_state = 16}, - [4578] = {.lex_state = 66, .external_lex_state = 11}, - [4579] = {.lex_state = 66, .external_lex_state = 11}, + [4577] = {.lex_state = 18, .external_lex_state = 12}, + [4578] = {.lex_state = 66, .external_lex_state = 5}, + [4579] = {.lex_state = 66, .external_lex_state = 16}, [4580] = {.lex_state = 66, .external_lex_state = 16}, - [4581] = {.lex_state = 66, .external_lex_state = 12}, - [4582] = {.lex_state = 66, .external_lex_state = 14}, - [4583] = {.lex_state = 66, .external_lex_state = 11}, - [4584] = {.lex_state = 66, .external_lex_state = 5}, - [4585] = {.lex_state = 66, .external_lex_state = 12}, - [4586] = {.lex_state = 66, .external_lex_state = 16}, - [4587] = {.lex_state = 66, .external_lex_state = 16}, + [4581] = {.lex_state = 66, .external_lex_state = 15}, + [4582] = {.lex_state = 66, .external_lex_state = 15}, + [4583] = {.lex_state = 66, .external_lex_state = 16}, + [4584] = {.lex_state = 66, .external_lex_state = 15}, + [4585] = {.lex_state = 66, .external_lex_state = 13}, + [4586] = {.lex_state = 66, .external_lex_state = 12}, + [4587] = {.lex_state = 66, .external_lex_state = 15}, [4588] = {.lex_state = 66, .external_lex_state = 16}, - [4589] = {.lex_state = 66, .external_lex_state = 16}, - [4590] = {.lex_state = 18, .external_lex_state = 12}, - [4591] = {.lex_state = 66, .external_lex_state = 14}, - [4592] = {.lex_state = 66, .external_lex_state = 16}, - [4593] = {.lex_state = 18, .external_lex_state = 12}, - [4594] = {.lex_state = 66, .external_lex_state = 14}, - [4595] = {.lex_state = 66, .external_lex_state = 14}, - [4596] = {.lex_state = 66, .external_lex_state = 14}, - [4597] = {.lex_state = 66, .external_lex_state = 16}, - [4598] = {.lex_state = 66, .external_lex_state = 14}, - [4599] = {.lex_state = 66, .external_lex_state = 14}, - [4600] = {.lex_state = 66, .external_lex_state = 16}, - [4601] = {.lex_state = 66, .external_lex_state = 14}, - [4602] = {.lex_state = 66, .external_lex_state = 16}, - [4603] = {.lex_state = 66, .external_lex_state = 12}, - [4604] = {.lex_state = 66, .external_lex_state = 12}, - [4605] = {.lex_state = 66, .external_lex_state = 16}, + [4589] = {.lex_state = 66, .external_lex_state = 15}, + [4590] = {.lex_state = 66, .external_lex_state = 15}, + [4591] = {.lex_state = 66, .external_lex_state = 15}, + [4592] = {.lex_state = 66, .external_lex_state = 15}, + [4593] = {.lex_state = 66, .external_lex_state = 15}, + [4594] = {.lex_state = 66, .external_lex_state = 16}, + [4595] = {.lex_state = 66, .external_lex_state = 15}, + [4596] = {.lex_state = 66, .external_lex_state = 16}, + [4597] = {.lex_state = 18, .external_lex_state = 12}, + [4598] = {.lex_state = 66, .external_lex_state = 21}, + [4599] = {.lex_state = 66, .external_lex_state = 15}, + [4600] = {.lex_state = 66, .external_lex_state = 11}, + [4601] = {.lex_state = 66, .external_lex_state = 11}, + [4602] = {.lex_state = 66, .external_lex_state = 13}, + [4603] = {.lex_state = 66, .external_lex_state = 11}, + [4604] = {.lex_state = 66, .external_lex_state = 15}, + [4605] = {.lex_state = 66, .external_lex_state = 2}, [4606] = {.lex_state = 66, .external_lex_state = 12}, - [4607] = {.lex_state = 66, .external_lex_state = 16}, - [4608] = {.lex_state = 12, .external_lex_state = 12}, - [4609] = {.lex_state = 66, .external_lex_state = 11}, - [4610] = {.lex_state = 66, .external_lex_state = 13}, - [4611] = {.lex_state = 66, .external_lex_state = 21}, - [4612] = {.lex_state = 66, .external_lex_state = 5}, - [4613] = {.lex_state = 66, .external_lex_state = 13}, + [4607] = {.lex_state = 66, .external_lex_state = 15}, + [4608] = {.lex_state = 66, .external_lex_state = 16}, + [4609] = {.lex_state = 66, .external_lex_state = 15}, + [4610] = {.lex_state = 66, .external_lex_state = 11}, + [4611] = {.lex_state = 66, .external_lex_state = 11}, + [4612] = {.lex_state = 66, .external_lex_state = 15}, + [4613] = {.lex_state = 66, .external_lex_state = 15}, [4614] = {.lex_state = 66, .external_lex_state = 15}, [4615] = {.lex_state = 66, .external_lex_state = 12}, - [4616] = {.lex_state = 66, .external_lex_state = 5}, - [4617] = {.lex_state = 66, .external_lex_state = 12}, - [4618] = {.lex_state = 66, .external_lex_state = 15}, - [4619] = {.lex_state = 66, .external_lex_state = 11}, - [4620] = {.lex_state = 66, .external_lex_state = 15}, - [4621] = {.lex_state = 66, .external_lex_state = 21}, - [4622] = {.lex_state = 66, .external_lex_state = 14}, - [4623] = {.lex_state = 66, .external_lex_state = 12}, + [4616] = {.lex_state = 66, .external_lex_state = 11}, + [4617] = {.lex_state = 66, .external_lex_state = 15}, + [4618] = {.lex_state = 66, .external_lex_state = 16}, + [4619] = {.lex_state = 66, .external_lex_state = 5}, + [4620] = {.lex_state = 66, .external_lex_state = 12}, + [4621] = {.lex_state = 66, .external_lex_state = 12}, + [4622] = {.lex_state = 66, .external_lex_state = 12}, + [4623] = {.lex_state = 66, .external_lex_state = 11}, [4624] = {.lex_state = 66, .external_lex_state = 14}, [4625] = {.lex_state = 66, .external_lex_state = 14}, - [4626] = {.lex_state = 66, .external_lex_state = 14}, - [4627] = {.lex_state = 66, .external_lex_state = 14}, - [4628] = {.lex_state = 66, .external_lex_state = 12}, - [4629] = {.lex_state = 66, .external_lex_state = 14}, - [4630] = {.lex_state = 66, .external_lex_state = 14}, - [4631] = {.lex_state = 66, .external_lex_state = 16}, - [4632] = {.lex_state = 66, .external_lex_state = 14}, - [4633] = {.lex_state = 66, .external_lex_state = 14}, - [4634] = {.lex_state = 66, .external_lex_state = 14}, - [4635] = {.lex_state = 66, .external_lex_state = 11}, - [4636] = {.lex_state = 66, .external_lex_state = 14}, - [4637] = {.lex_state = 66, .external_lex_state = 14}, - [4638] = {.lex_state = 66, .external_lex_state = 12}, - [4639] = {.lex_state = 66, .external_lex_state = 12}, - [4640] = {.lex_state = 66, .external_lex_state = 11}, + [4626] = {.lex_state = 66, .external_lex_state = 15}, + [4627] = {.lex_state = 66, .external_lex_state = 11}, + [4628] = {.lex_state = 66, .external_lex_state = 16}, + [4629] = {.lex_state = 66, .external_lex_state = 15}, + [4630] = {.lex_state = 66, .external_lex_state = 15}, + [4631] = {.lex_state = 66, .external_lex_state = 15}, + [4632] = {.lex_state = 66, .external_lex_state = 16}, + [4633] = {.lex_state = 66, .external_lex_state = 16}, + [4634] = {.lex_state = 66, .external_lex_state = 16}, + [4635] = {.lex_state = 66, .external_lex_state = 15}, + [4636] = {.lex_state = 66, .external_lex_state = 16}, + [4637] = {.lex_state = 66, .external_lex_state = 16}, + [4638] = {.lex_state = 66, .external_lex_state = 21}, + [4639] = {.lex_state = 12, .external_lex_state = 12}, + [4640] = {.lex_state = 66, .external_lex_state = 5}, [4641] = {.lex_state = 66, .external_lex_state = 15}, - [4642] = {.lex_state = 66, .external_lex_state = 11}, - [4643] = {.lex_state = 66, .external_lex_state = 20}, - [4644] = {.lex_state = 66, .external_lex_state = 16}, - [4645] = {.lex_state = 66, .external_lex_state = 12}, - [4646] = {.lex_state = 66, .external_lex_state = 16}, + [4642] = {.lex_state = 66, .external_lex_state = 12}, + [4643] = {.lex_state = 66, .external_lex_state = 12}, + [4644] = {.lex_state = 66, .external_lex_state = 11}, + [4645] = {.lex_state = 66, .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 = 11}, - [4649] = {.lex_state = 66, .external_lex_state = 11}, + [4649] = {.lex_state = 66, .external_lex_state = 14}, [4650] = {.lex_state = 66, .external_lex_state = 11}, - [4651] = {.lex_state = 66, .external_lex_state = 11}, + [4651] = {.lex_state = 66, .external_lex_state = 15}, [4652] = {.lex_state = 66, .external_lex_state = 11}, - [4653] = {.lex_state = 66, .external_lex_state = 14}, - [4654] = {.lex_state = 66, .external_lex_state = 11}, + [4653] = {.lex_state = 66, .external_lex_state = 12}, + [4654] = {.lex_state = 66, .external_lex_state = 12}, [4655] = {.lex_state = 66, .external_lex_state = 11}, - [4656] = {.lex_state = 66, .external_lex_state = 14}, - [4657] = {.lex_state = 66, .external_lex_state = 11}, - [4658] = {.lex_state = 66, .external_lex_state = 11}, - [4659] = {.lex_state = 66, .external_lex_state = 11}, + [4656] = {.lex_state = 66, .external_lex_state = 16}, + [4657] = {.lex_state = 66, .external_lex_state = 16}, + [4658] = {.lex_state = 66, .external_lex_state = 16}, + [4659] = {.lex_state = 66, .external_lex_state = 16}, [4660] = {.lex_state = 66, .external_lex_state = 11}, [4661] = {.lex_state = 66, .external_lex_state = 14}, - [4662] = {.lex_state = 16, .external_lex_state = 19}, - [4663] = {.lex_state = 66, .external_lex_state = 14}, - [4664] = {.lex_state = 66, .external_lex_state = 12}, + [4662] = {.lex_state = 66, .external_lex_state = 11}, + [4663] = {.lex_state = 66, .external_lex_state = 11}, + [4664] = {.lex_state = 66, .external_lex_state = 11}, [4665] = {.lex_state = 66, .external_lex_state = 14}, [4666] = {.lex_state = 66, .external_lex_state = 16}, - [4667] = {.lex_state = 66, .external_lex_state = 15}, + [4667] = {.lex_state = 66, .external_lex_state = 11}, [4668] = {.lex_state = 66, .external_lex_state = 11}, - [4669] = {.lex_state = 66, .external_lex_state = 15}, - [4670] = {.lex_state = 66, .external_lex_state = 16}, - [4671] = {.lex_state = 12, .external_lex_state = 12}, + [4669] = {.lex_state = 66, .external_lex_state = 12}, + [4670] = {.lex_state = 66, .external_lex_state = 11}, + [4671] = {.lex_state = 66, .external_lex_state = 11}, [4672] = {.lex_state = 66, .external_lex_state = 11}, [4673] = {.lex_state = 66, .external_lex_state = 11}, [4674] = {.lex_state = 66, .external_lex_state = 11}, [4675] = {.lex_state = 66, .external_lex_state = 11}, - [4676] = {.lex_state = 66, .external_lex_state = 15}, - [4677] = {.lex_state = 66, .external_lex_state = 11}, - [4678] = {.lex_state = 66, .external_lex_state = 11}, - [4679] = {.lex_state = 66, .external_lex_state = 11}, - [4680] = {.lex_state = 66, .external_lex_state = 11}, + [4676] = {.lex_state = 66, .external_lex_state = 14}, + [4677] = {.lex_state = 66, .external_lex_state = 14}, + [4678] = {.lex_state = 66, .external_lex_state = 16}, + [4679] = {.lex_state = 66, .external_lex_state = 15}, + [4680] = {.lex_state = 66, .external_lex_state = 12}, [4681] = {.lex_state = 66, .external_lex_state = 15}, - [4682] = {.lex_state = 66, .external_lex_state = 12}, + [4682] = {.lex_state = 66, .external_lex_state = 11}, [4683] = {.lex_state = 66, .external_lex_state = 14}, [4684] = {.lex_state = 66, .external_lex_state = 11}, - [4685] = {.lex_state = 66, .external_lex_state = 14}, - [4686] = {.lex_state = 66, .external_lex_state = 14}, - [4687] = {.lex_state = 66, .external_lex_state = 14}, + [4685] = {.lex_state = 66, .external_lex_state = 12}, + [4686] = {.lex_state = 66, .external_lex_state = 15}, + [4687] = {.lex_state = 66, .external_lex_state = 16}, [4688] = {.lex_state = 66, .external_lex_state = 11}, [4689] = {.lex_state = 66, .external_lex_state = 11}, - [4690] = {.lex_state = 66, .external_lex_state = 16}, + [4690] = {.lex_state = 66, .external_lex_state = 11}, [4691] = {.lex_state = 66, .external_lex_state = 11}, - [4692] = {.lex_state = 66, .external_lex_state = 11}, + [4692] = {.lex_state = 66, .external_lex_state = 14}, [4693] = {.lex_state = 66, .external_lex_state = 11}, [4694] = {.lex_state = 66, .external_lex_state = 11}, [4695] = {.lex_state = 66, .external_lex_state = 11}, - [4696] = {.lex_state = 66, .external_lex_state = 16}, + [4696] = {.lex_state = 66, .external_lex_state = 11}, [4697] = {.lex_state = 66, .external_lex_state = 11}, [4698] = {.lex_state = 66, .external_lex_state = 11}, [4699] = {.lex_state = 66, .external_lex_state = 11}, - [4700] = {.lex_state = 66, .external_lex_state = 11}, - [4701] = {.lex_state = 66, .external_lex_state = 11}, + [4700] = {.lex_state = 15, .external_lex_state = 12}, + [4701] = {.lex_state = 66, .external_lex_state = 16}, [4702] = {.lex_state = 66, .external_lex_state = 11}, - [4703] = {.lex_state = 66, .external_lex_state = 11}, + [4703] = {.lex_state = 66, .external_lex_state = 12}, [4704] = {.lex_state = 66, .external_lex_state = 11}, - [4705] = {.lex_state = 66, .external_lex_state = 11}, + [4705] = {.lex_state = 66, .external_lex_state = 14}, [4706] = {.lex_state = 66, .external_lex_state = 11}, [4707] = {.lex_state = 66, .external_lex_state = 11}, - [4708] = {.lex_state = 66, .external_lex_state = 11}, - [4709] = {.lex_state = 66, .external_lex_state = 11}, + [4708] = {.lex_state = 66, .external_lex_state = 14}, + [4709] = {.lex_state = 66, .external_lex_state = 14}, [4710] = {.lex_state = 66, .external_lex_state = 11}, - [4711] = {.lex_state = 66, .external_lex_state = 15}, - [4712] = {.lex_state = 66, .external_lex_state = 14}, + [4711] = {.lex_state = 66, .external_lex_state = 11}, + [4712] = {.lex_state = 66, .external_lex_state = 11}, [4713] = {.lex_state = 66, .external_lex_state = 11}, - [4714] = {.lex_state = 66, .external_lex_state = 14}, - [4715] = {.lex_state = 66, .external_lex_state = 14}, - [4716] = {.lex_state = 66, .external_lex_state = 11}, - [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 = 15}, + [4714] = {.lex_state = 66, .external_lex_state = 11}, + [4715] = {.lex_state = 66, .external_lex_state = 11}, + [4716] = {.lex_state = 66, .external_lex_state = 16}, + [4717] = {.lex_state = 66, .external_lex_state = 11}, + [4718] = {.lex_state = 66, .external_lex_state = 11}, + [4719] = {.lex_state = 66, .external_lex_state = 11}, + [4720] = {.lex_state = 66, .external_lex_state = 14}, + [4721] = {.lex_state = 66, .external_lex_state = 11}, + [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}, - [4726] = {.lex_state = 66, .external_lex_state = 14}, + [4725] = {.lex_state = 66, .external_lex_state = 11}, + [4726] = {.lex_state = 66, .external_lex_state = 11}, [4727] = {.lex_state = 66, .external_lex_state = 11}, - [4728] = {.lex_state = 66, .external_lex_state = 14}, - [4729] = {.lex_state = 66, .external_lex_state = 14}, - [4730] = {.lex_state = 66, .external_lex_state = 15}, - [4731] = {.lex_state = 66, .external_lex_state = 12}, - [4732] = {.lex_state = 66, .external_lex_state = 11}, + [4728] = {.lex_state = 66, .external_lex_state = 11}, + [4729] = {.lex_state = 66, .external_lex_state = 11}, + [4730] = {.lex_state = 66, .external_lex_state = 14}, + [4731] = {.lex_state = 66, .external_lex_state = 11}, + [4732] = {.lex_state = 66, .external_lex_state = 14}, [4733] = {.lex_state = 66, .external_lex_state = 11}, - [4734] = {.lex_state = 66, .external_lex_state = 16}, - [4735] = {.lex_state = 66, .external_lex_state = 15}, - [4736] = {.lex_state = 66, .external_lex_state = 15}, + [4734] = {.lex_state = 66, .external_lex_state = 11}, + [4735] = {.lex_state = 66, .external_lex_state = 11}, + [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 = 11}, - [4741] = {.lex_state = 66, .external_lex_state = 12}, - [4742] = {.lex_state = 66, .external_lex_state = 16}, - [4743] = {.lex_state = 66, .external_lex_state = 16}, - [4744] = {.lex_state = 66, .external_lex_state = 15}, - [4745] = {.lex_state = 66, .external_lex_state = 11}, - [4746] = {.lex_state = 66, .external_lex_state = 16}, - [4747] = {.lex_state = 66, .external_lex_state = 14}, + [4739] = {.lex_state = 66, .external_lex_state = 16}, + [4740] = {.lex_state = 66, .external_lex_state = 14}, + [4741] = {.lex_state = 66, .external_lex_state = 14}, + [4742] = {.lex_state = 66, .external_lex_state = 14}, + [4743] = {.lex_state = 66, .external_lex_state = 11}, + [4744] = {.lex_state = 66, .external_lex_state = 16}, + [4745] = {.lex_state = 66, .external_lex_state = 14}, + [4746] = {.lex_state = 66, .external_lex_state = 11}, + [4747] = {.lex_state = 66, .external_lex_state = 11}, [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 = 16}, - [4752] = {.lex_state = 66, .external_lex_state = 16}, - [4753] = {.lex_state = 66, .external_lex_state = 14}, - [4754] = {.lex_state = 66, .external_lex_state = 16}, - [4755] = {.lex_state = 66, .external_lex_state = 12}, - [4756] = {.lex_state = 66, .external_lex_state = 14}, - [4757] = {.lex_state = 66, .external_lex_state = 11}, - [4758] = {.lex_state = 66, .external_lex_state = 16}, + [4749] = {.lex_state = 66, .external_lex_state = 11}, + [4750] = {.lex_state = 66, .external_lex_state = 14}, + [4751] = {.lex_state = 66, .external_lex_state = 12}, + [4752] = {.lex_state = 66, .external_lex_state = 12}, + [4753] = {.lex_state = 15, .external_lex_state = 12}, + [4754] = {.lex_state = 66, .external_lex_state = 15}, + [4755] = {.lex_state = 66, .external_lex_state = 14}, + [4756] = {.lex_state = 66, .external_lex_state = 12}, + [4757] = {.lex_state = 66, .external_lex_state = 15}, + [4758] = {.lex_state = 66, .external_lex_state = 11}, [4759] = {.lex_state = 66, .external_lex_state = 16}, - [4760] = {.lex_state = 66, .external_lex_state = 16}, - [4761] = {.lex_state = 66, .external_lex_state = 11}, - [4762] = {.lex_state = 66, .external_lex_state = 14}, - [4763] = {.lex_state = 66, .external_lex_state = 15}, - [4764] = {.lex_state = 12, .external_lex_state = 12}, - [4765] = {.lex_state = 66, .external_lex_state = 16}, + [4760] = {.lex_state = 66, .external_lex_state = 15}, + [4761] = {.lex_state = 66, .external_lex_state = 14}, + [4762] = {.lex_state = 66, .external_lex_state = 12}, + [4763] = {.lex_state = 66, .external_lex_state = 11}, + [4764] = {.lex_state = 66, .external_lex_state = 12}, + [4765] = {.lex_state = 66, .external_lex_state = 11}, [4766] = {.lex_state = 66, .external_lex_state = 14}, - [4767] = {.lex_state = 66, .external_lex_state = 11}, - [4768] = {.lex_state = 66, .external_lex_state = 16}, - [4769] = {.lex_state = 66, .external_lex_state = 12}, - [4770] = {.lex_state = 66, .external_lex_state = 15}, - [4771] = {.lex_state = 66, .external_lex_state = 14}, - [4772] = {.lex_state = 66, .external_lex_state = 15}, - [4773] = {.lex_state = 66, .external_lex_state = 16}, - [4774] = {.lex_state = 66, .external_lex_state = 11}, - [4775] = {.lex_state = 66, .external_lex_state = 11}, - [4776] = {.lex_state = 66, .external_lex_state = 15}, - [4777] = {.lex_state = 66, .external_lex_state = 14}, - [4778] = {.lex_state = 66, .external_lex_state = 11}, - [4779] = {.lex_state = 66, .external_lex_state = 11}, - [4780] = {.lex_state = 66, .external_lex_state = 11}, - [4781] = {.lex_state = 66, .external_lex_state = 14}, - [4782] = {.lex_state = 66, .external_lex_state = 11}, - [4783] = {.lex_state = 66, .external_lex_state = 11}, - [4784] = {.lex_state = 66, .external_lex_state = 16}, - [4785] = {.lex_state = 66, .external_lex_state = 11}, - [4786] = {.lex_state = 66, .external_lex_state = 14}, - [4787] = {.lex_state = 16, .external_lex_state = 19}, + [4767] = {.lex_state = 66, .external_lex_state = 14}, + [4768] = {.lex_state = 66, .external_lex_state = 15}, + [4769] = {.lex_state = 66, .external_lex_state = 16}, + [4770] = {.lex_state = 66, .external_lex_state = 16}, + [4771] = {.lex_state = 66, .external_lex_state = 16}, + [4772] = {.lex_state = 66, .external_lex_state = 14}, + [4773] = {.lex_state = 66, .external_lex_state = 15}, + [4774] = {.lex_state = 66, .external_lex_state = 14}, + [4775] = {.lex_state = 66, .external_lex_state = 14}, + [4776] = {.lex_state = 66, .external_lex_state = 16}, + [4777] = {.lex_state = 66, .external_lex_state = 16}, + [4778] = {.lex_state = 66, .external_lex_state = 16}, + [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 = 16}, + [4784] = {.lex_state = 66, .external_lex_state = 14}, + [4785] = {.lex_state = 66, .external_lex_state = 14}, + [4786] = {.lex_state = 66, .external_lex_state = 16}, + [4787] = {.lex_state = 66, .external_lex_state = 16}, [4788] = {.lex_state = 66, .external_lex_state = 15}, - [4789] = {.lex_state = 66, .external_lex_state = 12}, - [4790] = {.lex_state = 66, .external_lex_state = 15}, - [4791] = {.lex_state = 66, .external_lex_state = 11}, - [4792] = {.lex_state = 66, .external_lex_state = 15}, - [4793] = {.lex_state = 66, .external_lex_state = 11}, - [4794] = {.lex_state = 66, .external_lex_state = 14}, - [4795] = {.lex_state = 66, .external_lex_state = 14}, - [4796] = {.lex_state = 66, .external_lex_state = 11}, - [4797] = {.lex_state = 66, .external_lex_state = 16}, - [4798] = {.lex_state = 66, .external_lex_state = 16}, - [4799] = {.lex_state = 66, .external_lex_state = 11}, - [4800] = {.lex_state = 66, .external_lex_state = 14}, - [4801] = {.lex_state = 66, .external_lex_state = 14}, + [4789] = {.lex_state = 66, .external_lex_state = 14}, + [4790] = {.lex_state = 66, .external_lex_state = 14}, + [4791] = {.lex_state = 66, .external_lex_state = 16}, + [4792] = {.lex_state = 66, .external_lex_state = 16}, + [4793] = {.lex_state = 66, .external_lex_state = 14}, + [4794] = {.lex_state = 66, .external_lex_state = 11}, + [4795] = {.lex_state = 66, .external_lex_state = 16}, + [4796] = {.lex_state = 66, .external_lex_state = 15}, + [4797] = {.lex_state = 66, .external_lex_state = 15}, + [4798] = {.lex_state = 66, .external_lex_state = 20}, + [4799] = {.lex_state = 66, .external_lex_state = 12}, + [4800] = {.lex_state = 66, .external_lex_state = 11}, + [4801] = {.lex_state = 66, .external_lex_state = 16}, [4802] = {.lex_state = 66, .external_lex_state = 14}, [4803] = {.lex_state = 66, .external_lex_state = 16}, - [4804] = {.lex_state = 66, .external_lex_state = 16}, - [4805] = {.lex_state = 66, .external_lex_state = 14}, - [4806] = {.lex_state = 66, .external_lex_state = 16}, + [4804] = {.lex_state = 66, .external_lex_state = 14}, + [4805] = {.lex_state = 66, .external_lex_state = 16}, + [4806] = {.lex_state = 66, .external_lex_state = 11}, [4807] = {.lex_state = 66, .external_lex_state = 11}, - [4808] = {.lex_state = 66, .external_lex_state = 15}, - [4809] = {.lex_state = 66, .external_lex_state = 11}, - [4810] = {.lex_state = 66, .external_lex_state = 14}, - [4811] = {.lex_state = 66, .external_lex_state = 11}, - [4812] = {.lex_state = 66, .external_lex_state = 16}, - [4813] = {.lex_state = 66, .external_lex_state = 14}, - [4814] = {.lex_state = 66, .external_lex_state = 11}, - [4815] = {.lex_state = 66, .external_lex_state = 14}, - [4816] = {.lex_state = 66, .external_lex_state = 14}, - [4817] = {.lex_state = 66, .external_lex_state = 14}, - [4818] = {.lex_state = 66, .external_lex_state = 15}, - [4819] = {.lex_state = 66, .external_lex_state = 12}, - [4820] = {.lex_state = 66, .external_lex_state = 20}, - [4821] = {.lex_state = 66, .external_lex_state = 11}, - [4822] = {.lex_state = 66, .external_lex_state = 15}, + [4808] = {.lex_state = 66, .external_lex_state = 14}, + [4809] = {.lex_state = 3, .external_lex_state = 15}, + [4810] = {.lex_state = 66, .external_lex_state = 15}, + [4811] = {.lex_state = 66, .external_lex_state = 12}, + [4812] = {.lex_state = 66, .external_lex_state = 11}, + [4813] = {.lex_state = 66, .external_lex_state = 11}, + [4814] = {.lex_state = 66, .external_lex_state = 15}, + [4815] = {.lex_state = 66, .external_lex_state = 16}, + [4816] = {.lex_state = 66, .external_lex_state = 11}, + [4817] = {.lex_state = 66, .external_lex_state = 11}, + [4818] = {.lex_state = 66, .external_lex_state = 14}, + [4819] = {.lex_state = 66, .external_lex_state = 14}, + [4820] = {.lex_state = 66, .external_lex_state = 11}, + [4821] = {.lex_state = 66, .external_lex_state = 12}, + [4822] = {.lex_state = 66, .external_lex_state = 16}, [4823] = {.lex_state = 66, .external_lex_state = 16}, - [4824] = {.lex_state = 66, .external_lex_state = 12}, - [4825] = {.lex_state = 66, .external_lex_state = 14}, + [4824] = {.lex_state = 66, .external_lex_state = 11}, + [4825] = {.lex_state = 66, .external_lex_state = 16}, [4826] = {.lex_state = 66, .external_lex_state = 14}, - [4827] = {.lex_state = 66, .external_lex_state = 16}, - [4828] = {.lex_state = 66, .external_lex_state = 14}, + [4827] = {.lex_state = 66, .external_lex_state = 14}, + [4828] = {.lex_state = 66, .external_lex_state = 16}, [4829] = {.lex_state = 66, .external_lex_state = 16}, [4830] = {.lex_state = 66, .external_lex_state = 16}, - [4831] = {.lex_state = 66, .external_lex_state = 14}, - [4832] = {.lex_state = 66, .external_lex_state = 14}, - [4833] = {.lex_state = 66, .external_lex_state = 14}, - [4834] = {.lex_state = 66, .external_lex_state = 16}, - [4835] = {.lex_state = 66, .external_lex_state = 16}, - [4836] = {.lex_state = 66, .external_lex_state = 11}, - [4837] = {.lex_state = 66, .external_lex_state = 11}, - [4838] = {.lex_state = 16, .external_lex_state = 19}, - [4839] = {.lex_state = 15, .external_lex_state = 12}, + [4831] = {.lex_state = 66, .external_lex_state = 11}, + [4832] = {.lex_state = 66, .external_lex_state = 11}, + [4833] = {.lex_state = 66, .external_lex_state = 11}, + [4834] = {.lex_state = 66, .external_lex_state = 11}, + [4835] = {.lex_state = 66, .external_lex_state = 11}, + [4836] = {.lex_state = 66, .external_lex_state = 20}, + [4837] = {.lex_state = 66, .external_lex_state = 14}, + [4838] = {.lex_state = 66, .external_lex_state = 16}, + [4839] = {.lex_state = 66, .external_lex_state = 11}, [4840] = {.lex_state = 66, .external_lex_state = 11}, [4841] = {.lex_state = 66, .external_lex_state = 11}, - [4842] = {.lex_state = 66, .external_lex_state = 15}, - [4843] = {.lex_state = 66, .external_lex_state = 11}, - [4844] = {.lex_state = 66, .external_lex_state = 11}, - [4845] = {.lex_state = 66, .external_lex_state = 11}, - [4846] = {.lex_state = 66, .external_lex_state = 11}, - [4847] = {.lex_state = 66, .external_lex_state = 14}, - [4848] = {.lex_state = 66, .external_lex_state = 11}, - [4849] = {.lex_state = 66, .external_lex_state = 11}, - [4850] = {.lex_state = 66, .external_lex_state = 15}, - [4851] = {.lex_state = 66, .external_lex_state = 14}, - [4852] = {.lex_state = 66, .external_lex_state = 12}, - [4853] = {.lex_state = 3, .external_lex_state = 15}, - [4854] = {.lex_state = 66, .external_lex_state = 11}, - [4855] = {.lex_state = 3, .external_lex_state = 15}, - [4856] = {.lex_state = 3, .external_lex_state = 15}, - [4857] = {.lex_state = 66, .external_lex_state = 15}, - [4858] = {.lex_state = 66, .external_lex_state = 12}, - [4859] = {.lex_state = 66, .external_lex_state = 16}, - [4860] = {.lex_state = 66, .external_lex_state = 14}, + [4842] = {.lex_state = 66, .external_lex_state = 14}, + [4843] = {.lex_state = 66, .external_lex_state = 15}, + [4844] = {.lex_state = 66, .external_lex_state = 15}, + [4845] = {.lex_state = 66, .external_lex_state = 16}, + [4846] = {.lex_state = 66, .external_lex_state = 12}, + [4847] = {.lex_state = 66, .external_lex_state = 11}, + [4848] = {.lex_state = 66, .external_lex_state = 14}, + [4849] = {.lex_state = 66, .external_lex_state = 15}, + [4850] = {.lex_state = 66, .external_lex_state = 14}, + [4851] = {.lex_state = 16, .external_lex_state = 19}, + [4852] = {.lex_state = 66, .external_lex_state = 16}, + [4853] = {.lex_state = 66, .external_lex_state = 14}, + [4854] = {.lex_state = 66, .external_lex_state = 14}, + [4855] = {.lex_state = 66, .external_lex_state = 14}, + [4856] = {.lex_state = 66, .external_lex_state = 16}, + [4857] = {.lex_state = 66, .external_lex_state = 11}, + [4858] = {.lex_state = 66, .external_lex_state = 16}, + [4859] = {.lex_state = 66, .external_lex_state = 14}, + [4860] = {.lex_state = 66, .external_lex_state = 16}, [4861] = {.lex_state = 66, .external_lex_state = 14}, - [4862] = {.lex_state = 66, .external_lex_state = 11}, + [4862] = {.lex_state = 66, .external_lex_state = 15}, [4863] = {.lex_state = 66, .external_lex_state = 16}, - [4864] = {.lex_state = 66, .external_lex_state = 11}, - [4865] = {.lex_state = 66, .external_lex_state = 14}, - [4866] = {.lex_state = 66, .external_lex_state = 14}, + [4864] = {.lex_state = 66, .external_lex_state = 16}, + [4865] = {.lex_state = 66, .external_lex_state = 12}, + [4866] = {.lex_state = 66, .external_lex_state = 15}, [4867] = {.lex_state = 66, .external_lex_state = 16}, - [4868] = {.lex_state = 66, .external_lex_state = 16}, - [4869] = {.lex_state = 66, .external_lex_state = 20}, - [4870] = {.lex_state = 66, .external_lex_state = 11}, - [4871] = {.lex_state = 66, .external_lex_state = 14}, - [4872] = {.lex_state = 66, .external_lex_state = 11}, - [4873] = {.lex_state = 66, .external_lex_state = 11}, - [4874] = {.lex_state = 66, .external_lex_state = 11}, - [4875] = {.lex_state = 66, .external_lex_state = 20}, - [4876] = {.lex_state = 66, .external_lex_state = 14}, - [4877] = {.lex_state = 66, .external_lex_state = 15}, - [4878] = {.lex_state = 66, .external_lex_state = 12}, + [4868] = {.lex_state = 66, .external_lex_state = 11}, + [4869] = {.lex_state = 66, .external_lex_state = 14}, + [4870] = {.lex_state = 66, .external_lex_state = 16}, + [4871] = {.lex_state = 66, .external_lex_state = 12}, + [4872] = {.lex_state = 66, .external_lex_state = 14}, + [4873] = {.lex_state = 3, .external_lex_state = 15}, + [4874] = {.lex_state = 16, .external_lex_state = 19}, + [4875] = {.lex_state = 66, .external_lex_state = 11}, + [4876] = {.lex_state = 3, .external_lex_state = 15}, + [4877] = {.lex_state = 66, .external_lex_state = 14}, + [4878] = {.lex_state = 3, .external_lex_state = 15}, [4879] = {.lex_state = 66, .external_lex_state = 15}, - [4880] = {.lex_state = 66, .external_lex_state = 11}, - [4881] = {.lex_state = 66, .external_lex_state = 15}, + [4880] = {.lex_state = 3, .external_lex_state = 15}, + [4881] = {.lex_state = 66, .external_lex_state = 12}, [4882] = {.lex_state = 66, .external_lex_state = 12}, - [4883] = {.lex_state = 66, .external_lex_state = 14}, - [4884] = {.lex_state = 66, .external_lex_state = 14}, - [4885] = {.lex_state = 66, .external_lex_state = 16}, + [4883] = {.lex_state = 66, .external_lex_state = 11}, + [4884] = {.lex_state = 66, .external_lex_state = 15}, + [4885] = {.lex_state = 66, .external_lex_state = 12}, [4886] = {.lex_state = 66, .external_lex_state = 11}, [4887] = {.lex_state = 66, .external_lex_state = 14}, - [4888] = {.lex_state = 66, .external_lex_state = 11}, - [4889] = {.lex_state = 66, .external_lex_state = 14}, - [4890] = {.lex_state = 66, .external_lex_state = 16}, - [4891] = {.lex_state = 66, .external_lex_state = 16}, + [4888] = {.lex_state = 66, .external_lex_state = 14}, + [4889] = {.lex_state = 66, .external_lex_state = 16}, + [4890] = {.lex_state = 66, .external_lex_state = 11}, + [4891] = {.lex_state = 66, .external_lex_state = 14}, [4892] = {.lex_state = 66, .external_lex_state = 11}, - [4893] = {.lex_state = 66, .external_lex_state = 15}, + [4893] = {.lex_state = 66, .external_lex_state = 14}, [4894] = {.lex_state = 66, .external_lex_state = 16}, - [4895] = {.lex_state = 66, .external_lex_state = 11}, - [4896] = {.lex_state = 66, .external_lex_state = 16}, - [4897] = {.lex_state = 66, .external_lex_state = 12}, - [4898] = {.lex_state = 66, .external_lex_state = 16}, - [4899] = {.lex_state = 66, .external_lex_state = 14}, - [4900] = {.lex_state = 66, .external_lex_state = 14}, - [4901] = {.lex_state = 66, .external_lex_state = 16}, - [4902] = {.lex_state = 66, .external_lex_state = 16}, + [4895] = {.lex_state = 66, .external_lex_state = 16}, + [4896] = {.lex_state = 66, .external_lex_state = 11}, + [4897] = {.lex_state = 66, .external_lex_state = 16}, + [4898] = {.lex_state = 66, .external_lex_state = 11}, + [4899] = {.lex_state = 66, .external_lex_state = 11}, + [4900] = {.lex_state = 66, .external_lex_state = 11}, + [4901] = {.lex_state = 66, .external_lex_state = 11}, + [4902] = {.lex_state = 66, .external_lex_state = 11}, [4903] = {.lex_state = 66, .external_lex_state = 14}, - [4904] = {.lex_state = 66, .external_lex_state = 14}, + [4904] = {.lex_state = 66, .external_lex_state = 16}, [4905] = {.lex_state = 66, .external_lex_state = 14}, - [4906] = {.lex_state = 66, .external_lex_state = 16}, - [4907] = {.lex_state = 66, .external_lex_state = 16}, - [4908] = {.lex_state = 66, .external_lex_state = 11}, - [4909] = {.lex_state = 66, .external_lex_state = 14}, - [4910] = {.lex_state = 66, .external_lex_state = 14}, - [4911] = {.lex_state = 66, .external_lex_state = 16}, - [4912] = {.lex_state = 66, .external_lex_state = 14}, - [4913] = {.lex_state = 66, .external_lex_state = 14}, + [4906] = {.lex_state = 66, .external_lex_state = 15}, + [4907] = {.lex_state = 66, .external_lex_state = 11}, + [4908] = {.lex_state = 66, .external_lex_state = 12}, + [4909] = {.lex_state = 66, .external_lex_state = 11}, + [4910] = {.lex_state = 66, .external_lex_state = 11}, + [4911] = {.lex_state = 66, .external_lex_state = 11}, + [4912] = {.lex_state = 66, .external_lex_state = 15}, + [4913] = {.lex_state = 66, .external_lex_state = 11}, [4914] = {.lex_state = 66, .external_lex_state = 16}, - [4915] = {.lex_state = 66, .external_lex_state = 16}, - [4916] = {.lex_state = 66, .external_lex_state = 16}, - [4917] = {.lex_state = 66, .external_lex_state = 14}, - [4918] = {.lex_state = 66, .external_lex_state = 14}, + [4915] = {.lex_state = 66, .external_lex_state = 14}, + [4916] = {.lex_state = 66, .external_lex_state = 14}, + [4917] = {.lex_state = 66, .external_lex_state = 20}, + [4918] = {.lex_state = 66, .external_lex_state = 15}, [4919] = {.lex_state = 66, .external_lex_state = 16}, - [4920] = {.lex_state = 66, .external_lex_state = 16}, - [4921] = {.lex_state = 66, .external_lex_state = 16}, - [4922] = {.lex_state = 16, .external_lex_state = 19}, - [4923] = {.lex_state = 66, .external_lex_state = 20}, - [4924] = {.lex_state = 66, .external_lex_state = 12}, + [4920] = {.lex_state = 66, .external_lex_state = 12}, + [4921] = {.lex_state = 66, .external_lex_state = 11}, + [4922] = {.lex_state = 66, .external_lex_state = 16}, + [4923] = {.lex_state = 66, .external_lex_state = 14}, + [4924] = {.lex_state = 66, .external_lex_state = 14}, [4925] = {.lex_state = 66, .external_lex_state = 16}, - [4926] = {.lex_state = 66, .external_lex_state = 11}, - [4927] = {.lex_state = 66, .external_lex_state = 12}, - [4928] = {.lex_state = 66, .external_lex_state = 11}, - [4929] = {.lex_state = 66, .external_lex_state = 16}, + [4926] = {.lex_state = 66, .external_lex_state = 16}, + [4927] = {.lex_state = 66, .external_lex_state = 16}, + [4928] = {.lex_state = 66, .external_lex_state = 20}, + [4929] = {.lex_state = 66, .external_lex_state = 11}, [4930] = {.lex_state = 66, .external_lex_state = 14}, - [4931] = {.lex_state = 66, .external_lex_state = 14}, - [4932] = {.lex_state = 66, .external_lex_state = 11}, - [4933] = {.lex_state = 66, .external_lex_state = 16}, - [4934] = {.lex_state = 66, .external_lex_state = 15}, - [4935] = {.lex_state = 66, .external_lex_state = 14}, - [4936] = {.lex_state = 66, .external_lex_state = 11}, + [4931] = {.lex_state = 66, .external_lex_state = 15}, + [4932] = {.lex_state = 66, .external_lex_state = 14}, + [4933] = {.lex_state = 66, .external_lex_state = 12}, + [4934] = {.lex_state = 66, .external_lex_state = 12}, + [4935] = {.lex_state = 66, .external_lex_state = 11}, + [4936] = {.lex_state = 66, .external_lex_state = 14}, [4937] = {.lex_state = 66, .external_lex_state = 14}, [4938] = {.lex_state = 66, .external_lex_state = 16}, - [4939] = {.lex_state = 66, .external_lex_state = 16}, - [4940] = {.lex_state = 66, .external_lex_state = 15}, + [4939] = {.lex_state = 66, .external_lex_state = 11}, + [4940] = {.lex_state = 66, .external_lex_state = 14}, [4941] = {.lex_state = 66, .external_lex_state = 14}, - [4942] = {.lex_state = 66, .external_lex_state = 11}, - [4943] = {.lex_state = 66, .external_lex_state = 11}, - [4944] = {.lex_state = 66, .external_lex_state = 14}, - [4945] = {.lex_state = 66, .external_lex_state = 11}, - [4946] = {.lex_state = 66, .external_lex_state = 16}, - [4947] = {.lex_state = 66, .external_lex_state = 12}, + [4942] = {.lex_state = 66, .external_lex_state = 20}, + [4943] = {.lex_state = 66, .external_lex_state = 14}, + [4944] = {.lex_state = 66, .external_lex_state = 16}, + [4945] = {.lex_state = 66, .external_lex_state = 16}, + [4946] = {.lex_state = 66, .external_lex_state = 11}, + [4947] = {.lex_state = 15, .external_lex_state = 12}, [4948] = {.lex_state = 66, .external_lex_state = 16}, - [4949] = {.lex_state = 66, .external_lex_state = 16}, - [4950] = {.lex_state = 66, .external_lex_state = 11}, - [4951] = {.lex_state = 66, .external_lex_state = 15}, - [4952] = {.lex_state = 66, .external_lex_state = 16}, - [4953] = {.lex_state = 66, .external_lex_state = 11}, - [4954] = {.lex_state = 66, .external_lex_state = 16}, - [4955] = {.lex_state = 66, .external_lex_state = 11}, - [4956] = {.lex_state = 66, .external_lex_state = 11}, - [4957] = {.lex_state = 66, .external_lex_state = 14}, - [4958] = {.lex_state = 66, .external_lex_state = 12}, - [4959] = {.lex_state = 66, .external_lex_state = 16}, - [4960] = {.lex_state = 66, .external_lex_state = 11}, - [4961] = {.lex_state = 66, .external_lex_state = 15}, - [4962] = {.lex_state = 66, .external_lex_state = 12}, - [4963] = {.lex_state = 15, .external_lex_state = 12}, + [4949] = {.lex_state = 66, .external_lex_state = 12}, + [4950] = {.lex_state = 66, .external_lex_state = 20}, + [4951] = {.lex_state = 66, .external_lex_state = 11}, + [4952] = {.lex_state = 66, .external_lex_state = 11}, + [4953] = {.lex_state = 66, .external_lex_state = 14}, + [4954] = {.lex_state = 66, .external_lex_state = 14}, + [4955] = {.lex_state = 66, .external_lex_state = 12}, + [4956] = {.lex_state = 66, .external_lex_state = 16}, + [4957] = {.lex_state = 66, .external_lex_state = 11}, + [4958] = {.lex_state = 66, .external_lex_state = 14}, + [4959] = {.lex_state = 66, .external_lex_state = 11}, + [4960] = {.lex_state = 66, .external_lex_state = 14}, + [4961] = {.lex_state = 66, .external_lex_state = 11}, + [4962] = {.lex_state = 66, .external_lex_state = 16}, + [4963] = {.lex_state = 66, .external_lex_state = 16}, [4964] = {.lex_state = 66, .external_lex_state = 11}, [4965] = {.lex_state = 66, .external_lex_state = 11}, - [4966] = {.lex_state = 66, .external_lex_state = 15}, + [4966] = {.lex_state = 66, .external_lex_state = 12}, [4967] = {.lex_state = 66, .external_lex_state = 11}, - [4968] = {.lex_state = 66, .external_lex_state = 15}, - [4969] = {.lex_state = 3, .external_lex_state = 15}, + [4968] = {.lex_state = 66, .external_lex_state = 11}, + [4969] = {.lex_state = 66, .external_lex_state = 14}, [4970] = {.lex_state = 66, .external_lex_state = 14}, - [4971] = {.lex_state = 3, .external_lex_state = 15}, - [4972] = {.lex_state = 66, .external_lex_state = 11}, - [4973] = {.lex_state = 3, .external_lex_state = 15}, - [4974] = {.lex_state = 66, .external_lex_state = 11}, - [4975] = {.lex_state = 66, .external_lex_state = 12}, - [4976] = {.lex_state = 12, .external_lex_state = 12}, - [4977] = {.lex_state = 66, .external_lex_state = 14}, - [4978] = {.lex_state = 66, .external_lex_state = 11}, + [4971] = {.lex_state = 66, .external_lex_state = 15}, + [4972] = {.lex_state = 66, .external_lex_state = 14}, + [4973] = {.lex_state = 66, .external_lex_state = 14}, + [4974] = {.lex_state = 66, .external_lex_state = 16}, + [4975] = {.lex_state = 16, .external_lex_state = 19}, + [4976] = {.lex_state = 66, .external_lex_state = 14}, + [4977] = {.lex_state = 66, .external_lex_state = 15}, + [4978] = {.lex_state = 66, .external_lex_state = 14}, [4979] = {.lex_state = 66, .external_lex_state = 2}, - [4980] = {.lex_state = 66, .external_lex_state = 12}, - [4981] = {.lex_state = 66, .external_lex_state = 12}, - [4982] = {.lex_state = 66, .external_lex_state = 11}, - [4983] = {.lex_state = 66, .external_lex_state = 12}, - [4984] = {.lex_state = 66, .external_lex_state = 12}, - [4985] = {.lex_state = 66, .external_lex_state = 11}, - [4986] = {.lex_state = 66, .external_lex_state = 14}, - [4987] = {.lex_state = 66, .external_lex_state = 12}, - [4988] = {.lex_state = 66, .external_lex_state = 12}, + [4980] = {.lex_state = 66, .external_lex_state = 16}, + [4981] = {.lex_state = 66, .external_lex_state = 16}, + [4982] = {.lex_state = 66, .external_lex_state = 15}, + [4983] = {.lex_state = 66, .external_lex_state = 11}, + [4984] = {.lex_state = 66, .external_lex_state = 11}, + [4985] = {.lex_state = 66, .external_lex_state = 14}, + [4986] = {.lex_state = 66, .external_lex_state = 11}, + [4987] = {.lex_state = 66, .external_lex_state = 11}, + [4988] = {.lex_state = 66, .external_lex_state = 11}, [4989] = {.lex_state = 66, .external_lex_state = 16}, - [4990] = {.lex_state = 66, .external_lex_state = 12}, - [4991] = {.lex_state = 15, .external_lex_state = 12}, - [4992] = {.lex_state = 66, .external_lex_state = 12}, - [4993] = {.lex_state = 66, .external_lex_state = 11}, - [4994] = {.lex_state = 66, .external_lex_state = 12}, + [4990] = {.lex_state = 66, .external_lex_state = 11}, + [4991] = {.lex_state = 66, .external_lex_state = 16}, + [4992] = {.lex_state = 66, .external_lex_state = 16}, + [4993] = {.lex_state = 66, .external_lex_state = 15}, + [4994] = {.lex_state = 66, .external_lex_state = 11}, [4995] = {.lex_state = 66, .external_lex_state = 11}, - [4996] = {.lex_state = 15, .external_lex_state = 12}, - [4997] = {.lex_state = 15, .external_lex_state = 12}, - [4998] = {.lex_state = 66, .external_lex_state = 12}, + [4996] = {.lex_state = 66, .external_lex_state = 11}, + [4997] = {.lex_state = 66, .external_lex_state = 16}, + [4998] = {.lex_state = 66, .external_lex_state = 11}, [4999] = {.lex_state = 66, .external_lex_state = 11}, - [5000] = {.lex_state = 15, .external_lex_state = 12}, - [5001] = {.lex_state = 66, .external_lex_state = 12}, + [5000] = {.lex_state = 66, .external_lex_state = 11}, + [5001] = {.lex_state = 66, .external_lex_state = 11}, [5002] = {.lex_state = 66, .external_lex_state = 16}, - [5003] = {.lex_state = 66, .external_lex_state = 11}, - [5004] = {.lex_state = 66, .external_lex_state = 12}, + [5003] = {.lex_state = 66, .external_lex_state = 12}, + [5004] = {.lex_state = 12, .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 = 12}, - [5009] = {.lex_state = 66, .external_lex_state = 11}, + [5006] = {.lex_state = 66, .external_lex_state = 11}, + [5007] = {.lex_state = 66, .external_lex_state = 14}, + [5008] = {.lex_state = 66, .external_lex_state = 11}, + [5009] = {.lex_state = 66, .external_lex_state = 14}, [5010] = {.lex_state = 66, .external_lex_state = 11}, - [5011] = {.lex_state = 66, .external_lex_state = 16}, + [5011] = {.lex_state = 66, .external_lex_state = 11}, [5012] = {.lex_state = 66, .external_lex_state = 11}, - [5013] = {.lex_state = 66, .external_lex_state = 11}, - [5014] = {.lex_state = 66, .external_lex_state = 12}, - [5015] = {.lex_state = 66, .external_lex_state = 11}, - [5016] = {.lex_state = 66, .external_lex_state = 11}, + [5013] = {.lex_state = 66, .external_lex_state = 15}, + [5014] = {.lex_state = 66, .external_lex_state = 11}, + [5015] = {.lex_state = 66, .external_lex_state = 12}, + [5016] = {.lex_state = 66, .external_lex_state = 14}, [5017] = {.lex_state = 66, .external_lex_state = 11}, [5018] = {.lex_state = 66, .external_lex_state = 11}, - [5019] = {.lex_state = 66, .external_lex_state = 15}, - [5020] = {.lex_state = 66, .external_lex_state = 12}, - [5021] = {.lex_state = 66, .external_lex_state = 11}, - [5022] = {.lex_state = 66, .external_lex_state = 2}, - [5023] = {.lex_state = 66, .external_lex_state = 11}, - [5024] = {.lex_state = 66, .external_lex_state = 12}, - [5025] = {.lex_state = 66, .external_lex_state = 12}, - [5026] = {.lex_state = 66, .external_lex_state = 12}, - [5027] = {.lex_state = 66, .external_lex_state = 11}, + [5019] = {.lex_state = 66, .external_lex_state = 11}, + [5020] = {.lex_state = 66, .external_lex_state = 11}, + [5021] = {.lex_state = 66, .external_lex_state = 16}, + [5022] = {.lex_state = 66, .external_lex_state = 14}, + [5023] = {.lex_state = 66, .external_lex_state = 12}, + [5024] = {.lex_state = 12, .external_lex_state = 12}, + [5025] = {.lex_state = 66, .external_lex_state = 11}, + [5026] = {.lex_state = 66, .external_lex_state = 2}, + [5027] = {.lex_state = 66, .external_lex_state = 15}, [5028] = {.lex_state = 66, .external_lex_state = 11}, - [5029] = {.lex_state = 66, .external_lex_state = 12}, + [5029] = {.lex_state = 15, .external_lex_state = 12}, [5030] = {.lex_state = 66, .external_lex_state = 12}, - [5031] = {.lex_state = 66, .external_lex_state = 16}, - [5032] = {.lex_state = 66, .external_lex_state = 11}, + [5031] = {.lex_state = 66, .external_lex_state = 11}, + [5032] = {.lex_state = 66, .external_lex_state = 12}, [5033] = {.lex_state = 66, .external_lex_state = 11}, - [5034] = {.lex_state = 66, .external_lex_state = 12}, - [5035] = {.lex_state = 66, .external_lex_state = 11}, + [5034] = {.lex_state = 66, .external_lex_state = 11}, + [5035] = {.lex_state = 66, .external_lex_state = 12}, [5036] = {.lex_state = 66, .external_lex_state = 12}, - [5037] = {.lex_state = 66, .external_lex_state = 11}, - [5038] = {.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 = 16}, - [5042] = {.lex_state = 66, .external_lex_state = 12}, - [5043] = {.lex_state = 66, .external_lex_state = 14}, - [5044] = {.lex_state = 66, .external_lex_state = 16}, - [5045] = {.lex_state = 66, .external_lex_state = 12}, - [5046] = {.lex_state = 66, .external_lex_state = 12}, - [5047] = {.lex_state = 66, .external_lex_state = 14}, - [5048] = {.lex_state = 66, .external_lex_state = 15}, + [5037] = {.lex_state = 66, .external_lex_state = 12}, + [5038] = {.lex_state = 15, .external_lex_state = 12}, + [5039] = {.lex_state = 66, .external_lex_state = 11}, + [5040] = {.lex_state = 66, .external_lex_state = 2}, + [5041] = {.lex_state = 3, .external_lex_state = 15}, + [5042] = {.lex_state = 66, .external_lex_state = 11}, + [5043] = {.lex_state = 66, .external_lex_state = 12}, + [5044] = {.lex_state = 66, .external_lex_state = 14}, + [5045] = {.lex_state = 66, .external_lex_state = 16}, + [5046] = {.lex_state = 15, .external_lex_state = 12}, + [5047] = {.lex_state = 15, .external_lex_state = 12}, + [5048] = {.lex_state = 66, .external_lex_state = 12}, [5049] = {.lex_state = 66, .external_lex_state = 15}, - [5050] = {.lex_state = 66, .external_lex_state = 16}, - [5051] = {.lex_state = 66, .external_lex_state = 14}, - [5052] = {.lex_state = 66, .external_lex_state = 11}, - [5053] = {.lex_state = 66, .external_lex_state = 16}, - [5054] = {.lex_state = 16, .external_lex_state = 19}, - [5055] = {.lex_state = 3, .external_lex_state = 15}, - [5056] = {.lex_state = 66, .external_lex_state = 16}, - [5057] = {.lex_state = 66, .external_lex_state = 11}, - [5058] = {.lex_state = 66, .external_lex_state = 11}, - [5059] = {.lex_state = 66, .external_lex_state = 11}, - [5060] = {.lex_state = 66, .external_lex_state = 12}, - [5061] = {.lex_state = 66, .external_lex_state = 11}, - [5062] = {.lex_state = 66, .external_lex_state = 2}, - [5063] = {.lex_state = 66, .external_lex_state = 11}, - [5064] = {.lex_state = 3, .external_lex_state = 15}, - [5065] = {.lex_state = 66, .external_lex_state = 11}, - [5066] = {.lex_state = 66, .external_lex_state = 11}, - [5067] = {.lex_state = 66, .external_lex_state = 16}, - [5068] = {.lex_state = 66, .external_lex_state = 14}, - [5069] = {.lex_state = 66, .external_lex_state = 11}, + [5050] = {.lex_state = 66, .external_lex_state = 11}, + [5051] = {.lex_state = 15, .external_lex_state = 12}, + [5052] = {.lex_state = 16, .external_lex_state = 19}, + [5053] = {.lex_state = 66, .external_lex_state = 12}, + [5054] = {.lex_state = 66, .external_lex_state = 11}, + [5055] = {.lex_state = 66, .external_lex_state = 12}, + [5056] = {.lex_state = 66, .external_lex_state = 11}, + [5057] = {.lex_state = 66, .external_lex_state = 14}, + [5058] = {.lex_state = 66, .external_lex_state = 12}, + [5059] = {.lex_state = 66, .external_lex_state = 14}, + [5060] = {.lex_state = 66, .external_lex_state = 11}, + [5061] = {.lex_state = 66, .external_lex_state = 15}, + [5062] = {.lex_state = 66, .external_lex_state = 11}, + [5063] = {.lex_state = 66, .external_lex_state = 14}, + [5064] = {.lex_state = 66, .external_lex_state = 11}, + [5065] = {.lex_state = 66, .external_lex_state = 16}, + [5066] = {.lex_state = 66, .external_lex_state = 14}, + [5067] = {.lex_state = 3, .external_lex_state = 15}, + [5068] = {.lex_state = 3, .external_lex_state = 15}, + [5069] = {.lex_state = 66, .external_lex_state = 12}, [5070] = {.lex_state = 3, .external_lex_state = 15}, - [5071] = {.lex_state = 66, .external_lex_state = 11}, - [5072] = {.lex_state = 66, .external_lex_state = 11}, - [5073] = {.lex_state = 66, .external_lex_state = 11}, - [5074] = {.lex_state = 66, .external_lex_state = 11}, - [5075] = {.lex_state = 66, .external_lex_state = 11}, - [5076] = {.lex_state = 15, .external_lex_state = 12}, - [5077] = {.lex_state = 66, .external_lex_state = 16}, - [5078] = {.lex_state = 66, .external_lex_state = 16}, + [5071] = {.lex_state = 66, .external_lex_state = 2}, + [5072] = {.lex_state = 66, .external_lex_state = 15}, + [5073] = {.lex_state = 66, .external_lex_state = 12}, + [5074] = {.lex_state = 66, .external_lex_state = 12}, + [5075] = {.lex_state = 66, .external_lex_state = 12}, + [5076] = {.lex_state = 66, .external_lex_state = 12}, + [5077] = {.lex_state = 66, .external_lex_state = 12}, + [5078] = {.lex_state = 66, .external_lex_state = 11}, [5079] = {.lex_state = 66, .external_lex_state = 15}, - [5080] = {.lex_state = 66, .external_lex_state = 14}, - [5081] = {.lex_state = 66, .external_lex_state = 14}, - [5082] = {.lex_state = 66, .external_lex_state = 14}, + [5080] = {.lex_state = 66, .external_lex_state = 12}, + [5081] = {.lex_state = 66, .external_lex_state = 11}, + [5082] = {.lex_state = 66, .external_lex_state = 12}, [5083] = {.lex_state = 66, .external_lex_state = 12}, - [5084] = {.lex_state = 66, .external_lex_state = 11}, - [5085] = {.lex_state = 66, .external_lex_state = 12}, - [5086] = {.lex_state = 66, .external_lex_state = 16}, - [5087] = {.lex_state = 66, .external_lex_state = 14}, - [5088] = {.lex_state = 66, .external_lex_state = 16}, - [5089] = {.lex_state = 66, .external_lex_state = 11}, - [5090] = {.lex_state = 66, .external_lex_state = 11}, - [5091] = {.lex_state = 66, .external_lex_state = 14}, - [5092] = {.lex_state = 15, .external_lex_state = 12}, + [5084] = {.lex_state = 66, .external_lex_state = 12}, + [5085] = {.lex_state = 66, .external_lex_state = 11}, + [5086] = {.lex_state = 66, .external_lex_state = 20}, + [5087] = {.lex_state = 66, .external_lex_state = 12}, + [5088] = {.lex_state = 66, .external_lex_state = 14}, + [5089] = {.lex_state = 66, .external_lex_state = 14}, + [5090] = {.lex_state = 66, .external_lex_state = 14}, + [5091] = {.lex_state = 66, .external_lex_state = 16}, + [5092] = {.lex_state = 66, .external_lex_state = 12}, [5093] = {.lex_state = 66, .external_lex_state = 14}, [5094] = {.lex_state = 66, .external_lex_state = 15}, - [5095] = {.lex_state = 66, .external_lex_state = 11}, - [5096] = {.lex_state = 66, .external_lex_state = 14}, - [5097] = {.lex_state = 66, .external_lex_state = 11}, - [5098] = {.lex_state = 66, .external_lex_state = 2}, + [5095] = {.lex_state = 66, .external_lex_state = 12}, + [5096] = {.lex_state = 66, .external_lex_state = 16}, + [5097] = {.lex_state = 16, .external_lex_state = 19}, + [5098] = {.lex_state = 66, .external_lex_state = 11}, [5099] = {.lex_state = 66, .external_lex_state = 11}, - [5100] = {.lex_state = 66, .external_lex_state = 11}, - [5101] = {.lex_state = 66, .external_lex_state = 11}, + [5100] = {.lex_state = 66, .external_lex_state = 16}, + [5101] = {.lex_state = 66, .external_lex_state = 16}, [5102] = {.lex_state = 66, .external_lex_state = 16}, - [5103] = {.lex_state = 66, .external_lex_state = 16}, + [5103] = {.lex_state = 66, .external_lex_state = 11}, [5104] = {.lex_state = 66, .external_lex_state = 11}, - [5105] = {.lex_state = 66, .external_lex_state = 15}, + [5105] = {.lex_state = 66, .external_lex_state = 11}, [5106] = {.lex_state = 66, .external_lex_state = 11}, - [5107] = {.lex_state = 66, .external_lex_state = 20}, - [5108] = {.lex_state = 66, .external_lex_state = 11}, + [5107] = {.lex_state = 66, .external_lex_state = 11}, + [5108] = {.lex_state = 66, .external_lex_state = 16}, [5109] = {.lex_state = 66, .external_lex_state = 11}, - [5110] = {.lex_state = 66, .external_lex_state = 11}, - [5111] = {.lex_state = 66, .external_lex_state = 11}, - [5112] = {.lex_state = 66, .external_lex_state = 12}, - [5113] = {.lex_state = 66, .external_lex_state = 11}, - [5114] = {.lex_state = 66, .external_lex_state = 14}, - [5115] = {.lex_state = 66, .external_lex_state = 11}, - [5116] = {.lex_state = 15, .external_lex_state = 12}, + [5110] = {.lex_state = 66, .external_lex_state = 16}, + [5111] = {.lex_state = 66, .external_lex_state = 16}, + [5112] = {.lex_state = 66, .external_lex_state = 11}, + [5113] = {.lex_state = 66, .external_lex_state = 14}, + [5114] = {.lex_state = 12, .external_lex_state = 12}, + [5115] = {.lex_state = 66, .external_lex_state = 14}, + [5116] = {.lex_state = 66, .external_lex_state = 14}, [5117] = {.lex_state = 66, .external_lex_state = 11}, - [5118] = {.lex_state = 66, .external_lex_state = 11}, - [5119] = {.lex_state = 66, .external_lex_state = 12}, - [5120] = {.lex_state = 66, .external_lex_state = 11}, - [5121] = {.lex_state = 66, .external_lex_state = 11}, - [5122] = {.lex_state = 66, .external_lex_state = 11}, - [5123] = {.lex_state = 66, .external_lex_state = 11}, - [5124] = {.lex_state = 66, .external_lex_state = 12}, - [5125] = {.lex_state = 66, .external_lex_state = 20}, - [5126] = {.lex_state = 66, .external_lex_state = 11}, - [5127] = {.lex_state = 66, .external_lex_state = 16}, + [5118] = {.lex_state = 66, .external_lex_state = 20}, + [5119] = {.lex_state = 66, .external_lex_state = 11}, + [5120] = {.lex_state = 15, .external_lex_state = 12}, + [5121] = {.lex_state = 66, .external_lex_state = 15}, + [5122] = {.lex_state = 66, .external_lex_state = 15}, + [5123] = {.lex_state = 66, .external_lex_state = 12}, + [5124] = {.lex_state = 66, .external_lex_state = 14}, + [5125] = {.lex_state = 66, .external_lex_state = 11}, + [5126] = {.lex_state = 66, .external_lex_state = 16}, + [5127] = {.lex_state = 66, .external_lex_state = 15}, [5128] = {.lex_state = 66, .external_lex_state = 11}, [5129] = {.lex_state = 66, .external_lex_state = 11}, [5130] = {.lex_state = 66, .external_lex_state = 11}, - [5131] = {.lex_state = 66, .external_lex_state = 11}, - [5132] = {.lex_state = 66, .external_lex_state = 11}, - [5133] = {.lex_state = 66, .external_lex_state = 11}, - [5134] = {.lex_state = 66, .external_lex_state = 11}, - [5135] = {.lex_state = 66, .external_lex_state = 14}, + [5131] = {.lex_state = 66, .external_lex_state = 14}, + [5132] = {.lex_state = 66, .external_lex_state = 12}, + [5133] = {.lex_state = 66, .external_lex_state = 14}, + [5134] = {.lex_state = 66, .external_lex_state = 14}, + [5135] = {.lex_state = 66, .external_lex_state = 12}, [5136] = {.lex_state = 66, .external_lex_state = 15}, [5137] = {.lex_state = 66, .external_lex_state = 11}, [5138] = {.lex_state = 66, .external_lex_state = 11}, - [5139] = {.lex_state = 66, .external_lex_state = 12}, + [5139] = {.lex_state = 66, .external_lex_state = 11}, [5140] = {.lex_state = 66, .external_lex_state = 11}, - [5141] = {.lex_state = 66, .external_lex_state = 14}, - [5142] = {.lex_state = 66, .external_lex_state = 20}, - [5143] = {.lex_state = 66, .external_lex_state = 14}, - [5144] = {.lex_state = 66, .external_lex_state = 15}, - [5145] = {.lex_state = 66, .external_lex_state = 14}, - [5146] = {.lex_state = 66, .external_lex_state = 14}, - [5147] = {.lex_state = 66, .external_lex_state = 14}, - [5148] = {.lex_state = 66, .external_lex_state = 16}, + [5141] = {.lex_state = 66, .external_lex_state = 11}, + [5142] = {.lex_state = 66, .external_lex_state = 12}, + [5143] = {.lex_state = 66, .external_lex_state = 15}, + [5144] = {.lex_state = 66, .external_lex_state = 11}, + [5145] = {.lex_state = 66, .external_lex_state = 11}, + [5146] = {.lex_state = 66, .external_lex_state = 11}, + [5147] = {.lex_state = 66, .external_lex_state = 11}, + [5148] = {.lex_state = 66, .external_lex_state = 11}, [5149] = {.lex_state = 66, .external_lex_state = 11}, - [5150] = {.lex_state = 66, .external_lex_state = 14}, - [5151] = {.lex_state = 66, .external_lex_state = 14}, - [5152] = {.lex_state = 66, .external_lex_state = 12}, - [5153] = {.lex_state = 66, .external_lex_state = 14}, - [5154] = {.lex_state = 66, .external_lex_state = 14}, - [5155] = {.lex_state = 66, .external_lex_state = 12}, - [5156] = {.lex_state = 66, .external_lex_state = 13}, - [5157] = {.lex_state = 66, .external_lex_state = 11}, - [5158] = {.lex_state = 66, .external_lex_state = 13}, - [5159] = {.lex_state = 66, .external_lex_state = 15}, - [5160] = {.lex_state = 66, .external_lex_state = 15}, - [5161] = {.lex_state = 66, .external_lex_state = 11}, - [5162] = {.lex_state = 66, .external_lex_state = 11}, - [5163] = {.lex_state = 66, .external_lex_state = 14}, + [5150] = {.lex_state = 66, .external_lex_state = 11}, + [5151] = {.lex_state = 66, .external_lex_state = 11}, + [5152] = {.lex_state = 66, .external_lex_state = 11}, + [5153] = {.lex_state = 66, .external_lex_state = 11}, + [5154] = {.lex_state = 66, .external_lex_state = 16}, + [5155] = {.lex_state = 66, .external_lex_state = 16}, + [5156] = {.lex_state = 66, .external_lex_state = 11}, + [5157] = {.lex_state = 66, .external_lex_state = 15}, + [5158] = {.lex_state = 66, .external_lex_state = 11}, + [5159] = {.lex_state = 66, .external_lex_state = 11}, + [5160] = {.lex_state = 66, .external_lex_state = 14}, + [5161] = {.lex_state = 66, .external_lex_state = 14}, + [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 = 11}, - [5166] = {.lex_state = 66, .external_lex_state = 2}, - [5167] = {.lex_state = 66, .external_lex_state = 13}, - [5168] = {.lex_state = 66, .external_lex_state = 12}, - [5169] = {.lex_state = 66, .external_lex_state = 13}, - [5170] = {.lex_state = 66, .external_lex_state = 14}, - [5171] = {.lex_state = 66, .external_lex_state = 11}, + [5165] = {.lex_state = 66, .external_lex_state = 12}, + [5166] = {.lex_state = 66, .external_lex_state = 12}, + [5167] = {.lex_state = 66, .external_lex_state = 12}, + [5168] = {.lex_state = 66, .external_lex_state = 11}, + [5169] = {.lex_state = 66, .external_lex_state = 11}, + [5170] = {.lex_state = 66, .external_lex_state = 16}, + [5171] = {.lex_state = 66, .external_lex_state = 16}, [5172] = {.lex_state = 66, .external_lex_state = 12}, [5173] = {.lex_state = 66, .external_lex_state = 14}, [5174] = {.lex_state = 66, .external_lex_state = 12}, [5175] = {.lex_state = 66, .external_lex_state = 12}, - [5176] = {.lex_state = 66, .external_lex_state = 14}, + [5176] = {.lex_state = 66, .external_lex_state = 12}, [5177] = {.lex_state = 66, .external_lex_state = 11}, - [5178] = {.lex_state = 66, .external_lex_state = 14}, - [5179] = {.lex_state = 66, .external_lex_state = 14}, - [5180] = {.lex_state = 66, .external_lex_state = 11}, - [5181] = {.lex_state = 66, .external_lex_state = 12}, - [5182] = {.lex_state = 66, .external_lex_state = 11}, - [5183] = {.lex_state = 66, .external_lex_state = 14}, - [5184] = {.lex_state = 66, .external_lex_state = 12}, - [5185] = {.lex_state = 66, .external_lex_state = 16}, - [5186] = {.lex_state = 66, .external_lex_state = 11}, - [5187] = {.lex_state = 66, .external_lex_state = 11}, - [5188] = {.lex_state = 66, .external_lex_state = 14}, - [5189] = {.lex_state = 66, .external_lex_state = 14}, - [5190] = {.lex_state = 66, .external_lex_state = 13}, + [5178] = {.lex_state = 66, .external_lex_state = 12}, + [5179] = {.lex_state = 66, .external_lex_state = 12}, + [5180] = {.lex_state = 66, .external_lex_state = 12}, + [5181] = {.lex_state = 66, .external_lex_state = 16}, + [5182] = {.lex_state = 66, .external_lex_state = 13}, + [5183] = {.lex_state = 66, .external_lex_state = 12}, + [5184] = {.lex_state = 66, .external_lex_state = 11}, + [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 = 11}, + [5189] = {.lex_state = 66, .external_lex_state = 16}, + [5190] = {.lex_state = 66, .external_lex_state = 11}, [5191] = {.lex_state = 66, .external_lex_state = 14}, [5192] = {.lex_state = 66, .external_lex_state = 11}, - [5193] = {.lex_state = 66, .external_lex_state = 14}, - [5194] = {.lex_state = 66, .external_lex_state = 14}, - [5195] = {.lex_state = 66, .external_lex_state = 12}, + [5193] = {.lex_state = 66, .external_lex_state = 12}, + [5194] = {.lex_state = 66, .external_lex_state = 11}, + [5195] = {.lex_state = 66, .external_lex_state = 14}, [5196] = {.lex_state = 66, .external_lex_state = 12}, - [5197] = {.lex_state = 66, .external_lex_state = 16}, + [5197] = {.lex_state = 66, .external_lex_state = 13}, [5198] = {.lex_state = 66, .external_lex_state = 11}, - [5199] = {.lex_state = 66, .external_lex_state = 11}, + [5199] = {.lex_state = 66, .external_lex_state = 14}, [5200] = {.lex_state = 66, .external_lex_state = 11}, [5201] = {.lex_state = 66, .external_lex_state = 12}, - [5202] = {.lex_state = 66, .external_lex_state = 11}, - [5203] = {.lex_state = 66, .external_lex_state = 11}, + [5202] = {.lex_state = 66, .external_lex_state = 12}, + [5203] = {.lex_state = 66, .external_lex_state = 12}, [5204] = {.lex_state = 66, .external_lex_state = 12}, - [5205] = {.lex_state = 66, .external_lex_state = 14}, - [5206] = {.lex_state = 66, .external_lex_state = 12}, + [5205] = {.lex_state = 66, .external_lex_state = 16}, + [5206] = {.lex_state = 66, .external_lex_state = 11}, [5207] = {.lex_state = 66, .external_lex_state = 14}, - [5208] = {.lex_state = 66, .external_lex_state = 11}, - [5209] = {.lex_state = 66, .external_lex_state = 12}, + [5208] = {.lex_state = 66, .external_lex_state = 14}, + [5209] = {.lex_state = 66, .external_lex_state = 14}, [5210] = {.lex_state = 66, .external_lex_state = 12}, - [5211] = {.lex_state = 66, .external_lex_state = 11}, + [5211] = {.lex_state = 66, .external_lex_state = 14}, [5212] = {.lex_state = 66, .external_lex_state = 12}, [5213] = {.lex_state = 66, .external_lex_state = 12}, [5214] = {.lex_state = 66, .external_lex_state = 14}, - [5215] = {.lex_state = 66, .external_lex_state = 13}, + [5215] = {.lex_state = 66, .external_lex_state = 12}, [5216] = {.lex_state = 66, .external_lex_state = 14}, - [5217] = {.lex_state = 66, .external_lex_state = 11}, - [5218] = {.lex_state = 66, .external_lex_state = 11}, - [5219] = {.lex_state = 66, .external_lex_state = 13}, + [5217] = {.lex_state = 66, .external_lex_state = 16}, + [5218] = {.lex_state = 66, .external_lex_state = 12}, + [5219] = {.lex_state = 66, .external_lex_state = 14}, [5220] = {.lex_state = 66, .external_lex_state = 12}, - [5221] = {.lex_state = 66, .external_lex_state = 12}, - [5222] = {.lex_state = 66, .external_lex_state = 14}, - [5223] = {.lex_state = 66, .external_lex_state = 2}, - [5224] = {.lex_state = 66, .external_lex_state = 14}, - [5225] = {.lex_state = 66, .external_lex_state = 11}, - [5226] = {.lex_state = 66, .external_lex_state = 11}, - [5227] = {.lex_state = 66, .external_lex_state = 14}, - [5228] = {.lex_state = 66, .external_lex_state = 11}, - [5229] = {.lex_state = 66, .external_lex_state = 11}, - [5230] = {.lex_state = 66, .external_lex_state = 14}, + [5221] = {.lex_state = 66, .external_lex_state = 14}, + [5222] = {.lex_state = 66, .external_lex_state = 12}, + [5223] = {.lex_state = 66, .external_lex_state = 12}, + [5224] = {.lex_state = 66, .external_lex_state = 12}, + [5225] = {.lex_state = 66, .external_lex_state = 14}, + [5226] = {.lex_state = 66, .external_lex_state = 14}, + [5227] = {.lex_state = 66, .external_lex_state = 12}, + [5228] = {.lex_state = 66, .external_lex_state = 12}, + [5229] = {.lex_state = 66, .external_lex_state = 2}, + [5230] = {.lex_state = 66, .external_lex_state = 12}, [5231] = {.lex_state = 66, .external_lex_state = 14}, - [5232] = {.lex_state = 66, .external_lex_state = 14}, + [5232] = {.lex_state = 66, .external_lex_state = 15}, [5233] = {.lex_state = 66, .external_lex_state = 14}, [5234] = {.lex_state = 66, .external_lex_state = 14}, [5235] = {.lex_state = 66, .external_lex_state = 11}, [5236] = {.lex_state = 66, .external_lex_state = 11}, - [5237] = {.lex_state = 66, .external_lex_state = 11}, - [5238] = {.lex_state = 66, .external_lex_state = 14}, + [5237] = {.lex_state = 66, .external_lex_state = 12}, + [5238] = {.lex_state = 66, .external_lex_state = 12}, [5239] = {.lex_state = 66, .external_lex_state = 14}, - [5240] = {.lex_state = 66, .external_lex_state = 11}, - [5241] = {.lex_state = 66, .external_lex_state = 11}, - [5242] = {.lex_state = 66, .external_lex_state = 12}, - [5243] = {.lex_state = 66, .external_lex_state = 12}, - [5244] = {.lex_state = 66, .external_lex_state = 12}, - [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}, + [5240] = {.lex_state = 66, .external_lex_state = 14}, + [5241] = {.lex_state = 66, .external_lex_state = 2}, + [5242] = {.lex_state = 66, .external_lex_state = 14}, + [5243] = {.lex_state = 66, .external_lex_state = 13}, + [5244] = {.lex_state = 66, .external_lex_state = 13}, + [5245] = {.lex_state = 66, .external_lex_state = 14}, + [5246] = {.lex_state = 66, .external_lex_state = 11}, + [5247] = {.lex_state = 66, .external_lex_state = 11}, + [5248] = {.lex_state = 66, .external_lex_state = 14}, [5249] = {.lex_state = 66, .external_lex_state = 11}, [5250] = {.lex_state = 66, .external_lex_state = 14}, - [5251] = {.lex_state = 66, .external_lex_state = 11}, + [5251] = {.lex_state = 66, .external_lex_state = 12}, [5252] = {.lex_state = 66, .external_lex_state = 14}, - [5253] = {.lex_state = 66, .external_lex_state = 14}, + [5253] = {.lex_state = 66, .external_lex_state = 11}, [5254] = {.lex_state = 66, .external_lex_state = 12}, - [5255] = {.lex_state = 66, .external_lex_state = 14}, - [5256] = {.lex_state = 66, .external_lex_state = 11}, - [5257] = {.lex_state = 66, .external_lex_state = 13}, - [5258] = {.lex_state = 66, .external_lex_state = 14}, + [5255] = {.lex_state = 66, .external_lex_state = 12}, + [5256] = {.lex_state = 66, .external_lex_state = 12}, + [5257] = {.lex_state = 66, .external_lex_state = 12}, + [5258] = {.lex_state = 66, .external_lex_state = 12}, [5259] = {.lex_state = 66, .external_lex_state = 12}, - [5260] = {.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 = 14}, - [5263] = {.lex_state = 66, .external_lex_state = 14}, - [5264] = {.lex_state = 66, .external_lex_state = 11}, - [5265] = {.lex_state = 66, .external_lex_state = 14}, + [5262] = {.lex_state = 66, .external_lex_state = 12}, + [5263] = {.lex_state = 66, .external_lex_state = 12}, + [5264] = {.lex_state = 66, .external_lex_state = 14}, + [5265] = {.lex_state = 66, .external_lex_state = 12}, [5266] = {.lex_state = 66, .external_lex_state = 11}, - [5267] = {.lex_state = 66, .external_lex_state = 14}, - [5268] = {.lex_state = 66, .external_lex_state = 12}, - [5269] = {.lex_state = 66, .external_lex_state = 16}, - [5270] = {.lex_state = 66, .external_lex_state = 14}, - [5271] = {.lex_state = 66, .external_lex_state = 14}, - [5272] = {.lex_state = 66, .external_lex_state = 2}, - [5273] = {.lex_state = 66, .external_lex_state = 14}, - [5274] = {.lex_state = 66, .external_lex_state = 13}, + [5267] = {.lex_state = 66, .external_lex_state = 13}, + [5268] = {.lex_state = 66, .external_lex_state = 16}, + [5269] = {.lex_state = 66, .external_lex_state = 13}, + [5270] = {.lex_state = 66, .external_lex_state = 12}, + [5271] = {.lex_state = 66, .external_lex_state = 16}, + [5272] = {.lex_state = 66, .external_lex_state = 14}, + [5273] = {.lex_state = 66, .external_lex_state = 12}, + [5274] = {.lex_state = 66, .external_lex_state = 12}, [5275] = {.lex_state = 66, .external_lex_state = 12}, [5276] = {.lex_state = 66, .external_lex_state = 14}, - [5277] = {.lex_state = 66, .external_lex_state = 16}, + [5277] = {.lex_state = 66, .external_lex_state = 13}, [5278] = {.lex_state = 66, .external_lex_state = 14}, - [5279] = {.lex_state = 66, .external_lex_state = 14}, - [5280] = {.lex_state = 66, .external_lex_state = 14}, + [5279] = {.lex_state = 66, .external_lex_state = 13}, + [5280] = {.lex_state = 66, .external_lex_state = 11}, [5281] = {.lex_state = 66, .external_lex_state = 14}, - [5282] = {.lex_state = 66, .external_lex_state = 14}, - [5283] = {.lex_state = 66, .external_lex_state = 12}, - [5284] = {.lex_state = 66, .external_lex_state = 12}, - [5285] = {.lex_state = 66, .external_lex_state = 11}, - [5286] = {.lex_state = 66, .external_lex_state = 12}, - [5287] = {.lex_state = 66, .external_lex_state = 12}, + [5282] = {.lex_state = 66, .external_lex_state = 11}, + [5283] = {.lex_state = 66, .external_lex_state = 14}, + [5284] = {.lex_state = 66, .external_lex_state = 2}, + [5285] = {.lex_state = 66, .external_lex_state = 14}, + [5286] = {.lex_state = 66, .external_lex_state = 14}, + [5287] = {.lex_state = 66, .external_lex_state = 11}, [5288] = {.lex_state = 66, .external_lex_state = 11}, - [5289] = {.lex_state = 66, .external_lex_state = 12}, + [5289] = {.lex_state = 66, .external_lex_state = 14}, [5290] = {.lex_state = 66, .external_lex_state = 12}, [5291] = {.lex_state = 66, .external_lex_state = 14}, - [5292] = {.lex_state = 66, .external_lex_state = 2}, + [5292] = {.lex_state = 66, .external_lex_state = 14}, [5293] = {.lex_state = 66, .external_lex_state = 11}, - [5294] = {.lex_state = 66, .external_lex_state = 11}, + [5294] = {.lex_state = 66, .external_lex_state = 14}, [5295] = {.lex_state = 66, .external_lex_state = 14}, - [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}, + [5296] = {.lex_state = 66, .external_lex_state = 16}, + [5297] = {.lex_state = 66, .external_lex_state = 14}, + [5298] = {.lex_state = 66, .external_lex_state = 11}, + [5299] = {.lex_state = 66, .external_lex_state = 14}, + [5300] = {.lex_state = 66, .external_lex_state = 14}, + [5301] = {.lex_state = 66, .external_lex_state = 11}, [5302] = {.lex_state = 66, .external_lex_state = 12}, - [5303] = {.lex_state = 66, .external_lex_state = 14}, - [5304] = {.lex_state = 66, .external_lex_state = 11}, + [5303] = {.lex_state = 66, .external_lex_state = 11}, + [5304] = {.lex_state = 66, .external_lex_state = 14}, [5305] = {.lex_state = 66, .external_lex_state = 14}, - [5306] = {.lex_state = 66, .external_lex_state = 12}, - [5307] = {.lex_state = 66, .external_lex_state = 12}, - [5308] = {.lex_state = 66, .external_lex_state = 14}, - [5309] = {.lex_state = 66, .external_lex_state = 12}, + [5306] = {.lex_state = 66, .external_lex_state = 2}, + [5307] = {.lex_state = 66, .external_lex_state = 14}, + [5308] = {.lex_state = 66, .external_lex_state = 11}, + [5309] = {.lex_state = 66, .external_lex_state = 13}, [5310] = {.lex_state = 66, .external_lex_state = 11}, - [5311] = {.lex_state = 66, .external_lex_state = 12}, - [5312] = {.lex_state = 66, .external_lex_state = 11}, - [5313] = {.lex_state = 66, .external_lex_state = 14}, - [5314] = {.lex_state = 66, .external_lex_state = 11}, - [5315] = {.lex_state = 66, .external_lex_state = 16}, - [5316] = {.lex_state = 66, .external_lex_state = 12}, - [5317] = {.lex_state = 66, .external_lex_state = 11}, - [5318] = {.lex_state = 66, .external_lex_state = 14}, - [5319] = {.lex_state = 66, .external_lex_state = 12}, + [5311] = {.lex_state = 66, .external_lex_state = 14}, + [5312] = {.lex_state = 66, .external_lex_state = 12}, + [5313] = {.lex_state = 66, .external_lex_state = 16}, + [5314] = {.lex_state = 66, .external_lex_state = 14}, + [5315] = {.lex_state = 66, .external_lex_state = 12}, + [5316] = {.lex_state = 66, .external_lex_state = 11}, + [5317] = {.lex_state = 66, .external_lex_state = 14}, + [5318] = {.lex_state = 66, .external_lex_state = 16}, + [5319] = {.lex_state = 66, .external_lex_state = 11}, [5320] = {.lex_state = 66, .external_lex_state = 11}, [5321] = {.lex_state = 66, .external_lex_state = 12}, - [5322] = {.lex_state = 66, .external_lex_state = 11}, - [5323] = {.lex_state = 66, .external_lex_state = 14}, + [5322] = {.lex_state = 66, .external_lex_state = 14}, + [5323] = {.lex_state = 66, .external_lex_state = 16}, [5324] = {.lex_state = 66, .external_lex_state = 11}, - [5325] = {.lex_state = 66, .external_lex_state = 16}, - [5326] = {.lex_state = 66, .external_lex_state = 12}, - [5327] = {.lex_state = 66, .external_lex_state = 14}, - [5328] = {.lex_state = 66, .external_lex_state = 12}, - [5329] = {.lex_state = 66, .external_lex_state = 12}, + [5325] = {.lex_state = 66, .external_lex_state = 11}, + [5326] = {.lex_state = 66, .external_lex_state = 14}, + [5327] = {.lex_state = 66, .external_lex_state = 13}, + [5328] = {.lex_state = 66, .external_lex_state = 14}, + [5329] = {.lex_state = 66, .external_lex_state = 13}, [5330] = {.lex_state = 66, .external_lex_state = 11}, - [5331] = {.lex_state = 66, .external_lex_state = 11}, - [5332] = {.lex_state = 66, .external_lex_state = 12}, - [5333] = {.lex_state = 66, .external_lex_state = 11}, - [5334] = {.lex_state = 66, .external_lex_state = 12}, - [5335] = {.lex_state = 66, .external_lex_state = 14}, + [5331] = {.lex_state = 66, .external_lex_state = 16}, + [5332] = {.lex_state = 66, .external_lex_state = 11}, + [5333] = {.lex_state = 66, .external_lex_state = 12}, + [5334] = {.lex_state = 66, .external_lex_state = 11}, + [5335] = {.lex_state = 66, .external_lex_state = 11}, [5336] = {.lex_state = 66, .external_lex_state = 14}, - [5337] = {.lex_state = 66, .external_lex_state = 12}, - [5338] = {.lex_state = 66, .external_lex_state = 16}, - [5339] = {.lex_state = 66, .external_lex_state = 14}, + [5337] = {.lex_state = 66, .external_lex_state = 11}, + [5338] = {.lex_state = 66, .external_lex_state = 14}, + [5339] = {.lex_state = 66, .external_lex_state = 11}, [5340] = {.lex_state = 66, .external_lex_state = 14}, - [5341] = {.lex_state = 66, .external_lex_state = 16}, - [5342] = {.lex_state = 66, .external_lex_state = 12}, - [5343] = {.lex_state = 66, .external_lex_state = 12}, - [5344] = {.lex_state = 66, .external_lex_state = 12}, - [5345] = {.lex_state = 66, .external_lex_state = 13}, - [5346] = {.lex_state = 66, .external_lex_state = 16}, + [5341] = {.lex_state = 66, .external_lex_state = 12}, + [5342] = {.lex_state = 66, .external_lex_state = 14}, + [5343] = {.lex_state = 66, .external_lex_state = 11}, + [5344] = {.lex_state = 66, .external_lex_state = 14}, + [5345] = {.lex_state = 66, .external_lex_state = 12}, + [5346] = {.lex_state = 66, .external_lex_state = 12}, [5347] = {.lex_state = 66, .external_lex_state = 12}, [5348] = {.lex_state = 66, .external_lex_state = 11}, - [5349] = {.lex_state = 66, .external_lex_state = 11}, + [5349] = {.lex_state = 66, .external_lex_state = 12}, [5350] = {.lex_state = 66, .external_lex_state = 12}, - [5351] = {.lex_state = 66, .external_lex_state = 11}, - [5352] = {.lex_state = 66, .external_lex_state = 12}, - [5353] = {.lex_state = 66, .external_lex_state = 12}, - [5354] = {.lex_state = 66, .external_lex_state = 14}, - [5355] = {.lex_state = 66, .external_lex_state = 16}, - [5356] = {.lex_state = 66, .external_lex_state = 12}, - [5357] = {.lex_state = 66, .external_lex_state = 12}, + [5351] = {.lex_state = 66, .external_lex_state = 15}, + [5352] = {.lex_state = 66, .external_lex_state = 15}, + [5353] = {.lex_state = 66, .external_lex_state = 15}, + [5354] = {.lex_state = 66, .external_lex_state = 12}, + [5355] = {.lex_state = 66, .external_lex_state = 12}, + [5356] = {.lex_state = 66, .external_lex_state = 13}, + [5357] = {.lex_state = 66, .external_lex_state = 11}, [5358] = {.lex_state = 66, .external_lex_state = 12}, - [5359] = {.lex_state = 66, .external_lex_state = 12}, - [5360] = {.lex_state = 66, .external_lex_state = 12}, - [5361] = {.lex_state = 66, .external_lex_state = 16}, - [5362] = {.lex_state = 66, .external_lex_state = 12}, - [5363] = {.lex_state = 66, .external_lex_state = 16}, - [5364] = {.lex_state = 66, .external_lex_state = 14}, - [5365] = {.lex_state = 66, .external_lex_state = 12}, - [5366] = {.lex_state = 66, .external_lex_state = 12}, + [5359] = {.lex_state = 66, .external_lex_state = 15}, + [5360] = {.lex_state = 66, .external_lex_state = 11}, + [5361] = {.lex_state = 66, .external_lex_state = 14}, + [5362] = {.lex_state = 66, .external_lex_state = 11}, + [5363] = {.lex_state = 66, .external_lex_state = 14}, + [5364] = {.lex_state = 66, .external_lex_state = 11}, + [5365] = {.lex_state = 66, .external_lex_state = 11}, + [5366] = {.lex_state = 66, .external_lex_state = 11}, [5367] = {.lex_state = 66, .external_lex_state = 11}, [5368] = {.lex_state = 66, .external_lex_state = 12}, [5369] = {.lex_state = 66, .external_lex_state = 12}, - [5370] = {.lex_state = 66, .external_lex_state = 14}, + [5370] = {.lex_state = 66, .external_lex_state = 11}, [5371] = {.lex_state = 66, .external_lex_state = 12}, - [5372] = {.lex_state = 66, .external_lex_state = 15}, - [5373] = {.lex_state = 66, .external_lex_state = 13}, + [5372] = {.lex_state = 66, .external_lex_state = 13}, + [5373] = {.lex_state = 66, .external_lex_state = 12}, [5374] = {.lex_state = 66, .external_lex_state = 12}, - [5375] = {.lex_state = 66, .external_lex_state = 13}, - [5376] = {.lex_state = 66, .external_lex_state = 14}, - [5377] = {.lex_state = 66, .external_lex_state = 12}, - [5378] = {.lex_state = 66, .external_lex_state = 13}, - [5379] = {.lex_state = 66, .external_lex_state = 15}, - [5380] = {.lex_state = 66, .external_lex_state = 15}, + [5375] = {.lex_state = 66, .external_lex_state = 11}, + [5376] = {.lex_state = 66, .external_lex_state = 12}, + [5377] = {.lex_state = 66, .external_lex_state = 11}, + [5378] = {.lex_state = 66, .external_lex_state = 11}, + [5379] = {.lex_state = 66, .external_lex_state = 14}, + [5380] = {.lex_state = 66, .external_lex_state = 12}, [5381] = {.lex_state = 66, .external_lex_state = 12}, - [5382] = {.lex_state = 66, .external_lex_state = 15}, - [5383] = {.lex_state = 66, .external_lex_state = 15}, + [5382] = {.lex_state = 66, .external_lex_state = 14}, + [5383] = {.lex_state = 66, .external_lex_state = 14}, [5384] = {.lex_state = 66, .external_lex_state = 14}, - [5385] = {.lex_state = 66, .external_lex_state = 12}, - [5386] = {.lex_state = 66, .external_lex_state = 15}, - [5387] = {.lex_state = 6, .external_lex_state = 12}, - [5388] = {.lex_state = 66, .external_lex_state = 12}, + [5385] = {.lex_state = 66, .external_lex_state = 11}, + [5386] = {.lex_state = 66, .external_lex_state = 12}, + [5387] = {.lex_state = 66, .external_lex_state = 14}, + [5388] = {.lex_state = 66, .external_lex_state = 14}, [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}, - [5393] = {.lex_state = 66, .external_lex_state = 16}, - [5394] = {.lex_state = 66, .external_lex_state = 12}, + [5393] = {.lex_state = 66, .external_lex_state = 12}, + [5394] = {.lex_state = 66, .external_lex_state = 15}, [5395] = {.lex_state = 66, .external_lex_state = 12}, - [5396] = {.lex_state = 66, .external_lex_state = 14}, + [5396] = {.lex_state = 66, .external_lex_state = 15}, [5397] = {.lex_state = 66, .external_lex_state = 12}, - [5398] = {.lex_state = 66, .external_lex_state = 12}, + [5398] = {.lex_state = 6, .external_lex_state = 12}, [5399] = {.lex_state = 66, .external_lex_state = 12}, - [5400] = {.lex_state = 66, .external_lex_state = 15}, + [5400] = {.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 = 15}, + [5402] = {.lex_state = 66, .external_lex_state = 15}, + [5403] = {.lex_state = 66, .external_lex_state = 13}, [5404] = {.lex_state = 66, .external_lex_state = 12}, - [5405] = {.lex_state = 6, .external_lex_state = 12}, + [5405] = {.lex_state = 66, .external_lex_state = 12}, [5406] = {.lex_state = 66, .external_lex_state = 12}, - [5407] = {.lex_state = 66, .external_lex_state = 12}, - [5408] = {.lex_state = 66, .external_lex_state = 12}, + [5407] = {.lex_state = 66, .external_lex_state = 14}, + [5408] = {.lex_state = 66, .external_lex_state = 13}, [5409] = {.lex_state = 66, .external_lex_state = 12}, - [5410] = {.lex_state = 66, .external_lex_state = 12}, + [5410] = {.lex_state = 6, .external_lex_state = 12}, [5411] = {.lex_state = 66, .external_lex_state = 12}, - [5412] = {.lex_state = 66, .external_lex_state = 14}, + [5412] = {.lex_state = 66, .external_lex_state = 16}, [5413] = {.lex_state = 66, .external_lex_state = 12}, [5414] = {.lex_state = 6, .external_lex_state = 12}, [5415] = {.lex_state = 66, .external_lex_state = 14}, - [5416] = {.lex_state = 66, .external_lex_state = 14}, - [5417] = {.lex_state = 66, .external_lex_state = 14}, + [5416] = {.lex_state = 66, .external_lex_state = 12}, + [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 = 12}, [5421] = {.lex_state = 66, .external_lex_state = 12}, - [5422] = {.lex_state = 66, .external_lex_state = 12}, + [5422] = {.lex_state = 66, .external_lex_state = 21}, [5423] = {.lex_state = 66, .external_lex_state = 12}, - [5424] = {.lex_state = 66, .external_lex_state = 12}, - [5425] = {.lex_state = 66, .external_lex_state = 12}, - [5426] = {.lex_state = 6, .external_lex_state = 12}, + [5424] = {.lex_state = 66, .external_lex_state = 15}, + [5425] = {.lex_state = 66, .external_lex_state = 13}, + [5426] = {.lex_state = 66, .external_lex_state = 12}, [5427] = {.lex_state = 66, .external_lex_state = 12}, [5428] = {.lex_state = 66, .external_lex_state = 12}, [5429] = {.lex_state = 66, .external_lex_state = 12}, - [5430] = {.lex_state = 66, .external_lex_state = 12}, - [5431] = {.lex_state = 66, .external_lex_state = 12}, - [5432] = {.lex_state = 66, .external_lex_state = 15}, - [5433] = {.lex_state = 66, .external_lex_state = 14}, - [5434] = {.lex_state = 66, .external_lex_state = 12}, - [5435] = {.lex_state = 66, .external_lex_state = 14}, - [5436] = {.lex_state = 66, .external_lex_state = 12}, - [5437] = {.lex_state = 66, .external_lex_state = 14}, - [5438] = {.lex_state = 66, .external_lex_state = 15}, + [5430] = {.lex_state = 66, .external_lex_state = 16}, + [5431] = {.lex_state = 66, .external_lex_state = 14}, + [5432] = {.lex_state = 66, .external_lex_state = 12}, + [5433] = {.lex_state = 66, .external_lex_state = 12}, + [5434] = {.lex_state = 66, .external_lex_state = 14}, + [5435] = {.lex_state = 66, .external_lex_state = 16}, + [5436] = {.lex_state = 6, .external_lex_state = 12}, + [5437] = {.lex_state = 66, .external_lex_state = 12}, + [5438] = {.lex_state = 66, .external_lex_state = 14}, [5439] = {.lex_state = 66, .external_lex_state = 12}, - [5440] = {.lex_state = 66, .external_lex_state = 14}, + [5440] = {.lex_state = 66, .external_lex_state = 12}, [5441] = {.lex_state = 66, .external_lex_state = 12}, - [5442] = {.lex_state = 6, .external_lex_state = 12}, + [5442] = {.lex_state = 66, .external_lex_state = 16}, [5443] = {.lex_state = 66, .external_lex_state = 12}, - [5444] = {.lex_state = 66, .external_lex_state = 12}, + [5444] = {.lex_state = 66, .external_lex_state = 14}, [5445] = {.lex_state = 66, .external_lex_state = 12}, [5446] = {.lex_state = 66, .external_lex_state = 12}, - [5447] = {.lex_state = 66, .external_lex_state = 12}, - [5448] = {.lex_state = 66, .external_lex_state = 14}, - [5449] = {.lex_state = 66, .external_lex_state = 12}, - [5450] = {.lex_state = 66, .external_lex_state = 14}, + [5447] = {.lex_state = 66, .external_lex_state = 14}, + [5448] = {.lex_state = 66, .external_lex_state = 15}, + [5449] = {.lex_state = 6, .external_lex_state = 12}, + [5450] = {.lex_state = 66, .external_lex_state = 16}, [5451] = {.lex_state = 66, .external_lex_state = 12}, [5452] = {.lex_state = 66, .external_lex_state = 12}, - [5453] = {.lex_state = 66, .external_lex_state = 21}, - [5454] = {.lex_state = 6, .external_lex_state = 12}, - [5455] = {.lex_state = 66, .external_lex_state = 14}, + [5453] = {.lex_state = 66, .external_lex_state = 15}, + [5454] = {.lex_state = 66, .external_lex_state = 15}, + [5455] = {.lex_state = 66, .external_lex_state = 15}, [5456] = {.lex_state = 66, .external_lex_state = 12}, - [5457] = {.lex_state = 66, .external_lex_state = 12}, + [5457] = {.lex_state = 66, .external_lex_state = 15}, [5458] = {.lex_state = 66, .external_lex_state = 12}, - [5459] = {.lex_state = 66, .external_lex_state = 13}, + [5459] = {.lex_state = 66, .external_lex_state = 12}, [5460] = {.lex_state = 66, .external_lex_state = 12}, - [5461] = {.lex_state = 66, .external_lex_state = 15}, + [5461] = {.lex_state = 66, .external_lex_state = 12}, [5462] = {.lex_state = 66, .external_lex_state = 14}, - [5463] = {.lex_state = 66, .external_lex_state = 16}, - [5464] = {.lex_state = 66, .external_lex_state = 16}, - [5465] = {.lex_state = 66, .external_lex_state = 15}, - [5466] = {.lex_state = 6, .external_lex_state = 12}, + [5463] = {.lex_state = 66, .external_lex_state = 12}, + [5464] = {.lex_state = 6, .external_lex_state = 12}, + [5465] = {.lex_state = 66, .external_lex_state = 12}, + [5466] = {.lex_state = 66, .external_lex_state = 12}, [5467] = {.lex_state = 66, .external_lex_state = 12}, - [5468] = {.lex_state = 6, .external_lex_state = 12}, - [5469] = {.lex_state = 6, .external_lex_state = 12}, - [5470] = {.lex_state = 66, .external_lex_state = 12}, - [5471] = {.lex_state = 66, .external_lex_state = 16}, - [5472] = {.lex_state = 66, .external_lex_state = 12}, - [5473] = {.lex_state = 66, .external_lex_state = 12}, - [5474] = {.lex_state = 66, .external_lex_state = 14}, - [5475] = {.lex_state = 66, .external_lex_state = 21}, - [5476] = {.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 = 21}, + [5471] = {.lex_state = 66, .external_lex_state = 14}, + [5472] = {.lex_state = 66, .external_lex_state = 15}, + [5473] = {.lex_state = 66, .external_lex_state = 15}, + [5474] = {.lex_state = 66, .external_lex_state = 12}, + [5475] = {.lex_state = 66, .external_lex_state = 12}, + [5476] = {.lex_state = 6, .external_lex_state = 12}, [5477] = {.lex_state = 66, .external_lex_state = 12}, - [5478] = {.lex_state = 6, .external_lex_state = 12}, - [5479] = {.lex_state = 66, .external_lex_state = 21}, + [5478] = {.lex_state = 66, .external_lex_state = 12}, + [5479] = {.lex_state = 66, .external_lex_state = 12}, [5480] = {.lex_state = 66, .external_lex_state = 12}, - [5481] = {.lex_state = 66, .external_lex_state = 16}, - [5482] = {.lex_state = 66, .external_lex_state = 12}, - [5483] = {.lex_state = 66, .external_lex_state = 12}, - [5484] = {.lex_state = 66, .external_lex_state = 15}, - [5485] = {.lex_state = 66, .external_lex_state = 16}, - [5486] = {.lex_state = 66, .external_lex_state = 15}, + [5481] = {.lex_state = 66, .external_lex_state = 14}, + [5482] = {.lex_state = 66, .external_lex_state = 15}, + [5483] = {.lex_state = 66, .external_lex_state = 14}, + [5484] = {.lex_state = 66, .external_lex_state = 12}, + [5485] = {.lex_state = 66, .external_lex_state = 12}, + [5486] = {.lex_state = 66, .external_lex_state = 12}, [5487] = {.lex_state = 66, .external_lex_state = 12}, - [5488] = {.lex_state = 66, .external_lex_state = 14}, - [5489] = {.lex_state = 66, .external_lex_state = 16}, - [5490] = {.lex_state = 66, .external_lex_state = 12}, + [5488] = {.lex_state = 66, .external_lex_state = 12}, + [5489] = {.lex_state = 66, .external_lex_state = 15}, + [5490] = {.lex_state = 6, .external_lex_state = 12}, [5491] = {.lex_state = 66, .external_lex_state = 12}, - [5492] = {.lex_state = 66, .external_lex_state = 12}, - [5493] = {.lex_state = 66, .external_lex_state = 15}, - [5494] = {.lex_state = 66, .external_lex_state = 16}, + [5492] = {.lex_state = 66, .external_lex_state = 11}, + [5493] = {.lex_state = 66, .external_lex_state = 12}, + [5494] = {.lex_state = 66, .external_lex_state = 12}, [5495] = {.lex_state = 66, .external_lex_state = 12}, - [5496] = {.lex_state = 6, .external_lex_state = 12}, + [5496] = {.lex_state = 66, .external_lex_state = 12}, [5497] = {.lex_state = 66, .external_lex_state = 12}, [5498] = {.lex_state = 66, .external_lex_state = 12}, - [5499] = {.lex_state = 66, .external_lex_state = 12}, - [5500] = {.lex_state = 66, .external_lex_state = 16}, + [5499] = {.lex_state = 66, .external_lex_state = 14}, + [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 = 15}, + [5502] = {.lex_state = 66, .external_lex_state = 15}, + [5503] = {.lex_state = 66, .external_lex_state = 12}, [5504] = {.lex_state = 66, .external_lex_state = 12}, [5505] = {.lex_state = 66, .external_lex_state = 12}, - [5506] = {.lex_state = 66, .external_lex_state = 12}, - [5507] = {.lex_state = 66, .external_lex_state = 12}, - [5508] = {.lex_state = 66, .external_lex_state = 12}, + [5506] = {.lex_state = 66, .external_lex_state = 14}, + [5507] = {.lex_state = 66, .external_lex_state = 13}, + [5508] = {.lex_state = 66, .external_lex_state = 15}, [5509] = {.lex_state = 66, .external_lex_state = 12}, [5510] = {.lex_state = 66, .external_lex_state = 12}, - [5511] = {.lex_state = 66, .external_lex_state = 15}, - [5512] = {.lex_state = 66, .external_lex_state = 21}, - [5513] = {.lex_state = 66, .external_lex_state = 15}, - [5514] = {.lex_state = 66, .external_lex_state = 12}, + [5511] = {.lex_state = 66, .external_lex_state = 12}, + [5512] = {.lex_state = 66, .external_lex_state = 12}, + [5513] = {.lex_state = 6, .external_lex_state = 12}, + [5514] = {.lex_state = 66, .external_lex_state = 21}, [5515] = {.lex_state = 66, .external_lex_state = 16}, [5516] = {.lex_state = 66, .external_lex_state = 15}, - [5517] = {.lex_state = 66, .external_lex_state = 21}, - [5518] = {.lex_state = 66, .external_lex_state = 14}, - [5519] = {.lex_state = 6, .external_lex_state = 12}, - [5520] = {.lex_state = 66, .external_lex_state = 16}, - [5521] = {.lex_state = 66, .external_lex_state = 12}, - [5522] = {.lex_state = 66, .external_lex_state = 12}, - [5523] = {.lex_state = 66, .external_lex_state = 12}, - [5524] = {.lex_state = 66, .external_lex_state = 16}, - [5525] = {.lex_state = 66, .external_lex_state = 16}, - [5526] = {.lex_state = 66, .external_lex_state = 15}, - [5527] = {.lex_state = 66, .external_lex_state = 15}, + [5517] = {.lex_state = 66, .external_lex_state = 12}, + [5518] = {.lex_state = 66, .external_lex_state = 12}, + [5519] = {.lex_state = 66, .external_lex_state = 12}, + [5520] = {.lex_state = 66, .external_lex_state = 15}, + [5521] = {.lex_state = 66, .external_lex_state = 14}, + [5522] = {.lex_state = 6, .external_lex_state = 12}, + [5523] = {.lex_state = 66, .external_lex_state = 15}, + [5524] = {.lex_state = 66, .external_lex_state = 12}, + [5525] = {.lex_state = 66, .external_lex_state = 12}, + [5526] = {.lex_state = 66, .external_lex_state = 14}, + [5527] = {.lex_state = 66, .external_lex_state = 12}, [5528] = {.lex_state = 66, .external_lex_state = 12}, - [5529] = {.lex_state = 66, .external_lex_state = 12}, + [5529] = {.lex_state = 66, .external_lex_state = 15}, [5530] = {.lex_state = 66, .external_lex_state = 15}, - [5531] = {.lex_state = 4, .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 = 14}, + [5534] = {.lex_state = 66, .external_lex_state = 12}, [5535] = {.lex_state = 66, .external_lex_state = 12}, - [5536] = {.lex_state = 66, .external_lex_state = 12}, + [5536] = {.lex_state = 66, .external_lex_state = 15}, [5537] = {.lex_state = 66, .external_lex_state = 14}, [5538] = {.lex_state = 66, .external_lex_state = 12}, - [5539] = {.lex_state = 66, .external_lex_state = 14}, + [5539] = {.lex_state = 66, .external_lex_state = 12}, [5540] = {.lex_state = 66, .external_lex_state = 16}, - [5541] = {.lex_state = 66, .external_lex_state = 15}, - [5542] = {.lex_state = 66, .external_lex_state = 12}, + [5541] = {.lex_state = 66, .external_lex_state = 12}, + [5542] = {.lex_state = 66, .external_lex_state = 15}, [5543] = {.lex_state = 66, .external_lex_state = 12}, - [5544] = {.lex_state = 66, .external_lex_state = 15}, + [5544] = {.lex_state = 66, .external_lex_state = 12}, [5545] = {.lex_state = 66, .external_lex_state = 12}, - [5546] = {.lex_state = 66, .external_lex_state = 16}, + [5546] = {.lex_state = 66, .external_lex_state = 12}, [5547] = {.lex_state = 66, .external_lex_state = 12}, - [5548] = {.lex_state = 66, .external_lex_state = 15}, + [5548] = {.lex_state = 66, .external_lex_state = 13}, [5549] = {.lex_state = 66, .external_lex_state = 16}, - [5550] = {.lex_state = 66, .external_lex_state = 12}, + [5550] = {.lex_state = 66, .external_lex_state = 13}, [5551] = {.lex_state = 66, .external_lex_state = 12}, - [5552] = {.lex_state = 66, .external_lex_state = 15}, + [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 = 21}, - [5556] = {.lex_state = 66, .external_lex_state = 12}, - [5557] = {.lex_state = 6, .external_lex_state = 12}, - [5558] = {.lex_state = 66, .external_lex_state = 15}, - [5559] = {.lex_state = 66, .external_lex_state = 14}, + [5555] = {.lex_state = 66, .external_lex_state = 16}, + [5556] = {.lex_state = 66, .external_lex_state = 21}, + [5557] = {.lex_state = 66, .external_lex_state = 16}, + [5558] = {.lex_state = 66, .external_lex_state = 14}, + [5559] = {.lex_state = 66, .external_lex_state = 12}, [5560] = {.lex_state = 66, .external_lex_state = 12}, - [5561] = {.lex_state = 66, .external_lex_state = 15}, + [5561] = {.lex_state = 66, .external_lex_state = 12}, [5562] = {.lex_state = 66, .external_lex_state = 12}, - [5563] = {.lex_state = 66, .external_lex_state = 15}, - [5564] = {.lex_state = 6, .external_lex_state = 12}, - [5565] = {.lex_state = 66, .external_lex_state = 12}, - [5566] = {.lex_state = 66, .external_lex_state = 15}, + [5563] = {.lex_state = 66, .external_lex_state = 12}, + [5564] = {.lex_state = 66, .external_lex_state = 12}, + [5565] = {.lex_state = 66, .external_lex_state = 21}, + [5566] = {.lex_state = 66, .external_lex_state = 21}, [5567] = {.lex_state = 66, .external_lex_state = 12}, - [5568] = {.lex_state = 66, .external_lex_state = 13}, - [5569] = {.lex_state = 66, .external_lex_state = 12}, - [5570] = {.lex_state = 66, .external_lex_state = 14}, - [5571] = {.lex_state = 66, .external_lex_state = 14}, - [5572] = {.lex_state = 66, .external_lex_state = 14}, - [5573] = {.lex_state = 66, .external_lex_state = 11}, - [5574] = {.lex_state = 66, .external_lex_state = 12}, + [5568] = {.lex_state = 66, .external_lex_state = 12}, + [5569] = {.lex_state = 66, .external_lex_state = 15}, + [5570] = {.lex_state = 66, .external_lex_state = 12}, + [5571] = {.lex_state = 66, .external_lex_state = 16}, + [5572] = {.lex_state = 6, .external_lex_state = 12}, + [5573] = {.lex_state = 66, .external_lex_state = 21}, + [5574] = {.lex_state = 66, .external_lex_state = 14}, [5575] = {.lex_state = 66, .external_lex_state = 12}, [5576] = {.lex_state = 66, .external_lex_state = 12}, - [5577] = {.lex_state = 66, .external_lex_state = 12}, - [5578] = {.lex_state = 66, .external_lex_state = 13}, - [5579] = {.lex_state = 66, .external_lex_state = 14}, - [5580] = {.lex_state = 66, .external_lex_state = 12}, - [5581] = {.lex_state = 66, .external_lex_state = 12}, + [5577] = {.lex_state = 66, .external_lex_state = 16}, + [5578] = {.lex_state = 66, .external_lex_state = 16}, + [5579] = {.lex_state = 6, .external_lex_state = 12}, + [5580] = {.lex_state = 66, .external_lex_state = 14}, + [5581] = {.lex_state = 66, .external_lex_state = 14}, [5582] = {.lex_state = 66, .external_lex_state = 12}, - [5583] = {.lex_state = 66, .external_lex_state = 21}, - [5584] = {.lex_state = 66, .external_lex_state = 14}, + [5583] = {.lex_state = 66, .external_lex_state = 14}, + [5584] = {.lex_state = 66, .external_lex_state = 12}, [5585] = {.lex_state = 66, .external_lex_state = 12}, - [5586] = {.lex_state = 66, .external_lex_state = 15}, - [5587] = {.lex_state = 66, .external_lex_state = 12}, - [5588] = {.lex_state = 66, .external_lex_state = 12}, - [5589] = {.lex_state = 66, .external_lex_state = 12}, - [5590] = {.lex_state = 66, .external_lex_state = 12}, + [5586] = {.lex_state = 66, .external_lex_state = 12}, + [5587] = {.lex_state = 66, .external_lex_state = 14}, + [5588] = {.lex_state = 66, .external_lex_state = 16}, + [5589] = {.lex_state = 66, .external_lex_state = 15}, + [5590] = {.lex_state = 6, .external_lex_state = 12}, [5591] = {.lex_state = 66, .external_lex_state = 12}, - [5592] = {.lex_state = 66, .external_lex_state = 12}, + [5592] = {.lex_state = 66, .external_lex_state = 14}, [5593] = {.lex_state = 66, .external_lex_state = 12}, - [5594] = {.lex_state = 66, .external_lex_state = 13}, - [5595] = {.lex_state = 66, .external_lex_state = 21}, - [5596] = {.lex_state = 66, .external_lex_state = 21}, + [5594] = {.lex_state = 66, .external_lex_state = 12}, + [5595] = {.lex_state = 66, .external_lex_state = 12}, + [5596] = {.lex_state = 66, .external_lex_state = 12}, [5597] = {.lex_state = 66, .external_lex_state = 12}, - [5598] = {.lex_state = 66, .external_lex_state = 12}, - [5599] = {.lex_state = 6, .external_lex_state = 12}, - [5600] = {.lex_state = 66, .external_lex_state = 12}, - [5601] = {.lex_state = 66, .external_lex_state = 16}, - [5602] = {.lex_state = 66, .external_lex_state = 14}, - [5603] = {.lex_state = 66, .external_lex_state = 12}, - [5604] = {.lex_state = 66, .external_lex_state = 15}, + [5598] = {.lex_state = 66, .external_lex_state = 14}, + [5599] = {.lex_state = 66, .external_lex_state = 12}, + [5600] = {.lex_state = 66, .external_lex_state = 21}, + [5601] = {.lex_state = 66, .external_lex_state = 14}, + [5602] = {.lex_state = 66, .external_lex_state = 16}, + [5603] = {.lex_state = 66, .external_lex_state = 14}, + [5604] = {.lex_state = 66, .external_lex_state = 12}, [5605] = {.lex_state = 66, .external_lex_state = 12}, - [5606] = {.lex_state = 66, .external_lex_state = 21}, - [5607] = {.lex_state = 66, .external_lex_state = 21}, + [5606] = {.lex_state = 66, .external_lex_state = 12}, + [5607] = {.lex_state = 66, .external_lex_state = 12}, [5608] = {.lex_state = 66, .external_lex_state = 12}, - [5609] = {.lex_state = 6, .external_lex_state = 12}, + [5609] = {.lex_state = 66, .external_lex_state = 12}, [5610] = {.lex_state = 66, .external_lex_state = 12}, - [5611] = {.lex_state = 66, .external_lex_state = 16}, - [5612] = {.lex_state = 66, .external_lex_state = 12}, + [5611] = {.lex_state = 66, .external_lex_state = 15}, + [5612] = {.lex_state = 66, .external_lex_state = 21}, [5613] = {.lex_state = 66, .external_lex_state = 12}, - [5614] = {.lex_state = 66, .external_lex_state = 12}, - [5615] = {.lex_state = 66, .external_lex_state = 14}, + [5614] = {.lex_state = 66, .external_lex_state = 21}, + [5615] = {.lex_state = 66, .external_lex_state = 12}, [5616] = {.lex_state = 66, .external_lex_state = 12}, - [5617] = {.lex_state = 66, .external_lex_state = 12}, + [5617] = {.lex_state = 66, .external_lex_state = 14}, [5618] = {.lex_state = 66, .external_lex_state = 12}, - [5619] = {.lex_state = 66, .external_lex_state = 21}, + [5619] = {.lex_state = 66, .external_lex_state = 16}, [5620] = {.lex_state = 66, .external_lex_state = 12}, [5621] = {.lex_state = 66, .external_lex_state = 12}, - [5622] = {.lex_state = 66, .external_lex_state = 16}, - [5623] = {.lex_state = 66, .external_lex_state = 12}, - [5624] = {.lex_state = 66, .external_lex_state = 12}, - [5625] = {.lex_state = 66, .external_lex_state = 15}, - [5626] = {.lex_state = 66, .external_lex_state = 12}, + [5622] = {.lex_state = 66, .external_lex_state = 12}, + [5623] = {.lex_state = 66, .external_lex_state = 16}, + [5624] = {.lex_state = 66, .external_lex_state = 21}, + [5625] = {.lex_state = 66, .external_lex_state = 21}, + [5626] = {.lex_state = 6, .external_lex_state = 12}, [5627] = {.lex_state = 66, .external_lex_state = 12}, - [5628] = {.lex_state = 66, .external_lex_state = 15}, - [5629] = {.lex_state = 66, .external_lex_state = 12}, + [5628] = {.lex_state = 66, .external_lex_state = 12}, + [5629] = {.lex_state = 66, .external_lex_state = 15}, [5630] = {.lex_state = 66, .external_lex_state = 12}, [5631] = {.lex_state = 66, .external_lex_state = 12}, [5632] = {.lex_state = 66, .external_lex_state = 12}, [5633] = {.lex_state = 66, .external_lex_state = 12}, - [5634] = {.lex_state = 66, .external_lex_state = 13}, - [5635] = {.lex_state = 66, .external_lex_state = 12}, + [5634] = {.lex_state = 66, .external_lex_state = 15}, + [5635] = {.lex_state = 66, .external_lex_state = 16}, [5636] = {.lex_state = 66, .external_lex_state = 12}, - [5637] = {.lex_state = 66, .external_lex_state = 14}, + [5637] = {.lex_state = 66, .external_lex_state = 12}, [5638] = {.lex_state = 66, .external_lex_state = 12}, [5639] = {.lex_state = 66, .external_lex_state = 12}, - [5640] = {.lex_state = 66, .external_lex_state = 14}, - [5641] = {.lex_state = 66, .external_lex_state = 14}, - [5642] = {.lex_state = 66, .external_lex_state = 16}, - [5643] = {.lex_state = 66, .external_lex_state = 12}, - [5644] = {.lex_state = 66, .external_lex_state = 14}, + [5640] = {.lex_state = 66, .external_lex_state = 12}, + [5641] = {.lex_state = 66, .external_lex_state = 12}, + [5642] = {.lex_state = 66, .external_lex_state = 12}, + [5643] = {.lex_state = 66, .external_lex_state = 14}, + [5644] = {.lex_state = 66, .external_lex_state = 12}, [5645] = {.lex_state = 66, .external_lex_state = 14}, - [5646] = {.lex_state = 66, .external_lex_state = 21}, - [5647] = {.lex_state = 66, .external_lex_state = 13}, - [5648] = {.lex_state = 66, .external_lex_state = 15}, - [5649] = {.lex_state = 66, .external_lex_state = 15}, - [5650] = {.lex_state = 66, .external_lex_state = 15}, - [5651] = {.lex_state = 6, .external_lex_state = 12}, - [5652] = {.lex_state = 66, .external_lex_state = 12}, + [5646] = {.lex_state = 66, .external_lex_state = 12}, + [5647] = {.lex_state = 66, .external_lex_state = 16}, + [5648] = {.lex_state = 66, .external_lex_state = 12}, + [5649] = {.lex_state = 66, .external_lex_state = 12}, + [5650] = {.lex_state = 66, .external_lex_state = 12}, + [5651] = {.lex_state = 66, .external_lex_state = 15}, + [5652] = {.lex_state = 66, .external_lex_state = 15}, [5653] = {.lex_state = 66, .external_lex_state = 12}, [5654] = {.lex_state = 66, .external_lex_state = 12}, [5655] = {.lex_state = 66, .external_lex_state = 12}, [5656] = {.lex_state = 66, .external_lex_state = 14}, - [5657] = {.lex_state = 6, .external_lex_state = 12}, + [5657] = {.lex_state = 66, .external_lex_state = 14}, [5658] = {.lex_state = 66, .external_lex_state = 12}, [5659] = {.lex_state = 66, .external_lex_state = 12}, [5660] = {.lex_state = 66, .external_lex_state = 12}, - [5661] = {.lex_state = 66, .external_lex_state = 15}, + [5661] = {.lex_state = 66, .external_lex_state = 16}, [5662] = {.lex_state = 66, .external_lex_state = 12}, - [5663] = {.lex_state = 66, .external_lex_state = 14}, - [5664] = {.lex_state = 66, .external_lex_state = 12}, - [5665] = {.lex_state = 66, .external_lex_state = 12}, + [5663] = {.lex_state = 66, .external_lex_state = 12}, + [5664] = {.lex_state = 66, .external_lex_state = 15}, + [5665] = {.lex_state = 66, .external_lex_state = 15}, [5666] = {.lex_state = 66, .external_lex_state = 12}, - [5667] = {.lex_state = 66, .external_lex_state = 12}, + [5667] = {.lex_state = 66, .external_lex_state = 14}, [5668] = {.lex_state = 66, .external_lex_state = 12}, - [5669] = {.lex_state = 66, .external_lex_state = 12}, + [5669] = {.lex_state = 6, .external_lex_state = 12}, [5670] = {.lex_state = 66, .external_lex_state = 12}, - [5671] = {.lex_state = 66, .external_lex_state = 14}, - [5672] = {.lex_state = 66, .external_lex_state = 16}, - [5673] = {.lex_state = 66, .external_lex_state = 12}, - [5674] = {.lex_state = 66, .external_lex_state = 12}, - [5675] = {.lex_state = 66, .external_lex_state = 12}, - [5676] = {.lex_state = 66, .external_lex_state = 16}, + [5671] = {.lex_state = 66, .external_lex_state = 12}, + [5672] = {.lex_state = 66, .external_lex_state = 12}, + [5673] = {.lex_state = 4, .external_lex_state = 12}, + [5674] = {.lex_state = 66, .external_lex_state = 14}, + [5675] = {.lex_state = 6, .external_lex_state = 12}, + [5676] = {.lex_state = 66, .external_lex_state = 12}, [5677] = {.lex_state = 66, .external_lex_state = 12}, [5678] = {.lex_state = 66, .external_lex_state = 12}, [5679] = {.lex_state = 66, .external_lex_state = 12}, [5680] = {.lex_state = 66, .external_lex_state = 12}, - [5681] = {.lex_state = 66, .external_lex_state = 14}, - [5682] = {.lex_state = 66, .external_lex_state = 12}, - [5683] = {.lex_state = 66, .external_lex_state = 12}, - [5684] = {.lex_state = 66, .external_lex_state = 12}, + [5681] = {.lex_state = 6, .external_lex_state = 12}, + [5682] = {.lex_state = 6, .external_lex_state = 12}, + [5683] = {.lex_state = 66, .external_lex_state = 14}, + [5684] = {.lex_state = 66, .external_lex_state = 21}, [5685] = {.lex_state = 66, .external_lex_state = 12}, [5686] = {.lex_state = 66, .external_lex_state = 12}, - [5687] = {.lex_state = 66, .external_lex_state = 15}, - [5688] = {.lex_state = 6, .external_lex_state = 12}, - [5689] = {.lex_state = 66, .external_lex_state = 12}, + [5687] = {.lex_state = 6, .external_lex_state = 12}, + [5688] = {.lex_state = 66, .external_lex_state = 12}, + [5689] = {.lex_state = 66, .external_lex_state = 16}, [5690] = {.lex_state = 66, .external_lex_state = 12}, [5691] = {.lex_state = 66, .external_lex_state = 14}, [5692] = {.lex_state = 66, .external_lex_state = 12}, - [5693] = {.lex_state = 66, .external_lex_state = 16}, - [5694] = {.lex_state = 66, .external_lex_state = 14}, + [5693] = {.lex_state = 66, .external_lex_state = 12}, + [5694] = {.lex_state = 66, .external_lex_state = 15}, [5695] = {.lex_state = 66, .external_lex_state = 12}, [5696] = {.lex_state = 66, .external_lex_state = 12}, [5697] = {.lex_state = 66, .external_lex_state = 12}, [5698] = {.lex_state = 66, .external_lex_state = 12}, - [5699] = {.lex_state = 66, .external_lex_state = 15}, + [5699] = {.lex_state = 66, .external_lex_state = 12}, [5700] = {.lex_state = 66, .external_lex_state = 12}, [5701] = {.lex_state = 66, .external_lex_state = 12}, - [5702] = {.lex_state = 66, .external_lex_state = 12}, + [5702] = {.lex_state = 66, .external_lex_state = 14}, [5703] = {.lex_state = 66, .external_lex_state = 12}, [5704] = {.lex_state = 66, .external_lex_state = 12}, [5705] = {.lex_state = 66, .external_lex_state = 12}, [5706] = {.lex_state = 66, .external_lex_state = 12}, - [5707] = {.lex_state = 66, .external_lex_state = 15}, - [5708] = {.lex_state = 66, .external_lex_state = 15}, + [5707] = {.lex_state = 66, .external_lex_state = 12}, + [5708] = {.lex_state = 66, .external_lex_state = 12}, [5709] = {.lex_state = 66, .external_lex_state = 12}, [5710] = {.lex_state = 66, .external_lex_state = 12}, - [5711] = {.lex_state = 66, .external_lex_state = 16}, - [5712] = {.lex_state = 66, .external_lex_state = 14}, - [5713] = {.lex_state = 66, .external_lex_state = 12}, + [5711] = {.lex_state = 66, .external_lex_state = 14}, + [5712] = {.lex_state = 66, .external_lex_state = 15}, + [5713] = {.lex_state = 66, .external_lex_state = 14}, [5714] = {.lex_state = 66, .external_lex_state = 12}, [5715] = {.lex_state = 66, .external_lex_state = 12}, - [5716] = {.lex_state = 66, .external_lex_state = 14}, - [5717] = {.lex_state = 66, .external_lex_state = 15}, - [5718] = {.lex_state = 66, .external_lex_state = 12}, + [5716] = {.lex_state = 66, .external_lex_state = 12}, + [5717] = {.lex_state = 66, .external_lex_state = 14}, + [5718] = {.lex_state = 66, .external_lex_state = 16}, [5719] = {.lex_state = 66, .external_lex_state = 12}, - [5720] = {.lex_state = 66, .external_lex_state = 12}, + [5720] = {.lex_state = 66, .external_lex_state = 15}, [5721] = {.lex_state = 66, .external_lex_state = 12}, - [5722] = {.lex_state = 6, .external_lex_state = 12}, - [5723] = {.lex_state = 66, .external_lex_state = 12}, - [5724] = {.lex_state = 66, .external_lex_state = 16}, - [5725] = {.lex_state = 66, .external_lex_state = 12}, - [5726] = {.lex_state = 66, .external_lex_state = 12}, + [5722] = {.lex_state = 66, .external_lex_state = 12}, + [5723] = {.lex_state = 66, .external_lex_state = 14}, + [5724] = {.lex_state = 66, .external_lex_state = 12}, + [5725] = {.lex_state = 66, .external_lex_state = 15}, + [5726] = {.lex_state = 66, .external_lex_state = 15}, + [5727] = {.lex_state = 66, .external_lex_state = 12}, + [5728] = {.lex_state = 66, .external_lex_state = 14}, + [5729] = {.lex_state = 66, .external_lex_state = 12}, + [5730] = {.lex_state = 66, .external_lex_state = 16}, + [5731] = {.lex_state = 66, .external_lex_state = 16}, + [5732] = {.lex_state = 66, .external_lex_state = 16}, + [5733] = {.lex_state = 66, .external_lex_state = 12}, + [5734] = {.lex_state = 66, .external_lex_state = 12}, + [5735] = {.lex_state = 66, .external_lex_state = 14}, + [5736] = {.lex_state = 66, .external_lex_state = 12}, + [5737] = {.lex_state = 66, .external_lex_state = 15}, + [5738] = {.lex_state = 66, .external_lex_state = 14}, + [5739] = {.lex_state = 66, .external_lex_state = 15}, + [5740] = {.lex_state = 6, .external_lex_state = 12}, + [5741] = {.lex_state = 66, .external_lex_state = 12}, + [5742] = {.lex_state = 66, .external_lex_state = 14}, + [5743] = {.lex_state = 66, .external_lex_state = 14}, + [5744] = {.lex_state = 66, .external_lex_state = 12}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -18968,85 +19015,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_end] = ACTIONS(1), }, [1] = { - [sym_module] = STATE(5498), - [sym__statement] = STATE(199), - [sym__simple_statements] = STATE(199), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_if_statement] = STATE(199), - [sym_match_statement] = STATE(199), - [sym_for_statement] = STATE(199), - [sym_while_statement] = STATE(199), - [sym_try_statement] = STATE(199), - [sym_with_statement] = STATE(199), - [sym_function_definition] = STATE(199), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_class_definition] = STATE(199), - [sym_decorated_definition] = STATE(199), - [sym_decorator] = STATE(3177), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_run_directive] = STATE(202), - [sym_property_definition] = STATE(199), - [sym_include_statement] = STATE(4688), - [sym_def_statement] = STATE(199), - [sym_cdef_statement] = STATE(199), - [sym_ctypedef_statement] = STATE(199), - [sym_storageclass] = STATE(3829), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(199), - [aux_sym_class_definition_repeat1] = STATE(3829), - [aux_sym_decorated_definition_repeat1] = STATE(3177), + [sym_module] = STATE(5559), + [sym__statement] = STATE(202), + [sym__simple_statements] = STATE(202), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_if_statement] = STATE(202), + [sym_match_statement] = STATE(202), + [sym_for_statement] = STATE(202), + [sym_while_statement] = STATE(202), + [sym_try_statement] = STATE(202), + [sym_with_statement] = STATE(202), + [sym_function_definition] = STATE(202), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_class_definition] = STATE(202), + [sym_decorated_definition] = STATE(202), + [sym_decorator] = STATE(3199), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_run_directive] = STATE(201), + [sym_property_definition] = STATE(202), + [sym_include_statement] = STATE(4674), + [sym_def_statement] = STATE(202), + [sym_cdef_statement] = STATE(202), + [sym_ctypedef_statement] = STATE(202), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(202), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3199), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -19112,84 +19159,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [2] = { - [sym__statement] = STATE(204), - [sym__simple_statements] = STATE(204), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(204), - [sym_match_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_with_statement] = STATE(204), - [sym_function_definition] = STATE(204), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(204), - [sym_decorated_definition] = STATE(204), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(559), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(204), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(204), - [sym_cdef_statement] = STATE(204), - [sym_ctypedef_statement] = STATE(204), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(204), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [sym__statement] = STATE(199), + [sym__simple_statements] = STATE(199), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(199), + [sym_match_statement] = STATE(199), + [sym_for_statement] = STATE(199), + [sym_while_statement] = STATE(199), + [sym_try_statement] = STATE(199), + [sym_with_statement] = STATE(199), + [sym_function_definition] = STATE(199), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(199), + [sym_decorated_definition] = STATE(199), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1272), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(199), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(199), + [sym_cdef_statement] = STATE(199), + [sym_ctypedef_statement] = STATE(199), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(199), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -19254,84 +19301,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [3] = { - [sym__statement] = STATE(204), - [sym__simple_statements] = STATE(204), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(204), - [sym_match_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_with_statement] = STATE(204), - [sym_function_definition] = STATE(204), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(204), - [sym_decorated_definition] = STATE(204), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(638), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(204), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(204), - [sym_cdef_statement] = STATE(204), - [sym_ctypedef_statement] = STATE(204), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(204), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [sym__statement] = STATE(208), + [sym__simple_statements] = STATE(208), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(208), + [sym_match_statement] = STATE(208), + [sym_for_statement] = STATE(208), + [sym_while_statement] = STATE(208), + [sym_try_statement] = STATE(208), + [sym_with_statement] = STATE(208), + [sym_function_definition] = STATE(208), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(208), + [sym_decorated_definition] = STATE(208), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1143), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(208), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(208), + [sym_cdef_statement] = STATE(208), + [sym_ctypedef_statement] = STATE(208), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(208), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -19392,88 +19439,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), + [sym__dedent] = ACTIONS(137), [sym_string_start] = ACTIONS(107), }, [4] = { - [sym__statement] = STATE(206), - [sym__simple_statements] = STATE(206), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(206), - [sym_match_statement] = STATE(206), - [sym_for_statement] = STATE(206), - [sym_while_statement] = STATE(206), - [sym_try_statement] = STATE(206), - [sym_with_statement] = STATE(206), - [sym_function_definition] = STATE(206), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(206), - [sym_decorated_definition] = STATE(206), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(3960), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(206), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(206), - [sym_cdef_statement] = STATE(206), - [sym_ctypedef_statement] = STATE(206), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(206), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [sym__statement] = STATE(208), + [sym__simple_statements] = STATE(208), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(208), + [sym_match_statement] = STATE(208), + [sym_for_statement] = STATE(208), + [sym_while_statement] = STATE(208), + [sym_try_statement] = STATE(208), + [sym_with_statement] = STATE(208), + [sym_function_definition] = STATE(208), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(208), + [sym_decorated_definition] = STATE(208), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1404), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(208), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(208), + [sym_cdef_statement] = STATE(208), + [sym_ctypedef_statement] = STATE(208), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(208), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -19540,20 +19587,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [5] = { [sym__statement] = STATE(208), [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), [sym_if_statement] = STATE(208), [sym_match_statement] = STATE(208), [sym_for_statement] = STATE(208), @@ -19561,61 +19608,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(208), [sym_with_statement] = STATE(208), [sym_function_definition] = STATE(208), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), [sym_class_definition] = STATE(208), [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(909), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1277), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4640), + [sym_include_statement] = STATE(5109), [sym_def_statement] = STATE(208), [sym_cdef_statement] = STATE(208), [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -19676,26 +19723,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(139), + [sym__dedent] = ACTIONS(137), [sym_string_start] = ACTIONS(107), }, [6] = { [sym__statement] = STATE(208), [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), [sym_if_statement] = STATE(208), [sym_match_statement] = STATE(208), [sym_for_statement] = STATE(208), @@ -19703,61 +19750,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(208), [sym_with_statement] = STATE(208), [sym_function_definition] = STATE(208), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), [sym_class_definition] = STATE(208), [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1076), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1480), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4640), + [sym_include_statement] = STATE(5109), [sym_def_statement] = STATE(208), [sym_cdef_statement] = STATE(208), [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -19818,26 +19865,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(139), + [sym__dedent] = ACTIONS(137), [sym_string_start] = ACTIONS(107), }, [7] = { [sym__statement] = STATE(208), [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), [sym_if_statement] = STATE(208), [sym_match_statement] = STATE(208), [sym_for_statement] = STATE(208), @@ -19845,61 +19892,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(208), [sym_with_statement] = STATE(208), [sym_function_definition] = STATE(208), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), [sym_class_definition] = STATE(208), [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1079), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1207), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4640), + [sym_include_statement] = STATE(5109), [sym_def_statement] = STATE(208), [sym_cdef_statement] = STATE(208), [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -19960,26 +20007,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(139), + [sym__dedent] = ACTIONS(137), [sym_string_start] = ACTIONS(107), }, [8] = { [sym__statement] = STATE(208), [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), [sym_if_statement] = STATE(208), [sym_match_statement] = STATE(208), [sym_for_statement] = STATE(208), @@ -19987,61 +20034,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(208), [sym_with_statement] = STATE(208), [sym_function_definition] = STATE(208), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), [sym_class_definition] = STATE(208), [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1532), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1159), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4640), + [sym_include_statement] = STATE(5109), [sym_def_statement] = STATE(208), [sym_cdef_statement] = STATE(208), [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -20102,26 +20149,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(139), + [sym__dedent] = ACTIONS(137), [sym_string_start] = ACTIONS(107), }, [9] = { [sym__statement] = STATE(208), [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), [sym_if_statement] = STATE(208), [sym_match_statement] = STATE(208), [sym_for_statement] = STATE(208), @@ -20129,61 +20176,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(208), [sym_with_statement] = STATE(208), [sym_function_definition] = STATE(208), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), [sym_class_definition] = STATE(208), [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1243), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1606), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4640), + [sym_include_statement] = STATE(5109), [sym_def_statement] = STATE(208), [sym_cdef_statement] = STATE(208), [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -20244,26 +20291,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(139), + [sym__dedent] = ACTIONS(137), [sym_string_start] = ACTIONS(107), }, [10] = { [sym__statement] = STATE(208), [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), [sym_if_statement] = STATE(208), [sym_match_statement] = STATE(208), [sym_for_statement] = STATE(208), @@ -20271,61 +20318,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(208), [sym_with_statement] = STATE(208), [sym_function_definition] = STATE(208), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), [sym_class_definition] = STATE(208), [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1553), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1628), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4640), + [sym_include_statement] = STATE(5109), [sym_def_statement] = STATE(208), [sym_cdef_statement] = STATE(208), [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -20386,26 +20433,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(139), + [sym__dedent] = ACTIONS(137), [sym_string_start] = ACTIONS(107), }, [11] = { [sym__statement] = STATE(208), [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), [sym_if_statement] = STATE(208), [sym_match_statement] = STATE(208), [sym_for_statement] = STATE(208), @@ -20413,61 +20460,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(208), [sym_with_statement] = STATE(208), [sym_function_definition] = STATE(208), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), [sym_class_definition] = STATE(208), [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1352), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1335), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4640), + [sym_include_statement] = STATE(5109), [sym_def_statement] = STATE(208), [sym_cdef_statement] = STATE(208), [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -20528,26 +20575,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(139), + [sym__dedent] = ACTIONS(137), [sym_string_start] = ACTIONS(107), }, [12] = { [sym__statement] = STATE(208), [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), [sym_if_statement] = STATE(208), [sym_match_statement] = STATE(208), [sym_for_statement] = STATE(208), @@ -20555,61 +20602,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(208), [sym_with_statement] = STATE(208), [sym_function_definition] = STATE(208), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), [sym_class_definition] = STATE(208), [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1139), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1357), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4640), + [sym_include_statement] = STATE(5109), [sym_def_statement] = STATE(208), [sym_cdef_statement] = STATE(208), [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -20670,26 +20717,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(139), + [sym__dedent] = ACTIONS(137), [sym_string_start] = ACTIONS(107), }, [13] = { [sym__statement] = STATE(208), [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), [sym_if_statement] = STATE(208), [sym_match_statement] = STATE(208), [sym_for_statement] = STATE(208), @@ -20697,61 +20744,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(208), [sym_with_statement] = STATE(208), [sym_function_definition] = STATE(208), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), [sym_class_definition] = STATE(208), [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1645), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1359), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4640), + [sym_include_statement] = STATE(5109), [sym_def_statement] = STATE(208), [sym_cdef_statement] = STATE(208), [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -20812,26 +20859,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(139), + [sym__dedent] = ACTIONS(137), [sym_string_start] = ACTIONS(107), }, [14] = { [sym__statement] = STATE(208), [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), [sym_if_statement] = STATE(208), [sym_match_statement] = STATE(208), [sym_for_statement] = STATE(208), @@ -20839,61 +20886,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(208), [sym_with_statement] = STATE(208), [sym_function_definition] = STATE(208), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), [sym_class_definition] = STATE(208), [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1684), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1274), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4640), + [sym_include_statement] = STATE(5109), [sym_def_statement] = STATE(208), [sym_cdef_statement] = STATE(208), [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -20954,26 +21001,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(139), + [sym__dedent] = ACTIONS(137), [sym_string_start] = ACTIONS(107), }, [15] = { [sym__statement] = STATE(208), [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), [sym_if_statement] = STATE(208), [sym_match_statement] = STATE(208), [sym_for_statement] = STATE(208), @@ -20981,61 +21028,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(208), [sym_with_statement] = STATE(208), [sym_function_definition] = STATE(208), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), [sym_class_definition] = STATE(208), [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1283), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1343), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4640), + [sym_include_statement] = STATE(5109), [sym_def_statement] = STATE(208), [sym_cdef_statement] = STATE(208), [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -21096,26 +21143,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(139), + [sym__dedent] = ACTIONS(137), [sym_string_start] = ACTIONS(107), }, [16] = { [sym__statement] = STATE(208), [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), [sym_if_statement] = STATE(208), [sym_match_statement] = STATE(208), [sym_for_statement] = STATE(208), @@ -21123,61 +21170,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(208), [sym_with_statement] = STATE(208), [sym_function_definition] = STATE(208), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), [sym_class_definition] = STATE(208), [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1299), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1283), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4640), + [sym_include_statement] = STATE(5109), [sym_def_statement] = STATE(208), [sym_cdef_statement] = STATE(208), [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -21238,26 +21285,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(139), + [sym__dedent] = ACTIONS(137), [sym_string_start] = ACTIONS(107), }, [17] = { [sym__statement] = STATE(208), [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), [sym_if_statement] = STATE(208), [sym_match_statement] = STATE(208), [sym_for_statement] = STATE(208), @@ -21265,61 +21312,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(208), [sym_with_statement] = STATE(208), [sym_function_definition] = STATE(208), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), [sym_class_definition] = STATE(208), [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1300), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1702), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4640), + [sym_include_statement] = STATE(5109), [sym_def_statement] = STATE(208), [sym_cdef_statement] = STATE(208), [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -21380,26 +21427,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(139), + [sym__dedent] = ACTIONS(137), [sym_string_start] = ACTIONS(107), }, [18] = { [sym__statement] = STATE(208), [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), [sym_if_statement] = STATE(208), [sym_match_statement] = STATE(208), [sym_for_statement] = STATE(208), @@ -21407,61 +21454,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(208), [sym_with_statement] = STATE(208), [sym_function_definition] = STATE(208), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), [sym_class_definition] = STATE(208), [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1320), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1083), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4640), + [sym_include_statement] = STATE(5109), [sym_def_statement] = STATE(208), [sym_cdef_statement] = STATE(208), [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -21522,88 +21569,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(139), + [sym__dedent] = ACTIONS(137), [sym_string_start] = ACTIONS(107), }, [19] = { - [sym__statement] = STATE(208), - [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(208), - [sym_match_statement] = STATE(208), - [sym_for_statement] = STATE(208), - [sym_while_statement] = STATE(208), - [sym_try_statement] = STATE(208), - [sym_with_statement] = STATE(208), - [sym_function_definition] = STATE(208), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(208), - [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1339), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(208), - [sym_cdef_statement] = STATE(208), - [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [sym__statement] = STATE(203), + [sym__simple_statements] = STATE(203), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(203), + [sym_match_statement] = STATE(203), + [sym_for_statement] = STATE(203), + [sym_while_statement] = STATE(203), + [sym_try_statement] = STATE(203), + [sym_with_statement] = STATE(203), + [sym_function_definition] = STATE(203), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(203), + [sym_decorated_definition] = STATE(203), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1034), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(203), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(203), + [sym_cdef_statement] = STATE(203), + [sym_ctypedef_statement] = STATE(203), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(203), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -21670,20 +21717,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [20] = { [sym__statement] = STATE(208), [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), [sym_if_statement] = STATE(208), [sym_match_statement] = STATE(208), [sym_for_statement] = STATE(208), @@ -21691,61 +21738,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(208), [sym_with_statement] = STATE(208), [sym_function_definition] = STATE(208), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), [sym_class_definition] = STATE(208), [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1372), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1712), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4640), + [sym_include_statement] = STATE(5109), [sym_def_statement] = STATE(208), [sym_cdef_statement] = STATE(208), [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -21806,26 +21853,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(139), + [sym__dedent] = ACTIONS(137), [sym_string_start] = ACTIONS(107), }, [21] = { [sym__statement] = STATE(208), [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), [sym_if_statement] = STATE(208), [sym_match_statement] = STATE(208), [sym_for_statement] = STATE(208), @@ -21833,61 +21880,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(208), [sym_with_statement] = STATE(208), [sym_function_definition] = STATE(208), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), [sym_class_definition] = STATE(208), [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1404), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1717), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4640), + [sym_include_statement] = STATE(5109), [sym_def_statement] = STATE(208), [sym_cdef_statement] = STATE(208), [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -21948,26 +21995,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(139), + [sym__dedent] = ACTIONS(137), [sym_string_start] = ACTIONS(107), }, [22] = { [sym__statement] = STATE(208), [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), [sym_if_statement] = STATE(208), [sym_match_statement] = STATE(208), [sym_for_statement] = STATE(208), @@ -21975,61 +22022,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(208), [sym_with_statement] = STATE(208), [sym_function_definition] = STATE(208), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), [sym_class_definition] = STATE(208), [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1087), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1372), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4640), + [sym_include_statement] = STATE(5109), [sym_def_statement] = STATE(208), [sym_cdef_statement] = STATE(208), [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -22090,168 +22137,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(139), + [sym__dedent] = ACTIONS(137), [sym_string_start] = ACTIONS(107), }, [23] = { - [sym__statement] = STATE(200), - [sym__simple_statements] = STATE(200), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(200), - [sym_match_statement] = STATE(200), - [sym_for_statement] = STATE(200), - [sym_while_statement] = STATE(200), - [sym_try_statement] = STATE(200), - [sym_with_statement] = STATE(200), - [sym_function_definition] = STATE(200), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(200), - [sym_decorated_definition] = STATE(200), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(978), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(200), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(200), - [sym_cdef_statement] = STATE(200), - [sym_ctypedef_statement] = STATE(200), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(200), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), - [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_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(125), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_AT] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(69), - [anon_sym_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(87), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [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(208), [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), [sym_if_statement] = STATE(208), [sym_match_statement] = STATE(208), [sym_for_statement] = STATE(208), @@ -22259,203 +22164,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(208), [sym_with_statement] = STATE(208), [sym_function_definition] = STATE(208), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), [sym_class_definition] = STATE(208), [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1408), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(208), - [sym_cdef_statement] = STATE(208), - [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), - [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_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(125), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_AT] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(69), - [anon_sym_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(87), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [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(208), - [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(208), - [sym_match_statement] = STATE(208), - [sym_for_statement] = STATE(208), - [sym_while_statement] = STATE(208), - [sym_try_statement] = STATE(208), - [sym_with_statement] = STATE(208), - [sym_function_definition] = STATE(208), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(208), - [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1412), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1161), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4640), + [sym_include_statement] = STATE(5109), [sym_def_statement] = STATE(208), [sym_cdef_statement] = STATE(208), [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -22516,26 +22279,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(139), + [sym__dedent] = ACTIONS(137), [sym_string_start] = ACTIONS(107), }, - [26] = { + [24] = { [sym__statement] = STATE(208), [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), [sym_if_statement] = STATE(208), [sym_match_statement] = STATE(208), [sym_for_statement] = STATE(208), @@ -22543,61 +22306,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(208), [sym_with_statement] = STATE(208), [sym_function_definition] = STATE(208), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), [sym_class_definition] = STATE(208), [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1189), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1164), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4640), + [sym_include_statement] = STATE(5109), [sym_def_statement] = STATE(208), [sym_cdef_statement] = STATE(208), [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -22658,168 +22421,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(208), - [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(208), - [sym_match_statement] = STATE(208), - [sym_for_statement] = STATE(208), - [sym_while_statement] = STATE(208), - [sym_try_statement] = STATE(208), - [sym_with_statement] = STATE(208), - [sym_function_definition] = STATE(208), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(208), - [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1201), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(208), - [sym_cdef_statement] = STATE(208), - [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), - [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_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(125), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_AT] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(69), - [anon_sym_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(87), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [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__dedent] = ACTIONS(137), [sym_string_start] = ACTIONS(107), }, - [28] = { + [25] = { [sym__statement] = STATE(208), [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), [sym_if_statement] = STATE(208), [sym_match_statement] = STATE(208), [sym_for_statement] = STATE(208), @@ -22827,61 +22448,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(208), [sym_with_statement] = STATE(208), [sym_function_definition] = STATE(208), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), [sym_class_definition] = STATE(208), [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1222), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1168), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4640), + [sym_include_statement] = STATE(5109), [sym_def_statement] = STATE(208), [sym_cdef_statement] = STATE(208), [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -22942,26 +22563,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(139), + [sym__dedent] = ACTIONS(137), [sym_string_start] = ACTIONS(107), }, - [29] = { + [26] = { [sym__statement] = STATE(208), [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), [sym_if_statement] = STATE(208), [sym_match_statement] = STATE(208), [sym_for_statement] = STATE(208), @@ -22969,61 +22590,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(208), [sym_with_statement] = STATE(208), [sym_function_definition] = STATE(208), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), [sym_class_definition] = STATE(208), [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1241), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1177), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4640), + [sym_include_statement] = STATE(5109), [sym_def_statement] = STATE(208), [sym_cdef_statement] = STATE(208), [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -23084,26 +22705,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(139), + [sym__dedent] = ACTIONS(137), [sym_string_start] = ACTIONS(107), }, - [30] = { + [27] = { [sym__statement] = STATE(208), [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), [sym_if_statement] = STATE(208), [sym_match_statement] = STATE(208), [sym_for_statement] = STATE(208), @@ -23111,61 +22732,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(208), [sym_with_statement] = STATE(208), [sym_function_definition] = STATE(208), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), [sym_class_definition] = STATE(208), [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1278), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1201), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4640), + [sym_include_statement] = STATE(5109), [sym_def_statement] = STATE(208), [sym_cdef_statement] = STATE(208), [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -23226,26 +22847,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(139), + [sym__dedent] = ACTIONS(137), [sym_string_start] = ACTIONS(107), }, - [31] = { + [28] = { [sym__statement] = STATE(208), [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), [sym_if_statement] = STATE(208), [sym_match_statement] = STATE(208), [sym_for_statement] = STATE(208), @@ -23253,61 +22874,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(208), [sym_with_statement] = STATE(208), [sym_function_definition] = STATE(208), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), [sym_class_definition] = STATE(208), [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1360), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1212), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4640), + [sym_include_statement] = STATE(5109), [sym_def_statement] = STATE(208), [sym_cdef_statement] = STATE(208), [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -23368,26 +22989,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(139), + [sym__dedent] = ACTIONS(137), [sym_string_start] = ACTIONS(107), }, - [32] = { + [29] = { [sym__statement] = STATE(208), [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), [sym_if_statement] = STATE(208), [sym_match_statement] = STATE(208), [sym_for_statement] = STATE(208), @@ -23395,61 +23016,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(208), [sym_with_statement] = STATE(208), [sym_function_definition] = STATE(208), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), [sym_class_definition] = STATE(208), [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1370), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1213), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4640), + [sym_include_statement] = STATE(5109), [sym_def_statement] = STATE(208), [sym_cdef_statement] = STATE(208), [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -23510,26 +23131,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(139), + [sym__dedent] = ACTIONS(137), [sym_string_start] = ACTIONS(107), }, - [33] = { + [30] = { [sym__statement] = STATE(208), [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), [sym_if_statement] = STATE(208), [sym_match_statement] = STATE(208), [sym_for_statement] = STATE(208), @@ -23537,61 +23158,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(208), [sym_with_statement] = STATE(208), [sym_function_definition] = STATE(208), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), [sym_class_definition] = STATE(208), [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1371), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1251), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4640), + [sym_include_statement] = STATE(5109), [sym_def_statement] = STATE(208), [sym_cdef_statement] = STATE(208), [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -23652,26 +23273,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(139), + [sym__dedent] = ACTIONS(137), [sym_string_start] = ACTIONS(107), }, - [34] = { + [31] = { [sym__statement] = STATE(208), [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), [sym_if_statement] = STATE(208), [sym_match_statement] = STATE(208), [sym_for_statement] = STATE(208), @@ -23679,61 +23300,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(208), [sym_with_statement] = STATE(208), [sym_function_definition] = STATE(208), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), [sym_class_definition] = STATE(208), [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1274), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1110), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4640), + [sym_include_statement] = STATE(5109), [sym_def_statement] = STATE(208), [sym_cdef_statement] = STATE(208), [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -23794,26 +23415,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(139), + [sym__dedent] = ACTIONS(137), [sym_string_start] = ACTIONS(107), }, - [35] = { + [32] = { [sym__statement] = STATE(208), [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), [sym_if_statement] = STATE(208), [sym_match_statement] = STATE(208), [sym_for_statement] = STATE(208), @@ -23821,61 +23442,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(208), [sym_with_statement] = STATE(208), [sym_function_definition] = STATE(208), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), [sym_class_definition] = STATE(208), [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1055), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1515), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4640), + [sym_include_statement] = STATE(5109), [sym_def_statement] = STATE(208), [sym_cdef_statement] = STATE(208), [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -23936,88 +23557,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(139), + [sym__dedent] = ACTIONS(137), [sym_string_start] = ACTIONS(107), }, - [36] = { - [sym__statement] = STATE(208), - [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(208), - [sym_match_statement] = STATE(208), - [sym_for_statement] = STATE(208), - [sym_while_statement] = STATE(208), - [sym_try_statement] = STATE(208), - [sym_with_statement] = STATE(208), - [sym_function_definition] = STATE(208), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(208), - [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1449), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(208), - [sym_cdef_statement] = STATE(208), - [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [33] = { + [sym__statement] = STATE(203), + [sym__simple_statements] = STATE(203), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(203), + [sym_match_statement] = STATE(203), + [sym_for_statement] = STATE(203), + [sym_while_statement] = STATE(203), + [sym_try_statement] = STATE(203), + [sym_with_statement] = STATE(203), + [sym_function_definition] = STATE(203), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(203), + [sym_decorated_definition] = STATE(203), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1016), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(203), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(203), + [sym_cdef_statement] = STATE(203), + [sym_ctypedef_statement] = STATE(203), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(203), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -24081,85 +23702,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(139), [sym_string_start] = ACTIONS(107), }, - [37] = { - [sym__statement] = STATE(200), - [sym__simple_statements] = STATE(200), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(200), - [sym_match_statement] = STATE(200), - [sym_for_statement] = STATE(200), - [sym_while_statement] = STATE(200), - [sym_try_statement] = STATE(200), - [sym_with_statement] = STATE(200), - [sym_function_definition] = STATE(200), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(200), - [sym_decorated_definition] = STATE(200), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(974), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(200), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(200), - [sym_cdef_statement] = STATE(200), - [sym_ctypedef_statement] = STATE(200), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(200), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [34] = { + [sym__statement] = STATE(210), + [sym__simple_statements] = STATE(210), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(210), + [sym_match_statement] = STATE(210), + [sym_for_statement] = STATE(210), + [sym_while_statement] = STATE(210), + [sym_try_statement] = STATE(210), + [sym_with_statement] = STATE(210), + [sym_function_definition] = STATE(210), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(210), + [sym_decorated_definition] = STATE(210), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1017), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(210), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(210), + [sym_cdef_statement] = STATE(210), + [sym_ctypedef_statement] = STATE(210), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(210), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -24223,85 +23844,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(141), [sym_string_start] = ACTIONS(107), }, - [38] = { - [sym__statement] = STATE(207), - [sym__simple_statements] = STATE(207), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(207), - [sym_match_statement] = STATE(207), - [sym_for_statement] = STATE(207), - [sym_while_statement] = STATE(207), - [sym_try_statement] = STATE(207), - [sym_with_statement] = STATE(207), - [sym_function_definition] = STATE(207), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(207), - [sym_decorated_definition] = STATE(207), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(982), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(207), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(207), - [sym_cdef_statement] = STATE(207), - [sym_ctypedef_statement] = STATE(207), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(207), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [35] = { + [sym__statement] = STATE(208), + [sym__simple_statements] = STATE(208), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(208), + [sym_match_statement] = STATE(208), + [sym_for_statement] = STATE(208), + [sym_while_statement] = STATE(208), + [sym_try_statement] = STATE(208), + [sym_with_statement] = STATE(208), + [sym_function_definition] = STATE(208), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(208), + [sym_decorated_definition] = STATE(208), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1518), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(208), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(208), + [sym_cdef_statement] = STATE(208), + [sym_ctypedef_statement] = STATE(208), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(208), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -24362,26 +23983,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(143), + [sym__dedent] = ACTIONS(137), [sym_string_start] = ACTIONS(107), }, - [39] = { + [36] = { [sym__statement] = STATE(208), [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), [sym_if_statement] = STATE(208), [sym_match_statement] = STATE(208), [sym_for_statement] = STATE(208), @@ -24389,61 +24010,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(208), [sym_with_statement] = STATE(208), [sym_function_definition] = STATE(208), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), [sym_class_definition] = STATE(208), [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1451), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1300), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4640), + [sym_include_statement] = STATE(5109), [sym_def_statement] = STATE(208), [sym_cdef_statement] = STATE(208), [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -24504,26 +24125,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(139), + [sym__dedent] = ACTIONS(137), [sym_string_start] = ACTIONS(107), }, - [40] = { + [37] = { [sym__statement] = STATE(208), [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), [sym_if_statement] = STATE(208), [sym_match_statement] = STATE(208), [sym_for_statement] = STATE(208), @@ -24531,61 +24152,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(208), [sym_with_statement] = STATE(208), [sym_function_definition] = STATE(208), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), [sym_class_definition] = STATE(208), [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1165), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1328), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4640), + [sym_include_statement] = STATE(5109), [sym_def_statement] = STATE(208), [sym_cdef_statement] = STATE(208), [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -24646,26 +24267,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(139), + [sym__dedent] = ACTIONS(137), [sym_string_start] = ACTIONS(107), }, - [41] = { + [38] = { [sym__statement] = STATE(208), [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), [sym_if_statement] = STATE(208), [sym_match_statement] = STATE(208), [sym_for_statement] = STATE(208), @@ -24673,61 +24294,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(208), [sym_with_statement] = STATE(208), [sym_function_definition] = STATE(208), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), [sym_class_definition] = STATE(208), [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1296), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1330), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4640), + [sym_include_statement] = STATE(5109), [sym_def_statement] = STATE(208), [sym_cdef_statement] = STATE(208), [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -24788,26 +24409,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(139), + [sym__dedent] = ACTIONS(137), [sym_string_start] = ACTIONS(107), }, - [42] = { + [39] = { [sym__statement] = STATE(208), [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), [sym_if_statement] = STATE(208), [sym_match_statement] = STATE(208), [sym_for_statement] = STATE(208), @@ -24815,61 +24436,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(208), [sym_with_statement] = STATE(208), [sym_function_definition] = STATE(208), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), [sym_class_definition] = STATE(208), [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1164), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1337), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4640), + [sym_include_statement] = STATE(5109), [sym_def_statement] = STATE(208), [sym_cdef_statement] = STATE(208), [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -24930,26 +24551,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(139), + [sym__dedent] = ACTIONS(137), [sym_string_start] = ACTIONS(107), }, - [43] = { + [40] = { [sym__statement] = STATE(208), [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), [sym_if_statement] = STATE(208), [sym_match_statement] = STATE(208), [sym_for_statement] = STATE(208), @@ -24957,61 +24578,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(208), [sym_with_statement] = STATE(208), [sym_function_definition] = STATE(208), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), [sym_class_definition] = STATE(208), [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1192), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1214), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4640), + [sym_include_statement] = STATE(5109), [sym_def_statement] = STATE(208), [sym_cdef_statement] = STATE(208), [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -25072,26 +24693,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(139), + [sym__dedent] = ACTIONS(137), [sym_string_start] = ACTIONS(107), }, - [44] = { + [41] = { [sym__statement] = STATE(208), [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), [sym_if_statement] = STATE(208), [sym_match_statement] = STATE(208), [sym_for_statement] = STATE(208), @@ -25099,61 +24720,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(208), [sym_with_statement] = STATE(208), [sym_function_definition] = STATE(208), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), [sym_class_definition] = STATE(208), [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1297), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1275), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4640), + [sym_include_statement] = STATE(5109), [sym_def_statement] = STATE(208), [sym_cdef_statement] = STATE(208), [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -25214,26 +24835,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(139), + [sym__dedent] = ACTIONS(137), [sym_string_start] = ACTIONS(107), }, - [45] = { + [42] = { [sym__statement] = STATE(208), [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), [sym_if_statement] = STATE(208), [sym_match_statement] = STATE(208), [sym_for_statement] = STATE(208), @@ -25241,61 +24862,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(208), [sym_with_statement] = STATE(208), [sym_function_definition] = STATE(208), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), [sym_class_definition] = STATE(208), [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1171), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1347), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4640), + [sym_include_statement] = STATE(5109), [sym_def_statement] = STATE(208), [sym_cdef_statement] = STATE(208), [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -25356,26 +24977,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(139), + [sym__dedent] = ACTIONS(137), [sym_string_start] = ACTIONS(107), }, - [46] = { + [43] = { [sym__statement] = STATE(208), [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), [sym_if_statement] = STATE(208), [sym_match_statement] = STATE(208), [sym_for_statement] = STATE(208), @@ -25383,61 +25004,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(208), [sym_with_statement] = STATE(208), [sym_function_definition] = STATE(208), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), [sym_class_definition] = STATE(208), [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1183), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1095), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4640), + [sym_include_statement] = STATE(5109), [sym_def_statement] = STATE(208), [sym_cdef_statement] = STATE(208), [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -25498,88 +25119,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(139), + [sym__dedent] = ACTIONS(137), [sym_string_start] = ACTIONS(107), }, - [47] = { - [sym__statement] = STATE(208), - [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(208), - [sym_match_statement] = STATE(208), - [sym_for_statement] = STATE(208), - [sym_while_statement] = STATE(208), - [sym_try_statement] = STATE(208), - [sym_with_statement] = STATE(208), - [sym_function_definition] = STATE(208), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(208), - [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1075), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(208), - [sym_cdef_statement] = STATE(208), - [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [44] = { + [sym__statement] = STATE(209), + [sym__simple_statements] = STATE(209), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(209), + [sym_match_statement] = STATE(209), + [sym_for_statement] = STATE(209), + [sym_while_statement] = STATE(209), + [sym_try_statement] = STATE(209), + [sym_with_statement] = STATE(209), + [sym_function_definition] = STATE(209), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(209), + [sym_decorated_definition] = STATE(209), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(5277), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(209), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(209), + [sym_cdef_statement] = STATE(209), + [sym_ctypedef_statement] = STATE(209), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(209), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -25640,88 +25261,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(139), + [sym__dedent] = ACTIONS(143), [sym_string_start] = ACTIONS(107), }, - [48] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(205), - [sym_match_statement] = STATE(205), - [sym_for_statement] = STATE(205), - [sym_while_statement] = STATE(205), - [sym_try_statement] = STATE(205), - [sym_with_statement] = STATE(205), - [sym_function_definition] = STATE(205), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(5167), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [45] = { + [sym__statement] = STATE(208), + [sym__simple_statements] = STATE(208), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(208), + [sym_match_statement] = STATE(208), + [sym_for_statement] = STATE(208), + [sym_while_statement] = STATE(208), + [sym_try_statement] = STATE(208), + [sym_with_statement] = STATE(208), + [sym_function_definition] = STATE(208), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(208), + [sym_decorated_definition] = STATE(208), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1626), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(208), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(208), + [sym_cdef_statement] = STATE(208), + [sym_ctypedef_statement] = STATE(208), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(208), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -25782,26 +25403,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), + [sym__dedent] = ACTIONS(137), [sym_string_start] = ACTIONS(107), }, - [49] = { + [46] = { [sym__statement] = STATE(208), [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), [sym_if_statement] = STATE(208), [sym_match_statement] = STATE(208), [sym_for_statement] = STATE(208), @@ -25809,61 +25430,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(208), [sym_with_statement] = STATE(208), [sym_function_definition] = STATE(208), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), [sym_class_definition] = STATE(208), [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1528), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1634), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4640), + [sym_include_statement] = STATE(5109), [sym_def_statement] = STATE(208), [sym_cdef_statement] = STATE(208), [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -25924,26 +25545,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(139), + [sym__dedent] = ACTIONS(137), [sym_string_start] = ACTIONS(107), }, - [50] = { + [47] = { [sym__statement] = STATE(208), [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), [sym_if_statement] = STATE(208), [sym_match_statement] = STATE(208), [sym_for_statement] = STATE(208), @@ -25951,61 +25572,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(208), [sym_with_statement] = STATE(208), [sym_function_definition] = STATE(208), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), [sym_class_definition] = STATE(208), [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1538), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1278), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4640), + [sym_include_statement] = STATE(5109), [sym_def_statement] = STATE(208), [sym_cdef_statement] = STATE(208), [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -26066,26 +25687,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(139), + [sym__dedent] = ACTIONS(137), [sym_string_start] = ACTIONS(107), }, - [51] = { + [48] = { [sym__statement] = STATE(208), [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), [sym_if_statement] = STATE(208), [sym_match_statement] = STATE(208), [sym_for_statement] = STATE(208), @@ -26093,61 +25714,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(208), [sym_with_statement] = STATE(208), [sym_function_definition] = STATE(208), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), [sym_class_definition] = STATE(208), [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1248), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1293), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4640), + [sym_include_statement] = STATE(5109), [sym_def_statement] = STATE(208), [sym_cdef_statement] = STATE(208), [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -26208,26 +25829,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(139), + [sym__dedent] = ACTIONS(137), [sym_string_start] = ACTIONS(107), }, - [52] = { + [49] = { [sym__statement] = STATE(208), [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), [sym_if_statement] = STATE(208), [sym_match_statement] = STATE(208), [sym_for_statement] = STATE(208), @@ -26235,61 +25856,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(208), [sym_with_statement] = STATE(208), [sym_function_definition] = STATE(208), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), [sym_class_definition] = STATE(208), [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1263), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1294), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4640), + [sym_include_statement] = STATE(5109), [sym_def_statement] = STATE(208), [sym_cdef_statement] = STATE(208), [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -26350,26 +25971,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(139), + [sym__dedent] = ACTIONS(137), [sym_string_start] = ACTIONS(107), }, - [53] = { + [50] = { [sym__statement] = STATE(208), [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), [sym_if_statement] = STATE(208), [sym_match_statement] = STATE(208), [sym_for_statement] = STATE(208), @@ -26377,61 +25998,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(208), [sym_with_statement] = STATE(208), [sym_function_definition] = STATE(208), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), [sym_class_definition] = STATE(208), [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1264), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1240), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4640), + [sym_include_statement] = STATE(5109), [sym_def_statement] = STATE(208), [sym_cdef_statement] = STATE(208), [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -26492,26 +26113,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(139), + [sym__dedent] = ACTIONS(137), [sym_string_start] = ACTIONS(107), }, - [54] = { + [51] = { [sym__statement] = STATE(208), [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), [sym_if_statement] = STATE(208), [sym_match_statement] = STATE(208), [sym_for_statement] = STATE(208), @@ -26519,61 +26140,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(208), [sym_with_statement] = STATE(208), [sym_function_definition] = STATE(208), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), [sym_class_definition] = STATE(208), [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1182), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1245), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4640), + [sym_include_statement] = STATE(5109), [sym_def_statement] = STATE(208), [sym_cdef_statement] = STATE(208), [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -26634,26 +26255,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(139), + [sym__dedent] = ACTIONS(137), [sym_string_start] = ACTIONS(107), }, - [55] = { + [52] = { [sym__statement] = STATE(208), [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), [sym_if_statement] = STATE(208), [sym_match_statement] = STATE(208), [sym_for_statement] = STATE(208), @@ -26661,61 +26282,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(208), [sym_with_statement] = STATE(208), [sym_function_definition] = STATE(208), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), [sym_class_definition] = STATE(208), [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1196), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1375), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4640), + [sym_include_statement] = STATE(5109), [sym_def_statement] = STATE(208), [sym_cdef_statement] = STATE(208), [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -26776,26 +26397,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(139), + [sym__dedent] = ACTIONS(137), [sym_string_start] = ACTIONS(107), }, - [56] = { + [53] = { [sym__statement] = STATE(208), [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), [sym_if_statement] = STATE(208), [sym_match_statement] = STATE(208), [sym_for_statement] = STATE(208), @@ -26803,61 +26424,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(208), [sym_with_statement] = STATE(208), [sym_function_definition] = STATE(208), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), [sym_class_definition] = STATE(208), [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1235), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1351), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4640), + [sym_include_statement] = STATE(5109), [sym_def_statement] = STATE(208), [sym_cdef_statement] = STATE(208), [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -26918,88 +26539,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(139), + [sym__dedent] = ACTIONS(137), [sym_string_start] = ACTIONS(107), }, - [57] = { - [sym__statement] = STATE(208), - [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(208), - [sym_match_statement] = STATE(208), - [sym_for_statement] = STATE(208), - [sym_while_statement] = STATE(208), - [sym_try_statement] = STATE(208), - [sym_with_statement] = STATE(208), - [sym_function_definition] = STATE(208), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(208), - [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1251), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(208), - [sym_cdef_statement] = STATE(208), - [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [54] = { + [sym__statement] = STATE(209), + [sym__simple_statements] = STATE(209), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(209), + [sym_match_statement] = STATE(209), + [sym_for_statement] = STATE(209), + [sym_while_statement] = STATE(209), + [sym_try_statement] = STATE(209), + [sym_with_statement] = STATE(209), + [sym_function_definition] = STATE(209), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(209), + [sym_decorated_definition] = STATE(209), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(5197), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(209), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(209), + [sym_cdef_statement] = STATE(209), + [sym_ctypedef_statement] = STATE(209), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(209), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -27060,88 +26681,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(139), + [sym__dedent] = ACTIONS(143), [sym_string_start] = ACTIONS(107), }, - [58] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(205), - [sym_match_statement] = STATE(205), - [sym_for_statement] = STATE(205), - [sym_while_statement] = STATE(205), - [sym_try_statement] = STATE(205), - [sym_with_statement] = STATE(205), - [sym_function_definition] = STATE(205), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(5257), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [55] = { + [sym__statement] = STATE(209), + [sym__simple_statements] = STATE(209), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(209), + [sym_match_statement] = STATE(209), + [sym_for_statement] = STATE(209), + [sym_while_statement] = STATE(209), + [sym_try_statement] = STATE(209), + [sym_with_statement] = STATE(209), + [sym_function_definition] = STATE(209), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(209), + [sym_decorated_definition] = STATE(209), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(5269), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(209), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(209), + [sym_cdef_statement] = STATE(209), + [sym_ctypedef_statement] = STATE(209), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(209), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -27202,168 +26823,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), - [sym_string_start] = ACTIONS(107), - }, - [59] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(205), - [sym_match_statement] = STATE(205), - [sym_for_statement] = STATE(205), - [sym_while_statement] = STATE(205), - [sym_try_statement] = STATE(205), - [sym_with_statement] = STATE(205), - [sym_function_definition] = STATE(205), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(5190), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), - [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_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(125), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_AT] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(69), - [anon_sym_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(87), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [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__dedent] = ACTIONS(143), [sym_string_start] = ACTIONS(107), }, - [60] = { + [56] = { [sym__statement] = STATE(208), [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), [sym_if_statement] = STATE(208), [sym_match_statement] = STATE(208), [sym_for_statement] = STATE(208), @@ -27371,61 +26850,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(208), [sym_with_statement] = STATE(208), [sym_function_definition] = STATE(208), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), [sym_class_definition] = STATE(208), [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1557), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1658), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4640), + [sym_include_statement] = STATE(5109), [sym_def_statement] = STATE(208), [sym_cdef_statement] = STATE(208), [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -27486,88 +26965,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(139), + [sym__dedent] = ACTIONS(137), [sym_string_start] = ACTIONS(107), }, - [61] = { - [sym__statement] = STATE(200), - [sym__simple_statements] = STATE(200), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(200), - [sym_match_statement] = STATE(200), - [sym_for_statement] = STATE(200), - [sym_while_statement] = STATE(200), - [sym_try_statement] = STATE(200), - [sym_with_statement] = STATE(200), - [sym_function_definition] = STATE(200), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(200), - [sym_decorated_definition] = STATE(200), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1033), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(200), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(200), - [sym_cdef_statement] = STATE(200), - [sym_ctypedef_statement] = STATE(200), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(200), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [57] = { + [sym__statement] = STATE(203), + [sym__simple_statements] = STATE(203), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(203), + [sym_match_statement] = STATE(203), + [sym_for_statement] = STATE(203), + [sym_while_statement] = STATE(203), + [sym_try_statement] = STATE(203), + [sym_with_statement] = STATE(203), + [sym_function_definition] = STATE(203), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(203), + [sym_decorated_definition] = STATE(203), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1056), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(203), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(203), + [sym_cdef_statement] = STATE(203), + [sym_ctypedef_statement] = STATE(203), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(203), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -27628,88 +27107,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(141), + [sym__dedent] = ACTIONS(139), [sym_string_start] = ACTIONS(107), }, - [62] = { - [sym__statement] = STATE(207), - [sym__simple_statements] = STATE(207), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(207), - [sym_match_statement] = STATE(207), - [sym_for_statement] = STATE(207), - [sym_while_statement] = STATE(207), - [sym_try_statement] = STATE(207), - [sym_with_statement] = STATE(207), - [sym_function_definition] = STATE(207), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(207), - [sym_decorated_definition] = STATE(207), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1041), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(207), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(207), - [sym_cdef_statement] = STATE(207), - [sym_ctypedef_statement] = STATE(207), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(207), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [58] = { + [sym__statement] = STATE(210), + [sym__simple_statements] = STATE(210), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(210), + [sym_match_statement] = STATE(210), + [sym_for_statement] = STATE(210), + [sym_while_statement] = STATE(210), + [sym_try_statement] = STATE(210), + [sym_with_statement] = STATE(210), + [sym_function_definition] = STATE(210), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(210), + [sym_decorated_definition] = STATE(210), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1057), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(210), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(210), + [sym_cdef_statement] = STATE(210), + [sym_ctypedef_statement] = STATE(210), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(210), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -27770,26 +27249,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(143), + [sym__dedent] = ACTIONS(141), [sym_string_start] = ACTIONS(107), }, - [63] = { + [59] = { [sym__statement] = STATE(208), [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), [sym_if_statement] = STATE(208), [sym_match_statement] = STATE(208), [sym_for_statement] = STATE(208), @@ -27797,61 +27276,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(208), [sym_with_statement] = STATE(208), [sym_function_definition] = STATE(208), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), [sym_class_definition] = STATE(208), [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1265), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1260), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4640), + [sym_include_statement] = STATE(5109), [sym_def_statement] = STATE(208), [sym_cdef_statement] = STATE(208), [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -27912,26 +27391,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(139), + [sym__dedent] = ACTIONS(137), [sym_string_start] = ACTIONS(107), }, - [64] = { + [60] = { [sym__statement] = STATE(208), [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), [sym_if_statement] = STATE(208), [sym_match_statement] = STATE(208), [sym_for_statement] = STATE(208), @@ -27939,61 +27418,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(208), [sym_with_statement] = STATE(208), [sym_function_definition] = STATE(208), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), [sym_class_definition] = STATE(208), [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1267), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1263), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4640), + [sym_include_statement] = STATE(5109), [sym_def_statement] = STATE(208), [sym_cdef_statement] = STATE(208), [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -28054,26 +27533,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(139), + [sym__dedent] = ACTIONS(137), [sym_string_start] = ACTIONS(107), }, - [65] = { + [61] = { [sym__statement] = STATE(208), [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), [sym_if_statement] = STATE(208), [sym_match_statement] = STATE(208), [sym_for_statement] = STATE(208), @@ -28081,61 +27560,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(208), [sym_with_statement] = STATE(208), [sym_function_definition] = STATE(208), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), [sym_class_definition] = STATE(208), [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3184), + [sym_decorator] = STATE(3205), [sym_block] = STATE(1270), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4640), + [sym_include_statement] = STATE(5109), [sym_def_statement] = STATE(208), [sym_cdef_statement] = STATE(208), [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -28196,26 +27675,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(139), + [sym__dedent] = ACTIONS(137), [sym_string_start] = ACTIONS(107), }, - [66] = { + [62] = { [sym__statement] = STATE(208), [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), [sym_if_statement] = STATE(208), [sym_match_statement] = STATE(208), [sym_for_statement] = STATE(208), @@ -28223,61 +27702,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(208), [sym_with_statement] = STATE(208), [sym_function_definition] = STATE(208), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), [sym_class_definition] = STATE(208), [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1277), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1276), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4640), + [sym_include_statement] = STATE(5109), [sym_def_statement] = STATE(208), [sym_cdef_statement] = STATE(208), [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -28338,26 +27817,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(139), + [sym__dedent] = ACTIONS(137), [sym_string_start] = ACTIONS(107), }, - [67] = { + [63] = { [sym__statement] = STATE(208), [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), [sym_if_statement] = STATE(208), [sym_match_statement] = STATE(208), [sym_for_statement] = STATE(208), @@ -28365,61 +27844,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(208), [sym_with_statement] = STATE(208), [sym_function_definition] = STATE(208), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), [sym_class_definition] = STATE(208), [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1287), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1305), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4640), + [sym_include_statement] = STATE(5109), [sym_def_statement] = STATE(208), [sym_cdef_statement] = STATE(208), [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -28480,26 +27959,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(139), + [sym__dedent] = ACTIONS(137), [sym_string_start] = ACTIONS(107), }, - [68] = { + [64] = { [sym__statement] = STATE(208), [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), [sym_if_statement] = STATE(208), [sym_match_statement] = STATE(208), [sym_for_statement] = STATE(208), @@ -28507,61 +27986,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(208), [sym_with_statement] = STATE(208), [sym_function_definition] = STATE(208), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), [sym_class_definition] = STATE(208), [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1307), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1194), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4640), + [sym_include_statement] = STATE(5109), [sym_def_statement] = STATE(208), [sym_cdef_statement] = STATE(208), [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -28622,26 +28101,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(139), + [sym__dedent] = ACTIONS(137), [sym_string_start] = ACTIONS(107), }, - [69] = { + [65] = { [sym__statement] = STATE(208), [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), [sym_if_statement] = STATE(208), [sym_match_statement] = STATE(208), [sym_for_statement] = STATE(208), @@ -28649,61 +28128,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(208), [sym_with_statement] = STATE(208), [sym_function_definition] = STATE(208), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), [sym_class_definition] = STATE(208), [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1312), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1197), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4640), + [sym_include_statement] = STATE(5109), [sym_def_statement] = STATE(208), [sym_cdef_statement] = STATE(208), [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -28764,26 +28243,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(139), + [sym__dedent] = ACTIONS(137), [sym_string_start] = ACTIONS(107), }, - [70] = { + [66] = { [sym__statement] = STATE(208), [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), [sym_if_statement] = STATE(208), [sym_match_statement] = STATE(208), [sym_for_statement] = STATE(208), @@ -28791,61 +28270,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(208), [sym_with_statement] = STATE(208), [sym_function_definition] = STATE(208), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), [sym_class_definition] = STATE(208), [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1315), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1198), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4640), + [sym_include_statement] = STATE(5109), [sym_def_statement] = STATE(208), [sym_cdef_statement] = STATE(208), [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -28906,88 +28385,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(139), + [sym__dedent] = ACTIONS(137), [sym_string_start] = ACTIONS(107), }, - [71] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(205), - [sym_match_statement] = STATE(205), - [sym_for_statement] = STATE(205), - [sym_while_statement] = STATE(205), - [sym_try_statement] = STATE(205), - [sym_with_statement] = STATE(205), - [sym_function_definition] = STATE(205), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(5375), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [67] = { + [sym__statement] = STATE(209), + [sym__simple_statements] = STATE(209), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(209), + [sym_match_statement] = STATE(209), + [sym_for_statement] = STATE(209), + [sym_while_statement] = STATE(209), + [sym_try_statement] = STATE(209), + [sym_with_statement] = STATE(209), + [sym_function_definition] = STATE(209), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(209), + [sym_decorated_definition] = STATE(209), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(5327), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(209), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(209), + [sym_cdef_statement] = STATE(209), + [sym_ctypedef_statement] = STATE(209), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(209), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -29048,88 +28527,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), + [sym__dedent] = ACTIONS(143), [sym_string_start] = ACTIONS(107), }, - [72] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(205), - [sym_match_statement] = STATE(205), - [sym_for_statement] = STATE(205), - [sym_while_statement] = STATE(205), - [sym_try_statement] = STATE(205), - [sym_with_statement] = STATE(205), - [sym_function_definition] = STATE(205), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(5378), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [68] = { + [sym__statement] = STATE(209), + [sym__simple_statements] = STATE(209), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(209), + [sym_match_statement] = STATE(209), + [sym_for_statement] = STATE(209), + [sym_while_statement] = STATE(209), + [sym_try_statement] = STATE(209), + [sym_with_statement] = STATE(209), + [sym_function_definition] = STATE(209), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(209), + [sym_decorated_definition] = STATE(209), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(5329), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(209), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(209), + [sym_cdef_statement] = STATE(209), + [sym_ctypedef_statement] = STATE(209), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(209), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -29190,26 +28669,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), + [sym__dedent] = ACTIONS(143), [sym_string_start] = ACTIONS(107), }, - [73] = { + [69] = { [sym__statement] = STATE(208), [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), [sym_if_statement] = STATE(208), [sym_match_statement] = STATE(208), [sym_for_statement] = STATE(208), @@ -29217,61 +28696,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(208), [sym_with_statement] = STATE(208), [sym_function_definition] = STATE(208), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), [sym_class_definition] = STATE(208), [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1346), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1208), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4640), + [sym_include_statement] = STATE(5109), [sym_def_statement] = STATE(208), [sym_cdef_statement] = STATE(208), [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -29332,26 +28811,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(139), + [sym__dedent] = ACTIONS(137), [sym_string_start] = ACTIONS(107), }, - [74] = { + [70] = { [sym__statement] = STATE(208), [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), [sym_if_statement] = STATE(208), [sym_match_statement] = STATE(208), [sym_for_statement] = STATE(208), @@ -29359,61 +28838,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(208), [sym_with_statement] = STATE(208), [sym_function_definition] = STATE(208), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), [sym_class_definition] = STATE(208), [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1351), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1218), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4640), + [sym_include_statement] = STATE(5109), [sym_def_statement] = STATE(208), [sym_cdef_statement] = STATE(208), [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -29474,26 +28953,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(139), + [sym__dedent] = ACTIONS(137), [sym_string_start] = ACTIONS(107), }, - [75] = { + [71] = { [sym__statement] = STATE(208), [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), [sym_if_statement] = STATE(208), [sym_match_statement] = STATE(208), [sym_for_statement] = STATE(208), @@ -29501,61 +28980,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(208), [sym_with_statement] = STATE(208), [sym_function_definition] = STATE(208), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), [sym_class_definition] = STATE(208), [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1153), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1228), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4640), + [sym_include_statement] = STATE(5109), [sym_def_statement] = STATE(208), [sym_cdef_statement] = STATE(208), [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -29616,26 +29095,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(139), + [sym__dedent] = ACTIONS(137), [sym_string_start] = ACTIONS(107), }, - [76] = { + [72] = { [sym__statement] = STATE(208), [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), [sym_if_statement] = STATE(208), [sym_match_statement] = STATE(208), [sym_for_statement] = STATE(208), @@ -29643,61 +29122,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(208), [sym_with_statement] = STATE(208), [sym_function_definition] = STATE(208), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), [sym_class_definition] = STATE(208), [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1155), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1229), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4640), + [sym_include_statement] = STATE(5109), [sym_def_statement] = STATE(208), [sym_cdef_statement] = STATE(208), [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -29758,26 +29237,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(139), + [sym__dedent] = ACTIONS(137), [sym_string_start] = ACTIONS(107), }, - [77] = { + [73] = { [sym__statement] = STATE(208), [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), [sym_if_statement] = STATE(208), [sym_match_statement] = STATE(208), [sym_for_statement] = STATE(208), @@ -29785,61 +29264,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(208), [sym_with_statement] = STATE(208), [sym_function_definition] = STATE(208), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), [sym_class_definition] = STATE(208), [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1159), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1232), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4640), + [sym_include_statement] = STATE(5109), [sym_def_statement] = STATE(208), [sym_cdef_statement] = STATE(208), [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -29900,88 +29379,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(139), + [sym__dedent] = ACTIONS(137), [sym_string_start] = ACTIONS(107), }, - [78] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(205), - [sym_match_statement] = STATE(205), - [sym_for_statement] = STATE(205), - [sym_while_statement] = STATE(205), - [sym_try_statement] = STATE(205), - [sym_with_statement] = STATE(205), - [sym_function_definition] = STATE(205), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(5219), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [74] = { + [sym__statement] = STATE(209), + [sym__simple_statements] = STATE(209), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(209), + [sym_match_statement] = STATE(209), + [sym_for_statement] = STATE(209), + [sym_while_statement] = STATE(209), + [sym_try_statement] = STATE(209), + [sym_with_statement] = STATE(209), + [sym_function_definition] = STATE(209), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(209), + [sym_decorated_definition] = STATE(209), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(5372), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(209), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(209), + [sym_cdef_statement] = STATE(209), + [sym_ctypedef_statement] = STATE(209), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(209), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -30042,26 +29521,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), + [sym__dedent] = ACTIONS(143), [sym_string_start] = ACTIONS(107), }, - [79] = { + [75] = { [sym__statement] = STATE(208), [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), [sym_if_statement] = STATE(208), [sym_match_statement] = STATE(208), [sym_for_statement] = STATE(208), @@ -30069,61 +29548,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(208), [sym_with_statement] = STATE(208), [sym_function_definition] = STATE(208), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), [sym_class_definition] = STATE(208), [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1160), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1234), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4640), + [sym_include_statement] = STATE(5109), [sym_def_statement] = STATE(208), [sym_cdef_statement] = STATE(208), [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -30184,26 +29663,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(139), + [sym__dedent] = ACTIONS(137), [sym_string_start] = ACTIONS(107), }, - [80] = { + [76] = { [sym__statement] = STATE(208), [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), [sym_if_statement] = STATE(208), [sym_match_statement] = STATE(208), [sym_for_statement] = STATE(208), @@ -30211,61 +29690,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(208), [sym_with_statement] = STATE(208), [sym_function_definition] = STATE(208), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), [sym_class_definition] = STATE(208), [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1167), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1238), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4640), + [sym_include_statement] = STATE(5109), [sym_def_statement] = STATE(208), [sym_cdef_statement] = STATE(208), [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -30326,26 +29805,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(139), + [sym__dedent] = ACTIONS(137), [sym_string_start] = ACTIONS(107), }, - [81] = { + [77] = { [sym__statement] = STATE(208), [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), [sym_if_statement] = STATE(208), [sym_match_statement] = STATE(208), [sym_for_statement] = STATE(208), @@ -30353,61 +29832,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(208), [sym_with_statement] = STATE(208), [sym_function_definition] = STATE(208), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), [sym_class_definition] = STATE(208), [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1168), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1239), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4640), + [sym_include_statement] = STATE(5109), [sym_def_statement] = STATE(208), [sym_cdef_statement] = STATE(208), [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -30468,88 +29947,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(139), + [sym__dedent] = ACTIONS(137), [sym_string_start] = ACTIONS(107), }, - [82] = { - [sym__statement] = STATE(204), - [sym__simple_statements] = STATE(204), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(204), - [sym_match_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_with_statement] = STATE(204), - [sym_function_definition] = STATE(204), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(204), - [sym_decorated_definition] = STATE(204), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(919), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(204), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(204), - [sym_cdef_statement] = STATE(204), - [sym_ctypedef_statement] = STATE(204), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(204), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [78] = { + [sym__statement] = STATE(199), + [sym__simple_statements] = STATE(199), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(199), + [sym_match_statement] = STATE(199), + [sym_for_statement] = STATE(199), + [sym_while_statement] = STATE(199), + [sym_try_statement] = STATE(199), + [sym_with_statement] = STATE(199), + [sym_function_definition] = STATE(199), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(199), + [sym_decorated_definition] = STATE(199), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(925), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(199), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(199), + [sym_cdef_statement] = STATE(199), + [sym_ctypedef_statement] = STATE(199), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(199), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -30613,85 +30092,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, - [83] = { - [sym__statement] = STATE(204), - [sym__simple_statements] = STATE(204), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(204), - [sym_match_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_with_statement] = STATE(204), - [sym_function_definition] = STATE(204), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(204), - [sym_decorated_definition] = STATE(204), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1096), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(204), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(204), - [sym_cdef_statement] = STATE(204), - [sym_ctypedef_statement] = STATE(204), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(204), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [79] = { + [sym__statement] = STATE(199), + [sym__simple_statements] = STATE(199), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(199), + [sym_match_statement] = STATE(199), + [sym_for_statement] = STATE(199), + [sym_while_statement] = STATE(199), + [sym_try_statement] = STATE(199), + [sym_with_statement] = STATE(199), + [sym_function_definition] = STATE(199), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(199), + [sym_decorated_definition] = STATE(199), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1120), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(199), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(199), + [sym_cdef_statement] = STATE(199), + [sym_ctypedef_statement] = STATE(199), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(199), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -30755,85 +30234,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, - [84] = { - [sym__statement] = STATE(204), - [sym__simple_statements] = STATE(204), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(204), - [sym_match_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_with_statement] = STATE(204), - [sym_function_definition] = STATE(204), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(204), - [sym_decorated_definition] = STATE(204), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1097), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(204), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(204), - [sym_cdef_statement] = STATE(204), - [sym_ctypedef_statement] = STATE(204), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(204), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [80] = { + [sym__statement] = STATE(199), + [sym__simple_statements] = STATE(199), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(199), + [sym_match_statement] = STATE(199), + [sym_for_statement] = STATE(199), + [sym_while_statement] = STATE(199), + [sym_try_statement] = STATE(199), + [sym_with_statement] = STATE(199), + [sym_function_definition] = STATE(199), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(199), + [sym_decorated_definition] = STATE(199), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1121), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(199), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(199), + [sym_cdef_statement] = STATE(199), + [sym_ctypedef_statement] = STATE(199), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(199), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -30897,85 +30376,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, - [85] = { - [sym__statement] = STATE(204), - [sym__simple_statements] = STATE(204), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(204), - [sym_match_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_with_statement] = STATE(204), - [sym_function_definition] = STATE(204), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(204), - [sym_decorated_definition] = STATE(204), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1685), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(204), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(204), - [sym_cdef_statement] = STATE(204), - [sym_ctypedef_statement] = STATE(204), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(204), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [81] = { + [sym__statement] = STATE(199), + [sym__simple_statements] = STATE(199), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(199), + [sym_match_statement] = STATE(199), + [sym_for_statement] = STATE(199), + [sym_while_statement] = STATE(199), + [sym_try_statement] = STATE(199), + [sym_with_statement] = STATE(199), + [sym_function_definition] = STATE(199), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(199), + [sym_decorated_definition] = STATE(199), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1484), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(199), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(199), + [sym_cdef_statement] = STATE(199), + [sym_ctypedef_statement] = STATE(199), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(199), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -31039,85 +30518,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, - [86] = { - [sym__statement] = STATE(204), - [sym__simple_statements] = STATE(204), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(204), - [sym_match_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_with_statement] = STATE(204), - [sym_function_definition] = STATE(204), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(204), - [sym_decorated_definition] = STATE(204), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(639), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(204), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(204), - [sym_cdef_statement] = STATE(204), - [sym_ctypedef_statement] = STATE(204), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(204), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [82] = { + [sym__statement] = STATE(199), + [sym__simple_statements] = STATE(199), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(199), + [sym_match_statement] = STATE(199), + [sym_for_statement] = STATE(199), + [sym_while_statement] = STATE(199), + [sym_try_statement] = STATE(199), + [sym_with_statement] = STATE(199), + [sym_function_definition] = STATE(199), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(199), + [sym_decorated_definition] = STATE(199), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(705), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(199), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(199), + [sym_cdef_statement] = STATE(199), + [sym_ctypedef_statement] = STATE(199), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(199), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -31181,85 +30660,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, - [87] = { - [sym__statement] = STATE(204), - [sym__simple_statements] = STATE(204), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(204), - [sym_match_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_with_statement] = STATE(204), - [sym_function_definition] = STATE(204), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(204), - [sym_decorated_definition] = STATE(204), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1690), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(204), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(204), - [sym_cdef_statement] = STATE(204), - [sym_ctypedef_statement] = STATE(204), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(204), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [83] = { + [sym__statement] = STATE(199), + [sym__simple_statements] = STATE(199), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(199), + [sym_match_statement] = STATE(199), + [sym_for_statement] = STATE(199), + [sym_while_statement] = STATE(199), + [sym_try_statement] = STATE(199), + [sym_with_statement] = STATE(199), + [sym_function_definition] = STATE(199), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(199), + [sym_decorated_definition] = STATE(199), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1488), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(199), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(199), + [sym_cdef_statement] = STATE(199), + [sym_ctypedef_statement] = STATE(199), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(199), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -31323,85 +30802,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, - [88] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(205), - [sym_match_statement] = STATE(205), - [sym_for_statement] = STATE(205), - [sym_while_statement] = STATE(205), - [sym_try_statement] = STATE(205), - [sym_with_statement] = STATE(205), - [sym_function_definition] = STATE(205), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(2950), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [84] = { + [sym__statement] = STATE(209), + [sym__simple_statements] = STATE(209), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(209), + [sym_match_statement] = STATE(209), + [sym_for_statement] = STATE(209), + [sym_while_statement] = STATE(209), + [sym_try_statement] = STATE(209), + [sym_with_statement] = STATE(209), + [sym_function_definition] = STATE(209), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(209), + [sym_decorated_definition] = STATE(209), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(3062), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(209), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(209), + [sym_cdef_statement] = STATE(209), + [sym_ctypedef_statement] = STATE(209), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(209), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -31462,88 +30941,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), + [sym__dedent] = ACTIONS(143), [sym_string_start] = ACTIONS(107), }, - [89] = { - [sym__statement] = STATE(204), - [sym__simple_statements] = STATE(204), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(204), - [sym_match_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_with_statement] = STATE(204), - [sym_function_definition] = STATE(204), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(204), - [sym_decorated_definition] = STATE(204), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1058), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(204), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(204), - [sym_cdef_statement] = STATE(204), - [sym_ctypedef_statement] = STATE(204), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(204), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [85] = { + [sym__statement] = STATE(199), + [sym__simple_statements] = STATE(199), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(199), + [sym_match_statement] = STATE(199), + [sym_for_statement] = STATE(199), + [sym_while_statement] = STATE(199), + [sym_try_statement] = STATE(199), + [sym_with_statement] = STATE(199), + [sym_function_definition] = STATE(199), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(199), + [sym_decorated_definition] = STATE(199), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1133), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(199), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(199), + [sym_cdef_statement] = STATE(199), + [sym_ctypedef_statement] = STATE(199), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(199), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -31607,85 +31086,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, - [90] = { - [sym__statement] = STATE(204), - [sym__simple_statements] = STATE(204), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(204), - [sym_match_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_with_statement] = STATE(204), - [sym_function_definition] = STATE(204), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(204), - [sym_decorated_definition] = STATE(204), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1700), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(204), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(204), - [sym_cdef_statement] = STATE(204), - [sym_ctypedef_statement] = STATE(204), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(204), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [86] = { + [sym__statement] = STATE(199), + [sym__simple_statements] = STATE(199), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(199), + [sym_match_statement] = STATE(199), + [sym_for_statement] = STATE(199), + [sym_while_statement] = STATE(199), + [sym_try_statement] = STATE(199), + [sym_with_statement] = STATE(199), + [sym_function_definition] = STATE(199), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(199), + [sym_decorated_definition] = STATE(199), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1497), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(199), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(199), + [sym_cdef_statement] = STATE(199), + [sym_ctypedef_statement] = STATE(199), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(199), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -31749,85 +31228,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, - [91] = { - [sym__statement] = STATE(204), - [sym__simple_statements] = STATE(204), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(204), - [sym_match_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_with_statement] = STATE(204), - [sym_function_definition] = STATE(204), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(204), - [sym_decorated_definition] = STATE(204), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1708), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(204), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(204), - [sym_cdef_statement] = STATE(204), - [sym_ctypedef_statement] = STATE(204), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(204), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [87] = { + [sym__statement] = STATE(199), + [sym__simple_statements] = STATE(199), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(199), + [sym_match_statement] = STATE(199), + [sym_for_statement] = STATE(199), + [sym_while_statement] = STATE(199), + [sym_try_statement] = STATE(199), + [sym_with_statement] = STATE(199), + [sym_function_definition] = STATE(199), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(199), + [sym_decorated_definition] = STATE(199), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1504), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(199), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(199), + [sym_cdef_statement] = STATE(199), + [sym_ctypedef_statement] = STATE(199), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(199), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -31891,85 +31370,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, - [92] = { - [sym__statement] = STATE(204), - [sym__simple_statements] = STATE(204), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(204), - [sym_match_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_with_statement] = STATE(204), - [sym_function_definition] = STATE(204), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(204), - [sym_decorated_definition] = STATE(204), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(655), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(204), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(204), - [sym_cdef_statement] = STATE(204), - [sym_ctypedef_statement] = STATE(204), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(204), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [88] = { + [sym__statement] = STATE(199), + [sym__simple_statements] = STATE(199), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(199), + [sym_match_statement] = STATE(199), + [sym_for_statement] = STATE(199), + [sym_while_statement] = STATE(199), + [sym_try_statement] = STATE(199), + [sym_with_statement] = STATE(199), + [sym_function_definition] = STATE(199), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(199), + [sym_decorated_definition] = STATE(199), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(512), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(199), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(199), + [sym_cdef_statement] = STATE(199), + [sym_ctypedef_statement] = STATE(199), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(199), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -32033,85 +31512,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, - [93] = { - [sym__statement] = STATE(204), - [sym__simple_statements] = STATE(204), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(204), - [sym_match_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_with_statement] = STATE(204), - [sym_function_definition] = STATE(204), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(204), - [sym_decorated_definition] = STATE(204), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(657), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(204), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(204), - [sym_cdef_statement] = STATE(204), - [sym_ctypedef_statement] = STATE(204), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(204), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [89] = { + [sym__statement] = STATE(199), + [sym__simple_statements] = STATE(199), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(199), + [sym_match_statement] = STATE(199), + [sym_for_statement] = STATE(199), + [sym_while_statement] = STATE(199), + [sym_try_statement] = STATE(199), + [sym_with_statement] = STATE(199), + [sym_function_definition] = STATE(199), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(199), + [sym_decorated_definition] = STATE(199), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(514), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(199), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(199), + [sym_cdef_statement] = STATE(199), + [sym_ctypedef_statement] = STATE(199), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(199), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -32175,85 +31654,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, - [94] = { - [sym__statement] = STATE(204), - [sym__simple_statements] = STATE(204), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(204), - [sym_match_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_with_statement] = STATE(204), - [sym_function_definition] = STATE(204), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(204), - [sym_decorated_definition] = STATE(204), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(658), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(204), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(204), - [sym_cdef_statement] = STATE(204), - [sym_ctypedef_statement] = STATE(204), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(204), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [90] = { + [sym__statement] = STATE(199), + [sym__simple_statements] = STATE(199), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(199), + [sym_match_statement] = STATE(199), + [sym_for_statement] = STATE(199), + [sym_while_statement] = STATE(199), + [sym_try_statement] = STATE(199), + [sym_with_statement] = STATE(199), + [sym_function_definition] = STATE(199), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(199), + [sym_decorated_definition] = STATE(199), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(515), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(199), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(199), + [sym_cdef_statement] = STATE(199), + [sym_ctypedef_statement] = STATE(199), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(199), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -32317,85 +31796,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, - [95] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(205), - [sym_match_statement] = STATE(205), - [sym_for_statement] = STATE(205), - [sym_while_statement] = STATE(205), - [sym_try_statement] = STATE(205), - [sym_with_statement] = STATE(205), - [sym_function_definition] = STATE(205), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(2971), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [91] = { + [sym__statement] = STATE(209), + [sym__simple_statements] = STATE(209), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(209), + [sym_match_statement] = STATE(209), + [sym_for_statement] = STATE(209), + [sym_while_statement] = STATE(209), + [sym_try_statement] = STATE(209), + [sym_with_statement] = STATE(209), + [sym_function_definition] = STATE(209), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(209), + [sym_decorated_definition] = STATE(209), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(2948), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(209), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(209), + [sym_cdef_statement] = STATE(209), + [sym_ctypedef_statement] = STATE(209), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(209), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -32456,88 +31935,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), + [sym__dedent] = ACTIONS(143), [sym_string_start] = ACTIONS(107), }, - [96] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(205), - [sym_match_statement] = STATE(205), - [sym_for_statement] = STATE(205), - [sym_while_statement] = STATE(205), - [sym_try_statement] = STATE(205), - [sym_with_statement] = STATE(205), - [sym_function_definition] = STATE(205), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(2871), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [92] = { + [sym__statement] = STATE(209), + [sym__simple_statements] = STATE(209), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(209), + [sym_match_statement] = STATE(209), + [sym_for_statement] = STATE(209), + [sym_while_statement] = STATE(209), + [sym_try_statement] = STATE(209), + [sym_with_statement] = STATE(209), + [sym_function_definition] = STATE(209), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(209), + [sym_decorated_definition] = STATE(209), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(2879), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(209), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(209), + [sym_cdef_statement] = STATE(209), + [sym_ctypedef_statement] = STATE(209), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(209), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -32598,88 +32077,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), + [sym__dedent] = ACTIONS(143), [sym_string_start] = ACTIONS(107), }, - [97] = { - [sym__statement] = STATE(204), - [sym__simple_statements] = STATE(204), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(204), - [sym_match_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_with_statement] = STATE(204), - [sym_function_definition] = STATE(204), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(204), - [sym_decorated_definition] = STATE(204), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(671), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(204), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(204), - [sym_cdef_statement] = STATE(204), - [sym_ctypedef_statement] = STATE(204), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(204), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [93] = { + [sym__statement] = STATE(199), + [sym__simple_statements] = STATE(199), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(199), + [sym_match_statement] = STATE(199), + [sym_for_statement] = STATE(199), + [sym_while_statement] = STATE(199), + [sym_try_statement] = STATE(199), + [sym_with_statement] = STATE(199), + [sym_function_definition] = STATE(199), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(199), + [sym_decorated_definition] = STATE(199), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(524), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(199), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(199), + [sym_cdef_statement] = STATE(199), + [sym_ctypedef_statement] = STATE(199), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(199), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -32743,85 +32222,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, - [98] = { - [sym__statement] = STATE(204), - [sym__simple_statements] = STATE(204), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(204), - [sym_match_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_with_statement] = STATE(204), - [sym_function_definition] = STATE(204), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(204), - [sym_decorated_definition] = STATE(204), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1728), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(204), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(204), - [sym_cdef_statement] = STATE(204), - [sym_ctypedef_statement] = STATE(204), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(204), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [94] = { + [sym__statement] = STATE(199), + [sym__simple_statements] = STATE(199), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(199), + [sym_match_statement] = STATE(199), + [sym_for_statement] = STATE(199), + [sym_while_statement] = STATE(199), + [sym_try_statement] = STATE(199), + [sym_with_statement] = STATE(199), + [sym_function_definition] = STATE(199), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(199), + [sym_decorated_definition] = STATE(199), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1523), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(199), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(199), + [sym_cdef_statement] = STATE(199), + [sym_ctypedef_statement] = STATE(199), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(199), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -32885,85 +32364,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, - [99] = { - [sym__statement] = STATE(204), - [sym__simple_statements] = STATE(204), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(204), - [sym_match_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_with_statement] = STATE(204), - [sym_function_definition] = STATE(204), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(204), - [sym_decorated_definition] = STATE(204), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1104), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(204), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(204), - [sym_cdef_statement] = STATE(204), - [sym_ctypedef_statement] = STATE(204), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(204), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [95] = { + [sym__statement] = STATE(199), + [sym__simple_statements] = STATE(199), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(199), + [sym_match_statement] = STATE(199), + [sym_for_statement] = STATE(199), + [sym_while_statement] = STATE(199), + [sym_try_statement] = STATE(199), + [sym_with_statement] = STATE(199), + [sym_function_definition] = STATE(199), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(199), + [sym_decorated_definition] = STATE(199), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1115), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(199), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(199), + [sym_cdef_statement] = STATE(199), + [sym_ctypedef_statement] = STATE(199), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(199), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -33027,85 +32506,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, - [100] = { - [sym__statement] = STATE(209), - [sym__simple_statements] = STATE(209), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(209), - [sym_match_statement] = STATE(209), - [sym_for_statement] = STATE(209), - [sym_while_statement] = STATE(209), - [sym_try_statement] = STATE(209), - [sym_with_statement] = STATE(209), - [sym_function_definition] = STATE(209), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(209), - [sym_decorated_definition] = STATE(209), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1035), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(209), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(209), - [sym_cdef_statement] = STATE(209), - [sym_ctypedef_statement] = STATE(209), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(209), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [96] = { + [sym__statement] = STATE(198), + [sym__simple_statements] = STATE(198), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(198), + [sym_match_statement] = STATE(198), + [sym_for_statement] = STATE(198), + [sym_while_statement] = STATE(198), + [sym_try_statement] = STATE(198), + [sym_with_statement] = STATE(198), + [sym_function_definition] = STATE(198), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(198), + [sym_decorated_definition] = STATE(198), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1013), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(198), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(198), + [sym_cdef_statement] = STATE(198), + [sym_ctypedef_statement] = STATE(198), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(198), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -33166,88 +32645,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(147), + [sym__dedent] = ACTIONS(145), [sym_string_start] = ACTIONS(107), }, - [101] = { - [sym__statement] = STATE(204), - [sym__simple_statements] = STATE(204), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(204), - [sym_match_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_with_statement] = STATE(204), - [sym_function_definition] = STATE(204), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(204), - [sym_decorated_definition] = STATE(204), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1775), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(204), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(204), - [sym_cdef_statement] = STATE(204), - [sym_ctypedef_statement] = STATE(204), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(204), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [97] = { + [sym__statement] = STATE(199), + [sym__simple_statements] = STATE(199), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(199), + [sym_match_statement] = STATE(199), + [sym_for_statement] = STATE(199), + [sym_while_statement] = STATE(199), + [sym_try_statement] = STATE(199), + [sym_with_statement] = STATE(199), + [sym_function_definition] = STATE(199), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(199), + [sym_decorated_definition] = STATE(199), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1529), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(199), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(199), + [sym_cdef_statement] = STATE(199), + [sym_ctypedef_statement] = STATE(199), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(199), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -33311,85 +32790,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, - [102] = { - [sym__statement] = STATE(204), - [sym__simple_statements] = STATE(204), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(204), - [sym_match_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_with_statement] = STATE(204), - [sym_function_definition] = STATE(204), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(204), - [sym_decorated_definition] = STATE(204), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1781), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(204), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(204), - [sym_cdef_statement] = STATE(204), - [sym_ctypedef_statement] = STATE(204), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(204), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [98] = { + [sym__statement] = STATE(199), + [sym__simple_statements] = STATE(199), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(199), + [sym_match_statement] = STATE(199), + [sym_for_statement] = STATE(199), + [sym_while_statement] = STATE(199), + [sym_try_statement] = STATE(199), + [sym_with_statement] = STATE(199), + [sym_function_definition] = STATE(199), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(199), + [sym_decorated_definition] = STATE(199), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1532), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(199), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(199), + [sym_cdef_statement] = STATE(199), + [sym_ctypedef_statement] = STATE(199), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(199), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -33453,85 +32932,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, - [103] = { - [sym__statement] = STATE(204), - [sym__simple_statements] = STATE(204), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(204), - [sym_match_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_with_statement] = STATE(204), - [sym_function_definition] = STATE(204), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(204), - [sym_decorated_definition] = STATE(204), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(694), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(204), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(204), - [sym_cdef_statement] = STATE(204), - [sym_ctypedef_statement] = STATE(204), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(204), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [99] = { + [sym__statement] = STATE(199), + [sym__simple_statements] = STATE(199), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(199), + [sym_match_statement] = STATE(199), + [sym_for_statement] = STATE(199), + [sym_while_statement] = STATE(199), + [sym_try_statement] = STATE(199), + [sym_with_statement] = STATE(199), + [sym_function_definition] = STATE(199), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(199), + [sym_decorated_definition] = STATE(199), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(529), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(199), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(199), + [sym_cdef_statement] = STATE(199), + [sym_ctypedef_statement] = STATE(199), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(199), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -33595,85 +33074,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, - [104] = { - [sym__statement] = STATE(204), - [sym__simple_statements] = STATE(204), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(204), - [sym_match_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_with_statement] = STATE(204), - [sym_function_definition] = STATE(204), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(204), - [sym_decorated_definition] = STATE(204), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(677), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(204), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(204), - [sym_cdef_statement] = STATE(204), - [sym_ctypedef_statement] = STATE(204), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(204), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [100] = { + [sym__statement] = STATE(199), + [sym__simple_statements] = STATE(199), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(199), + [sym_match_statement] = STATE(199), + [sym_for_statement] = STATE(199), + [sym_while_statement] = STATE(199), + [sym_try_statement] = STATE(199), + [sym_with_statement] = STATE(199), + [sym_function_definition] = STATE(199), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(199), + [sym_decorated_definition] = STATE(199), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(531), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(199), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(199), + [sym_cdef_statement] = STATE(199), + [sym_ctypedef_statement] = STATE(199), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(199), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -33737,85 +33216,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, - [105] = { - [sym__statement] = STATE(204), - [sym__simple_statements] = STATE(204), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(204), - [sym_match_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_with_statement] = STATE(204), - [sym_function_definition] = STATE(204), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(204), - [sym_decorated_definition] = STATE(204), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(681), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(204), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(204), - [sym_cdef_statement] = STATE(204), - [sym_ctypedef_statement] = STATE(204), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(204), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [101] = { + [sym__statement] = STATE(199), + [sym__simple_statements] = STATE(199), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(199), + [sym_match_statement] = STATE(199), + [sym_for_statement] = STATE(199), + [sym_while_statement] = STATE(199), + [sym_try_statement] = STATE(199), + [sym_with_statement] = STATE(199), + [sym_function_definition] = STATE(199), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(199), + [sym_decorated_definition] = STATE(199), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(533), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(199), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(199), + [sym_cdef_statement] = STATE(199), + [sym_ctypedef_statement] = STATE(199), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(199), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -33879,85 +33358,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, - [106] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(205), - [sym_match_statement] = STATE(205), - [sym_for_statement] = STATE(205), - [sym_while_statement] = STATE(205), - [sym_try_statement] = STATE(205), - [sym_with_statement] = STATE(205), - [sym_function_definition] = STATE(205), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(3032), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [102] = { + [sym__statement] = STATE(209), + [sym__simple_statements] = STATE(209), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(209), + [sym_match_statement] = STATE(209), + [sym_for_statement] = STATE(209), + [sym_while_statement] = STATE(209), + [sym_try_statement] = STATE(209), + [sym_with_statement] = STATE(209), + [sym_function_definition] = STATE(209), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(209), + [sym_decorated_definition] = STATE(209), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(2978), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(209), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(209), + [sym_cdef_statement] = STATE(209), + [sym_ctypedef_statement] = STATE(209), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(209), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -34018,88 +33497,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), + [sym__dedent] = ACTIONS(143), [sym_string_start] = ACTIONS(107), }, - [107] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(205), - [sym_match_statement] = STATE(205), - [sym_for_statement] = STATE(205), - [sym_while_statement] = STATE(205), - [sym_try_statement] = STATE(205), - [sym_with_statement] = STATE(205), - [sym_function_definition] = STATE(205), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(2910), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [103] = { + [sym__statement] = STATE(209), + [sym__simple_statements] = STATE(209), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(209), + [sym_match_statement] = STATE(209), + [sym_for_statement] = STATE(209), + [sym_while_statement] = STATE(209), + [sym_try_statement] = STATE(209), + [sym_with_statement] = STATE(209), + [sym_function_definition] = STATE(209), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(209), + [sym_decorated_definition] = STATE(209), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(2894), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(209), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(209), + [sym_cdef_statement] = STATE(209), + [sym_ctypedef_statement] = STATE(209), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(209), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -34160,88 +33639,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), + [sym__dedent] = ACTIONS(143), [sym_string_start] = ACTIONS(107), }, - [108] = { - [sym__statement] = STATE(206), - [sym__simple_statements] = STATE(206), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(206), - [sym_match_statement] = STATE(206), - [sym_for_statement] = STATE(206), - [sym_while_statement] = STATE(206), - [sym_try_statement] = STATE(206), - [sym_with_statement] = STATE(206), - [sym_function_definition] = STATE(206), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(206), - [sym_decorated_definition] = STATE(206), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(3896), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(206), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(206), - [sym_cdef_statement] = STATE(206), - [sym_ctypedef_statement] = STATE(206), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(206), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [104] = { + [sym__statement] = STATE(199), + [sym__simple_statements] = STATE(199), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(199), + [sym_match_statement] = STATE(199), + [sym_for_statement] = STATE(199), + [sym_while_statement] = STATE(199), + [sym_try_statement] = STATE(199), + [sym_with_statement] = STATE(199), + [sym_function_definition] = STATE(199), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(199), + [sym_decorated_definition] = STATE(199), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(546), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(199), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(199), + [sym_cdef_statement] = STATE(199), + [sym_ctypedef_statement] = STATE(199), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(199), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -34302,88 +33781,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(137), + [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, - [109] = { - [sym__statement] = STATE(204), - [sym__simple_statements] = STATE(204), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(204), - [sym_match_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_with_statement] = STATE(204), - [sym_function_definition] = STATE(204), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(204), - [sym_decorated_definition] = STATE(204), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(582), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(204), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(204), - [sym_cdef_statement] = STATE(204), - [sym_ctypedef_statement] = STATE(204), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(204), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [105] = { + [sym__statement] = STATE(199), + [sym__simple_statements] = STATE(199), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(199), + [sym_match_statement] = STATE(199), + [sym_for_statement] = STATE(199), + [sym_while_statement] = STATE(199), + [sym_try_statement] = STATE(199), + [sym_with_statement] = STATE(199), + [sym_function_definition] = STATE(199), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(199), + [sym_decorated_definition] = STATE(199), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(548), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(199), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(199), + [sym_cdef_statement] = STATE(199), + [sym_ctypedef_statement] = STATE(199), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(199), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -34447,85 +33926,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, - [110] = { - [sym__statement] = STATE(204), - [sym__simple_statements] = STATE(204), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(204), - [sym_match_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_with_statement] = STATE(204), - [sym_function_definition] = STATE(204), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(204), - [sym_decorated_definition] = STATE(204), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(584), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(204), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(204), - [sym_cdef_statement] = STATE(204), - [sym_ctypedef_statement] = STATE(204), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(204), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [106] = { + [sym__statement] = STATE(199), + [sym__simple_statements] = STATE(199), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(199), + [sym_match_statement] = STATE(199), + [sym_for_statement] = STATE(199), + [sym_while_statement] = STATE(199), + [sym_try_statement] = STATE(199), + [sym_with_statement] = STATE(199), + [sym_function_definition] = STATE(199), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(199), + [sym_decorated_definition] = STATE(199), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(549), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(199), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(199), + [sym_cdef_statement] = STATE(199), + [sym_ctypedef_statement] = STATE(199), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(199), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -34589,85 +34068,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, - [111] = { - [sym__statement] = STATE(204), - [sym__simple_statements] = STATE(204), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(204), - [sym_match_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_with_statement] = STATE(204), - [sym_function_definition] = STATE(204), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(204), - [sym_decorated_definition] = STATE(204), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1067), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(204), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(204), - [sym_cdef_statement] = STATE(204), - [sym_ctypedef_statement] = STATE(204), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(204), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [107] = { + [sym__statement] = STATE(208), + [sym__simple_statements] = STATE(208), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(208), + [sym_match_statement] = STATE(208), + [sym_for_statement] = STATE(208), + [sym_while_statement] = STATE(208), + [sym_try_statement] = STATE(208), + [sym_with_statement] = STATE(208), + [sym_function_definition] = STATE(208), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(208), + [sym_decorated_definition] = STATE(208), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(938), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(208), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(208), + [sym_cdef_statement] = STATE(208), + [sym_ctypedef_statement] = STATE(208), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(208), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -34728,88 +34207,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), + [sym__dedent] = ACTIONS(137), [sym_string_start] = ACTIONS(107), }, - [112] = { - [sym__statement] = STATE(204), - [sym__simple_statements] = STATE(204), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(204), - [sym_match_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_with_statement] = STATE(204), - [sym_function_definition] = STATE(204), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(204), - [sym_decorated_definition] = STATE(204), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1380), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(204), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(204), - [sym_cdef_statement] = STATE(204), - [sym_ctypedef_statement] = STATE(204), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(204), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [108] = { + [sym__statement] = STATE(199), + [sym__simple_statements] = STATE(199), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(199), + [sym_match_statement] = STATE(199), + [sym_for_statement] = STATE(199), + [sym_while_statement] = STATE(199), + [sym_try_statement] = STATE(199), + [sym_with_statement] = STATE(199), + [sym_function_definition] = STATE(199), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(199), + [sym_decorated_definition] = STATE(199), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1074), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(199), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(199), + [sym_cdef_statement] = STATE(199), + [sym_ctypedef_statement] = STATE(199), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(199), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -34873,85 +34352,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, - [113] = { - [sym__statement] = STATE(209), - [sym__simple_statements] = STATE(209), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(209), - [sym_match_statement] = STATE(209), - [sym_for_statement] = STATE(209), - [sym_while_statement] = STATE(209), - [sym_try_statement] = STATE(209), - [sym_with_statement] = STATE(209), - [sym_function_definition] = STATE(209), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(209), - [sym_decorated_definition] = STATE(209), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1015), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(209), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(209), - [sym_cdef_statement] = STATE(209), - [sym_ctypedef_statement] = STATE(209), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(209), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [109] = { + [sym__statement] = STATE(199), + [sym__simple_statements] = STATE(199), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(199), + [sym_match_statement] = STATE(199), + [sym_for_statement] = STATE(199), + [sym_while_statement] = STATE(199), + [sym_try_statement] = STATE(199), + [sym_with_statement] = STATE(199), + [sym_function_definition] = STATE(199), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(199), + [sym_decorated_definition] = STATE(199), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1559), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(199), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(199), + [sym_cdef_statement] = STATE(199), + [sym_ctypedef_statement] = STATE(199), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(199), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -35012,88 +34491,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(147), + [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, - [114] = { - [sym__statement] = STATE(210), - [sym__simple_statements] = STATE(210), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(210), - [sym_match_statement] = STATE(210), - [sym_for_statement] = STATE(210), - [sym_while_statement] = STATE(210), - [sym_try_statement] = STATE(210), - [sym_with_statement] = STATE(210), - [sym_function_definition] = STATE(210), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(210), - [sym_decorated_definition] = STATE(210), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(972), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(210), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(210), - [sym_cdef_statement] = STATE(210), - [sym_ctypedef_statement] = STATE(210), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(210), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [110] = { + [sym__statement] = STATE(204), + [sym__simple_statements] = STATE(204), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(204), + [sym_match_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_with_statement] = STATE(204), + [sym_function_definition] = STATE(204), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(204), + [sym_decorated_definition] = STATE(204), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(3906), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(204), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(204), + [sym_cdef_statement] = STATE(204), + [sym_ctypedef_statement] = STATE(204), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(204), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -35154,88 +34633,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(149), + [sym__dedent] = ACTIONS(147), [sym_string_start] = ACTIONS(107), }, - [115] = { - [sym__statement] = STATE(204), - [sym__simple_statements] = STATE(204), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(204), - [sym_match_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_with_statement] = STATE(204), - [sym_function_definition] = STATE(204), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(204), - [sym_decorated_definition] = STATE(204), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1383), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(204), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(204), - [sym_cdef_statement] = STATE(204), - [sym_ctypedef_statement] = STATE(204), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(204), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [111] = { + [sym__statement] = STATE(205), + [sym__simple_statements] = STATE(205), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(205), + [sym_match_statement] = STATE(205), + [sym_for_statement] = STATE(205), + [sym_while_statement] = STATE(205), + [sym_try_statement] = STATE(205), + [sym_with_statement] = STATE(205), + [sym_function_definition] = STATE(205), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(205), + [sym_decorated_definition] = STATE(205), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1058), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(205), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(205), + [sym_cdef_statement] = STATE(205), + [sym_ctypedef_statement] = STATE(205), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(205), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -35296,88 +34775,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), + [sym__dedent] = ACTIONS(149), [sym_string_start] = ACTIONS(107), }, - [116] = { - [sym__statement] = STATE(204), - [sym__simple_statements] = STATE(204), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(204), - [sym_match_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_with_statement] = STATE(204), - [sym_function_definition] = STATE(204), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(204), - [sym_decorated_definition] = STATE(204), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(604), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(204), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(204), - [sym_cdef_statement] = STATE(204), - [sym_ctypedef_statement] = STATE(204), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(204), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [112] = { + [sym__statement] = STATE(199), + [sym__simple_statements] = STATE(199), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(199), + [sym_match_statement] = STATE(199), + [sym_for_statement] = STATE(199), + [sym_while_statement] = STATE(199), + [sym_try_statement] = STATE(199), + [sym_with_statement] = STATE(199), + [sym_function_definition] = STATE(199), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(199), + [sym_decorated_definition] = STATE(199), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1609), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(199), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(199), + [sym_cdef_statement] = STATE(199), + [sym_ctypedef_statement] = STATE(199), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(199), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -35441,85 +34920,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, - [117] = { - [sym__statement] = STATE(204), - [sym__simple_statements] = STATE(204), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(204), - [sym_match_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_with_statement] = STATE(204), - [sym_function_definition] = STATE(204), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(204), - [sym_decorated_definition] = STATE(204), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(651), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(204), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(204), - [sym_cdef_statement] = STATE(204), - [sym_ctypedef_statement] = STATE(204), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(204), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [113] = { + [sym__statement] = STATE(199), + [sym__simple_statements] = STATE(199), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(199), + [sym_match_statement] = STATE(199), + [sym_for_statement] = STATE(199), + [sym_while_statement] = STATE(199), + [sym_try_statement] = STATE(199), + [sym_with_statement] = STATE(199), + [sym_function_definition] = STATE(199), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(199), + [sym_decorated_definition] = STATE(199), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(552), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(199), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(199), + [sym_cdef_statement] = STATE(199), + [sym_ctypedef_statement] = STATE(199), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(199), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -35583,85 +35062,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, - [118] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(205), - [sym_match_statement] = STATE(205), - [sym_for_statement] = STATE(205), - [sym_while_statement] = STATE(205), - [sym_try_statement] = STATE(205), - [sym_with_statement] = STATE(205), - [sym_function_definition] = STATE(205), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(2923), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [114] = { + [sym__statement] = STATE(199), + [sym__simple_statements] = STATE(199), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(199), + [sym_match_statement] = STATE(199), + [sym_for_statement] = STATE(199), + [sym_while_statement] = STATE(199), + [sym_try_statement] = STATE(199), + [sym_with_statement] = STATE(199), + [sym_function_definition] = STATE(199), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(199), + [sym_decorated_definition] = STATE(199), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(556), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(199), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(199), + [sym_cdef_statement] = STATE(199), + [sym_ctypedef_statement] = STATE(199), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(199), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -35722,88 +35201,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), + [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, - [119] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(205), - [sym_match_statement] = STATE(205), - [sym_for_statement] = STATE(205), - [sym_while_statement] = STATE(205), - [sym_try_statement] = STATE(205), - [sym_with_statement] = STATE(205), - [sym_function_definition] = STATE(205), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(2888), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [115] = { + [sym__statement] = STATE(209), + [sym__simple_statements] = STATE(209), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(209), + [sym_match_statement] = STATE(209), + [sym_for_statement] = STATE(209), + [sym_while_statement] = STATE(209), + [sym_try_statement] = STATE(209), + [sym_with_statement] = STATE(209), + [sym_function_definition] = STATE(209), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(209), + [sym_decorated_definition] = STATE(209), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(2995), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(209), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(209), + [sym_cdef_statement] = STATE(209), + [sym_ctypedef_statement] = STATE(209), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(209), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -35864,88 +35343,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), + [sym__dedent] = ACTIONS(143), [sym_string_start] = ACTIONS(107), }, - [120] = { - [sym__statement] = STATE(204), - [sym__simple_statements] = STATE(204), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(204), - [sym_match_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_with_statement] = STATE(204), - [sym_function_definition] = STATE(204), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(204), - [sym_decorated_definition] = STATE(204), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(695), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(204), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(204), - [sym_cdef_statement] = STATE(204), - [sym_ctypedef_statement] = STATE(204), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(204), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [116] = { + [sym__statement] = STATE(209), + [sym__simple_statements] = STATE(209), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(209), + [sym_match_statement] = STATE(209), + [sym_for_statement] = STATE(209), + [sym_while_statement] = STATE(209), + [sym_try_statement] = STATE(209), + [sym_with_statement] = STATE(209), + [sym_function_definition] = STATE(209), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(209), + [sym_decorated_definition] = STATE(209), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(2901), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(209), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(209), + [sym_cdef_statement] = STATE(209), + [sym_ctypedef_statement] = STATE(209), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(209), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -36006,88 +35485,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), + [sym__dedent] = ACTIONS(143), [sym_string_start] = ACTIONS(107), }, - [121] = { - [sym__statement] = STATE(204), - [sym__simple_statements] = STATE(204), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(204), - [sym_match_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_with_statement] = STATE(204), - [sym_function_definition] = STATE(204), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(204), - [sym_decorated_definition] = STATE(204), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(699), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(204), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(204), - [sym_cdef_statement] = STATE(204), - [sym_ctypedef_statement] = STATE(204), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(204), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [117] = { + [sym__statement] = STATE(199), + [sym__simple_statements] = STATE(199), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(199), + [sym_match_statement] = STATE(199), + [sym_for_statement] = STATE(199), + [sym_while_statement] = STATE(199), + [sym_try_statement] = STATE(199), + [sym_with_statement] = STATE(199), + [sym_function_definition] = STATE(199), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(199), + [sym_decorated_definition] = STATE(199), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(572), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(199), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(199), + [sym_cdef_statement] = STATE(199), + [sym_ctypedef_statement] = STATE(199), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(199), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -36151,85 +35630,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, - [122] = { - [sym__statement] = STATE(204), - [sym__simple_statements] = STATE(204), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(204), - [sym_match_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_with_statement] = STATE(204), - [sym_function_definition] = STATE(204), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(204), - [sym_decorated_definition] = STATE(204), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(701), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(204), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(204), - [sym_cdef_statement] = STATE(204), - [sym_ctypedef_statement] = STATE(204), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(204), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [118] = { + [sym__statement] = STATE(199), + [sym__simple_statements] = STATE(199), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(199), + [sym_match_statement] = STATE(199), + [sym_for_statement] = STATE(199), + [sym_while_statement] = STATE(199), + [sym_try_statement] = STATE(199), + [sym_with_statement] = STATE(199), + [sym_function_definition] = STATE(199), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(199), + [sym_decorated_definition] = STATE(199), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(574), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(199), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(199), + [sym_cdef_statement] = STATE(199), + [sym_ctypedef_statement] = STATE(199), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(199), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -36293,85 +35772,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, - [123] = { - [sym__statement] = STATE(204), - [sym__simple_statements] = STATE(204), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(204), - [sym_match_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_with_statement] = STATE(204), - [sym_function_definition] = STATE(204), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(204), - [sym_decorated_definition] = STATE(204), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1069), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(204), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(204), - [sym_cdef_statement] = STATE(204), - [sym_ctypedef_statement] = STATE(204), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(204), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [119] = { + [sym__statement] = STATE(199), + [sym__simple_statements] = STATE(199), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(199), + [sym_match_statement] = STATE(199), + [sym_for_statement] = STATE(199), + [sym_while_statement] = STATE(199), + [sym_try_statement] = STATE(199), + [sym_with_statement] = STATE(199), + [sym_function_definition] = STATE(199), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(199), + [sym_decorated_definition] = STATE(199), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(576), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(199), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(199), + [sym_cdef_statement] = STATE(199), + [sym_ctypedef_statement] = STATE(199), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(199), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -36435,85 +35914,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, - [124] = { - [sym__statement] = STATE(204), - [sym__simple_statements] = STATE(204), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(204), - [sym_match_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_with_statement] = STATE(204), - [sym_function_definition] = STATE(204), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(204), - [sym_decorated_definition] = STATE(204), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1397), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(204), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(204), - [sym_cdef_statement] = STATE(204), - [sym_ctypedef_statement] = STATE(204), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(204), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [120] = { + [sym__statement] = STATE(199), + [sym__simple_statements] = STATE(199), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(199), + [sym_match_statement] = STATE(199), + [sym_for_statement] = STATE(199), + [sym_while_statement] = STATE(199), + [sym_try_statement] = STATE(199), + [sym_with_statement] = STATE(199), + [sym_function_definition] = STATE(199), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(199), + [sym_decorated_definition] = STATE(199), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1084), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(199), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(199), + [sym_cdef_statement] = STATE(199), + [sym_ctypedef_statement] = STATE(199), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(199), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -36577,85 +36056,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, - [125] = { - [sym__statement] = STATE(204), - [sym__simple_statements] = STATE(204), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(204), - [sym_match_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_with_statement] = STATE(204), - [sym_function_definition] = STATE(204), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(204), - [sym_decorated_definition] = STATE(204), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1400), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(204), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(204), - [sym_cdef_statement] = STATE(204), - [sym_ctypedef_statement] = STATE(204), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(204), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [121] = { + [sym__statement] = STATE(199), + [sym__simple_statements] = STATE(199), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(199), + [sym_match_statement] = STATE(199), + [sym_for_statement] = STATE(199), + [sym_while_statement] = STATE(199), + [sym_try_statement] = STATE(199), + [sym_with_statement] = STATE(199), + [sym_function_definition] = STATE(199), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(199), + [sym_decorated_definition] = STATE(199), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1630), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(199), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(199), + [sym_cdef_statement] = STATE(199), + [sym_ctypedef_statement] = STATE(199), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(199), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -36719,85 +36198,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, - [126] = { - [sym__statement] = STATE(204), - [sym__simple_statements] = STATE(204), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(204), - [sym_match_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_with_statement] = STATE(204), - [sym_function_definition] = STATE(204), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(204), - [sym_decorated_definition] = STATE(204), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(702), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(204), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(204), - [sym_cdef_statement] = STATE(204), - [sym_ctypedef_statement] = STATE(204), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(204), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [122] = { + [sym__statement] = STATE(199), + [sym__simple_statements] = STATE(199), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(199), + [sym_match_statement] = STATE(199), + [sym_for_statement] = STATE(199), + [sym_while_statement] = STATE(199), + [sym_try_statement] = STATE(199), + [sym_with_statement] = STATE(199), + [sym_function_definition] = STATE(199), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(199), + [sym_decorated_definition] = STATE(199), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1633), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(199), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(199), + [sym_cdef_statement] = STATE(199), + [sym_ctypedef_statement] = STATE(199), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(199), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -36861,85 +36340,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, - [127] = { - [sym__statement] = STATE(204), - [sym__simple_statements] = STATE(204), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(204), - [sym_match_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_with_statement] = STATE(204), - [sym_function_definition] = STATE(204), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(204), - [sym_decorated_definition] = STATE(204), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(704), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(204), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(204), - [sym_cdef_statement] = STATE(204), - [sym_ctypedef_statement] = STATE(204), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(204), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [123] = { + [sym__statement] = STATE(199), + [sym__simple_statements] = STATE(199), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(199), + [sym_match_statement] = STATE(199), + [sym_for_statement] = STATE(199), + [sym_while_statement] = STATE(199), + [sym_try_statement] = STATE(199), + [sym_with_statement] = STATE(199), + [sym_function_definition] = STATE(199), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(199), + [sym_decorated_definition] = STATE(199), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(577), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(199), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(199), + [sym_cdef_statement] = STATE(199), + [sym_ctypedef_statement] = STATE(199), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(199), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -37003,85 +36482,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, - [128] = { - [sym__statement] = STATE(204), - [sym__simple_statements] = STATE(204), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(204), - [sym_match_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_with_statement] = STATE(204), - [sym_function_definition] = STATE(204), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(204), - [sym_decorated_definition] = STATE(204), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(502), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(204), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(204), - [sym_cdef_statement] = STATE(204), - [sym_ctypedef_statement] = STATE(204), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(204), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [124] = { + [sym__statement] = STATE(199), + [sym__simple_statements] = STATE(199), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(199), + [sym_match_statement] = STATE(199), + [sym_for_statement] = STATE(199), + [sym_while_statement] = STATE(199), + [sym_try_statement] = STATE(199), + [sym_with_statement] = STATE(199), + [sym_function_definition] = STATE(199), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(199), + [sym_decorated_definition] = STATE(199), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(579), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(199), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(199), + [sym_cdef_statement] = STATE(199), + [sym_ctypedef_statement] = STATE(199), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(199), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -37145,85 +36624,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, - [129] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(205), - [sym_match_statement] = STATE(205), - [sym_for_statement] = STATE(205), - [sym_while_statement] = STATE(205), - [sym_try_statement] = STATE(205), - [sym_with_statement] = STATE(205), - [sym_function_definition] = STATE(205), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(2979), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [125] = { + [sym__statement] = STATE(199), + [sym__simple_statements] = STATE(199), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(199), + [sym_match_statement] = STATE(199), + [sym_for_statement] = STATE(199), + [sym_while_statement] = STATE(199), + [sym_try_statement] = STATE(199), + [sym_with_statement] = STATE(199), + [sym_function_definition] = STATE(199), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(199), + [sym_decorated_definition] = STATE(199), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(580), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(199), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(199), + [sym_cdef_statement] = STATE(199), + [sym_ctypedef_statement] = STATE(199), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(199), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -37284,88 +36763,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), + [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, - [130] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(205), - [sym_match_statement] = STATE(205), - [sym_for_statement] = STATE(205), - [sym_while_statement] = STATE(205), - [sym_try_statement] = STATE(205), - [sym_with_statement] = STATE(205), - [sym_function_definition] = STATE(205), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(2813), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [126] = { + [sym__statement] = STATE(209), + [sym__simple_statements] = STATE(209), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(209), + [sym_match_statement] = STATE(209), + [sym_for_statement] = STATE(209), + [sym_while_statement] = STATE(209), + [sym_try_statement] = STATE(209), + [sym_with_statement] = STATE(209), + [sym_function_definition] = STATE(209), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(209), + [sym_decorated_definition] = STATE(209), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(3019), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(209), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(209), + [sym_cdef_statement] = STATE(209), + [sym_ctypedef_statement] = STATE(209), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(209), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -37426,88 +36905,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), + [sym__dedent] = ACTIONS(143), [sym_string_start] = ACTIONS(107), }, - [131] = { - [sym__statement] = STATE(204), - [sym__simple_statements] = STATE(204), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(204), - [sym_match_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_with_statement] = STATE(204), - [sym_function_definition] = STATE(204), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(204), - [sym_decorated_definition] = STATE(204), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(518), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(204), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(204), - [sym_cdef_statement] = STATE(204), - [sym_ctypedef_statement] = STATE(204), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(204), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [127] = { + [sym__statement] = STATE(209), + [sym__simple_statements] = STATE(209), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(209), + [sym_match_statement] = STATE(209), + [sym_for_statement] = STATE(209), + [sym_while_statement] = STATE(209), + [sym_try_statement] = STATE(209), + [sym_with_statement] = STATE(209), + [sym_function_definition] = STATE(209), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(209), + [sym_decorated_definition] = STATE(209), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(2912), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(209), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(209), + [sym_cdef_statement] = STATE(209), + [sym_ctypedef_statement] = STATE(209), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(209), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -37568,88 +37047,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), + [sym__dedent] = ACTIONS(143), [sym_string_start] = ACTIONS(107), }, - [132] = { - [sym__statement] = STATE(204), - [sym__simple_statements] = STATE(204), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(204), - [sym_match_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_with_statement] = STATE(204), - [sym_function_definition] = STATE(204), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(204), - [sym_decorated_definition] = STATE(204), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(522), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(204), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(204), - [sym_cdef_statement] = STATE(204), - [sym_ctypedef_statement] = STATE(204), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(204), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [128] = { + [sym__statement] = STATE(199), + [sym__simple_statements] = STATE(199), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(199), + [sym_match_statement] = STATE(199), + [sym_for_statement] = STATE(199), + [sym_while_statement] = STATE(199), + [sym_try_statement] = STATE(199), + [sym_with_statement] = STATE(199), + [sym_function_definition] = STATE(199), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(199), + [sym_decorated_definition] = STATE(199), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(596), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(199), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(199), + [sym_cdef_statement] = STATE(199), + [sym_ctypedef_statement] = STATE(199), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(199), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -37713,85 +37192,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, - [133] = { - [sym__statement] = STATE(204), - [sym__simple_statements] = STATE(204), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(204), - [sym_match_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_with_statement] = STATE(204), - [sym_function_definition] = STATE(204), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(204), - [sym_decorated_definition] = STATE(204), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1411), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(204), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(204), - [sym_cdef_statement] = STATE(204), - [sym_ctypedef_statement] = STATE(204), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(204), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [129] = { + [sym__statement] = STATE(199), + [sym__simple_statements] = STATE(199), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(199), + [sym_match_statement] = STATE(199), + [sym_for_statement] = STATE(199), + [sym_while_statement] = STATE(199), + [sym_try_statement] = STATE(199), + [sym_with_statement] = STATE(199), + [sym_function_definition] = STATE(199), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(199), + [sym_decorated_definition] = STATE(199), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(600), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(199), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(199), + [sym_cdef_statement] = STATE(199), + [sym_ctypedef_statement] = STATE(199), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(199), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -37855,85 +37334,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, - [134] = { - [sym__statement] = STATE(209), - [sym__simple_statements] = STATE(209), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(209), - [sym_match_statement] = STATE(209), - [sym_for_statement] = STATE(209), - [sym_while_statement] = STATE(209), - [sym_try_statement] = STATE(209), - [sym_with_statement] = STATE(209), - [sym_function_definition] = STATE(209), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(209), - [sym_decorated_definition] = STATE(209), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(998), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(209), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(209), - [sym_cdef_statement] = STATE(209), - [sym_ctypedef_statement] = STATE(209), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(209), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [130] = { + [sym__statement] = STATE(199), + [sym__simple_statements] = STATE(199), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(199), + [sym_match_statement] = STATE(199), + [sym_for_statement] = STATE(199), + [sym_while_statement] = STATE(199), + [sym_try_statement] = STATE(199), + [sym_with_statement] = STATE(199), + [sym_function_definition] = STATE(199), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(199), + [sym_decorated_definition] = STATE(199), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1643), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(199), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(199), + [sym_cdef_statement] = STATE(199), + [sym_ctypedef_statement] = STATE(199), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(199), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -37994,88 +37473,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(147), + [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, - [135] = { - [sym__statement] = STATE(210), - [sym__simple_statements] = STATE(210), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(210), - [sym_match_statement] = STATE(210), - [sym_for_statement] = STATE(210), - [sym_while_statement] = STATE(210), - [sym_try_statement] = STATE(210), - [sym_with_statement] = STATE(210), - [sym_function_definition] = STATE(210), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(210), - [sym_decorated_definition] = STATE(210), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(999), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(210), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(210), - [sym_cdef_statement] = STATE(210), - [sym_ctypedef_statement] = STATE(210), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(210), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [131] = { + [sym__statement] = STATE(198), + [sym__simple_statements] = STATE(198), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(198), + [sym_match_statement] = STATE(198), + [sym_for_statement] = STATE(198), + [sym_while_statement] = STATE(198), + [sym_try_statement] = STATE(198), + [sym_with_statement] = STATE(198), + [sym_function_definition] = STATE(198), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(198), + [sym_decorated_definition] = STATE(198), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1006), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(198), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(198), + [sym_cdef_statement] = STATE(198), + [sym_ctypedef_statement] = STATE(198), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(198), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -38136,88 +37615,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(149), + [sym__dedent] = ACTIONS(145), [sym_string_start] = ACTIONS(107), }, - [136] = { - [sym__statement] = STATE(204), - [sym__simple_statements] = STATE(204), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(204), - [sym_match_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_with_statement] = STATE(204), - [sym_function_definition] = STATE(204), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(204), - [sym_decorated_definition] = STATE(204), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(523), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(204), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(204), - [sym_cdef_statement] = STATE(204), - [sym_ctypedef_statement] = STATE(204), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(204), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [132] = { + [sym__statement] = STATE(205), + [sym__simple_statements] = STATE(205), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(205), + [sym_match_statement] = STATE(205), + [sym_for_statement] = STATE(205), + [sym_while_statement] = STATE(205), + [sym_try_statement] = STATE(205), + [sym_with_statement] = STATE(205), + [sym_function_definition] = STATE(205), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(205), + [sym_decorated_definition] = STATE(205), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1008), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(205), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(205), + [sym_cdef_statement] = STATE(205), + [sym_ctypedef_statement] = STATE(205), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(205), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -38278,88 +37757,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), + [sym__dedent] = ACTIONS(149), [sym_string_start] = ACTIONS(107), }, - [137] = { - [sym__statement] = STATE(204), - [sym__simple_statements] = STATE(204), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(204), - [sym_match_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_with_statement] = STATE(204), - [sym_function_definition] = STATE(204), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(204), - [sym_decorated_definition] = STATE(204), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(524), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(204), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(204), - [sym_cdef_statement] = STATE(204), - [sym_ctypedef_statement] = STATE(204), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(204), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [133] = { + [sym__statement] = STATE(199), + [sym__simple_statements] = STATE(199), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(199), + [sym_match_statement] = STATE(199), + [sym_for_statement] = STATE(199), + [sym_while_statement] = STATE(199), + [sym_try_statement] = STATE(199), + [sym_with_statement] = STATE(199), + [sym_function_definition] = STATE(199), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(199), + [sym_decorated_definition] = STATE(199), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(601), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(199), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(199), + [sym_cdef_statement] = STATE(199), + [sym_ctypedef_statement] = STATE(199), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(199), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -38423,85 +37902,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, - [138] = { - [sym__statement] = STATE(204), - [sym__simple_statements] = STATE(204), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(204), - [sym_match_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_with_statement] = STATE(204), - [sym_function_definition] = STATE(204), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(204), - [sym_decorated_definition] = STATE(204), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(526), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(204), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(204), - [sym_cdef_statement] = STATE(204), - [sym_ctypedef_statement] = STATE(204), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(204), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [134] = { + [sym__statement] = STATE(199), + [sym__simple_statements] = STATE(199), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(199), + [sym_match_statement] = STATE(199), + [sym_for_statement] = STATE(199), + [sym_while_statement] = STATE(199), + [sym_try_statement] = STATE(199), + [sym_with_statement] = STATE(199), + [sym_function_definition] = STATE(199), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(199), + [sym_decorated_definition] = STATE(199), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(602), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(199), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(199), + [sym_cdef_statement] = STATE(199), + [sym_ctypedef_statement] = STATE(199), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(199), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -38565,85 +38044,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, - [139] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(205), - [sym_match_statement] = STATE(205), - [sym_for_statement] = STATE(205), - [sym_while_statement] = STATE(205), - [sym_try_statement] = STATE(205), - [sym_with_statement] = STATE(205), - [sym_function_definition] = STATE(205), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(3010), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [135] = { + [sym__statement] = STATE(199), + [sym__simple_statements] = STATE(199), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(199), + [sym_match_statement] = STATE(199), + [sym_for_statement] = STATE(199), + [sym_while_statement] = STATE(199), + [sym_try_statement] = STATE(199), + [sym_with_statement] = STATE(199), + [sym_function_definition] = STATE(199), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(199), + [sym_decorated_definition] = STATE(199), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(604), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(199), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(199), + [sym_cdef_statement] = STATE(199), + [sym_ctypedef_statement] = STATE(199), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(199), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -38704,88 +38183,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), + [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, - [140] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(205), - [sym_match_statement] = STATE(205), - [sym_for_statement] = STATE(205), - [sym_while_statement] = STATE(205), - [sym_try_statement] = STATE(205), - [sym_with_statement] = STATE(205), - [sym_function_definition] = STATE(205), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(2839), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [136] = { + [sym__statement] = STATE(209), + [sym__simple_statements] = STATE(209), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(209), + [sym_match_statement] = STATE(209), + [sym_for_statement] = STATE(209), + [sym_while_statement] = STATE(209), + [sym_try_statement] = STATE(209), + [sym_with_statement] = STATE(209), + [sym_function_definition] = STATE(209), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(209), + [sym_decorated_definition] = STATE(209), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(3027), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(209), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(209), + [sym_cdef_statement] = STATE(209), + [sym_ctypedef_statement] = STATE(209), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(209), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -38846,88 +38325,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), + [sym__dedent] = ACTIONS(143), [sym_string_start] = ACTIONS(107), }, - [141] = { - [sym__statement] = STATE(204), - [sym__simple_statements] = STATE(204), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(204), - [sym_match_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_with_statement] = STATE(204), - [sym_function_definition] = STATE(204), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(204), - [sym_decorated_definition] = STATE(204), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(538), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(204), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(204), - [sym_cdef_statement] = STATE(204), - [sym_ctypedef_statement] = STATE(204), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(204), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [137] = { + [sym__statement] = STATE(209), + [sym__simple_statements] = STATE(209), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(209), + [sym_match_statement] = STATE(209), + [sym_for_statement] = STATE(209), + [sym_while_statement] = STATE(209), + [sym_try_statement] = STATE(209), + [sym_with_statement] = STATE(209), + [sym_function_definition] = STATE(209), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(209), + [sym_decorated_definition] = STATE(209), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(2917), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(209), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(209), + [sym_cdef_statement] = STATE(209), + [sym_ctypedef_statement] = STATE(209), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(209), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -38988,88 +38467,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), + [sym__dedent] = ACTIONS(143), [sym_string_start] = ACTIONS(107), }, - [142] = { - [sym__statement] = STATE(204), - [sym__simple_statements] = STATE(204), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(204), - [sym_match_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_with_statement] = STATE(204), - [sym_function_definition] = STATE(204), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(204), - [sym_decorated_definition] = STATE(204), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(540), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(204), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(204), - [sym_cdef_statement] = STATE(204), - [sym_ctypedef_statement] = STATE(204), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(204), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [138] = { + [sym__statement] = STATE(199), + [sym__simple_statements] = STATE(199), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(199), + [sym_match_statement] = STATE(199), + [sym_for_statement] = STATE(199), + [sym_while_statement] = STATE(199), + [sym_try_statement] = STATE(199), + [sym_with_statement] = STATE(199), + [sym_function_definition] = STATE(199), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(199), + [sym_decorated_definition] = STATE(199), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(616), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(199), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(199), + [sym_cdef_statement] = STATE(199), + [sym_ctypedef_statement] = STATE(199), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(199), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -39133,85 +38612,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, - [143] = { - [sym__statement] = STATE(204), - [sym__simple_statements] = STATE(204), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(204), - [sym_match_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_with_statement] = STATE(204), - [sym_function_definition] = STATE(204), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(204), - [sym_decorated_definition] = STATE(204), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(541), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(204), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(204), - [sym_cdef_statement] = STATE(204), - [sym_ctypedef_statement] = STATE(204), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(204), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [139] = { + [sym__statement] = STATE(199), + [sym__simple_statements] = STATE(199), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(199), + [sym_match_statement] = STATE(199), + [sym_for_statement] = STATE(199), + [sym_while_statement] = STATE(199), + [sym_try_statement] = STATE(199), + [sym_with_statement] = STATE(199), + [sym_function_definition] = STATE(199), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(199), + [sym_decorated_definition] = STATE(199), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(618), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(199), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(199), + [sym_cdef_statement] = STATE(199), + [sym_ctypedef_statement] = STATE(199), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(199), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -39275,85 +38754,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, - [144] = { - [sym__statement] = STATE(204), - [sym__simple_statements] = STATE(204), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(204), - [sym_match_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_with_statement] = STATE(204), - [sym_function_definition] = STATE(204), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(204), - [sym_decorated_definition] = STATE(204), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(544), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(204), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(204), - [sym_cdef_statement] = STATE(204), - [sym_ctypedef_statement] = STATE(204), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(204), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [140] = { + [sym__statement] = STATE(199), + [sym__simple_statements] = STATE(199), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(199), + [sym_match_statement] = STATE(199), + [sym_for_statement] = STATE(199), + [sym_while_statement] = STATE(199), + [sym_try_statement] = STATE(199), + [sym_with_statement] = STATE(199), + [sym_function_definition] = STATE(199), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(199), + [sym_decorated_definition] = STATE(199), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(619), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(199), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(199), + [sym_cdef_statement] = STATE(199), + [sym_ctypedef_statement] = STATE(199), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(199), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -39417,85 +38896,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, - [145] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(205), - [sym_match_statement] = STATE(205), - [sym_for_statement] = STATE(205), - [sym_while_statement] = STATE(205), - [sym_try_statement] = STATE(205), - [sym_with_statement] = STATE(205), - [sym_function_definition] = STATE(205), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(2964), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [141] = { + [sym__statement] = STATE(199), + [sym__simple_statements] = STATE(199), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(199), + [sym_match_statement] = STATE(199), + [sym_for_statement] = STATE(199), + [sym_while_statement] = STATE(199), + [sym_try_statement] = STATE(199), + [sym_with_statement] = STATE(199), + [sym_function_definition] = STATE(199), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(199), + [sym_decorated_definition] = STATE(199), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(622), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(199), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(199), + [sym_cdef_statement] = STATE(199), + [sym_ctypedef_statement] = STATE(199), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(199), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -39556,88 +39035,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), + [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, - [146] = { - [sym__statement] = STATE(204), - [sym__simple_statements] = STATE(204), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(204), - [sym_match_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_with_statement] = STATE(204), - [sym_function_definition] = STATE(204), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(204), - [sym_decorated_definition] = STATE(204), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(551), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(204), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(204), - [sym_cdef_statement] = STATE(204), - [sym_ctypedef_statement] = STATE(204), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(204), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [142] = { + [sym__statement] = STATE(209), + [sym__simple_statements] = STATE(209), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(209), + [sym_match_statement] = STATE(209), + [sym_for_statement] = STATE(209), + [sym_while_statement] = STATE(209), + [sym_try_statement] = STATE(209), + [sym_with_statement] = STATE(209), + [sym_function_definition] = STATE(209), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(209), + [sym_decorated_definition] = STATE(209), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(3032), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(209), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(209), + [sym_cdef_statement] = STATE(209), + [sym_ctypedef_statement] = STATE(209), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(209), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -39698,88 +39177,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), + [sym__dedent] = ACTIONS(143), [sym_string_start] = ACTIONS(107), }, - [147] = { - [sym__statement] = STATE(204), - [sym__simple_statements] = STATE(204), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(204), - [sym_match_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_with_statement] = STATE(204), - [sym_function_definition] = STATE(204), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(204), - [sym_decorated_definition] = STATE(204), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(552), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(204), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(204), - [sym_cdef_statement] = STATE(204), - [sym_ctypedef_statement] = STATE(204), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(204), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [143] = { + [sym__statement] = STATE(199), + [sym__simple_statements] = STATE(199), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(199), + [sym_match_statement] = STATE(199), + [sym_for_statement] = STATE(199), + [sym_while_statement] = STATE(199), + [sym_try_statement] = STATE(199), + [sym_with_statement] = STATE(199), + [sym_function_definition] = STATE(199), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(199), + [sym_decorated_definition] = STATE(199), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(628), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(199), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(199), + [sym_cdef_statement] = STATE(199), + [sym_ctypedef_statement] = STATE(199), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(199), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -39843,85 +39322,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, - [148] = { - [sym__statement] = STATE(204), - [sym__simple_statements] = STATE(204), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(204), - [sym_match_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_with_statement] = STATE(204), - [sym_function_definition] = STATE(204), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(204), - [sym_decorated_definition] = STATE(204), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(554), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(204), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(204), - [sym_cdef_statement] = STATE(204), - [sym_ctypedef_statement] = STATE(204), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(204), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [144] = { + [sym__statement] = STATE(199), + [sym__simple_statements] = STATE(199), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(199), + [sym_match_statement] = STATE(199), + [sym_for_statement] = STATE(199), + [sym_while_statement] = STATE(199), + [sym_try_statement] = STATE(199), + [sym_with_statement] = STATE(199), + [sym_function_definition] = STATE(199), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(199), + [sym_decorated_definition] = STATE(199), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(629), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(199), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(199), + [sym_cdef_statement] = STATE(199), + [sym_ctypedef_statement] = STATE(199), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(199), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -39985,85 +39464,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, - [149] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(205), - [sym_match_statement] = STATE(205), - [sym_for_statement] = STATE(205), - [sym_while_statement] = STATE(205), - [sym_try_statement] = STATE(205), - [sym_with_statement] = STATE(205), - [sym_function_definition] = STATE(205), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(2924), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [145] = { + [sym__statement] = STATE(199), + [sym__simple_statements] = STATE(199), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(199), + [sym_match_statement] = STATE(199), + [sym_for_statement] = STATE(199), + [sym_while_statement] = STATE(199), + [sym_try_statement] = STATE(199), + [sym_with_statement] = STATE(199), + [sym_function_definition] = STATE(199), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(199), + [sym_decorated_definition] = STATE(199), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(630), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(199), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(199), + [sym_cdef_statement] = STATE(199), + [sym_ctypedef_statement] = STATE(199), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(199), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -40124,88 +39603,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), + [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, - [150] = { - [sym__statement] = STATE(204), - [sym__simple_statements] = STATE(204), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(204), - [sym_match_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_with_statement] = STATE(204), - [sym_function_definition] = STATE(204), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(204), - [sym_decorated_definition] = STATE(204), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(557), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(204), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(204), - [sym_cdef_statement] = STATE(204), - [sym_ctypedef_statement] = STATE(204), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(204), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [146] = { + [sym__statement] = STATE(209), + [sym__simple_statements] = STATE(209), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(209), + [sym_match_statement] = STATE(209), + [sym_for_statement] = STATE(209), + [sym_while_statement] = STATE(209), + [sym_try_statement] = STATE(209), + [sym_with_statement] = STATE(209), + [sym_function_definition] = STATE(209), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(209), + [sym_decorated_definition] = STATE(209), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(3034), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(209), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(209), + [sym_cdef_statement] = STATE(209), + [sym_ctypedef_statement] = STATE(209), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(209), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -40266,88 +39745,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), + [sym__dedent] = ACTIONS(143), [sym_string_start] = ACTIONS(107), }, - [151] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(205), - [sym_match_statement] = STATE(205), - [sym_for_statement] = STATE(205), - [sym_while_statement] = STATE(205), - [sym_try_statement] = STATE(205), - [sym_with_statement] = STATE(205), - [sym_function_definition] = STATE(205), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(2926), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [147] = { + [sym__statement] = STATE(199), + [sym__simple_statements] = STATE(199), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(199), + [sym_match_statement] = STATE(199), + [sym_for_statement] = STATE(199), + [sym_while_statement] = STATE(199), + [sym_try_statement] = STATE(199), + [sym_with_statement] = STATE(199), + [sym_function_definition] = STATE(199), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(199), + [sym_decorated_definition] = STATE(199), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(632), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(199), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(199), + [sym_cdef_statement] = STATE(199), + [sym_ctypedef_statement] = STATE(199), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(199), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -40408,88 +39887,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), + [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, - [152] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(205), - [sym_match_statement] = STATE(205), - [sym_for_statement] = STATE(205), - [sym_while_statement] = STATE(205), - [sym_try_statement] = STATE(205), - [sym_with_statement] = STATE(205), - [sym_function_definition] = STATE(205), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(2982), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [148] = { + [sym__statement] = STATE(209), + [sym__simple_statements] = STATE(209), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(209), + [sym_match_statement] = STATE(209), + [sym_for_statement] = STATE(209), + [sym_while_statement] = STATE(209), + [sym_try_statement] = STATE(209), + [sym_with_statement] = STATE(209), + [sym_function_definition] = STATE(209), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(209), + [sym_decorated_definition] = STATE(209), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(3036), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(209), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(209), + [sym_cdef_statement] = STATE(209), + [sym_ctypedef_statement] = STATE(209), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(209), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -40550,88 +40029,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), + [sym__dedent] = ACTIONS(143), [sym_string_start] = ACTIONS(107), }, - [153] = { - [sym__statement] = STATE(204), - [sym__simple_statements] = STATE(204), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(204), - [sym_match_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_with_statement] = STATE(204), - [sym_function_definition] = STATE(204), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(204), - [sym_decorated_definition] = STATE(204), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(578), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(204), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(204), - [sym_cdef_statement] = STATE(204), - [sym_ctypedef_statement] = STATE(204), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(204), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [149] = { + [sym__statement] = STATE(209), + [sym__simple_statements] = STATE(209), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(209), + [sym_match_statement] = STATE(209), + [sym_for_statement] = STATE(209), + [sym_while_statement] = STATE(209), + [sym_try_statement] = STATE(209), + [sym_with_statement] = STATE(209), + [sym_function_definition] = STATE(209), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(209), + [sym_decorated_definition] = STATE(209), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(2959), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(209), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(209), + [sym_cdef_statement] = STATE(209), + [sym_ctypedef_statement] = STATE(209), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(209), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -40692,88 +40171,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), + [sym__dedent] = ACTIONS(143), [sym_string_start] = ACTIONS(107), }, - [154] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(205), - [sym_match_statement] = STATE(205), - [sym_for_statement] = STATE(205), - [sym_while_statement] = STATE(205), - [sym_try_statement] = STATE(205), - [sym_with_statement] = STATE(205), - [sym_function_definition] = STATE(205), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(3019), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [150] = { + [sym__statement] = STATE(199), + [sym__simple_statements] = STATE(199), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(199), + [sym_match_statement] = STATE(199), + [sym_for_statement] = STATE(199), + [sym_while_statement] = STATE(199), + [sym_try_statement] = STATE(199), + [sym_with_statement] = STATE(199), + [sym_function_definition] = STATE(199), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(199), + [sym_decorated_definition] = STATE(199), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(649), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(199), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(199), + [sym_cdef_statement] = STATE(199), + [sym_ctypedef_statement] = STATE(199), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(199), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -40834,88 +40313,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), + [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, - [155] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(205), - [sym_match_statement] = STATE(205), - [sym_for_statement] = STATE(205), - [sym_while_statement] = STATE(205), - [sym_try_statement] = STATE(205), - [sym_with_statement] = STATE(205), - [sym_function_definition] = STATE(205), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(3037), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [151] = { + [sym__statement] = STATE(209), + [sym__simple_statements] = STATE(209), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(209), + [sym_match_statement] = STATE(209), + [sym_for_statement] = STATE(209), + [sym_while_statement] = STATE(209), + [sym_try_statement] = STATE(209), + [sym_with_statement] = STATE(209), + [sym_function_definition] = STATE(209), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(209), + [sym_decorated_definition] = STATE(209), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(3047), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(209), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(209), + [sym_cdef_statement] = STATE(209), + [sym_ctypedef_statement] = STATE(209), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(209), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -40976,88 +40455,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), + [sym__dedent] = ACTIONS(143), [sym_string_start] = ACTIONS(107), }, - [156] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(205), - [sym_match_statement] = STATE(205), - [sym_for_statement] = STATE(205), - [sym_while_statement] = STATE(205), - [sym_try_statement] = STATE(205), - [sym_with_statement] = STATE(205), - [sym_function_definition] = STATE(205), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(3041), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [152] = { + [sym__statement] = STATE(209), + [sym__simple_statements] = STATE(209), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(209), + [sym_match_statement] = STATE(209), + [sym_for_statement] = STATE(209), + [sym_while_statement] = STATE(209), + [sym_try_statement] = STATE(209), + [sym_with_statement] = STATE(209), + [sym_function_definition] = STATE(209), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(209), + [sym_decorated_definition] = STATE(209), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(3058), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(209), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(209), + [sym_cdef_statement] = STATE(209), + [sym_ctypedef_statement] = STATE(209), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(209), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -41118,88 +40597,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), + [sym__dedent] = ACTIONS(143), [sym_string_start] = ACTIONS(107), }, - [157] = { - [sym__statement] = STATE(204), - [sym__simple_statements] = STATE(204), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(204), - [sym_match_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_with_statement] = STATE(204), - [sym_function_definition] = STATE(204), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(204), - [sym_decorated_definition] = STATE(204), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(590), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(204), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(204), - [sym_cdef_statement] = STATE(204), - [sym_ctypedef_statement] = STATE(204), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(204), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [153] = { + [sym__statement] = STATE(209), + [sym__simple_statements] = STATE(209), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(209), + [sym_match_statement] = STATE(209), + [sym_for_statement] = STATE(209), + [sym_while_statement] = STATE(209), + [sym_try_statement] = STATE(209), + [sym_with_statement] = STATE(209), + [sym_function_definition] = STATE(209), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(209), + [sym_decorated_definition] = STATE(209), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(3059), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(209), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(209), + [sym_cdef_statement] = STATE(209), + [sym_ctypedef_statement] = STATE(209), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(209), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -41260,88 +40739,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), + [sym__dedent] = ACTIONS(143), [sym_string_start] = ACTIONS(107), }, - [158] = { - [sym__statement] = STATE(204), - [sym__simple_statements] = STATE(204), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(204), - [sym_match_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_with_statement] = STATE(204), - [sym_function_definition] = STATE(204), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(204), - [sym_decorated_definition] = STATE(204), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(596), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(204), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(204), - [sym_cdef_statement] = STATE(204), - [sym_ctypedef_statement] = STATE(204), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(204), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [154] = { + [sym__statement] = STATE(199), + [sym__simple_statements] = STATE(199), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(199), + [sym_match_statement] = STATE(199), + [sym_for_statement] = STATE(199), + [sym_while_statement] = STATE(199), + [sym_try_statement] = STATE(199), + [sym_with_statement] = STATE(199), + [sym_function_definition] = STATE(199), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(199), + [sym_decorated_definition] = STATE(199), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(658), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(199), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(199), + [sym_cdef_statement] = STATE(199), + [sym_ctypedef_statement] = STATE(199), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(199), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -41405,85 +40884,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, - [159] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(205), - [sym_match_statement] = STATE(205), - [sym_for_statement] = STATE(205), - [sym_while_statement] = STATE(205), - [sym_try_statement] = STATE(205), - [sym_with_statement] = STATE(205), - [sym_function_definition] = STATE(205), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(2938), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [155] = { + [sym__statement] = STATE(199), + [sym__simple_statements] = STATE(199), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(199), + [sym_match_statement] = STATE(199), + [sym_for_statement] = STATE(199), + [sym_while_statement] = STATE(199), + [sym_try_statement] = STATE(199), + [sym_with_statement] = STATE(199), + [sym_function_definition] = STATE(199), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(199), + [sym_decorated_definition] = STATE(199), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(663), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(199), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(199), + [sym_cdef_statement] = STATE(199), + [sym_ctypedef_statement] = STATE(199), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(199), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -41544,88 +41023,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), + [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, - [160] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(205), - [sym_match_statement] = STATE(205), - [sym_for_statement] = STATE(205), - [sym_while_statement] = STATE(205), - [sym_try_statement] = STATE(205), - [sym_with_statement] = STATE(205), - [sym_function_definition] = STATE(205), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(2954), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [156] = { + [sym__statement] = STATE(209), + [sym__simple_statements] = STATE(209), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(209), + [sym_match_statement] = STATE(209), + [sym_for_statement] = STATE(209), + [sym_while_statement] = STATE(209), + [sym_try_statement] = STATE(209), + [sym_with_statement] = STATE(209), + [sym_function_definition] = STATE(209), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(209), + [sym_decorated_definition] = STATE(209), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(3009), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(209), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(209), + [sym_cdef_statement] = STATE(209), + [sym_ctypedef_statement] = STATE(209), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(209), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -41686,88 +41165,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), + [sym__dedent] = ACTIONS(143), [sym_string_start] = ACTIONS(107), }, - [161] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(205), - [sym_match_statement] = STATE(205), - [sym_for_statement] = STATE(205), - [sym_while_statement] = STATE(205), - [sym_try_statement] = STATE(205), - [sym_with_statement] = STATE(205), - [sym_function_definition] = STATE(205), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(2957), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [157] = { + [sym__statement] = STATE(209), + [sym__simple_statements] = STATE(209), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(209), + [sym_match_statement] = STATE(209), + [sym_for_statement] = STATE(209), + [sym_while_statement] = STATE(209), + [sym_try_statement] = STATE(209), + [sym_with_statement] = STATE(209), + [sym_function_definition] = STATE(209), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(209), + [sym_decorated_definition] = STATE(209), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(2998), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(209), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(209), + [sym_cdef_statement] = STATE(209), + [sym_ctypedef_statement] = STATE(209), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(209), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -41828,88 +41307,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), + [sym__dedent] = ACTIONS(143), [sym_string_start] = ACTIONS(107), }, - [162] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(205), - [sym_match_statement] = STATE(205), - [sym_for_statement] = STATE(205), - [sym_while_statement] = STATE(205), - [sym_try_statement] = STATE(205), - [sym_with_statement] = STATE(205), - [sym_function_definition] = STATE(205), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(2921), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [158] = { + [sym__statement] = STATE(209), + [sym__simple_statements] = STATE(209), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(209), + [sym_match_statement] = STATE(209), + [sym_for_statement] = STATE(209), + [sym_while_statement] = STATE(209), + [sym_try_statement] = STATE(209), + [sym_with_statement] = STATE(209), + [sym_function_definition] = STATE(209), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(209), + [sym_decorated_definition] = STATE(209), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(3020), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(209), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(209), + [sym_cdef_statement] = STATE(209), + [sym_ctypedef_statement] = STATE(209), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(209), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -41970,88 +41449,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), + [sym__dedent] = ACTIONS(143), [sym_string_start] = ACTIONS(107), }, - [163] = { - [sym__statement] = STATE(204), - [sym__simple_statements] = STATE(204), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(204), - [sym_match_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_with_statement] = STATE(204), - [sym_function_definition] = STATE(204), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(204), - [sym_decorated_definition] = STATE(204), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(602), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(204), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(204), - [sym_cdef_statement] = STATE(204), - [sym_ctypedef_statement] = STATE(204), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(204), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [159] = { + [sym__statement] = STATE(209), + [sym__simple_statements] = STATE(209), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(209), + [sym_match_statement] = STATE(209), + [sym_for_statement] = STATE(209), + [sym_while_statement] = STATE(209), + [sym_try_statement] = STATE(209), + [sym_with_statement] = STATE(209), + [sym_function_definition] = STATE(209), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(209), + [sym_decorated_definition] = STATE(209), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(3022), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(209), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(209), + [sym_cdef_statement] = STATE(209), + [sym_ctypedef_statement] = STATE(209), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(209), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -42112,88 +41591,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), + [sym__dedent] = ACTIONS(143), [sym_string_start] = ACTIONS(107), }, - [164] = { - [sym__statement] = STATE(204), - [sym__simple_statements] = STATE(204), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(204), - [sym_match_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_with_statement] = STATE(204), - [sym_function_definition] = STATE(204), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(204), - [sym_decorated_definition] = STATE(204), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(607), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(204), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(204), - [sym_cdef_statement] = STATE(204), - [sym_ctypedef_statement] = STATE(204), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(204), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [160] = { + [sym__statement] = STATE(199), + [sym__simple_statements] = STATE(199), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(199), + [sym_match_statement] = STATE(199), + [sym_for_statement] = STATE(199), + [sym_while_statement] = STATE(199), + [sym_try_statement] = STATE(199), + [sym_with_statement] = STATE(199), + [sym_function_definition] = STATE(199), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(199), + [sym_decorated_definition] = STATE(199), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(668), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(199), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(199), + [sym_cdef_statement] = STATE(199), + [sym_ctypedef_statement] = STATE(199), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(199), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -42257,85 +41736,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, - [165] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(205), - [sym_match_statement] = STATE(205), - [sym_for_statement] = STATE(205), - [sym_while_statement] = STATE(205), - [sym_try_statement] = STATE(205), - [sym_with_statement] = STATE(205), - [sym_function_definition] = STATE(205), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(2987), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [161] = { + [sym__statement] = STATE(199), + [sym__simple_statements] = STATE(199), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(199), + [sym_match_statement] = STATE(199), + [sym_for_statement] = STATE(199), + [sym_while_statement] = STATE(199), + [sym_try_statement] = STATE(199), + [sym_with_statement] = STATE(199), + [sym_function_definition] = STATE(199), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(199), + [sym_decorated_definition] = STATE(199), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(672), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(199), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(199), + [sym_cdef_statement] = STATE(199), + [sym_ctypedef_statement] = STATE(199), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(199), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -42396,88 +41875,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), + [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, - [166] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(205), - [sym_match_statement] = STATE(205), - [sym_for_statement] = STATE(205), - [sym_while_statement] = STATE(205), - [sym_try_statement] = STATE(205), - [sym_with_statement] = STATE(205), - [sym_function_definition] = STATE(205), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(2989), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [162] = { + [sym__statement] = STATE(209), + [sym__simple_statements] = STATE(209), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(209), + [sym_match_statement] = STATE(209), + [sym_for_statement] = STATE(209), + [sym_while_statement] = STATE(209), + [sym_try_statement] = STATE(209), + [sym_with_statement] = STATE(209), + [sym_function_definition] = STATE(209), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(209), + [sym_decorated_definition] = STATE(209), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(3038), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(209), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(209), + [sym_cdef_statement] = STATE(209), + [sym_ctypedef_statement] = STATE(209), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(209), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -42538,88 +42017,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), + [sym__dedent] = ACTIONS(143), [sym_string_start] = ACTIONS(107), }, - [167] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(205), - [sym_match_statement] = STATE(205), - [sym_for_statement] = STATE(205), - [sym_while_statement] = STATE(205), - [sym_try_statement] = STATE(205), - [sym_with_statement] = STATE(205), - [sym_function_definition] = STATE(205), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(2991), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [163] = { + [sym__statement] = STATE(209), + [sym__simple_statements] = STATE(209), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(209), + [sym_match_statement] = STATE(209), + [sym_for_statement] = STATE(209), + [sym_while_statement] = STATE(209), + [sym_try_statement] = STATE(209), + [sym_with_statement] = STATE(209), + [sym_function_definition] = STATE(209), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(209), + [sym_decorated_definition] = STATE(209), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(3040), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(209), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(209), + [sym_cdef_statement] = STATE(209), + [sym_ctypedef_statement] = STATE(209), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(209), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -42680,88 +42159,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), + [sym__dedent] = ACTIONS(143), [sym_string_start] = ACTIONS(107), }, - [168] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(205), - [sym_match_statement] = STATE(205), - [sym_for_statement] = STATE(205), - [sym_while_statement] = STATE(205), - [sym_try_statement] = STATE(205), - [sym_with_statement] = STATE(205), - [sym_function_definition] = STATE(205), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(2994), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [164] = { + [sym__statement] = STATE(209), + [sym__simple_statements] = STATE(209), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(209), + [sym_match_statement] = STATE(209), + [sym_for_statement] = STATE(209), + [sym_while_statement] = STATE(209), + [sym_try_statement] = STATE(209), + [sym_with_statement] = STATE(209), + [sym_function_definition] = STATE(209), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(209), + [sym_decorated_definition] = STATE(209), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(3041), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(209), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(209), + [sym_cdef_statement] = STATE(209), + [sym_ctypedef_statement] = STATE(209), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(209), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -42822,88 +42301,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), + [sym__dedent] = ACTIONS(143), [sym_string_start] = ACTIONS(107), }, - [169] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(205), - [sym_match_statement] = STATE(205), - [sym_for_statement] = STATE(205), - [sym_while_statement] = STATE(205), - [sym_try_statement] = STATE(205), - [sym_with_statement] = STATE(205), - [sym_function_definition] = STATE(205), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(2998), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [165] = { + [sym__statement] = STATE(209), + [sym__simple_statements] = STATE(209), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(209), + [sym_match_statement] = STATE(209), + [sym_for_statement] = STATE(209), + [sym_while_statement] = STATE(209), + [sym_try_statement] = STATE(209), + [sym_with_statement] = STATE(209), + [sym_function_definition] = STATE(209), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(209), + [sym_decorated_definition] = STATE(209), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(2966), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(209), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(209), + [sym_cdef_statement] = STATE(209), + [sym_ctypedef_statement] = STATE(209), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(209), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -42964,88 +42443,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), + [sym__dedent] = ACTIONS(143), [sym_string_start] = ACTIONS(107), }, - [170] = { - [sym__statement] = STATE(204), - [sym__simple_statements] = STATE(204), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(204), - [sym_match_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_with_statement] = STATE(204), - [sym_function_definition] = STATE(204), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(204), - [sym_decorated_definition] = STATE(204), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(611), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(204), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(204), - [sym_cdef_statement] = STATE(204), - [sym_ctypedef_statement] = STATE(204), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(204), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [166] = { + [sym__statement] = STATE(209), + [sym__simple_statements] = STATE(209), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(209), + [sym_match_statement] = STATE(209), + [sym_for_statement] = STATE(209), + [sym_while_statement] = STATE(209), + [sym_try_statement] = STATE(209), + [sym_with_statement] = STATE(209), + [sym_function_definition] = STATE(209), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(209), + [sym_decorated_definition] = STATE(209), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(2988), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(209), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(209), + [sym_cdef_statement] = STATE(209), + [sym_ctypedef_statement] = STATE(209), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(209), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -43106,88 +42585,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), + [sym__dedent] = ACTIONS(143), [sym_string_start] = ACTIONS(107), }, - [171] = { - [sym__statement] = STATE(204), - [sym__simple_statements] = STATE(204), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(204), - [sym_match_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_with_statement] = STATE(204), - [sym_function_definition] = STATE(204), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(204), - [sym_decorated_definition] = STATE(204), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(613), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(204), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(204), - [sym_cdef_statement] = STATE(204), - [sym_ctypedef_statement] = STATE(204), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(204), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [167] = { + [sym__statement] = STATE(199), + [sym__simple_statements] = STATE(199), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(199), + [sym_match_statement] = STATE(199), + [sym_for_statement] = STATE(199), + [sym_while_statement] = STATE(199), + [sym_try_statement] = STATE(199), + [sym_with_statement] = STATE(199), + [sym_function_definition] = STATE(199), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(199), + [sym_decorated_definition] = STATE(199), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(676), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(199), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(199), + [sym_cdef_statement] = STATE(199), + [sym_ctypedef_statement] = STATE(199), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(199), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -43251,85 +42730,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, - [172] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(205), - [sym_match_statement] = STATE(205), - [sym_for_statement] = STATE(205), - [sym_while_statement] = STATE(205), - [sym_try_statement] = STATE(205), - [sym_with_statement] = STATE(205), - [sym_function_definition] = STATE(205), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(3017), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [168] = { + [sym__statement] = STATE(199), + [sym__simple_statements] = STATE(199), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(199), + [sym_match_statement] = STATE(199), + [sym_for_statement] = STATE(199), + [sym_while_statement] = STATE(199), + [sym_try_statement] = STATE(199), + [sym_with_statement] = STATE(199), + [sym_function_definition] = STATE(199), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(199), + [sym_decorated_definition] = STATE(199), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(678), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(199), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(199), + [sym_cdef_statement] = STATE(199), + [sym_ctypedef_statement] = STATE(199), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(199), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -43390,88 +42869,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), + [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, - [173] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(205), - [sym_match_statement] = STATE(205), - [sym_for_statement] = STATE(205), - [sym_while_statement] = STATE(205), - [sym_try_statement] = STATE(205), - [sym_with_statement] = STATE(205), - [sym_function_definition] = STATE(205), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(3020), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [169] = { + [sym__statement] = STATE(209), + [sym__simple_statements] = STATE(209), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(209), + [sym_match_statement] = STATE(209), + [sym_for_statement] = STATE(209), + [sym_while_statement] = STATE(209), + [sym_try_statement] = STATE(209), + [sym_with_statement] = STATE(209), + [sym_function_definition] = STATE(209), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(209), + [sym_decorated_definition] = STATE(209), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(2943), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(209), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(209), + [sym_cdef_statement] = STATE(209), + [sym_ctypedef_statement] = STATE(209), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(209), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -43532,88 +43011,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), + [sym__dedent] = ACTIONS(143), [sym_string_start] = ACTIONS(107), }, - [174] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(205), - [sym_match_statement] = STATE(205), - [sym_for_statement] = STATE(205), - [sym_while_statement] = STATE(205), - [sym_try_statement] = STATE(205), - [sym_with_statement] = STATE(205), - [sym_function_definition] = STATE(205), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(3022), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [170] = { + [sym__statement] = STATE(209), + [sym__simple_statements] = STATE(209), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(209), + [sym_match_statement] = STATE(209), + [sym_for_statement] = STATE(209), + [sym_while_statement] = STATE(209), + [sym_try_statement] = STATE(209), + [sym_with_statement] = STATE(209), + [sym_function_definition] = STATE(209), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(209), + [sym_decorated_definition] = STATE(209), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(2954), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(209), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(209), + [sym_cdef_statement] = STATE(209), + [sym_ctypedef_statement] = STATE(209), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(209), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -43674,88 +43153,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), + [sym__dedent] = ACTIONS(143), [sym_string_start] = ACTIONS(107), }, - [175] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(205), - [sym_match_statement] = STATE(205), - [sym_for_statement] = STATE(205), - [sym_while_statement] = STATE(205), - [sym_try_statement] = STATE(205), - [sym_with_statement] = STATE(205), - [sym_function_definition] = STATE(205), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(3023), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [171] = { + [sym__statement] = STATE(209), + [sym__simple_statements] = STATE(209), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(209), + [sym_match_statement] = STATE(209), + [sym_for_statement] = STATE(209), + [sym_while_statement] = STATE(209), + [sym_try_statement] = STATE(209), + [sym_with_statement] = STATE(209), + [sym_function_definition] = STATE(209), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(209), + [sym_decorated_definition] = STATE(209), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(2958), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(209), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(209), + [sym_cdef_statement] = STATE(209), + [sym_ctypedef_statement] = STATE(209), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(209), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -43816,88 +43295,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), + [sym__dedent] = ACTIONS(143), [sym_string_start] = ACTIONS(107), }, - [176] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(205), - [sym_match_statement] = STATE(205), - [sym_for_statement] = STATE(205), - [sym_while_statement] = STATE(205), - [sym_try_statement] = STATE(205), - [sym_with_statement] = STATE(205), - [sym_function_definition] = STATE(205), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(3025), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [172] = { + [sym__statement] = STATE(209), + [sym__simple_statements] = STATE(209), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(209), + [sym_match_statement] = STATE(209), + [sym_for_statement] = STATE(209), + [sym_while_statement] = STATE(209), + [sym_try_statement] = STATE(209), + [sym_with_statement] = STATE(209), + [sym_function_definition] = STATE(209), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(209), + [sym_decorated_definition] = STATE(209), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(2960), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(209), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(209), + [sym_cdef_statement] = STATE(209), + [sym_ctypedef_statement] = STATE(209), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(209), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -43958,88 +43437,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), + [sym__dedent] = ACTIONS(143), [sym_string_start] = ACTIONS(107), }, - [177] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(205), - [sym_match_statement] = STATE(205), - [sym_for_statement] = STATE(205), - [sym_while_statement] = STATE(205), - [sym_try_statement] = STATE(205), - [sym_with_statement] = STATE(205), - [sym_function_definition] = STATE(205), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(3026), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [173] = { + [sym__statement] = STATE(209), + [sym__simple_statements] = STATE(209), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(209), + [sym_match_statement] = STATE(209), + [sym_for_statement] = STATE(209), + [sym_while_statement] = STATE(209), + [sym_try_statement] = STATE(209), + [sym_with_statement] = STATE(209), + [sym_function_definition] = STATE(209), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(209), + [sym_decorated_definition] = STATE(209), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(2967), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(209), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(209), + [sym_cdef_statement] = STATE(209), + [sym_ctypedef_statement] = STATE(209), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(209), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -44100,88 +43579,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), + [sym__dedent] = ACTIONS(143), [sym_string_start] = ACTIONS(107), }, - [178] = { - [sym__statement] = STATE(204), - [sym__simple_statements] = STATE(204), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(204), - [sym_match_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_with_statement] = STATE(204), - [sym_function_definition] = STATE(204), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(204), - [sym_decorated_definition] = STATE(204), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(621), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(204), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(204), - [sym_cdef_statement] = STATE(204), - [sym_ctypedef_statement] = STATE(204), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(204), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [174] = { + [sym__statement] = STATE(209), + [sym__simple_statements] = STATE(209), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(209), + [sym_match_statement] = STATE(209), + [sym_for_statement] = STATE(209), + [sym_while_statement] = STATE(209), + [sym_try_statement] = STATE(209), + [sym_with_statement] = STATE(209), + [sym_function_definition] = STATE(209), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(209), + [sym_decorated_definition] = STATE(209), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(2969), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(209), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(209), + [sym_cdef_statement] = STATE(209), + [sym_ctypedef_statement] = STATE(209), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(209), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -44242,88 +43721,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), + [sym__dedent] = ACTIONS(143), [sym_string_start] = ACTIONS(107), }, - [179] = { - [sym__statement] = STATE(204), - [sym__simple_statements] = STATE(204), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(204), - [sym_match_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_with_statement] = STATE(204), - [sym_function_definition] = STATE(204), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(204), - [sym_decorated_definition] = STATE(204), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(622), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(204), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(204), - [sym_cdef_statement] = STATE(204), - [sym_ctypedef_statement] = STATE(204), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(204), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [175] = { + [sym__statement] = STATE(199), + [sym__simple_statements] = STATE(199), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(199), + [sym_match_statement] = STATE(199), + [sym_for_statement] = STATE(199), + [sym_while_statement] = STATE(199), + [sym_try_statement] = STATE(199), + [sym_with_statement] = STATE(199), + [sym_function_definition] = STATE(199), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(199), + [sym_decorated_definition] = STATE(199), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(683), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(199), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(199), + [sym_cdef_statement] = STATE(199), + [sym_ctypedef_statement] = STATE(199), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(199), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -44387,85 +43866,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, - [180] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(205), - [sym_match_statement] = STATE(205), - [sym_for_statement] = STATE(205), - [sym_while_statement] = STATE(205), - [sym_try_statement] = STATE(205), - [sym_with_statement] = STATE(205), - [sym_function_definition] = STATE(205), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(2934), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [176] = { + [sym__statement] = STATE(199), + [sym__simple_statements] = STATE(199), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(199), + [sym_match_statement] = STATE(199), + [sym_for_statement] = STATE(199), + [sym_while_statement] = STATE(199), + [sym_try_statement] = STATE(199), + [sym_with_statement] = STATE(199), + [sym_function_definition] = STATE(199), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(199), + [sym_decorated_definition] = STATE(199), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(684), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(199), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(199), + [sym_cdef_statement] = STATE(199), + [sym_ctypedef_statement] = STATE(199), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(199), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -44526,88 +44005,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), + [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, - [181] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(205), - [sym_match_statement] = STATE(205), - [sym_for_statement] = STATE(205), - [sym_while_statement] = STATE(205), - [sym_try_statement] = STATE(205), - [sym_with_statement] = STATE(205), - [sym_function_definition] = STATE(205), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(2961), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [177] = { + [sym__statement] = STATE(209), + [sym__simple_statements] = STATE(209), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(209), + [sym_match_statement] = STATE(209), + [sym_for_statement] = STATE(209), + [sym_while_statement] = STATE(209), + [sym_try_statement] = STATE(209), + [sym_with_statement] = STATE(209), + [sym_function_definition] = STATE(209), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(209), + [sym_decorated_definition] = STATE(209), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(3044), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(209), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(209), + [sym_cdef_statement] = STATE(209), + [sym_ctypedef_statement] = STATE(209), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(209), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -44668,88 +44147,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), + [sym__dedent] = ACTIONS(143), [sym_string_start] = ACTIONS(107), }, - [182] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(205), - [sym_match_statement] = STATE(205), - [sym_for_statement] = STATE(205), - [sym_while_statement] = STATE(205), - [sym_try_statement] = STATE(205), - [sym_with_statement] = STATE(205), - [sym_function_definition] = STATE(205), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(2981), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [178] = { + [sym__statement] = STATE(209), + [sym__simple_statements] = STATE(209), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(209), + [sym_match_statement] = STATE(209), + [sym_for_statement] = STATE(209), + [sym_while_statement] = STATE(209), + [sym_try_statement] = STATE(209), + [sym_with_statement] = STATE(209), + [sym_function_definition] = STATE(209), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(209), + [sym_decorated_definition] = STATE(209), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(2938), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(209), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(209), + [sym_cdef_statement] = STATE(209), + [sym_ctypedef_statement] = STATE(209), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(209), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -44810,88 +44289,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), + [sym__dedent] = ACTIONS(143), [sym_string_start] = ACTIONS(107), }, - [183] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(205), - [sym_match_statement] = STATE(205), - [sym_for_statement] = STATE(205), - [sym_while_statement] = STATE(205), - [sym_try_statement] = STATE(205), - [sym_with_statement] = STATE(205), - [sym_function_definition] = STATE(205), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(2983), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [179] = { + [sym__statement] = STATE(209), + [sym__simple_statements] = STATE(209), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(209), + [sym_match_statement] = STATE(209), + [sym_for_statement] = STATE(209), + [sym_while_statement] = STATE(209), + [sym_try_statement] = STATE(209), + [sym_with_statement] = STATE(209), + [sym_function_definition] = STATE(209), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(209), + [sym_decorated_definition] = STATE(209), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(2939), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(209), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(209), + [sym_cdef_statement] = STATE(209), + [sym_ctypedef_statement] = STATE(209), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(209), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -44952,88 +44431,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), + [sym__dedent] = ACTIONS(143), [sym_string_start] = ACTIONS(107), }, - [184] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(205), - [sym_match_statement] = STATE(205), - [sym_for_statement] = STATE(205), - [sym_while_statement] = STATE(205), - [sym_try_statement] = STATE(205), - [sym_with_statement] = STATE(205), - [sym_function_definition] = STATE(205), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(2990), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [180] = { + [sym__statement] = STATE(209), + [sym__simple_statements] = STATE(209), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(209), + [sym_match_statement] = STATE(209), + [sym_for_statement] = STATE(209), + [sym_while_statement] = STATE(209), + [sym_try_statement] = STATE(209), + [sym_with_statement] = STATE(209), + [sym_function_definition] = STATE(209), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(209), + [sym_decorated_definition] = STATE(209), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(2940), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(209), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(209), + [sym_cdef_statement] = STATE(209), + [sym_ctypedef_statement] = STATE(209), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(209), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -45094,88 +44573,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), + [sym__dedent] = ACTIONS(143), [sym_string_start] = ACTIONS(107), }, - [185] = { - [sym__statement] = STATE(204), - [sym__simple_statements] = STATE(204), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(204), - [sym_match_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_with_statement] = STATE(204), - [sym_function_definition] = STATE(204), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(204), - [sym_decorated_definition] = STATE(204), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(625), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(204), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(204), - [sym_cdef_statement] = STATE(204), - [sym_ctypedef_statement] = STATE(204), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(204), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [181] = { + [sym__statement] = STATE(209), + [sym__simple_statements] = STATE(209), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(209), + [sym_match_statement] = STATE(209), + [sym_for_statement] = STATE(209), + [sym_while_statement] = STATE(209), + [sym_try_statement] = STATE(209), + [sym_with_statement] = STATE(209), + [sym_function_definition] = STATE(209), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(209), + [sym_decorated_definition] = STATE(209), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(2942), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(209), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(209), + [sym_cdef_statement] = STATE(209), + [sym_ctypedef_statement] = STATE(209), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(209), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -45236,88 +44715,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), + [sym__dedent] = ACTIONS(143), [sym_string_start] = ACTIONS(107), }, - [186] = { - [sym__statement] = STATE(204), - [sym__simple_statements] = STATE(204), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(204), - [sym_match_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_with_statement] = STATE(204), - [sym_function_definition] = STATE(204), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(204), - [sym_decorated_definition] = STATE(204), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(628), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(204), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(204), - [sym_cdef_statement] = STATE(204), - [sym_ctypedef_statement] = STATE(204), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(204), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [182] = { + [sym__statement] = STATE(199), + [sym__simple_statements] = STATE(199), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(199), + [sym_match_statement] = STATE(199), + [sym_for_statement] = STATE(199), + [sym_while_statement] = STATE(199), + [sym_try_statement] = STATE(199), + [sym_with_statement] = STATE(199), + [sym_function_definition] = STATE(199), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(199), + [sym_decorated_definition] = STATE(199), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(686), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(199), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(199), + [sym_cdef_statement] = STATE(199), + [sym_ctypedef_statement] = STATE(199), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(199), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -45381,85 +44860,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, - [187] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(205), - [sym_match_statement] = STATE(205), - [sym_for_statement] = STATE(205), - [sym_while_statement] = STATE(205), - [sym_try_statement] = STATE(205), - [sym_with_statement] = STATE(205), - [sym_function_definition] = STATE(205), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(2929), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [183] = { + [sym__statement] = STATE(199), + [sym__simple_statements] = STATE(199), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(199), + [sym_match_statement] = STATE(199), + [sym_for_statement] = STATE(199), + [sym_while_statement] = STATE(199), + [sym_try_statement] = STATE(199), + [sym_with_statement] = STATE(199), + [sym_function_definition] = STATE(199), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(199), + [sym_decorated_definition] = STATE(199), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(688), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(199), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(199), + [sym_cdef_statement] = STATE(199), + [sym_ctypedef_statement] = STATE(199), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(199), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -45520,88 +44999,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), + [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, - [188] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(205), - [sym_match_statement] = STATE(205), - [sym_for_statement] = STATE(205), - [sym_while_statement] = STATE(205), - [sym_try_statement] = STATE(205), - [sym_with_statement] = STATE(205), - [sym_function_definition] = STATE(205), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(2937), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [184] = { + [sym__statement] = STATE(209), + [sym__simple_statements] = STATE(209), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(209), + [sym_match_statement] = STATE(209), + [sym_for_statement] = STATE(209), + [sym_while_statement] = STATE(209), + [sym_try_statement] = STATE(209), + [sym_with_statement] = STATE(209), + [sym_function_definition] = STATE(209), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(209), + [sym_decorated_definition] = STATE(209), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(2968), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(209), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(209), + [sym_cdef_statement] = STATE(209), + [sym_ctypedef_statement] = STATE(209), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(209), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -45662,88 +45141,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), + [sym__dedent] = ACTIONS(143), [sym_string_start] = ACTIONS(107), }, - [189] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(205), - [sym_match_statement] = STATE(205), - [sym_for_statement] = STATE(205), - [sym_while_statement] = STATE(205), - [sym_try_statement] = STATE(205), - [sym_with_statement] = STATE(205), - [sym_function_definition] = STATE(205), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(2942), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [185] = { + [sym__statement] = STATE(209), + [sym__simple_statements] = STATE(209), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(209), + [sym_match_statement] = STATE(209), + [sym_for_statement] = STATE(209), + [sym_while_statement] = STATE(209), + [sym_try_statement] = STATE(209), + [sym_with_statement] = STATE(209), + [sym_function_definition] = STATE(209), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(209), + [sym_decorated_definition] = STATE(209), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(2973), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(209), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(209), + [sym_cdef_statement] = STATE(209), + [sym_ctypedef_statement] = STATE(209), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(209), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -45804,88 +45283,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), + [sym__dedent] = ACTIONS(143), [sym_string_start] = ACTIONS(107), }, - [190] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(205), - [sym_match_statement] = STATE(205), - [sym_for_statement] = STATE(205), - [sym_while_statement] = STATE(205), - [sym_try_statement] = STATE(205), - [sym_with_statement] = STATE(205), - [sym_function_definition] = STATE(205), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(3049), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [186] = { + [sym__statement] = STATE(209), + [sym__simple_statements] = STATE(209), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(209), + [sym_match_statement] = STATE(209), + [sym_for_statement] = STATE(209), + [sym_while_statement] = STATE(209), + [sym_try_statement] = STATE(209), + [sym_with_statement] = STATE(209), + [sym_function_definition] = STATE(209), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(209), + [sym_decorated_definition] = STATE(209), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(2974), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(209), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(209), + [sym_cdef_statement] = STATE(209), + [sym_ctypedef_statement] = STATE(209), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(209), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -45946,88 +45425,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), + [sym__dedent] = ACTIONS(143), [sym_string_start] = ACTIONS(107), }, - [191] = { - [sym__statement] = STATE(204), - [sym__simple_statements] = STATE(204), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(204), - [sym_match_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_with_statement] = STATE(204), - [sym_function_definition] = STATE(204), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(204), - [sym_decorated_definition] = STATE(204), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(631), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(204), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(204), - [sym_cdef_statement] = STATE(204), - [sym_ctypedef_statement] = STATE(204), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(204), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [187] = { + [sym__statement] = STATE(209), + [sym__simple_statements] = STATE(209), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(209), + [sym_match_statement] = STATE(209), + [sym_for_statement] = STATE(209), + [sym_while_statement] = STATE(209), + [sym_try_statement] = STATE(209), + [sym_with_statement] = STATE(209), + [sym_function_definition] = STATE(209), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(209), + [sym_decorated_definition] = STATE(209), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(2989), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(209), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(209), + [sym_cdef_statement] = STATE(209), + [sym_ctypedef_statement] = STATE(209), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(209), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -46088,88 +45567,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), + [sym__dedent] = ACTIONS(143), [sym_string_start] = ACTIONS(107), }, - [192] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(205), - [sym_match_statement] = STATE(205), - [sym_for_statement] = STATE(205), - [sym_while_statement] = STATE(205), - [sym_try_statement] = STATE(205), - [sym_with_statement] = STATE(205), - [sym_function_definition] = STATE(205), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(3009), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [188] = { + [sym__statement] = STATE(199), + [sym__simple_statements] = STATE(199), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(199), + [sym_match_statement] = STATE(199), + [sym_for_statement] = STATE(199), + [sym_while_statement] = STATE(199), + [sym_try_statement] = STATE(199), + [sym_with_statement] = STATE(199), + [sym_function_definition] = STATE(199), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(199), + [sym_decorated_definition] = STATE(199), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(690), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(199), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(199), + [sym_cdef_statement] = STATE(199), + [sym_ctypedef_statement] = STATE(199), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(199), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -46230,88 +45709,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), + [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, - [193] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(205), - [sym_match_statement] = STATE(205), - [sym_for_statement] = STATE(205), - [sym_while_statement] = STATE(205), - [sym_try_statement] = STATE(205), - [sym_with_statement] = STATE(205), - [sym_function_definition] = STATE(205), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(3050), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [189] = { + [sym__statement] = STATE(209), + [sym__simple_statements] = STATE(209), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(209), + [sym_match_statement] = STATE(209), + [sym_for_statement] = STATE(209), + [sym_while_statement] = STATE(209), + [sym_try_statement] = STATE(209), + [sym_with_statement] = STATE(209), + [sym_function_definition] = STATE(209), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(209), + [sym_decorated_definition] = STATE(209), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(3002), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(209), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(209), + [sym_cdef_statement] = STATE(209), + [sym_ctypedef_statement] = STATE(209), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(209), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -46372,88 +45851,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), + [sym__dedent] = ACTIONS(143), [sym_string_start] = ACTIONS(107), }, - [194] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(205), - [sym_match_statement] = STATE(205), - [sym_for_statement] = STATE(205), - [sym_while_statement] = STATE(205), - [sym_try_statement] = STATE(205), - [sym_with_statement] = STATE(205), - [sym_function_definition] = STATE(205), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(3052), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [190] = { + [sym__statement] = STATE(209), + [sym__simple_statements] = STATE(209), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(209), + [sym_match_statement] = STATE(209), + [sym_for_statement] = STATE(209), + [sym_while_statement] = STATE(209), + [sym_try_statement] = STATE(209), + [sym_with_statement] = STATE(209), + [sym_function_definition] = STATE(209), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(209), + [sym_decorated_definition] = STATE(209), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(3063), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(209), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(209), + [sym_cdef_statement] = STATE(209), + [sym_ctypedef_statement] = STATE(209), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(209), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -46514,88 +45993,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), + [sym__dedent] = ACTIONS(143), [sym_string_start] = ACTIONS(107), }, - [195] = { - [sym__statement] = STATE(204), - [sym__simple_statements] = STATE(204), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(204), - [sym_match_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_with_statement] = STATE(204), - [sym_function_definition] = STATE(204), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(204), - [sym_decorated_definition] = STATE(204), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(634), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(204), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(204), - [sym_cdef_statement] = STATE(204), - [sym_ctypedef_statement] = STATE(204), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(204), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [191] = { + [sym__statement] = STATE(209), + [sym__simple_statements] = STATE(209), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(209), + [sym_match_statement] = STATE(209), + [sym_for_statement] = STATE(209), + [sym_while_statement] = STATE(209), + [sym_try_statement] = STATE(209), + [sym_with_statement] = STATE(209), + [sym_function_definition] = STATE(209), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(209), + [sym_decorated_definition] = STATE(209), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(3006), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(209), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(209), + [sym_cdef_statement] = STATE(209), + [sym_ctypedef_statement] = STATE(209), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(209), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -46656,88 +46135,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), + [sym__dedent] = ACTIONS(143), [sym_string_start] = ACTIONS(107), }, - [196] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(205), - [sym_match_statement] = STATE(205), - [sym_for_statement] = STATE(205), - [sym_while_statement] = STATE(205), - [sym_try_statement] = STATE(205), - [sym_with_statement] = STATE(205), - [sym_function_definition] = STATE(205), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(3001), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [192] = { + [sym__statement] = STATE(199), + [sym__simple_statements] = STATE(199), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(199), + [sym_match_statement] = STATE(199), + [sym_for_statement] = STATE(199), + [sym_while_statement] = STATE(199), + [sym_try_statement] = STATE(199), + [sym_with_statement] = STATE(199), + [sym_function_definition] = STATE(199), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(199), + [sym_decorated_definition] = STATE(199), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(691), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(199), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(199), + [sym_cdef_statement] = STATE(199), + [sym_ctypedef_statement] = STATE(199), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(199), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -46798,88 +46277,230 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), + [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, - [197] = { - [sym__statement] = STATE(204), - [sym__simple_statements] = STATE(204), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(204), - [sym_match_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_try_statement] = STATE(204), - [sym_with_statement] = STATE(204), - [sym_function_definition] = STATE(204), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(204), - [sym_decorated_definition] = STATE(204), - [sym_decorator] = STATE(3184), - [sym_block] = STATE(1349), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(204), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(204), - [sym_cdef_statement] = STATE(204), - [sym_ctypedef_statement] = STATE(204), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(204), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [193] = { + [sym__statement] = STATE(209), + [sym__simple_statements] = STATE(209), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(209), + [sym_match_statement] = STATE(209), + [sym_for_statement] = STATE(209), + [sym_while_statement] = STATE(209), + [sym_try_statement] = STATE(209), + [sym_with_statement] = STATE(209), + [sym_function_definition] = STATE(209), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(209), + [sym_decorated_definition] = STATE(209), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(3008), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(209), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(209), + [sym_cdef_statement] = STATE(209), + [sym_ctypedef_statement] = STATE(209), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(209), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), + [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_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(125), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_AT] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_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(87), + [sym_true] = ACTIONS(81), + [sym_false] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [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), + }, + [194] = { + [sym__statement] = STATE(199), + [sym__simple_statements] = STATE(199), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(199), + [sym_match_statement] = STATE(199), + [sym_for_statement] = STATE(199), + [sym_while_statement] = STATE(199), + [sym_try_statement] = STATE(199), + [sym_with_statement] = STATE(199), + [sym_function_definition] = STATE(199), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(199), + [sym_decorated_definition] = STATE(199), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(693), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(199), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(199), + [sym_cdef_statement] = STATE(199), + [sym_ctypedef_statement] = STATE(199), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(199), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -46943,164 +46564,307 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, - [198] = { - [sym__statement] = STATE(198), - [sym__simple_statements] = STATE(198), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_if_statement] = STATE(198), - [sym_match_statement] = STATE(198), - [sym_for_statement] = STATE(198), - [sym_while_statement] = STATE(198), - [sym_try_statement] = STATE(198), - [sym_with_statement] = STATE(198), - [sym_function_definition] = STATE(198), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_class_definition] = STATE(198), - [sym_decorated_definition] = STATE(198), - [sym_decorator] = STATE(3177), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(198), - [sym_include_statement] = STATE(4688), - [sym_def_statement] = STATE(198), - [sym_cdef_statement] = STATE(198), - [sym_ctypedef_statement] = STATE(198), - [sym_storageclass] = STATE(3829), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(198), - [aux_sym_class_definition_repeat1] = STATE(3829), - [aux_sym_decorated_definition_repeat1] = STATE(3177), - [ts_builtin_sym_end] = ACTIONS(151), - [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(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_string_start] = ACTIONS(297), + [195] = { + [sym__statement] = STATE(208), + [sym__simple_statements] = STATE(208), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(208), + [sym_match_statement] = STATE(208), + [sym_for_statement] = STATE(208), + [sym_while_statement] = STATE(208), + [sym_try_statement] = STATE(208), + [sym_with_statement] = STATE(208), + [sym_function_definition] = STATE(208), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(208), + [sym_decorated_definition] = STATE(208), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1139), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(208), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(208), + [sym_cdef_statement] = STATE(208), + [sym_ctypedef_statement] = STATE(208), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(208), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), + [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_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(125), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_AT] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_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(87), + [sym_true] = ACTIONS(81), + [sym_false] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [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), }, - [199] = { + [196] = { + [sym__statement] = STATE(204), + [sym__simple_statements] = STATE(204), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(204), + [sym_match_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_try_statement] = STATE(204), + [sym_with_statement] = STATE(204), + [sym_function_definition] = STATE(204), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(204), + [sym_decorated_definition] = STATE(204), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(3904), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(204), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(204), + [sym_cdef_statement] = STATE(204), + [sym_ctypedef_statement] = STATE(204), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(204), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), + [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_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(125), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_AT] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_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(87), + [sym_true] = ACTIONS(81), + [sym_false] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [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), + }, + [197] = { [sym__statement] = STATE(198), [sym__simple_statements] = STATE(198), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), [sym_if_statement] = STATE(198), [sym_match_statement] = STATE(198), [sym_for_statement] = STATE(198), @@ -47108,61 +46872,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(198), [sym_with_statement] = STATE(198), [sym_function_definition] = STATE(198), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), [sym_class_definition] = STATE(198), [sym_decorated_definition] = STATE(198), - [sym_decorator] = STATE(3177), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), + [sym_decorator] = STATE(3205), + [sym_block] = STATE(1000), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), [sym_property_definition] = STATE(198), - [sym_include_statement] = STATE(4688), + [sym_include_statement] = STATE(5109), [sym_def_statement] = STATE(198), [sym_cdef_statement] = STATE(198), [sym_ctypedef_statement] = STATE(198), - [sym_storageclass] = STATE(3829), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [aux_sym_module_repeat1] = STATE(198), - [aux_sym_class_definition_repeat1] = STATE(3829), - [aux_sym_decorated_definition_repeat1] = STATE(3177), - [ts_builtin_sym_end] = ACTIONS(300), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -47177,19 +46941,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_async] = ACTIONS(39), - [anon_sym_for] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(47), - [anon_sym_def] = ACTIONS(49), + [anon_sym_if] = ACTIONS(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(59), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -47211,98 +46975,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(91), + [anon_sym_property] = ACTIONS(127), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(95), - [anon_sym_cdef] = ACTIONS(97), - [anon_sym_cpdef] = ACTIONS(97), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(101), + [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), }, - [200] = { - [sym__statement] = STATE(203), - [sym__simple_statements] = STATE(203), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(203), - [sym_match_statement] = STATE(203), - [sym_for_statement] = STATE(203), - [sym_while_statement] = STATE(203), - [sym_try_statement] = STATE(203), - [sym_with_statement] = STATE(203), - [sym_function_definition] = STATE(203), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(203), - [sym_decorated_definition] = STATE(203), - [sym_decorator] = STATE(3184), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(203), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(203), - [sym_cdef_statement] = STATE(203), - [sym_ctypedef_statement] = STATE(203), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(203), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [198] = { + [sym__statement] = STATE(207), + [sym__simple_statements] = STATE(207), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(207), + [sym_match_statement] = STATE(207), + [sym_for_statement] = STATE(207), + [sym_while_statement] = STATE(207), + [sym_try_statement] = STATE(207), + [sym_with_statement] = STATE(207), + [sym_function_definition] = STATE(207), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(207), + [sym_decorated_definition] = STATE(207), + [sym_decorator] = STATE(3205), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(207), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(207), + [sym_cdef_statement] = STATE(207), + [sym_ctypedef_statement] = STATE(207), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(207), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -47363,87 +47128,369 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(302), + [sym__dedent] = ACTIONS(151), [sym_string_start] = ACTIONS(107), }, + [199] = { + [sym__statement] = STATE(207), + [sym__simple_statements] = STATE(207), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(207), + [sym_match_statement] = STATE(207), + [sym_for_statement] = STATE(207), + [sym_while_statement] = STATE(207), + [sym_try_statement] = STATE(207), + [sym_with_statement] = STATE(207), + [sym_function_definition] = STATE(207), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(207), + [sym_decorated_definition] = STATE(207), + [sym_decorator] = STATE(3205), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(207), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(207), + [sym_cdef_statement] = STATE(207), + [sym_ctypedef_statement] = STATE(207), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(207), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), + [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_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(125), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_AT] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_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(87), + [sym_true] = ACTIONS(81), + [sym_false] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [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(153), + [sym_string_start] = ACTIONS(107), + }, + [200] = { + [sym__statement] = STATE(200), + [sym__simple_statements] = STATE(200), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_if_statement] = STATE(200), + [sym_match_statement] = STATE(200), + [sym_for_statement] = STATE(200), + [sym_while_statement] = STATE(200), + [sym_try_statement] = STATE(200), + [sym_with_statement] = STATE(200), + [sym_function_definition] = STATE(200), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_class_definition] = STATE(200), + [sym_decorated_definition] = STATE(200), + [sym_decorator] = STATE(3199), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(200), + [sym_include_statement] = STATE(4674), + [sym_def_statement] = STATE(200), + [sym_cdef_statement] = STATE(200), + [sym_ctypedef_statement] = STATE(200), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(200), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3199), + [ts_builtin_sym_end] = ACTIONS(155), + [sym_identifier] = ACTIONS(157), + [anon_sym_import] = ACTIONS(160), + [anon_sym_cimport] = ACTIONS(160), + [anon_sym_from] = ACTIONS(163), + [anon_sym_LPAREN] = ACTIONS(166), + [anon_sym_STAR] = ACTIONS(169), + [anon_sym_print] = ACTIONS(172), + [anon_sym_assert] = ACTIONS(175), + [anon_sym_return] = ACTIONS(178), + [anon_sym_del] = ACTIONS(181), + [anon_sym_raise] = ACTIONS(184), + [anon_sym_pass] = ACTIONS(187), + [anon_sym_break] = ACTIONS(190), + [anon_sym_continue] = ACTIONS(193), + [anon_sym_if] = ACTIONS(196), + [anon_sym_match] = ACTIONS(199), + [anon_sym_async] = ACTIONS(202), + [anon_sym_for] = ACTIONS(205), + [anon_sym_while] = ACTIONS(208), + [anon_sym_try] = ACTIONS(211), + [anon_sym_with] = ACTIONS(214), + [anon_sym_def] = ACTIONS(217), + [anon_sym_global] = ACTIONS(220), + [anon_sym_nonlocal] = ACTIONS(223), + [anon_sym_exec] = ACTIONS(226), + [anon_sym_type] = ACTIONS(229), + [anon_sym_class] = ACTIONS(232), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_AT] = ACTIONS(238), + [anon_sym_DASH] = ACTIONS(241), + [anon_sym_LBRACE] = ACTIONS(244), + [anon_sym_PLUS] = ACTIONS(241), + [anon_sym_not] = ACTIONS(247), + [anon_sym_AMP] = ACTIONS(241), + [anon_sym_TILDE] = ACTIONS(241), + [anon_sym_LT] = ACTIONS(250), + [anon_sym_lambda] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(256), + [anon_sym_DOT_DOT_DOT] = ACTIONS(259), + [anon_sym_None] = ACTIONS(262), + [sym_integer] = ACTIONS(265), + [sym_float] = ACTIONS(268), + [anon_sym_await] = ACTIONS(271), + [anon_sym_api] = ACTIONS(274), + [sym_true] = ACTIONS(265), + [sym_false] = ACTIONS(265), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(277), + [anon_sym_include] = ACTIONS(280), + [anon_sym_DEF] = ACTIONS(283), + [anon_sym_cdef] = ACTIONS(286), + [anon_sym_cpdef] = ACTIONS(286), + [anon_sym_new] = ACTIONS(289), + [anon_sym_ctypedef] = ACTIONS(292), + [anon_sym_public] = ACTIONS(295), + [anon_sym_packed] = ACTIONS(295), + [anon_sym_inline] = ACTIONS(295), + [anon_sym_readonly] = ACTIONS(295), + [anon_sym_sizeof] = ACTIONS(298), + [sym_string_start] = ACTIONS(301), + }, [201] = { - [sym__statement] = STATE(198), - [sym__simple_statements] = STATE(198), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_if_statement] = STATE(198), - [sym_match_statement] = STATE(198), - [sym_for_statement] = STATE(198), - [sym_while_statement] = STATE(198), - [sym_try_statement] = STATE(198), - [sym_with_statement] = STATE(198), - [sym_function_definition] = STATE(198), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_class_definition] = STATE(198), - [sym_decorated_definition] = STATE(198), - [sym_decorator] = STATE(3177), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(198), - [sym_include_statement] = STATE(4688), - [sym_def_statement] = STATE(198), - [sym_cdef_statement] = STATE(198), - [sym_ctypedef_statement] = STATE(198), - [sym_storageclass] = STATE(3829), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(198), - [aux_sym_class_definition_repeat1] = STATE(3829), - [aux_sym_decorated_definition_repeat1] = STATE(3177), + [sym__statement] = STATE(206), + [sym__simple_statements] = STATE(206), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_if_statement] = STATE(206), + [sym_match_statement] = STATE(206), + [sym_for_statement] = STATE(206), + [sym_while_statement] = STATE(206), + [sym_try_statement] = STATE(206), + [sym_with_statement] = STATE(206), + [sym_function_definition] = STATE(206), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_class_definition] = STATE(206), + [sym_decorated_definition] = STATE(206), + [sym_decorator] = STATE(3199), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(206), + [sym_include_statement] = STATE(4674), + [sym_def_statement] = STATE(206), + [sym_cdef_statement] = STATE(206), + [sym_ctypedef_statement] = STATE(206), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(206), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3199), [ts_builtin_sym_end] = ACTIONS(304), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -47508,84 +47555,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [202] = { - [sym__statement] = STATE(201), - [sym__simple_statements] = STATE(201), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_if_statement] = STATE(201), - [sym_match_statement] = STATE(201), - [sym_for_statement] = STATE(201), - [sym_while_statement] = STATE(201), - [sym_try_statement] = STATE(201), - [sym_with_statement] = STATE(201), - [sym_function_definition] = STATE(201), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_class_definition] = STATE(201), - [sym_decorated_definition] = STATE(201), - [sym_decorator] = STATE(3177), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(201), - [sym_include_statement] = STATE(4688), - [sym_def_statement] = STATE(201), - [sym_cdef_statement] = STATE(201), - [sym_ctypedef_statement] = STATE(201), - [sym_storageclass] = STATE(3829), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(201), - [aux_sym_class_definition_repeat1] = STATE(3829), - [aux_sym_decorated_definition_repeat1] = STATE(3177), - [ts_builtin_sym_end] = ACTIONS(300), + [sym__statement] = STATE(200), + [sym__simple_statements] = STATE(200), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_if_statement] = STATE(200), + [sym_match_statement] = STATE(200), + [sym_for_statement] = STATE(200), + [sym_while_statement] = STATE(200), + [sym_try_statement] = STATE(200), + [sym_with_statement] = STATE(200), + [sym_function_definition] = STATE(200), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_class_definition] = STATE(200), + [sym_decorated_definition] = STATE(200), + [sym_decorator] = STATE(3199), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(200), + [sym_include_statement] = STATE(4674), + [sym_def_statement] = STATE(200), + [sym_cdef_statement] = STATE(200), + [sym_ctypedef_statement] = STATE(200), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(200), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3199), + [ts_builtin_sym_end] = ACTIONS(304), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -47649,224 +47696,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [203] = { - [sym__statement] = STATE(203), - [sym__simple_statements] = STATE(203), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(203), - [sym_match_statement] = STATE(203), - [sym_for_statement] = STATE(203), - [sym_while_statement] = STATE(203), - [sym_try_statement] = STATE(203), - [sym_with_statement] = STATE(203), - [sym_function_definition] = STATE(203), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(203), - [sym_decorated_definition] = STATE(203), - [sym_decorator] = STATE(3184), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(203), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(203), - [sym_cdef_statement] = STATE(203), - [sym_ctypedef_statement] = STATE(203), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(203), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), - [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(306), - [anon_sym_match] = ACTIONS(309), - [anon_sym_async] = ACTIONS(312), - [anon_sym_for] = ACTIONS(315), - [anon_sym_while] = ACTIONS(318), - [anon_sym_try] = ACTIONS(321), - [anon_sym_with] = ACTIONS(324), - [anon_sym_def] = ACTIONS(327), - [anon_sym_global] = ACTIONS(216), - [anon_sym_nonlocal] = ACTIONS(219), - [anon_sym_exec] = ACTIONS(222), - [anon_sym_type] = ACTIONS(225), - [anon_sym_class] = ACTIONS(330), - [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(333), - [anon_sym_include] = ACTIONS(276), - [anon_sym_DEF] = ACTIONS(336), - [anon_sym_cdef] = ACTIONS(339), - [anon_sym_cpdef] = ACTIONS(339), - [anon_sym_new] = ACTIONS(285), - [anon_sym_ctypedef] = ACTIONS(342), - [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(151), - [sym_string_start] = ACTIONS(297), - }, - [204] = { - [sym__statement] = STATE(203), - [sym__simple_statements] = STATE(203), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(203), - [sym_match_statement] = STATE(203), - [sym_for_statement] = STATE(203), - [sym_while_statement] = STATE(203), - [sym_try_statement] = STATE(203), - [sym_with_statement] = STATE(203), - [sym_function_definition] = STATE(203), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(203), - [sym_decorated_definition] = STATE(203), - [sym_decorator] = STATE(3184), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(203), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(203), - [sym_cdef_statement] = STATE(203), - [sym_ctypedef_statement] = STATE(203), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(203), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [sym__statement] = STATE(207), + [sym__simple_statements] = STATE(207), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(207), + [sym_match_statement] = STATE(207), + [sym_for_statement] = STATE(207), + [sym_while_statement] = STATE(207), + [sym_try_statement] = STATE(207), + [sym_with_statement] = STATE(207), + [sym_function_definition] = STATE(207), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(207), + [sym_decorated_definition] = STATE(207), + [sym_decorator] = STATE(3205), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(207), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(207), + [sym_cdef_statement] = STATE(207), + [sym_ctypedef_statement] = STATE(207), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(207), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -47927,87 +47833,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(345), + [sym__dedent] = ACTIONS(306), [sym_string_start] = ACTIONS(107), }, - [205] = { - [sym__statement] = STATE(203), - [sym__simple_statements] = STATE(203), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(203), - [sym_match_statement] = STATE(203), - [sym_for_statement] = STATE(203), - [sym_while_statement] = STATE(203), - [sym_try_statement] = STATE(203), - [sym_with_statement] = STATE(203), - [sym_function_definition] = STATE(203), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(203), - [sym_decorated_definition] = STATE(203), - [sym_decorator] = STATE(3184), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(203), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(203), - [sym_cdef_statement] = STATE(203), - [sym_ctypedef_statement] = STATE(203), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(203), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [204] = { + [sym__statement] = STATE(207), + [sym__simple_statements] = STATE(207), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(207), + [sym_match_statement] = STATE(207), + [sym_for_statement] = STATE(207), + [sym_while_statement] = STATE(207), + [sym_try_statement] = STATE(207), + [sym_with_statement] = STATE(207), + [sym_function_definition] = STATE(207), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(207), + [sym_decorated_definition] = STATE(207), + [sym_decorator] = STATE(3205), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(207), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(207), + [sym_cdef_statement] = STATE(207), + [sym_ctypedef_statement] = STATE(207), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(207), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -48068,87 +47974,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(347), + [sym__dedent] = ACTIONS(308), [sym_string_start] = ACTIONS(107), }, - [206] = { - [sym__statement] = STATE(203), - [sym__simple_statements] = STATE(203), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(203), - [sym_match_statement] = STATE(203), - [sym_for_statement] = STATE(203), - [sym_while_statement] = STATE(203), - [sym_try_statement] = STATE(203), - [sym_with_statement] = STATE(203), - [sym_function_definition] = STATE(203), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(203), - [sym_decorated_definition] = STATE(203), - [sym_decorator] = STATE(3184), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(203), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(203), - [sym_cdef_statement] = STATE(203), - [sym_ctypedef_statement] = STATE(203), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(203), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [205] = { + [sym__statement] = STATE(207), + [sym__simple_statements] = STATE(207), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(207), + [sym_match_statement] = STATE(207), + [sym_for_statement] = STATE(207), + [sym_while_statement] = STATE(207), + [sym_try_statement] = STATE(207), + [sym_with_statement] = STATE(207), + [sym_function_definition] = STATE(207), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(207), + [sym_decorated_definition] = STATE(207), + [sym_decorator] = STATE(3205), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(207), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(207), + [sym_cdef_statement] = STATE(207), + [sym_ctypedef_statement] = STATE(207), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(207), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -48209,87 +48115,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(103), [anon_sym_readonly] = ACTIONS(103), [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(349), + [sym__dedent] = ACTIONS(310), [sym_string_start] = ACTIONS(107), }, - [207] = { - [sym__statement] = STATE(203), - [sym__simple_statements] = STATE(203), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(203), - [sym_match_statement] = STATE(203), - [sym_for_statement] = STATE(203), - [sym_while_statement] = STATE(203), - [sym_try_statement] = STATE(203), - [sym_with_statement] = STATE(203), - [sym_function_definition] = STATE(203), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(203), - [sym_decorated_definition] = STATE(203), - [sym_decorator] = STATE(3184), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(203), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(203), - [sym_cdef_statement] = STATE(203), - [sym_ctypedef_statement] = STATE(203), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(203), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [206] = { + [sym__statement] = STATE(200), + [sym__simple_statements] = STATE(200), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_if_statement] = STATE(200), + [sym_match_statement] = STATE(200), + [sym_for_statement] = STATE(200), + [sym_while_statement] = STATE(200), + [sym_try_statement] = STATE(200), + [sym_with_statement] = STATE(200), + [sym_function_definition] = STATE(200), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_class_definition] = STATE(200), + [sym_decorated_definition] = STATE(200), + [sym_decorator] = STATE(3199), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(200), + [sym_include_statement] = STATE(4674), + [sym_def_statement] = STATE(200), + [sym_cdef_statement] = STATE(200), + [sym_ctypedef_statement] = STATE(200), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(200), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3199), + [ts_builtin_sym_end] = ACTIONS(312), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -48304,19 +48211,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(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_if] = ACTIONS(35), + [anon_sym_match] = ACTIONS(37), + [anon_sym_async] = ACTIONS(39), + [anon_sym_for] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_with] = ACTIONS(47), + [anon_sym_def] = ACTIONS(49), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(125), + [anon_sym_class] = ACTIONS(59), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -48338,99 +48245,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(127), + [anon_sym_property] = ACTIONS(91), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_DEF] = ACTIONS(95), + [anon_sym_cdef] = ACTIONS(97), + [anon_sym_cpdef] = ACTIONS(97), [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), + [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__dedent] = ACTIONS(351), [sym_string_start] = ACTIONS(107), }, + [207] = { + [sym__statement] = STATE(207), + [sym__simple_statements] = STATE(207), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(207), + [sym_match_statement] = STATE(207), + [sym_for_statement] = STATE(207), + [sym_while_statement] = STATE(207), + [sym_try_statement] = STATE(207), + [sym_with_statement] = STATE(207), + [sym_function_definition] = STATE(207), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(207), + [sym_decorated_definition] = STATE(207), + [sym_decorator] = STATE(3205), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(207), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(207), + [sym_cdef_statement] = STATE(207), + [sym_ctypedef_statement] = STATE(207), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(207), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), + [sym_identifier] = ACTIONS(157), + [anon_sym_import] = ACTIONS(160), + [anon_sym_cimport] = ACTIONS(160), + [anon_sym_from] = ACTIONS(163), + [anon_sym_LPAREN] = ACTIONS(166), + [anon_sym_STAR] = ACTIONS(169), + [anon_sym_print] = ACTIONS(172), + [anon_sym_assert] = ACTIONS(175), + [anon_sym_return] = ACTIONS(178), + [anon_sym_del] = ACTIONS(181), + [anon_sym_raise] = ACTIONS(184), + [anon_sym_pass] = ACTIONS(187), + [anon_sym_break] = ACTIONS(190), + [anon_sym_continue] = ACTIONS(193), + [anon_sym_if] = ACTIONS(314), + [anon_sym_match] = ACTIONS(317), + [anon_sym_async] = ACTIONS(320), + [anon_sym_for] = ACTIONS(323), + [anon_sym_while] = ACTIONS(326), + [anon_sym_try] = ACTIONS(329), + [anon_sym_with] = ACTIONS(332), + [anon_sym_def] = ACTIONS(335), + [anon_sym_global] = ACTIONS(220), + [anon_sym_nonlocal] = ACTIONS(223), + [anon_sym_exec] = ACTIONS(226), + [anon_sym_type] = ACTIONS(229), + [anon_sym_class] = ACTIONS(338), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_AT] = ACTIONS(238), + [anon_sym_DASH] = ACTIONS(241), + [anon_sym_LBRACE] = ACTIONS(244), + [anon_sym_PLUS] = ACTIONS(241), + [anon_sym_not] = ACTIONS(247), + [anon_sym_AMP] = ACTIONS(241), + [anon_sym_TILDE] = ACTIONS(241), + [anon_sym_LT] = ACTIONS(250), + [anon_sym_lambda] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(256), + [anon_sym_DOT_DOT_DOT] = ACTIONS(259), + [anon_sym_None] = ACTIONS(262), + [sym_integer] = ACTIONS(265), + [sym_float] = ACTIONS(268), + [anon_sym_await] = ACTIONS(271), + [anon_sym_api] = ACTIONS(274), + [sym_true] = ACTIONS(265), + [sym_false] = ACTIONS(265), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(341), + [anon_sym_include] = ACTIONS(280), + [anon_sym_DEF] = ACTIONS(344), + [anon_sym_cdef] = ACTIONS(347), + [anon_sym_cpdef] = ACTIONS(347), + [anon_sym_new] = ACTIONS(289), + [anon_sym_ctypedef] = ACTIONS(350), + [anon_sym_public] = ACTIONS(295), + [anon_sym_packed] = ACTIONS(295), + [anon_sym_inline] = ACTIONS(295), + [anon_sym_readonly] = ACTIONS(295), + [anon_sym_sizeof] = ACTIONS(298), + [sym__dedent] = ACTIONS(155), + [sym_string_start] = ACTIONS(301), + }, [208] = { - [sym__statement] = STATE(203), - [sym__simple_statements] = STATE(203), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(203), - [sym_match_statement] = STATE(203), - [sym_for_statement] = STATE(203), - [sym_while_statement] = STATE(203), - [sym_try_statement] = STATE(203), - [sym_with_statement] = STATE(203), - [sym_function_definition] = STATE(203), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(203), - [sym_decorated_definition] = STATE(203), - [sym_decorator] = STATE(3184), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(203), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(203), - [sym_cdef_statement] = STATE(203), - [sym_ctypedef_statement] = STATE(203), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(203), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [sym__statement] = STATE(207), + [sym__simple_statements] = STATE(207), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(207), + [sym_match_statement] = STATE(207), + [sym_for_statement] = STATE(207), + [sym_while_statement] = STATE(207), + [sym_try_statement] = STATE(207), + [sym_with_statement] = STATE(207), + [sym_function_definition] = STATE(207), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(207), + [sym_decorated_definition] = STATE(207), + [sym_decorator] = STATE(3205), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(207), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(207), + [sym_cdef_statement] = STATE(207), + [sym_ctypedef_statement] = STATE(207), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(207), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -48495,83 +48542,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [209] = { - [sym__statement] = STATE(203), - [sym__simple_statements] = STATE(203), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(203), - [sym_match_statement] = STATE(203), - [sym_for_statement] = STATE(203), - [sym_while_statement] = STATE(203), - [sym_try_statement] = STATE(203), - [sym_with_statement] = STATE(203), - [sym_function_definition] = STATE(203), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(203), - [sym_decorated_definition] = STATE(203), - [sym_decorator] = STATE(3184), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(203), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(203), - [sym_cdef_statement] = STATE(203), - [sym_ctypedef_statement] = STATE(203), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(203), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [sym__statement] = STATE(207), + [sym__simple_statements] = STATE(207), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(207), + [sym_match_statement] = STATE(207), + [sym_for_statement] = STATE(207), + [sym_while_statement] = STATE(207), + [sym_try_statement] = STATE(207), + [sym_with_statement] = STATE(207), + [sym_function_definition] = STATE(207), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(207), + [sym_decorated_definition] = STATE(207), + [sym_decorator] = STATE(3205), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(207), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(207), + [sym_cdef_statement] = STATE(207), + [sym_ctypedef_statement] = STATE(207), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(207), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -48636,83 +48683,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [210] = { - [sym__statement] = STATE(203), - [sym__simple_statements] = STATE(203), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_if_statement] = STATE(203), - [sym_match_statement] = STATE(203), - [sym_for_statement] = STATE(203), - [sym_while_statement] = STATE(203), - [sym_try_statement] = STATE(203), - [sym_with_statement] = STATE(203), - [sym_function_definition] = STATE(203), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_class_definition] = STATE(203), - [sym_decorated_definition] = STATE(203), - [sym_decorator] = STATE(3184), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_property_definition] = STATE(203), - [sym_include_statement] = STATE(4640), - [sym_def_statement] = STATE(203), - [sym_cdef_statement] = STATE(203), - [sym_ctypedef_statement] = STATE(203), - [sym_storageclass] = STATE(3843), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [aux_sym_module_repeat1] = STATE(203), - [aux_sym_class_definition_repeat1] = STATE(3843), - [aux_sym_decorated_definition_repeat1] = STATE(3184), + [sym__statement] = STATE(207), + [sym__simple_statements] = STATE(207), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_if_statement] = STATE(207), + [sym_match_statement] = STATE(207), + [sym_for_statement] = STATE(207), + [sym_while_statement] = STATE(207), + [sym_try_statement] = STATE(207), + [sym_with_statement] = STATE(207), + [sym_function_definition] = STATE(207), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_class_definition] = STATE(207), + [sym_decorated_definition] = STATE(207), + [sym_decorator] = STATE(3205), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_property_definition] = STATE(207), + [sym_include_statement] = STATE(5109), + [sym_def_statement] = STATE(207), + [sym_cdef_statement] = STATE(207), + [sym_ctypedef_statement] = STATE(207), + [sym_storageclass] = STATE(3828), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [aux_sym_module_repeat1] = STATE(207), + [aux_sym_class_definition_repeat1] = STATE(3828), + [aux_sym_decorated_definition_repeat1] = STATE(3205), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -48777,69 +48824,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [211] = { - [sym__simple_statements] = STATE(2951), - [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(3429), - [sym__named_expression_lhs] = STATE(5564), - [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(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4783), - [sym_int_type] = STATE(3542), - [sym__signedness] = STATE(3130), - [sym__longness] = STATE(3321), - [sym_function_pointer_type] = STATE(3542), - [sym_c_type] = STATE(4782), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(677), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5109), + [sym_int_type] = STATE(3518), + [sym__signedness] = STATE(3140), + [sym__longness] = STATE(3368), + [sym_function_pointer_type] = STATE(3518), + [sym_c_type] = STATE(4688), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(359), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -48898,69 +48945,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [212] = { - [sym__simple_statements] = STATE(1345), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4688), - [sym_int_type] = STATE(3542), - [sym__signedness] = STATE(3130), - [sym__longness] = STATE(3321), - [sym_function_pointer_type] = STATE(3542), - [sym_c_type] = STATE(5071), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(3003), + [sym_import_statement] = STATE(4807), + [sym_future_import_statement] = STATE(4807), + [sym_import_from_statement] = STATE(4807), + [sym_print_statement] = STATE(4807), + [sym_assert_statement] = STATE(4807), + [sym_expression_statement] = STATE(4807), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4807), + [sym_delete_statement] = STATE(4807), + [sym_raise_statement] = STATE(4807), + [sym_pass_statement] = STATE(4807), + [sym_break_statement] = STATE(4807), + [sym_continue_statement] = STATE(4807), + [sym_global_statement] = STATE(4807), + [sym_nonlocal_statement] = STATE(4807), + [sym_exec_statement] = STATE(4807), + [sym_type_alias_statement] = STATE(4807), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4807), + [sym_int_type] = STATE(3518), + [sym__signedness] = STATE(3140), + [sym__longness] = STATE(3368), + [sym_function_pointer_type] = STATE(3518), + [sym_c_type] = STATE(5099), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(359), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -49019,69 +49066,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [213] = { - [sym__simple_statements] = STATE(3033), - [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(3429), - [sym__named_expression_lhs] = STATE(5564), - [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(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4783), - [sym_int_type] = STATE(3542), - [sym__signedness] = STATE(3130), - [sym__longness] = STATE(3321), - [sym_function_pointer_type] = STATE(3542), - [sym_c_type] = STATE(5005), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(2950), + [sym_import_statement] = STATE(4807), + [sym_future_import_statement] = STATE(4807), + [sym_import_from_statement] = STATE(4807), + [sym_print_statement] = STATE(4807), + [sym_assert_statement] = STATE(4807), + [sym_expression_statement] = STATE(4807), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4807), + [sym_delete_statement] = STATE(4807), + [sym_raise_statement] = STATE(4807), + [sym_pass_statement] = STATE(4807), + [sym_break_statement] = STATE(4807), + [sym_continue_statement] = STATE(4807), + [sym_global_statement] = STATE(4807), + [sym_nonlocal_statement] = STATE(4807), + [sym_exec_statement] = STATE(4807), + [sym_type_alias_statement] = STATE(4807), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4807), + [sym_int_type] = STATE(3518), + [sym__signedness] = STATE(3140), + [sym__longness] = STATE(3368), + [sym_function_pointer_type] = STATE(3518), + [sym_c_type] = STATE(4704), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(359), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -49140,69 +49187,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [214] = { - [sym__simple_statements] = STATE(612), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4640), - [sym_int_type] = STATE(3542), - [sym__signedness] = STATE(3130), - [sym__longness] = STATE(3321), - [sym_function_pointer_type] = STATE(3542), - [sym_c_type] = STATE(4672), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1281), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4674), + [sym_int_type] = STATE(3518), + [sym__signedness] = STATE(3140), + [sym__longness] = STATE(3368), + [sym_function_pointer_type] = STATE(3518), + [sym_c_type] = STATE(4900), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(359), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -49261,69 +49308,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [215] = { - [sym__simple_statements] = STATE(620), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4640), - [sym_int_type] = STATE(3542), - [sym__signedness] = STATE(3130), - [sym__longness] = STATE(3321), - [sym_function_pointer_type] = STATE(3542), - [sym_c_type] = STATE(4689), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(3018), + [sym_import_statement] = STATE(4807), + [sym_future_import_statement] = STATE(4807), + [sym_import_from_statement] = STATE(4807), + [sym_print_statement] = STATE(4807), + [sym_assert_statement] = STATE(4807), + [sym_expression_statement] = STATE(4807), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4807), + [sym_delete_statement] = STATE(4807), + [sym_raise_statement] = STATE(4807), + [sym_pass_statement] = STATE(4807), + [sym_break_statement] = STATE(4807), + [sym_continue_statement] = STATE(4807), + [sym_global_statement] = STATE(4807), + [sym_nonlocal_statement] = STATE(4807), + [sym_exec_statement] = STATE(4807), + [sym_type_alias_statement] = STATE(4807), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4807), + [sym_int_type] = STATE(3518), + [sym__signedness] = STATE(3140), + [sym__longness] = STATE(3368), + [sym_function_pointer_type] = STATE(3518), + [sym_c_type] = STATE(4946), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(359), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -49382,69 +49429,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [216] = { - [sym__simple_statements] = STATE(1259), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4688), - [sym_int_type] = STATE(3542), - [sym__signedness] = STATE(3130), - [sym__longness] = STATE(3321), - [sym_function_pointer_type] = STATE(3542), - [sym_c_type] = STATE(5084), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1342), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4674), + [sym_int_type] = STATE(3518), + [sym__signedness] = STATE(3140), + [sym__longness] = STATE(3368), + [sym_function_pointer_type] = STATE(3518), + [sym_c_type] = STATE(5107), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(359), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -49503,69 +49550,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [217] = { - [sym__simple_statements] = STATE(1282), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4688), - [sym_int_type] = STATE(3542), - [sym__signedness] = STATE(3130), - [sym__longness] = STATE(3321), - [sym_function_pointer_type] = STATE(3542), - [sym_c_type] = STATE(4757), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(3028), + [sym_import_statement] = STATE(4807), + [sym_future_import_statement] = STATE(4807), + [sym_import_from_statement] = STATE(4807), + [sym_print_statement] = STATE(4807), + [sym_assert_statement] = STATE(4807), + [sym_expression_statement] = STATE(4807), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4807), + [sym_delete_statement] = STATE(4807), + [sym_raise_statement] = STATE(4807), + [sym_pass_statement] = STATE(4807), + [sym_break_statement] = STATE(4807), + [sym_continue_statement] = STATE(4807), + [sym_global_statement] = STATE(4807), + [sym_nonlocal_statement] = STATE(4807), + [sym_exec_statement] = STATE(4807), + [sym_type_alias_statement] = STATE(4807), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4807), + [sym_int_type] = STATE(3518), + [sym__signedness] = STATE(3140), + [sym__longness] = STATE(3368), + [sym_function_pointer_type] = STATE(3518), + [sym_c_type] = STATE(4984), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(359), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -49624,69 +49671,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [218] = { - [sym__simple_statements] = STATE(2965), - [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(3429), - [sym__named_expression_lhs] = STATE(5564), - [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(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4783), - [sym_int_type] = STATE(3542), - [sym__signedness] = STATE(3130), - [sym__longness] = STATE(3321), - [sym_function_pointer_type] = STATE(3542), - [sym_c_type] = STATE(5099), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1266), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4674), + [sym_int_type] = STATE(3518), + [sym__signedness] = STATE(3140), + [sym__longness] = STATE(3368), + [sym_function_pointer_type] = STATE(3518), + [sym_c_type] = STATE(5033), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(359), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -49745,69 +49792,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [219] = { - [sym__simple_statements] = STATE(579), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4640), - [sym_int_type] = STATE(3542), - [sym__signedness] = STATE(3130), - [sym__longness] = STATE(3321), - [sym_function_pointer_type] = STATE(3542), - [sym_c_type] = STATE(4964), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1299), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4674), + [sym_int_type] = STATE(3518), + [sym__signedness] = STATE(3140), + [sym__longness] = STATE(3368), + [sym_function_pointer_type] = STATE(3518), + [sym_c_type] = STATE(4733), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(359), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -49866,69 +49913,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [220] = { - [sym__simple_statements] = STATE(1179), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4688), - [sym_int_type] = STATE(3542), - [sym__signedness] = STATE(3130), - [sym__longness] = STATE(3321), - [sym_function_pointer_type] = STATE(3542), - [sym_c_type] = STATE(4642), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(650), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5109), + [sym_int_type] = STATE(3518), + [sym__signedness] = STATE(3140), + [sym__longness] = STATE(3368), + [sym_function_pointer_type] = STATE(3518), + [sym_c_type] = STATE(4898), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(359), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -49987,69 +50034,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [221] = { - [sym__simple_statements] = STATE(2972), - [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(3429), - [sym__named_expression_lhs] = STATE(5564), - [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(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4783), - [sym_int_type] = STATE(3542), - [sym__signedness] = STATE(3130), - [sym__longness] = STATE(3321), - [sym_function_pointer_type] = STATE(3542), - [sym_c_type] = STATE(4908), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(659), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5109), + [sym_int_type] = STATE(3518), + [sym__signedness] = STATE(3140), + [sym__longness] = STATE(3368), + [sym_function_pointer_type] = STATE(3518), + [sym_c_type] = STATE(5105), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(359), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -50108,69 +50155,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [222] = { - [sym__simple_statements] = STATE(603), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4640), - [sym_int_type] = STATE(3542), - [sym__signedness] = STATE(3130), - [sym__longness] = STATE(3321), - [sym_function_pointer_type] = STATE(3542), - [sym_c_type] = STATE(4648), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(2996), + [sym_import_statement] = STATE(4807), + [sym_future_import_statement] = STATE(4807), + [sym_import_from_statement] = STATE(4807), + [sym_print_statement] = STATE(4807), + [sym_assert_statement] = STATE(4807), + [sym_expression_statement] = STATE(4807), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4807), + [sym_delete_statement] = STATE(4807), + [sym_raise_statement] = STATE(4807), + [sym_pass_statement] = STATE(4807), + [sym_break_statement] = STATE(4807), + [sym_continue_statement] = STATE(4807), + [sym_global_statement] = STATE(4807), + [sym_nonlocal_statement] = STATE(4807), + [sym_exec_statement] = STATE(4807), + [sym_type_alias_statement] = STATE(4807), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4807), + [sym_int_type] = STATE(3518), + [sym__signedness] = STATE(3140), + [sym__longness] = STATE(3368), + [sym_function_pointer_type] = STATE(3518), + [sym_c_type] = STATE(4886), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(359), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -50229,69 +50276,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [223] = { - [sym__simple_statements] = STATE(2968), - [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(3429), - [sym__named_expression_lhs] = STATE(5564), - [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(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4783), - [sym_int_type] = STATE(3542), - [sym__signedness] = STATE(3130), - [sym__longness] = STATE(3321), - [sym_function_pointer_type] = STATE(3542), - [sym_c_type] = STATE(5058), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(669), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5109), + [sym_int_type] = STATE(3518), + [sym__signedness] = STATE(3140), + [sym__longness] = STATE(3368), + [sym_function_pointer_type] = STATE(3518), + [sym_c_type] = STATE(4660), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(359), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -50350,69 +50397,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [224] = { - [sym__simple_statements] = STATE(2928), - [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(3429), - [sym__named_expression_lhs] = STATE(5564), - [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(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4783), - [sym_int_type] = STATE(3542), - [sym__signedness] = STATE(3130), - [sym__longness] = STATE(3321), - [sym_function_pointer_type] = STATE(3542), - [sym_c_type] = STATE(5128), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(687), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5109), + [sym_int_type] = STATE(3518), + [sym__signedness] = STATE(3140), + [sym__longness] = STATE(3368), + [sym_function_pointer_type] = STATE(3518), + [sym_c_type] = STATE(4723), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(359), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -50471,69 +50518,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [225] = { - [sym__simple_statements] = STATE(1321), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4688), - [sym_int_type] = STATE(3542), - [sym__signedness] = STATE(3130), - [sym__longness] = STATE(3321), - [sym_function_pointer_type] = STATE(3542), - [sym_c_type] = STATE(4965), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(682), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5109), + [sym_int_type] = STATE(3518), + [sym__signedness] = STATE(3140), + [sym__longness] = STATE(3368), + [sym_function_pointer_type] = STATE(3518), + [sym_c_type] = STATE(4710), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(359), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -50592,69 +50639,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [226] = { - [sym__simple_statements] = STATE(627), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4640), - [sym_int_type] = STATE(3542), - [sym__signedness] = STATE(3130), - [sym__longness] = STATE(3321), - [sym_function_pointer_type] = STATE(3542), - [sym_c_type] = STATE(4705), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1332), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4674), + [sym_int_type] = STATE(3518), + [sym__signedness] = STATE(3140), + [sym__longness] = STATE(3368), + [sym_function_pointer_type] = STATE(3518), + [sym_c_type] = STATE(4689), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(359), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -50713,69 +50760,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [227] = { - [sym__simple_statements] = STATE(1158), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4688), - [sym_int_type] = STATE(3542), - [sym__signedness] = STATE(3130), - [sym__longness] = STATE(3321), - [sym_function_pointer_type] = STATE(3542), - [sym_c_type] = STATE(4985), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(2979), + [sym_import_statement] = STATE(4807), + [sym_future_import_statement] = STATE(4807), + [sym_import_from_statement] = STATE(4807), + [sym_print_statement] = STATE(4807), + [sym_assert_statement] = STATE(4807), + [sym_expression_statement] = STATE(4807), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4807), + [sym_delete_statement] = STATE(4807), + [sym_raise_statement] = STATE(4807), + [sym_pass_statement] = STATE(4807), + [sym_break_statement] = STATE(4807), + [sym_continue_statement] = STATE(4807), + [sym_global_statement] = STATE(4807), + [sym_nonlocal_statement] = STATE(4807), + [sym_exec_statement] = STATE(4807), + [sym_type_alias_statement] = STATE(4807), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4807), + [sym_int_type] = STATE(3518), + [sym__signedness] = STATE(3140), + [sym__longness] = STATE(3368), + [sym_function_pointer_type] = STATE(3518), + [sym_c_type] = STATE(4813), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(359), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -50834,69 +50881,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [228] = { - [sym__simple_statements] = STATE(591), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4640), - [sym_int_type] = STATE(3542), - [sym__signedness] = STATE(3130), - [sym__longness] = STATE(3321), - [sym_function_pointer_type] = STATE(3542), - [sym_c_type] = STATE(5089), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1171), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4674), + [sym_int_type] = STATE(3518), + [sym__signedness] = STATE(3140), + [sym__longness] = STATE(3368), + [sym_function_pointer_type] = STATE(3518), + [sym_c_type] = STATE(4961), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(359), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -50955,70 +51002,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [229] = { - [sym__simple_statements] = STATE(1529), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1876), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3677), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1879), - [sym_subscript] = STATE(1879), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_type] = STATE(5092), - [sym_splat_type] = STATE(4593), - [sym_generic_type] = STATE(4593), - [sym_union_type] = STATE(4593), - [sym_constrained_type] = STATE(4593), - [sym_member_type] = STATE(4593), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4688), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1631), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1902), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3641), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1903), + [sym_subscript] = STATE(1903), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_type] = STATE(5120), + [sym_splat_type] = STATE(4597), + [sym_generic_type] = STATE(4597), + [sym_union_type] = STATE(4597), + [sym_constrained_type] = STATE(4597), + [sym_member_type] = STATE(4597), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5109), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(447), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -51068,70 +51115,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [230] = { - [sym__simple_statements] = STATE(1452), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1876), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3677), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1879), - [sym_subscript] = STATE(1879), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_type] = STATE(5092), - [sym_splat_type] = STATE(4593), - [sym_generic_type] = STATE(4593), - [sym_union_type] = STATE(4593), - [sym_constrained_type] = STATE(4593), - [sym_member_type] = STATE(4593), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4688), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1627), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1902), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3641), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1903), + [sym_subscript] = STATE(1903), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_type] = STATE(5120), + [sym_splat_type] = STATE(4597), + [sym_generic_type] = STATE(4597), + [sym_union_type] = STATE(4597), + [sym_constrained_type] = STATE(4597), + [sym_member_type] = STATE(4597), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4674), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(447), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -51181,70 +51228,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [231] = { - [sym__simple_statements] = STATE(1398), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1876), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3677), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1879), - [sym_subscript] = STATE(1879), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_type] = STATE(5092), - [sym_splat_type] = STATE(4593), - [sym_generic_type] = STATE(4593), - [sym_union_type] = STATE(4593), - [sym_constrained_type] = STATE(4593), - [sym_member_type] = STATE(4593), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4640), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1835), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1902), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3641), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1903), + [sym_subscript] = STATE(1903), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_type] = STATE(5120), + [sym_splat_type] = STATE(4597), + [sym_generic_type] = STATE(4597), + [sym_union_type] = STATE(4597), + [sym_constrained_type] = STATE(4597), + [sym_member_type] = STATE(4597), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4674), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(447), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -51294,70 +51341,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [232] = { - [sym__simple_statements] = STATE(1384), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1876), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3677), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1879), - [sym_subscript] = STATE(1879), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_type] = STATE(5092), - [sym_splat_type] = STATE(4593), - [sym_generic_type] = STATE(4593), - [sym_union_type] = STATE(4593), - [sym_constrained_type] = STATE(4593), - [sym_member_type] = STATE(4593), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4640), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1531), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1902), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3641), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1903), + [sym_subscript] = STATE(1903), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_type] = STATE(5120), + [sym_splat_type] = STATE(4597), + [sym_generic_type] = STATE(4597), + [sym_union_type] = STATE(4597), + [sym_constrained_type] = STATE(4597), + [sym_member_type] = STATE(4597), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5109), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(447), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -51407,70 +51454,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [233] = { - [sym__simple_statements] = STATE(1410), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1876), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3677), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1879), - [sym_subscript] = STATE(1879), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_type] = STATE(5092), - [sym_splat_type] = STATE(4593), - [sym_generic_type] = STATE(4593), - [sym_union_type] = STATE(4593), - [sym_constrained_type] = STATE(4593), - [sym_member_type] = STATE(4593), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4688), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1550), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1902), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3641), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1903), + [sym_subscript] = STATE(1903), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_type] = STATE(5120), + [sym_splat_type] = STATE(4597), + [sym_generic_type] = STATE(4597), + [sym_union_type] = STATE(4597), + [sym_constrained_type] = STATE(4597), + [sym_member_type] = STATE(4597), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5109), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(447), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -51520,70 +51567,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [234] = { - [sym__simple_statements] = STATE(1779), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1876), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3677), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1879), - [sym_subscript] = STATE(1879), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_type] = STATE(5092), - [sym_splat_type] = STATE(4593), - [sym_generic_type] = STATE(4593), - [sym_union_type] = STATE(4593), - [sym_constrained_type] = STATE(4593), - [sym_member_type] = STATE(4593), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4640), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1514), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1902), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3641), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1903), + [sym_subscript] = STATE(1903), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_type] = STATE(5120), + [sym_splat_type] = STATE(4597), + [sym_generic_type] = STATE(4597), + [sym_union_type] = STATE(4597), + [sym_constrained_type] = STATE(4597), + [sym_member_type] = STATE(4597), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4674), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(447), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -51633,70 +51680,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [235] = { - [sym__simple_statements] = STATE(1448), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1876), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3677), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1879), - [sym_subscript] = STATE(1879), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_type] = STATE(5092), - [sym_splat_type] = STATE(4593), - [sym_generic_type] = STATE(4593), - [sym_union_type] = STATE(4593), - [sym_constrained_type] = STATE(4593), - [sym_member_type] = STATE(4593), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4688), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1610), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1902), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3641), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1903), + [sym_subscript] = STATE(1903), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_type] = STATE(5120), + [sym_splat_type] = STATE(4597), + [sym_generic_type] = STATE(4597), + [sym_union_type] = STATE(4597), + [sym_constrained_type] = STATE(4597), + [sym_member_type] = STATE(4597), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5109), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(447), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -51746,70 +51793,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [236] = { - [sym__simple_statements] = STATE(1379), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1876), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3677), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1879), - [sym_subscript] = STATE(1879), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_type] = STATE(5092), - [sym_splat_type] = STATE(4593), - [sym_generic_type] = STATE(4593), - [sym_union_type] = STATE(4593), - [sym_constrained_type] = STATE(4593), - [sym_member_type] = STATE(4593), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4640), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1716), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1902), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3641), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1903), + [sym_subscript] = STATE(1903), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_type] = STATE(5120), + [sym_splat_type] = STATE(4597), + [sym_generic_type] = STATE(4597), + [sym_union_type] = STATE(4597), + [sym_constrained_type] = STATE(4597), + [sym_member_type] = STATE(4597), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4674), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(447), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -51859,64 +51906,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [237] = { - [sym__simple_statements] = STATE(1158), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4688), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(3011), + [sym_import_statement] = STATE(4807), + [sym_future_import_statement] = STATE(4807), + [sym_import_from_statement] = STATE(4807), + [sym_print_statement] = STATE(4807), + [sym_assert_statement] = STATE(4807), + [sym_expression_statement] = STATE(4807), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4807), + [sym_delete_statement] = STATE(4807), + [sym_raise_statement] = STATE(4807), + [sym_pass_statement] = STATE(4807), + [sym_break_statement] = STATE(4807), + [sym_continue_statement] = STATE(4807), + [sym_global_statement] = STATE(4807), + [sym_nonlocal_statement] = STATE(4807), + [sym_exec_statement] = STATE(4807), + [sym_type_alias_statement] = STATE(4807), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4807), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -51960,69 +52007,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(439), - [sym__indent] = ACTIONS(441), + [sym__newline] = ACTIONS(497), + [sym__indent] = ACTIONS(499), [sym_string_start] = ACTIONS(107), }, [238] = { - [sym__simple_statements] = STATE(3880), - [sym_import_statement] = STATE(4807), - [sym_future_import_statement] = STATE(4807), - [sym_import_from_statement] = STATE(4807), - [sym_print_statement] = STATE(4807), - [sym_assert_statement] = STATE(4807), - [sym_expression_statement] = STATE(4807), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4807), - [sym_delete_statement] = STATE(4807), - [sym_raise_statement] = STATE(4807), - [sym_pass_statement] = STATE(4807), - [sym_break_statement] = STATE(4807), - [sym_continue_statement] = STATE(4807), - [sym_global_statement] = STATE(4807), - [sym_nonlocal_statement] = STATE(4807), - [sym_exec_statement] = STATE(4807), - [sym_type_alias_statement] = STATE(4807), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4807), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(528), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5109), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -52066,69 +52113,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(497), - [sym__indent] = ACTIONS(499), + [sym__newline] = ACTIONS(501), + [sym__indent] = ACTIONS(503), [sym_string_start] = ACTIONS(107), }, [239] = { - [sym__simple_statements] = STATE(908), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4640), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1311), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4674), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -52172,69 +52219,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(501), - [sym__indent] = ACTIONS(503), + [sym__newline] = ACTIONS(505), + [sym__indent] = ACTIONS(507), [sym_string_start] = ACTIONS(107), }, [240] = { - [sym__simple_statements] = STATE(1056), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4640), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1320), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4674), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -52278,69 +52325,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(505), - [sym__indent] = ACTIONS(507), + [sym__newline] = ACTIONS(509), + [sym__indent] = ACTIONS(511), [sym_string_start] = ACTIONS(107), }, [241] = { - [sym__simple_statements] = STATE(1057), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4640), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(532), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5109), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -52384,69 +52431,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(509), - [sym__indent] = ACTIONS(511), + [sym__newline] = ACTIONS(513), + [sym__indent] = ACTIONS(515), [sym_string_start] = ACTIONS(107), }, [242] = { - [sym__simple_statements] = STATE(1648), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4640), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1127), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4674), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -52490,69 +52537,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(513), - [sym__indent] = ACTIONS(515), + [sym__newline] = ACTIONS(517), + [sym__indent] = ACTIONS(519), [sym_string_start] = ACTIONS(107), }, [243] = { - [sym__simple_statements] = STATE(630), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4640), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1332), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4674), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -52596,69 +52643,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(517), - [sym__indent] = ACTIONS(519), + [sym__newline] = ACTIONS(435), + [sym__indent] = ACTIONS(437), [sym_string_start] = ACTIONS(107), }, [244] = { - [sym__simple_statements] = STATE(1651), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4640), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(2979), + [sym_import_statement] = STATE(4807), + [sym_future_import_statement] = STATE(4807), + [sym_import_from_statement] = STATE(4807), + [sym_print_statement] = STATE(4807), + [sym_assert_statement] = STATE(4807), + [sym_expression_statement] = STATE(4807), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4807), + [sym_delete_statement] = STATE(4807), + [sym_raise_statement] = STATE(4807), + [sym_pass_statement] = STATE(4807), + [sym_break_statement] = STATE(4807), + [sym_continue_statement] = STATE(4807), + [sym_global_statement] = STATE(4807), + [sym_nonlocal_statement] = STATE(4807), + [sym_exec_statement] = STATE(4807), + [sym_type_alias_statement] = STATE(4807), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4807), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [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(439), + [sym__indent] = ACTIONS(441), + [sym_string_start] = ACTIONS(107), + }, + [245] = { + [sym__simple_statements] = STATE(1134), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5109), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -52706,65 +52859,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(523), [sym_string_start] = ACTIONS(107), }, - [245] = { - [sym__simple_statements] = STATE(3012), - [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(3429), - [sym__named_expression_lhs] = STATE(5564), - [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(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4783), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [246] = { + [sym__simple_statements] = STATE(2895), + [sym_import_statement] = STATE(4807), + [sym_future_import_statement] = STATE(4807), + [sym_import_from_statement] = STATE(4807), + [sym_print_statement] = STATE(4807), + [sym_assert_statement] = STATE(4807), + [sym_expression_statement] = STATE(4807), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4807), + [sym_delete_statement] = STATE(4807), + [sym_raise_statement] = STATE(4807), + [sym_pass_statement] = STATE(4807), + [sym_break_statement] = STATE(4807), + [sym_continue_statement] = STATE(4807), + [sym_global_statement] = STATE(4807), + [sym_nonlocal_statement] = STATE(4807), + [sym_exec_statement] = STATE(4807), + [sym_type_alias_statement] = STATE(4807), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4807), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -52812,65 +52965,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(527), [sym_string_start] = ACTIONS(107), }, - [246] = { - [sym__simple_statements] = STATE(1094), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4640), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [247] = { + [sym__simple_statements] = STATE(995), + [sym_import_statement] = STATE(4875), + [sym_future_import_statement] = STATE(4875), + [sym_import_from_statement] = STATE(4875), + [sym_print_statement] = STATE(4875), + [sym_assert_statement] = STATE(4875), + [sym_expression_statement] = STATE(4875), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4875), + [sym_delete_statement] = STATE(4875), + [sym_raise_statement] = STATE(4875), + [sym_pass_statement] = STATE(4875), + [sym_break_statement] = STATE(4875), + [sym_continue_statement] = STATE(4875), + [sym_global_statement] = STATE(4875), + [sym_nonlocal_statement] = STATE(4875), + [sym_exec_statement] = STATE(4875), + [sym_type_alias_statement] = STATE(4875), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4875), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -52918,65 +53071,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(531), [sym_string_start] = ACTIONS(107), }, - [247] = { - [sym__simple_statements] = STATE(1673), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4640), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [248] = { + [sym__simple_statements] = STATE(1129), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4674), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -53024,65 +53177,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(535), [sym_string_start] = ACTIONS(107), }, - [248] = { - [sym__simple_statements] = STATE(1112), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4688), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [249] = { + [sym__simple_statements] = STATE(1611), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4674), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -53130,65 +53283,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(539), [sym_string_start] = ACTIONS(107), }, - [249] = { - [sym__simple_statements] = STATE(1357), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4688), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [250] = { + [sym__simple_statements] = STATE(1339), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4674), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -53236,65 +53389,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(543), [sym_string_start] = ACTIONS(107), }, - [250] = { - [sym__simple_statements] = STATE(1206), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4688), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [251] = { + [sym__simple_statements] = STATE(550), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5109), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -53342,65 +53495,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(547), [sym_string_start] = ACTIONS(107), }, - [251] = { - [sym__simple_statements] = STATE(1071), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4688), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [252] = { + [sym__simple_statements] = STATE(551), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5109), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -53448,65 +53601,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(551), [sym_string_start] = ACTIONS(107), }, - [252] = { - [sym__simple_statements] = STATE(1686), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4640), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [253] = { + [sym__simple_statements] = STATE(1073), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5109), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -53554,65 +53707,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(555), [sym_string_start] = ACTIONS(107), }, - [253] = { - [sym__simple_statements] = STATE(1124), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4688), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [254] = { + [sym__simple_statements] = STATE(1269), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4674), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -53660,65 +53813,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(559), [sym_string_start] = ACTIONS(107), }, - [254] = { - [sym__simple_statements] = STATE(641), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4640), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [255] = { + [sym__simple_statements] = STATE(1125), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4674), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -53766,65 +53919,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(563), [sym_string_start] = ACTIONS(107), }, - [255] = { - [sym__simple_statements] = STATE(642), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4640), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [256] = { + [sym__simple_statements] = STATE(1501), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5109), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -53872,65 +54025,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(567), [sym_string_start] = ACTIONS(107), }, - [256] = { - [sym__simple_statements] = STATE(643), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4640), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [257] = { + [sym__simple_statements] = STATE(984), + [sym_import_statement] = STATE(4747), + [sym_future_import_statement] = STATE(4747), + [sym_import_from_statement] = STATE(4747), + [sym_print_statement] = STATE(4747), + [sym_assert_statement] = STATE(4747), + [sym_expression_statement] = STATE(4747), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4747), + [sym_delete_statement] = STATE(4747), + [sym_raise_statement] = STATE(4747), + [sym_pass_statement] = STATE(4747), + [sym_break_statement] = STATE(4747), + [sym_continue_statement] = STATE(4747), + [sym_global_statement] = STATE(4747), + [sym_nonlocal_statement] = STATE(4747), + [sym_exec_statement] = STATE(4747), + [sym_type_alias_statement] = STATE(4747), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4747), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -53978,65 +54131,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(571), [sym_string_start] = ACTIONS(107), }, - [257] = { - [sym__simple_statements] = STATE(5373), - [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(3429), - [sym__named_expression_lhs] = STATE(5564), - [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(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4783), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [258] = { + [sym__simple_statements] = STATE(1370), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4674), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -54084,171 +54237,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(575), [sym_string_start] = ACTIONS(107), }, - [258] = { - [sym_chevron] = STATE(4570), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_list_splat_pattern] = STATE(2088), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3947), - [sym_primary_expression] = STATE(2024), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_attribute] = STATE(2123), - [sym_subscript] = STATE(2123), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [sym_identifier] = ACTIONS(577), - [anon_sym_SEMI] = ACTIONS(579), - [anon_sym_DOT] = ACTIONS(581), - [anon_sym_LPAREN] = ACTIONS(583), - [anon_sym_COMMA] = ACTIONS(586), - [anon_sym_as] = ACTIONS(581), - [anon_sym_STAR] = ACTIONS(589), - [anon_sym_print] = ACTIONS(592), - [anon_sym_GT_GT] = ACTIONS(594), - [anon_sym_COLON_EQ] = ACTIONS(596), - [anon_sym_if] = ACTIONS(581), - [anon_sym_COLON] = ACTIONS(598), - [anon_sym_match] = ACTIONS(592), - [anon_sym_async] = ACTIONS(592), - [anon_sym_in] = ACTIONS(581), - [anon_sym_STAR_STAR] = ACTIONS(581), - [anon_sym_exec] = ACTIONS(592), - [anon_sym_EQ] = ACTIONS(598), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_AT] = ACTIONS(581), - [anon_sym_DASH] = ACTIONS(603), - [anon_sym_PIPE] = ACTIONS(581), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(603), - [anon_sym_not] = ACTIONS(606), - [anon_sym_and] = ACTIONS(581), - [anon_sym_or] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(581), - [anon_sym_PERCENT] = ACTIONS(581), - [anon_sym_SLASH_SLASH] = ACTIONS(581), - [anon_sym_AMP] = ACTIONS(603), - [anon_sym_CARET] = ACTIONS(581), - [anon_sym_LT_LT] = ACTIONS(581), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_is] = ACTIONS(581), - [anon_sym_LT] = ACTIONS(609), - [anon_sym_LT_EQ] = ACTIONS(579), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_GT_EQ] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_GT] = ACTIONS(579), - [anon_sym_lambda] = ACTIONS(73), - [anon_sym_PLUS_EQ] = ACTIONS(612), - [anon_sym_DASH_EQ] = ACTIONS(612), - [anon_sym_STAR_EQ] = ACTIONS(612), - [anon_sym_SLASH_EQ] = ACTIONS(612), - [anon_sym_AT_EQ] = ACTIONS(612), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(612), - [anon_sym_PERCENT_EQ] = ACTIONS(612), - [anon_sym_STAR_STAR_EQ] = ACTIONS(612), - [anon_sym_GT_GT_EQ] = ACTIONS(612), - [anon_sym_LT_LT_EQ] = ACTIONS(612), - [anon_sym_AMP_EQ] = ACTIONS(612), - [anon_sym_CARET_EQ] = ACTIONS(612), - [anon_sym_PIPE_EQ] = ACTIONS(612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(77), - [anon_sym_None] = ACTIONS(79), - [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(83), - [anon_sym_await] = ACTIONS(614), - [anon_sym_api] = ACTIONS(592), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(579), - [sym_string_start] = ACTIONS(107), - }, [259] = { - [sym__simple_statements] = STATE(2951), - [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(3429), - [sym__named_expression_lhs] = STATE(5564), - [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(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4783), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1622), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4674), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -54292,69 +54339,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(375), - [sym__indent] = ACTIONS(377), + [sym__newline] = ACTIONS(577), + [sym__indent] = ACTIONS(579), [sym_string_start] = ACTIONS(107), }, [260] = { - [sym__simple_statements] = STATE(2857), - [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(3429), - [sym__named_expression_lhs] = STATE(5564), - [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(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4783), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1099), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4674), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -54398,69 +54445,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(616), - [sym__indent] = ACTIONS(618), + [sym__newline] = ACTIONS(581), + [sym__indent] = ACTIONS(583), [sym_string_start] = ACTIONS(107), }, [261] = { - [sym__simple_statements] = STATE(648), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4640), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1505), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5109), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -54504,69 +54551,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(620), - [sym__indent] = ACTIONS(622), + [sym__newline] = ACTIONS(585), + [sym__indent] = ACTIONS(587), [sym_string_start] = ACTIONS(107), }, [262] = { - [sym__simple_statements] = STATE(1177), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4688), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(5267), + [sym_import_statement] = STATE(4807), + [sym_future_import_statement] = STATE(4807), + [sym_import_from_statement] = STATE(4807), + [sym_print_statement] = STATE(4807), + [sym_assert_statement] = STATE(4807), + [sym_expression_statement] = STATE(4807), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4807), + [sym_delete_statement] = STATE(4807), + [sym_raise_statement] = STATE(4807), + [sym_pass_statement] = STATE(4807), + [sym_break_statement] = STATE(4807), + [sym_continue_statement] = STATE(4807), + [sym_global_statement] = STATE(4807), + [sym_nonlocal_statement] = STATE(4807), + [sym_exec_statement] = STATE(4807), + [sym_type_alias_statement] = STATE(4807), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4807), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -54610,69 +54657,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(624), - [sym__indent] = ACTIONS(626), + [sym__newline] = ACTIONS(589), + [sym__indent] = ACTIONS(591), [sym_string_start] = ACTIONS(107), }, [263] = { - [sym__simple_statements] = STATE(1702), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4640), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(553), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5109), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -54716,69 +54763,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(628), - [sym__indent] = ACTIONS(630), + [sym__newline] = ACTIONS(593), + [sym__indent] = ACTIONS(595), [sym_string_start] = ACTIONS(107), }, [264] = { - [sym__simple_statements] = STATE(1059), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4640), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(554), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5109), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -54822,69 +54869,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(632), - [sym__indent] = ACTIONS(634), + [sym__newline] = ACTIONS(597), + [sym__indent] = ACTIONS(599), [sym_string_start] = ACTIONS(107), }, [265] = { - [sym__simple_statements] = STATE(1014), - [sym_import_statement] = STATE(4845), - [sym_future_import_statement] = STATE(4845), - [sym_import_from_statement] = STATE(4845), - [sym_print_statement] = STATE(4845), - [sym_assert_statement] = STATE(4845), - [sym_expression_statement] = STATE(4845), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4845), - [sym_delete_statement] = STATE(4845), - [sym_raise_statement] = STATE(4845), - [sym_pass_statement] = STATE(4845), - [sym_break_statement] = STATE(4845), - [sym_continue_statement] = STATE(4845), - [sym_global_statement] = STATE(4845), - [sym_nonlocal_statement] = STATE(4845), - [sym_exec_statement] = STATE(4845), - [sym_type_alias_statement] = STATE(4845), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4845), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(555), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5109), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -54928,69 +54975,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(636), - [sym__indent] = ACTIONS(638), + [sym__newline] = ACTIONS(601), + [sym__indent] = ACTIONS(603), [sym_string_start] = ACTIONS(107), }, [266] = { - [sym__simple_statements] = STATE(1705), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4640), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1632), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4674), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -55034,69 +55081,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(640), - [sym__indent] = ACTIONS(642), + [sym__newline] = ACTIONS(605), + [sym__indent] = ACTIONS(607), [sym_string_start] = ACTIONS(107), }, [267] = { - [sym__simple_statements] = STATE(1709), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4640), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(2996), + [sym_import_statement] = STATE(4807), + [sym_future_import_statement] = STATE(4807), + [sym_import_from_statement] = STATE(4807), + [sym_print_statement] = STATE(4807), + [sym_assert_statement] = STATE(4807), + [sym_expression_statement] = STATE(4807), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4807), + [sym_delete_statement] = STATE(4807), + [sym_raise_statement] = STATE(4807), + [sym_pass_statement] = STATE(4807), + [sym_break_statement] = STATE(4807), + [sym_continue_statement] = STATE(4807), + [sym_global_statement] = STATE(4807), + [sym_nonlocal_statement] = STATE(4807), + [sym_exec_statement] = STATE(4807), + [sym_type_alias_statement] = STATE(4807), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4807), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -55140,69 +55187,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(644), - [sym__indent] = ACTIONS(646), + [sym__newline] = ACTIONS(419), + [sym__indent] = ACTIONS(421), [sym_string_start] = ACTIONS(107), }, [268] = { - [sym__simple_statements] = STATE(1209), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4688), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(3003), + [sym_import_statement] = STATE(4807), + [sym_future_import_statement] = STATE(4807), + [sym_import_from_statement] = STATE(4807), + [sym_print_statement] = STATE(4807), + [sym_assert_statement] = STATE(4807), + [sym_expression_statement] = STATE(4807), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4807), + [sym_delete_statement] = STATE(4807), + [sym_raise_statement] = STATE(4807), + [sym_pass_statement] = STATE(4807), + [sym_break_statement] = STATE(4807), + [sym_continue_statement] = STATE(4807), + [sym_global_statement] = STATE(4807), + [sym_nonlocal_statement] = STATE(4807), + [sym_exec_statement] = STATE(4807), + [sym_type_alias_statement] = STATE(4807), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4807), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -55246,69 +55293,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(648), - [sym__indent] = ACTIONS(650), + [sym__newline] = ACTIONS(379), + [sym__indent] = ACTIONS(381), [sym_string_start] = ACTIONS(107), }, [269] = { - [sym__simple_statements] = STATE(656), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4640), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(5279), + [sym_import_statement] = STATE(4807), + [sym_future_import_statement] = STATE(4807), + [sym_import_from_statement] = STATE(4807), + [sym_print_statement] = STATE(4807), + [sym_assert_statement] = STATE(4807), + [sym_expression_statement] = STATE(4807), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4807), + [sym_delete_statement] = STATE(4807), + [sym_raise_statement] = STATE(4807), + [sym_pass_statement] = STATE(4807), + [sym_break_statement] = STATE(4807), + [sym_continue_statement] = STATE(4807), + [sym_global_statement] = STATE(4807), + [sym_nonlocal_statement] = STATE(4807), + [sym_exec_statement] = STATE(4807), + [sym_type_alias_statement] = STATE(4807), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4807), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -55352,69 +55399,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(652), - [sym__indent] = ACTIONS(654), + [sym__newline] = ACTIONS(609), + [sym__indent] = ACTIONS(611), [sym_string_start] = ACTIONS(107), }, [270] = { - [sym__simple_statements] = STATE(1403), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4688), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1541), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4674), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -55458,69 +55505,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(656), - [sym__indent] = ACTIONS(658), + [sym__newline] = ACTIONS(613), + [sym__indent] = ACTIONS(615), [sym_string_start] = ACTIONS(107), }, [271] = { - [sym__simple_statements] = STATE(659), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4640), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(2902), + [sym_import_statement] = STATE(4807), + [sym_future_import_statement] = STATE(4807), + [sym_import_from_statement] = STATE(4807), + [sym_print_statement] = STATE(4807), + [sym_assert_statement] = STATE(4807), + [sym_expression_statement] = STATE(4807), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4807), + [sym_delete_statement] = STATE(4807), + [sym_raise_statement] = STATE(4807), + [sym_pass_statement] = STATE(4807), + [sym_break_statement] = STATE(4807), + [sym_continue_statement] = STATE(4807), + [sym_global_statement] = STATE(4807), + [sym_nonlocal_statement] = STATE(4807), + [sym_exec_statement] = STATE(4807), + [sym_type_alias_statement] = STATE(4807), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4807), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -55564,69 +55611,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(660), - [sym__indent] = ACTIONS(662), + [sym__newline] = ACTIONS(617), + [sym__indent] = ACTIONS(619), [sym_string_start] = ACTIONS(107), }, [272] = { - [sym__simple_statements] = STATE(660), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4640), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(571), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5109), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -55670,69 +55717,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(664), - [sym__indent] = ACTIONS(666), + [sym__newline] = ACTIONS(621), + [sym__indent] = ACTIONS(623), [sym_string_start] = ACTIONS(107), }, [273] = { - [sym__simple_statements] = STATE(1191), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4688), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(513), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5109), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -55776,69 +55823,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(668), - [sym__indent] = ACTIONS(670), + [sym__newline] = ACTIONS(625), + [sym__indent] = ACTIONS(627), [sym_string_start] = ACTIONS(107), }, [274] = { - [sym__simple_statements] = STATE(1198), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4688), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1053), + [sym_import_statement] = STATE(4747), + [sym_future_import_statement] = STATE(4747), + [sym_import_from_statement] = STATE(4747), + [sym_print_statement] = STATE(4747), + [sym_assert_statement] = STATE(4747), + [sym_expression_statement] = STATE(4747), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4747), + [sym_delete_statement] = STATE(4747), + [sym_raise_statement] = STATE(4747), + [sym_pass_statement] = STATE(4747), + [sym_break_statement] = STATE(4747), + [sym_continue_statement] = STATE(4747), + [sym_global_statement] = STATE(4747), + [sym_nonlocal_statement] = STATE(4747), + [sym_exec_statement] = STATE(4747), + [sym_type_alias_statement] = STATE(4747), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4747), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -55882,69 +55929,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(672), - [sym__indent] = ACTIONS(674), + [sym__newline] = ACTIONS(629), + [sym__indent] = ACTIONS(631), [sym_string_start] = ACTIONS(107), }, [275] = { - [sym__simple_statements] = STATE(2869), - [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(3429), - [sym__named_expression_lhs] = STATE(5564), - [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(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4783), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(575), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5109), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -55988,69 +56035,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(676), - [sym__indent] = ACTIONS(678), + [sym__newline] = ACTIONS(633), + [sym__indent] = ACTIONS(635), [sym_string_start] = ACTIONS(107), }, [276] = { - [sym__simple_statements] = STATE(1257), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4688), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1336), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4674), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -56094,69 +56141,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(680), - [sym__indent] = ACTIONS(682), + [sym__newline] = ACTIONS(637), + [sym__indent] = ACTIONS(639), [sym_string_start] = ACTIONS(107), }, [277] = { - [sym__simple_statements] = STATE(2972), - [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(3429), - [sym__named_expression_lhs] = STATE(5564), - [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(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4783), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1326), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4674), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -56200,69 +56247,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(415), - [sym__indent] = ACTIONS(417), + [sym__newline] = ACTIONS(641), + [sym__indent] = ACTIONS(643), [sym_string_start] = ACTIONS(107), }, [278] = { - [sym__simple_statements] = STATE(1162), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4688), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1287), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4674), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -56306,69 +56353,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(684), - [sym__indent] = ACTIONS(686), + [sym__newline] = ACTIONS(645), + [sym__indent] = ACTIONS(647), [sym_string_start] = ACTIONS(107), }, [279] = { - [sym__simple_statements] = STATE(673), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4640), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(5244), + [sym_import_statement] = STATE(4807), + [sym_future_import_statement] = STATE(4807), + [sym_import_from_statement] = STATE(4807), + [sym_print_statement] = STATE(4807), + [sym_assert_statement] = STATE(4807), + [sym_expression_statement] = STATE(4807), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4807), + [sym_delete_statement] = STATE(4807), + [sym_raise_statement] = STATE(4807), + [sym_pass_statement] = STATE(4807), + [sym_break_statement] = STATE(4807), + [sym_continue_statement] = STATE(4807), + [sym_global_statement] = STATE(4807), + [sym_nonlocal_statement] = STATE(4807), + [sym_exec_statement] = STATE(4807), + [sym_type_alias_statement] = STATE(4807), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4807), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -56412,69 +56459,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(688), - [sym__indent] = ACTIONS(690), + [sym__newline] = ACTIONS(649), + [sym__indent] = ACTIONS(651), [sym_string_start] = ACTIONS(107), }, [280] = { - [sym__simple_statements] = STATE(675), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4640), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1024), + [sym_import_statement] = STATE(4875), + [sym_future_import_statement] = STATE(4875), + [sym_import_from_statement] = STATE(4875), + [sym_print_statement] = STATE(4875), + [sym_assert_statement] = STATE(4875), + [sym_expression_statement] = STATE(4875), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4875), + [sym_delete_statement] = STATE(4875), + [sym_raise_statement] = STATE(4875), + [sym_pass_statement] = STATE(4875), + [sym_break_statement] = STATE(4875), + [sym_continue_statement] = STATE(4875), + [sym_global_statement] = STATE(4875), + [sym_nonlocal_statement] = STATE(4875), + [sym_exec_statement] = STATE(4875), + [sym_type_alias_statement] = STATE(4875), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4875), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -56518,69 +56565,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(692), - [sym__indent] = ACTIONS(694), + [sym__newline] = ACTIONS(653), + [sym__indent] = ACTIONS(655), [sym_string_start] = ACTIONS(107), }, [281] = { - [sym__simple_statements] = STATE(678), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4640), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1362), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4674), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -56624,69 +56671,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(696), - [sym__indent] = ACTIONS(698), + [sym__newline] = ACTIONS(657), + [sym__indent] = ACTIONS(659), [sym_string_start] = ACTIONS(107), }, [282] = { - [sym__simple_statements] = STATE(1286), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4640), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(578), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5109), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -56730,69 +56777,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(700), - [sym__indent] = ACTIONS(702), + [sym__newline] = ACTIONS(661), + [sym__indent] = ACTIONS(663), [sym_string_start] = ACTIONS(107), }, [283] = { - [sym__simple_statements] = STATE(1099), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4640), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1319), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4674), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -56836,69 +56883,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(704), - [sym__indent] = ACTIONS(706), + [sym__newline] = ACTIONS(665), + [sym__indent] = ACTIONS(667), [sym_string_start] = ACTIONS(107), }, [284] = { - [sym__simple_statements] = STATE(1179), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4688), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1324), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4674), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -56942,69 +56989,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(411), - [sym__indent] = ACTIONS(413), + [sym__newline] = ACTIONS(669), + [sym__indent] = ACTIONS(671), [sym_string_start] = ACTIONS(107), }, [285] = { - [sym__simple_statements] = STATE(1729), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4640), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(581), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5109), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -57048,69 +57095,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(708), - [sym__indent] = ACTIONS(710), + [sym__newline] = ACTIONS(673), + [sym__indent] = ACTIONS(675), [sym_string_start] = ACTIONS(107), }, [286] = { - [sym__simple_statements] = STATE(1646), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4688), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(582), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5109), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -57154,69 +57201,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(712), - [sym__indent] = ACTIONS(714), + [sym__newline] = ACTIONS(677), + [sym__indent] = ACTIONS(679), [sym_string_start] = ACTIONS(107), }, [287] = { - [sym__simple_statements] = STATE(1063), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4688), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(919), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4674), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -57260,69 +57307,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(716), - [sym__indent] = ACTIONS(718), + [sym__newline] = ACTIONS(681), + [sym__indent] = ACTIONS(683), [sym_string_start] = ACTIONS(107), }, [288] = { - [sym__simple_statements] = STATE(1038), - [sym_import_statement] = STATE(4845), - [sym_future_import_statement] = STATE(4845), - [sym_import_from_statement] = STATE(4845), - [sym_print_statement] = STATE(4845), - [sym_assert_statement] = STATE(4845), - [sym_expression_statement] = STATE(4845), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4845), - [sym_delete_statement] = STATE(4845), - [sym_raise_statement] = STATE(4845), - [sym_pass_statement] = STATE(4845), - [sym_break_statement] = STATE(4845), - [sym_continue_statement] = STATE(4845), - [sym_global_statement] = STATE(4845), - [sym_nonlocal_statement] = STATE(4845), - [sym_exec_statement] = STATE(4845), - [sym_type_alias_statement] = STATE(4845), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4845), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(706), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5109), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -57366,69 +57413,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(720), - [sym__indent] = ACTIONS(722), + [sym__newline] = ACTIONS(685), + [sym__indent] = ACTIONS(687), [sym_string_start] = ACTIONS(107), }, [289] = { - [sym__simple_statements] = STATE(1039), - [sym_import_statement] = STATE(4874), - [sym_future_import_statement] = STATE(4874), - [sym_import_from_statement] = STATE(4874), - [sym_print_statement] = STATE(4874), - [sym_assert_statement] = STATE(4874), - [sym_expression_statement] = STATE(4874), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4874), - [sym_delete_statement] = STATE(4874), - [sym_raise_statement] = STATE(4874), - [sym_pass_statement] = STATE(4874), - [sym_break_statement] = STATE(4874), - [sym_continue_statement] = STATE(4874), - [sym_global_statement] = STATE(4874), - [sym_nonlocal_statement] = STATE(4874), - [sym_exec_statement] = STATE(4874), - [sym_type_alias_statement] = STATE(4874), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4874), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1369), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4674), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -57472,69 +57519,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(724), - [sym__indent] = ACTIONS(726), + [sym__newline] = ACTIONS(689), + [sym__indent] = ACTIONS(691), [sym_string_start] = ACTIONS(107), }, [290] = { - [sym__simple_statements] = STATE(1016), - [sym_import_statement] = STATE(4724), - [sym_future_import_statement] = STATE(4724), - [sym_import_from_statement] = STATE(4724), - [sym_print_statement] = STATE(4724), - [sym_assert_statement] = STATE(4724), - [sym_expression_statement] = STATE(4724), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4724), - [sym_delete_statement] = STATE(4724), - [sym_raise_statement] = STATE(4724), - [sym_pass_statement] = STATE(4724), - [sym_break_statement] = STATE(4724), - [sym_continue_statement] = STATE(4724), - [sym_global_statement] = STATE(4724), - [sym_nonlocal_statement] = STATE(4724), - [sym_exec_statement] = STATE(4724), - [sym_type_alias_statement] = STATE(4724), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4724), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(2913), + [sym_import_statement] = STATE(4807), + [sym_future_import_statement] = STATE(4807), + [sym_import_from_statement] = STATE(4807), + [sym_print_statement] = STATE(4807), + [sym_assert_statement] = STATE(4807), + [sym_expression_statement] = STATE(4807), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4807), + [sym_delete_statement] = STATE(4807), + [sym_raise_statement] = STATE(4807), + [sym_pass_statement] = STATE(4807), + [sym_break_statement] = STATE(4807), + [sym_continue_statement] = STATE(4807), + [sym_global_statement] = STATE(4807), + [sym_nonlocal_statement] = STATE(4807), + [sym_exec_statement] = STATE(4807), + [sym_type_alias_statement] = STATE(4807), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4807), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -57578,69 +57625,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(728), - [sym__indent] = ACTIONS(730), + [sym__newline] = ACTIONS(693), + [sym__indent] = ACTIONS(695), [sym_string_start] = ACTIONS(107), }, [291] = { - [sym__simple_statements] = STATE(1193), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4688), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(3018), + [sym_import_statement] = STATE(4807), + [sym_future_import_statement] = STATE(4807), + [sym_import_from_statement] = STATE(4807), + [sym_print_statement] = STATE(4807), + [sym_assert_statement] = STATE(4807), + [sym_expression_statement] = STATE(4807), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4807), + [sym_delete_statement] = STATE(4807), + [sym_raise_statement] = STATE(4807), + [sym_pass_statement] = STATE(4807), + [sym_break_statement] = STATE(4807), + [sym_continue_statement] = STATE(4807), + [sym_global_statement] = STATE(4807), + [sym_nonlocal_statement] = STATE(4807), + [sym_exec_statement] = STATE(4807), + [sym_type_alias_statement] = STATE(4807), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4807), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -57684,69 +57731,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(732), - [sym__indent] = ACTIONS(734), + [sym__newline] = ACTIONS(391), + [sym__indent] = ACTIONS(393), [sym_string_start] = ACTIONS(107), }, [292] = { - [sym__simple_statements] = STATE(1262), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4688), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1637), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4674), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -57790,69 +57837,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(736), - [sym__indent] = ACTIONS(738), + [sym__newline] = ACTIONS(697), + [sym__indent] = ACTIONS(699), [sym_string_start] = ACTIONS(107), }, [293] = { - [sym__simple_statements] = STATE(682), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4640), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(597), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5109), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -57896,69 +57943,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(740), - [sym__indent] = ACTIONS(742), + [sym__newline] = ACTIONS(701), + [sym__indent] = ACTIONS(703), [sym_string_start] = ACTIONS(107), }, [294] = { - [sym__simple_statements] = STATE(1675), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4688), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(598), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5109), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -58002,69 +58049,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(744), - [sym__indent] = ACTIONS(746), + [sym__newline] = ACTIONS(705), + [sym__indent] = ACTIONS(707), [sym_string_start] = ACTIONS(107), }, [295] = { - [sym__simple_statements] = STATE(679), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4640), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(599), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5109), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -58108,69 +58155,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(748), - [sym__indent] = ACTIONS(750), + [sym__newline] = ACTIONS(709), + [sym__indent] = ACTIONS(711), [sym_string_start] = ACTIONS(107), }, [296] = { - [sym__simple_statements] = STATE(1176), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4688), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1248), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4674), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -58214,69 +58261,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(752), - [sym__indent] = ACTIONS(754), + [sym__newline] = ACTIONS(713), + [sym__indent] = ACTIONS(715), [sym_string_start] = ACTIONS(107), }, [297] = { - [sym__simple_statements] = STATE(1687), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4688), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1342), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4674), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -58320,69 +58367,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(756), - [sym__indent] = ACTIONS(758), + [sym__newline] = ACTIONS(395), + [sym__indent] = ACTIONS(397), [sym_string_start] = ACTIONS(107), }, [298] = { - [sym__simple_statements] = STATE(3033), - [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(3429), - [sym__named_expression_lhs] = STATE(5564), - [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(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4783), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(516), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5109), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -58426,69 +58473,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(383), - [sym__indent] = ACTIONS(385), + [sym__newline] = ACTIONS(717), + [sym__indent] = ACTIONS(719), [sym_string_start] = ACTIONS(107), }, [299] = { - [sym__simple_statements] = STATE(1435), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4688), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1200), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4674), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -58532,69 +58579,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(760), - [sym__indent] = ACTIONS(762), + [sym__newline] = ACTIONS(721), + [sym__indent] = ACTIONS(723), [sym_string_start] = ACTIONS(107), }, [300] = { - [sym__simple_statements] = STATE(2911), - [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(3429), - [sym__named_expression_lhs] = STATE(5564), - [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(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4783), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1298), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4674), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -58638,69 +58685,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(764), - [sym__indent] = ACTIONS(766), + [sym__newline] = ACTIONS(725), + [sym__indent] = ACTIONS(727), [sym_string_start] = ACTIONS(107), }, [301] = { - [sym__simple_statements] = STATE(5158), - [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(3429), - [sym__named_expression_lhs] = STATE(5564), - [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(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4783), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1258), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4674), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -58744,69 +58791,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(768), - [sym__indent] = ACTIONS(770), + [sym__newline] = ACTIONS(729), + [sym__indent] = ACTIONS(731), [sym_string_start] = ACTIONS(107), }, [302] = { - [sym__simple_statements] = STATE(1284), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4688), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(603), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5109), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -58850,69 +58897,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(772), - [sym__indent] = ACTIONS(774), + [sym__newline] = ACTIONS(733), + [sym__indent] = ACTIONS(735), [sym_string_start] = ACTIONS(107), }, [303] = { - [sym__simple_statements] = STATE(572), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4640), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1310), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4674), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -58956,69 +59003,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(776), - [sym__indent] = ACTIONS(778), + [sym__newline] = ACTIONS(737), + [sym__indent] = ACTIONS(739), [sym_string_start] = ACTIONS(107), }, [304] = { - [sym__simple_statements] = STATE(5169), - [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(3429), - [sym__named_expression_lhs] = STATE(5564), - [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(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4783), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1341), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4674), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -59062,20 +59109,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(780), - [sym__indent] = ACTIONS(782), + [sym__newline] = ACTIONS(741), + [sym__indent] = ACTIONS(743), [sym_string_start] = ACTIONS(107), }, [305] = { - [sym__simple_statements] = STATE(3938), + [sym__simple_statements] = STATE(3028), [sym_import_statement] = STATE(4807), [sym_future_import_statement] = STATE(4807), [sym_import_from_statement] = STATE(4807), [sym_print_statement] = STATE(4807), [sym_assert_statement] = STATE(4807), [sym_expression_statement] = STATE(4807), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), [sym_return_statement] = STATE(4807), [sym_delete_statement] = STATE(4807), [sym_raise_statement] = STATE(4807), @@ -59086,45 +59133,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nonlocal_statement] = STATE(4807), [sym_exec_statement] = STATE(4807), [sym_type_alias_statement] = STATE(4807), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), [sym_include_statement] = STATE(4807), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -59168,69 +59215,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(784), - [sym__indent] = ACTIONS(786), + [sym__newline] = ACTIONS(399), + [sym__indent] = ACTIONS(401), [sym_string_start] = ACTIONS(107), }, [306] = { - [sym__simple_statements] = STATE(592), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4640), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(5182), + [sym_import_statement] = STATE(4807), + [sym_future_import_statement] = STATE(4807), + [sym_import_from_statement] = STATE(4807), + [sym_print_statement] = STATE(4807), + [sym_assert_statement] = STATE(4807), + [sym_expression_statement] = STATE(4807), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4807), + [sym_delete_statement] = STATE(4807), + [sym_raise_statement] = STATE(4807), + [sym_pass_statement] = STATE(4807), + [sym_break_statement] = STATE(4807), + [sym_continue_statement] = STATE(4807), + [sym_global_statement] = STATE(4807), + [sym_nonlocal_statement] = STATE(4807), + [sym_exec_statement] = STATE(4807), + [sym_type_alias_statement] = STATE(4807), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4807), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -59274,69 +59321,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(788), - [sym__indent] = ACTIONS(790), + [sym__newline] = ACTIONS(745), + [sym__indent] = ACTIONS(747), [sym_string_start] = ACTIONS(107), }, [307] = { - [sym__simple_statements] = STATE(599), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4640), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(2875), + [sym_import_statement] = STATE(4807), + [sym_future_import_statement] = STATE(4807), + [sym_import_from_statement] = STATE(4807), + [sym_print_statement] = STATE(4807), + [sym_assert_statement] = STATE(4807), + [sym_expression_statement] = STATE(4807), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4807), + [sym_delete_statement] = STATE(4807), + [sym_raise_statement] = STATE(4807), + [sym_pass_statement] = STATE(4807), + [sym_break_statement] = STATE(4807), + [sym_continue_statement] = STATE(4807), + [sym_global_statement] = STATE(4807), + [sym_nonlocal_statement] = STATE(4807), + [sym_exec_statement] = STATE(4807), + [sym_type_alias_statement] = STATE(4807), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4807), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -59380,69 +59427,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(792), - [sym__indent] = ACTIONS(794), + [sym__newline] = ACTIONS(749), + [sym__indent] = ACTIONS(751), [sym_string_start] = ACTIONS(107), }, [308] = { - [sym__simple_statements] = STATE(1149), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4640), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1281), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4674), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -59486,69 +59533,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(796), - [sym__indent] = ACTIONS(798), + [sym__newline] = ACTIONS(387), + [sym__indent] = ACTIONS(389), [sym_string_start] = ACTIONS(107), }, [309] = { - [sym__simple_statements] = STATE(1256), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4688), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(617), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5109), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -59592,69 +59639,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(800), - [sym__indent] = ACTIONS(802), + [sym__newline] = ACTIONS(753), + [sym__indent] = ACTIONS(755), [sym_string_start] = ACTIONS(107), }, [310] = { - [sym__simple_statements] = STATE(1022), - [sym_import_statement] = STATE(4724), - [sym_future_import_statement] = STATE(4724), - [sym_import_from_statement] = STATE(4724), - [sym_print_statement] = STATE(4724), - [sym_assert_statement] = STATE(4724), - [sym_expression_statement] = STATE(4724), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4724), - [sym_delete_statement] = STATE(4724), - [sym_raise_statement] = STATE(4724), - [sym_pass_statement] = STATE(4724), - [sym_break_statement] = STATE(4724), - [sym_continue_statement] = STATE(4724), - [sym_global_statement] = STATE(4724), - [sym_nonlocal_statement] = STATE(4724), - [sym_exec_statement] = STATE(4724), - [sym_type_alias_statement] = STATE(4724), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4724), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(5243), + [sym_import_statement] = STATE(4807), + [sym_future_import_statement] = STATE(4807), + [sym_import_from_statement] = STATE(4807), + [sym_print_statement] = STATE(4807), + [sym_assert_statement] = STATE(4807), + [sym_expression_statement] = STATE(4807), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4807), + [sym_delete_statement] = STATE(4807), + [sym_raise_statement] = STATE(4807), + [sym_pass_statement] = STATE(4807), + [sym_break_statement] = STATE(4807), + [sym_continue_statement] = STATE(4807), + [sym_global_statement] = STATE(4807), + [sym_nonlocal_statement] = STATE(4807), + [sym_exec_statement] = STATE(4807), + [sym_type_alias_statement] = STATE(4807), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4807), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -59698,69 +59745,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(804), - [sym__indent] = ACTIONS(806), + [sym__newline] = ACTIONS(757), + [sym__indent] = ACTIONS(759), [sym_string_start] = ACTIONS(107), }, [311] = { - [sym__simple_statements] = STATE(1302), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4688), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(620), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5109), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -59804,69 +59851,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(808), - [sym__indent] = ACTIONS(810), + [sym__newline] = ACTIONS(761), + [sym__indent] = ACTIONS(763), [sym_string_start] = ACTIONS(107), }, [312] = { - [sym__simple_statements] = STATE(1305), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4688), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(621), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5109), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -59910,69 +59957,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(812), - [sym__indent] = ACTIONS(814), + [sym__newline] = ACTIONS(765), + [sym__indent] = ACTIONS(767), [sym_string_start] = ACTIONS(107), }, [313] = { - [sym__simple_statements] = STATE(1249), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4688), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1285), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4674), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -60016,69 +60063,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(816), - [sym__indent] = ACTIONS(818), + [sym__newline] = ACTIONS(769), + [sym__indent] = ACTIONS(771), [sym_string_start] = ACTIONS(107), }, [314] = { - [sym__simple_statements] = STATE(1269), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4688), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(3031), + [sym_import_statement] = STATE(4807), + [sym_future_import_statement] = STATE(4807), + [sym_import_from_statement] = STATE(4807), + [sym_print_statement] = STATE(4807), + [sym_assert_statement] = STATE(4807), + [sym_expression_statement] = STATE(4807), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4807), + [sym_delete_statement] = STATE(4807), + [sym_raise_statement] = STATE(4807), + [sym_pass_statement] = STATE(4807), + [sym_break_statement] = STATE(4807), + [sym_continue_statement] = STATE(4807), + [sym_global_statement] = STATE(4807), + [sym_nonlocal_statement] = STATE(4807), + [sym_exec_statement] = STATE(4807), + [sym_type_alias_statement] = STATE(4807), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4807), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -60122,69 +60169,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(820), - [sym__indent] = ACTIONS(822), + [sym__newline] = ACTIONS(773), + [sym__indent] = ACTIONS(775), [sym_string_start] = ACTIONS(107), }, [315] = { - [sym__simple_statements] = STATE(1303), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4688), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1290), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4674), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -60228,69 +60275,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(824), - [sym__indent] = ACTIONS(826), + [sym__newline] = ACTIONS(777), + [sym__indent] = ACTIONS(779), [sym_string_start] = ACTIONS(107), }, [316] = { - [sym__simple_statements] = STATE(619), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4640), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1292), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4674), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -60334,69 +60381,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(828), - [sym__indent] = ACTIONS(830), + [sym__newline] = ACTIONS(781), + [sym__indent] = ACTIONS(783), [sym_string_start] = ACTIONS(107), }, [317] = { - [sym__simple_statements] = STATE(637), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4640), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1306), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4674), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -60440,69 +60487,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(832), - [sym__indent] = ACTIONS(834), + [sym__newline] = ACTIONS(785), + [sym__indent] = ACTIONS(787), [sym_string_start] = ACTIONS(107), }, [318] = { - [sym__simple_statements] = STATE(650), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4640), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(502), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5109), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -60546,69 +60593,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(836), - [sym__indent] = ACTIONS(838), + [sym__newline] = ACTIONS(789), + [sym__indent] = ACTIONS(791), [sym_string_start] = ACTIONS(107), }, [319] = { - [sym__simple_statements] = STATE(1337), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4688), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1265), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4674), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -60652,69 +60699,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(840), - [sym__indent] = ACTIONS(842), + [sym__newline] = ACTIONS(793), + [sym__indent] = ACTIONS(795), [sym_string_start] = ACTIONS(107), }, [320] = { - [sym__simple_statements] = STATE(2968), - [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(3429), - [sym__named_expression_lhs] = STATE(5564), - [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(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4783), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1082), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4674), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -60758,69 +60805,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(423), - [sym__indent] = ACTIONS(425), + [sym__newline] = ACTIONS(797), + [sym__indent] = ACTIONS(799), [sym_string_start] = ACTIONS(107), }, [321] = { - [sym__simple_statements] = STATE(1321), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4688), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(3035), + [sym_import_statement] = STATE(4807), + [sym_future_import_statement] = STATE(4807), + [sym_import_from_statement] = STATE(4807), + [sym_print_statement] = STATE(4807), + [sym_assert_statement] = STATE(4807), + [sym_expression_statement] = STATE(4807), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4807), + [sym_delete_statement] = STATE(4807), + [sym_raise_statement] = STATE(4807), + [sym_pass_statement] = STATE(4807), + [sym_break_statement] = STATE(4807), + [sym_continue_statement] = STATE(4807), + [sym_global_statement] = STATE(4807), + [sym_nonlocal_statement] = STATE(4807), + [sym_exec_statement] = STATE(4807), + [sym_type_alias_statement] = STATE(4807), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4807), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -60864,69 +60911,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(431), - [sym__indent] = ACTIONS(433), + [sym__newline] = ACTIONS(801), + [sym__indent] = ACTIONS(803), [sym_string_start] = ACTIONS(107), }, [322] = { - [sym__simple_statements] = STATE(1203), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4688), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(509), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5109), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -60970,69 +61017,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(844), - [sym__indent] = ACTIONS(846), + [sym__newline] = ACTIONS(805), + [sym__indent] = ACTIONS(807), [sym_string_start] = ACTIONS(107), }, [323] = { - [sym__simple_statements] = STATE(2889), - [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(3429), - [sym__named_expression_lhs] = STATE(5564), - [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(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4783), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1299), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4674), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -61076,69 +61123,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(848), - [sym__indent] = ACTIONS(850), + [sym__newline] = ACTIONS(407), + [sym__indent] = ACTIONS(409), [sym_string_start] = ACTIONS(107), }, [324] = { - [sym__simple_statements] = STATE(692), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4640), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(3055), + [sym_import_statement] = STATE(4807), + [sym_future_import_statement] = STATE(4807), + [sym_import_from_statement] = STATE(4807), + [sym_print_statement] = STATE(4807), + [sym_assert_statement] = STATE(4807), + [sym_expression_statement] = STATE(4807), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4807), + [sym_delete_statement] = STATE(4807), + [sym_raise_statement] = STATE(4807), + [sym_pass_statement] = STATE(4807), + [sym_break_statement] = STATE(4807), + [sym_continue_statement] = STATE(4807), + [sym_global_statement] = STATE(4807), + [sym_nonlocal_statement] = STATE(4807), + [sym_exec_statement] = STATE(4807), + [sym_type_alias_statement] = STATE(4807), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4807), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -61182,69 +61229,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(852), - [sym__indent] = ACTIONS(854), + [sym__newline] = ACTIONS(809), + [sym__indent] = ACTIONS(811), [sym_string_start] = ACTIONS(107), }, [325] = { - [sym__simple_statements] = STATE(1345), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4688), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(640), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5109), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -61288,69 +61335,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(379), - [sym__indent] = ACTIONS(381), + [sym__newline] = ACTIONS(813), + [sym__indent] = ACTIONS(815), [sym_string_start] = ACTIONS(107), }, [326] = { - [sym__simple_statements] = STATE(700), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4640), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(2878), + [sym_import_statement] = STATE(4807), + [sym_future_import_statement] = STATE(4807), + [sym_import_from_statement] = STATE(4807), + [sym_print_statement] = STATE(4807), + [sym_assert_statement] = STATE(4807), + [sym_expression_statement] = STATE(4807), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4807), + [sym_delete_statement] = STATE(4807), + [sym_raise_statement] = STATE(4807), + [sym_pass_statement] = STATE(4807), + [sym_break_statement] = STATE(4807), + [sym_continue_statement] = STATE(4807), + [sym_global_statement] = STATE(4807), + [sym_nonlocal_statement] = STATE(4807), + [sym_exec_statement] = STATE(4807), + [sym_type_alias_statement] = STATE(4807), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4807), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -61394,69 +61441,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(856), - [sym__indent] = ACTIONS(858), + [sym__newline] = ACTIONS(817), + [sym__indent] = ACTIONS(819), [sym_string_start] = ACTIONS(107), }, [327] = { - [sym__simple_statements] = STATE(1236), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4688), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1705), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4674), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -61500,69 +61547,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(860), - [sym__indent] = ACTIONS(862), + [sym__newline] = ACTIONS(821), + [sym__indent] = ACTIONS(823), [sym_string_start] = ACTIONS(107), }, [328] = { - [sym__simple_statements] = STATE(1244), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4688), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(2982), + [sym_import_statement] = STATE(4807), + [sym_future_import_statement] = STATE(4807), + [sym_import_from_statement] = STATE(4807), + [sym_print_statement] = STATE(4807), + [sym_assert_statement] = STATE(4807), + [sym_expression_statement] = STATE(4807), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4807), + [sym_delete_statement] = STATE(4807), + [sym_raise_statement] = STATE(4807), + [sym_pass_statement] = STATE(4807), + [sym_break_statement] = STATE(4807), + [sym_continue_statement] = STATE(4807), + [sym_global_statement] = STATE(4807), + [sym_nonlocal_statement] = STATE(4807), + [sym_exec_statement] = STATE(4807), + [sym_type_alias_statement] = STATE(4807), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4807), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -61606,69 +61653,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(864), - [sym__indent] = ACTIONS(866), + [sym__newline] = ACTIONS(825), + [sym__indent] = ACTIONS(827), [sym_string_start] = ACTIONS(107), }, [329] = { - [sym__simple_statements] = STATE(1246), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4688), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(3012), + [sym_import_statement] = STATE(4807), + [sym_future_import_statement] = STATE(4807), + [sym_import_from_statement] = STATE(4807), + [sym_print_statement] = STATE(4807), + [sym_assert_statement] = STATE(4807), + [sym_expression_statement] = STATE(4807), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4807), + [sym_delete_statement] = STATE(4807), + [sym_raise_statement] = STATE(4807), + [sym_pass_statement] = STATE(4807), + [sym_break_statement] = STATE(4807), + [sym_continue_statement] = STATE(4807), + [sym_global_statement] = STATE(4807), + [sym_nonlocal_statement] = STATE(4807), + [sym_exec_statement] = STATE(4807), + [sym_type_alias_statement] = STATE(4807), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4807), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -61712,69 +61759,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(868), - [sym__indent] = ACTIONS(870), + [sym__newline] = ACTIONS(829), + [sym__indent] = ACTIONS(831), [sym_string_start] = ACTIONS(107), }, [330] = { - [sym__simple_statements] = STATE(1373), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4688), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1266), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4674), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -61818,69 +61865,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(872), - [sym__indent] = ACTIONS(874), + [sym__newline] = ACTIONS(403), + [sym__indent] = ACTIONS(405), [sym_string_start] = ACTIONS(107), }, [331] = { - [sym__simple_statements] = STATE(975), - [sym_import_statement] = STATE(4845), - [sym_future_import_statement] = STATE(4845), - [sym_import_from_statement] = STATE(4845), - [sym_print_statement] = STATE(4845), - [sym_assert_statement] = STATE(4845), - [sym_expression_statement] = STATE(4845), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4845), - [sym_delete_statement] = STATE(4845), - [sym_raise_statement] = STATE(4845), - [sym_pass_statement] = STATE(4845), - [sym_break_statement] = STATE(4845), - [sym_continue_statement] = STATE(4845), - [sym_global_statement] = STATE(4845), - [sym_nonlocal_statement] = STATE(4845), - [sym_exec_statement] = STATE(4845), - [sym_type_alias_statement] = STATE(4845), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4845), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(650), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5109), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -61924,69 +61971,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(876), - [sym__indent] = ACTIONS(878), + [sym__newline] = ACTIONS(411), + [sym__indent] = ACTIONS(413), [sym_string_start] = ACTIONS(107), }, [332] = { - [sym__simple_statements] = STATE(1154), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4688), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(2950), + [sym_import_statement] = STATE(4807), + [sym_future_import_statement] = STATE(4807), + [sym_import_from_statement] = STATE(4807), + [sym_print_statement] = STATE(4807), + [sym_assert_statement] = STATE(4807), + [sym_expression_statement] = STATE(4807), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4807), + [sym_delete_statement] = STATE(4807), + [sym_raise_statement] = STATE(4807), + [sym_pass_statement] = STATE(4807), + [sym_break_statement] = STATE(4807), + [sym_continue_statement] = STATE(4807), + [sym_global_statement] = STATE(4807), + [sym_nonlocal_statement] = STATE(4807), + [sym_exec_statement] = STATE(4807), + [sym_type_alias_statement] = STATE(4807), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4807), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -62030,69 +62077,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(880), - [sym__indent] = ACTIONS(882), + [sym__newline] = ACTIONS(383), + [sym__indent] = ACTIONS(385), [sym_string_start] = ACTIONS(107), }, [333] = { - [sym__simple_statements] = STATE(5156), - [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(3429), - [sym__named_expression_lhs] = STATE(5564), - [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(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4783), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(653), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5109), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -62136,69 +62183,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(884), - [sym__indent] = ACTIONS(886), + [sym__newline] = ACTIONS(833), + [sym__indent] = ACTIONS(835), [sym_string_start] = ACTIONS(107), }, [334] = { - [sym__simple_statements] = STATE(703), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4640), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(3026), + [sym_import_statement] = STATE(4807), + [sym_future_import_statement] = STATE(4807), + [sym_import_from_statement] = STATE(4807), + [sym_print_statement] = STATE(4807), + [sym_assert_statement] = STATE(4807), + [sym_expression_statement] = STATE(4807), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4807), + [sym_delete_statement] = STATE(4807), + [sym_raise_statement] = STATE(4807), + [sym_pass_statement] = STATE(4807), + [sym_break_statement] = STATE(4807), + [sym_continue_statement] = STATE(4807), + [sym_global_statement] = STATE(4807), + [sym_nonlocal_statement] = STATE(4807), + [sym_exec_statement] = STATE(4807), + [sym_type_alias_statement] = STATE(4807), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4807), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -62242,69 +62289,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(888), - [sym__indent] = ACTIONS(890), + [sym__newline] = ACTIONS(837), + [sym__indent] = ACTIONS(839), [sym_string_start] = ACTIONS(107), }, [335] = { - [sym__simple_statements] = STATE(5215), - [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(3429), - [sym__named_expression_lhs] = STATE(5564), - [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(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4783), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1131), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4674), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -62348,69 +62395,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(892), - [sym__indent] = ACTIONS(894), + [sym__newline] = ACTIONS(841), + [sym__indent] = ACTIONS(843), [sym_string_start] = ACTIONS(107), }, [336] = { - [sym__simple_statements] = STATE(503), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4640), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(3050), + [sym_import_statement] = STATE(4807), + [sym_future_import_statement] = STATE(4807), + [sym_import_from_statement] = STATE(4807), + [sym_print_statement] = STATE(4807), + [sym_assert_statement] = STATE(4807), + [sym_expression_statement] = STATE(4807), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4807), + [sym_delete_statement] = STATE(4807), + [sym_raise_statement] = STATE(4807), + [sym_pass_statement] = STATE(4807), + [sym_break_statement] = STATE(4807), + [sym_continue_statement] = STATE(4807), + [sym_global_statement] = STATE(4807), + [sym_nonlocal_statement] = STATE(4807), + [sym_exec_statement] = STATE(4807), + [sym_type_alias_statement] = STATE(4807), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4807), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -62454,69 +62501,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(896), - [sym__indent] = ACTIONS(898), + [sym__newline] = ACTIONS(845), + [sym__indent] = ACTIONS(847), [sym_string_start] = ACTIONS(107), }, [337] = { - [sym__simple_statements] = STATE(504), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4640), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1195), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4674), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -62560,69 +62607,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(900), - [sym__indent] = ACTIONS(902), + [sym__newline] = ACTIONS(849), + [sym__indent] = ACTIONS(851), [sym_string_start] = ACTIONS(107), }, [338] = { - [sym__simple_statements] = STATE(1156), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4688), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1708), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4674), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -62666,69 +62713,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(904), - [sym__indent] = ACTIONS(906), + [sym__newline] = ACTIONS(853), + [sym__indent] = ACTIONS(855), [sym_string_start] = ACTIONS(107), }, [339] = { - [sym__simple_statements] = STATE(1163), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4688), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(3060), + [sym_import_statement] = STATE(4807), + [sym_future_import_statement] = STATE(4807), + [sym_import_from_statement] = STATE(4807), + [sym_print_statement] = STATE(4807), + [sym_assert_statement] = STATE(4807), + [sym_expression_statement] = STATE(4807), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4807), + [sym_delete_statement] = STATE(4807), + [sym_raise_statement] = STATE(4807), + [sym_pass_statement] = STATE(4807), + [sym_break_statement] = STATE(4807), + [sym_continue_statement] = STATE(4807), + [sym_global_statement] = STATE(4807), + [sym_nonlocal_statement] = STATE(4807), + [sym_exec_statement] = STATE(4807), + [sym_type_alias_statement] = STATE(4807), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4807), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -62772,69 +62819,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(908), - [sym__indent] = ACTIONS(910), + [sym__newline] = ACTIONS(857), + [sym__indent] = ACTIONS(859), [sym_string_start] = ACTIONS(107), }, [340] = { - [sym__simple_statements] = STATE(1084), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4688), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(3061), + [sym_import_statement] = STATE(4807), + [sym_future_import_statement] = STATE(4807), + [sym_import_from_statement] = STATE(4807), + [sym_print_statement] = STATE(4807), + [sym_assert_statement] = STATE(4807), + [sym_expression_statement] = STATE(4807), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4807), + [sym_delete_statement] = STATE(4807), + [sym_raise_statement] = STATE(4807), + [sym_pass_statement] = STATE(4807), + [sym_break_statement] = STATE(4807), + [sym_continue_statement] = STATE(4807), + [sym_global_statement] = STATE(4807), + [sym_nonlocal_statement] = STATE(4807), + [sym_exec_statement] = STATE(4807), + [sym_type_alias_statement] = STATE(4807), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4807), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -62878,69 +62925,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(912), - [sym__indent] = ACTIONS(914), + [sym__newline] = ACTIONS(861), + [sym__indent] = ACTIONS(863), [sym_string_start] = ACTIONS(107), }, [341] = { - [sym__simple_statements] = STATE(2814), - [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(3429), - [sym__named_expression_lhs] = STATE(5564), - [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(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4783), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1051), + [sym_import_statement] = STATE(4747), + [sym_future_import_statement] = STATE(4747), + [sym_import_from_statement] = STATE(4747), + [sym_print_statement] = STATE(4747), + [sym_assert_statement] = STATE(4747), + [sym_expression_statement] = STATE(4747), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4747), + [sym_delete_statement] = STATE(4747), + [sym_raise_statement] = STATE(4747), + [sym_pass_statement] = STATE(4747), + [sym_break_statement] = STATE(4747), + [sym_continue_statement] = STATE(4747), + [sym_global_statement] = STATE(4747), + [sym_nonlocal_statement] = STATE(4747), + [sym_exec_statement] = STATE(4747), + [sym_type_alias_statement] = STATE(4747), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4747), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -62984,69 +63031,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(916), - [sym__indent] = ACTIONS(918), + [sym__newline] = ACTIONS(865), + [sym__indent] = ACTIONS(867), [sym_string_start] = ACTIONS(107), }, [342] = { - [sym__simple_statements] = STATE(2965), - [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(3429), - [sym__named_expression_lhs] = STATE(5564), - [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(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4783), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1217), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4674), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -63090,69 +63137,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(403), - [sym__indent] = ACTIONS(405), + [sym__newline] = ACTIONS(869), + [sym__indent] = ACTIONS(871), [sym_string_start] = ACTIONS(107), }, [343] = { - [sym__simple_statements] = STATE(1065), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4688), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(662), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5109), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -63196,69 +63243,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(920), - [sym__indent] = ACTIONS(922), + [sym__newline] = ACTIONS(873), + [sym__indent] = ACTIONS(875), [sym_string_start] = ACTIONS(107), }, [344] = { - [sym__simple_statements] = STATE(519), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4640), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1199), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4674), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -63302,69 +63349,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(924), - [sym__indent] = ACTIONS(926), + [sym__newline] = ACTIONS(877), + [sym__indent] = ACTIONS(879), [sym_string_start] = ACTIONS(107), }, [345] = { - [sym__simple_statements] = STATE(520), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4640), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(659), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5109), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -63408,69 +63455,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(928), - [sym__indent] = ACTIONS(930), + [sym__newline] = ACTIONS(415), + [sym__indent] = ACTIONS(417), [sym_string_start] = ACTIONS(107), }, [346] = { - [sym__simple_statements] = STATE(521), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4640), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1205), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4674), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -63514,69 +63561,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(932), - [sym__indent] = ACTIONS(934), + [sym__newline] = ACTIONS(881), + [sym__indent] = ACTIONS(883), [sym_string_start] = ACTIONS(107), }, [347] = { - [sym__simple_statements] = STATE(1268), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4688), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(3023), + [sym_import_statement] = STATE(4807), + [sym_future_import_statement] = STATE(4807), + [sym_import_from_statement] = STATE(4807), + [sym_print_statement] = STATE(4807), + [sym_assert_statement] = STATE(4807), + [sym_expression_statement] = STATE(4807), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4807), + [sym_delete_statement] = STATE(4807), + [sym_raise_statement] = STATE(4807), + [sym_pass_statement] = STATE(4807), + [sym_break_statement] = STATE(4807), + [sym_continue_statement] = STATE(4807), + [sym_global_statement] = STATE(4807), + [sym_nonlocal_statement] = STATE(4807), + [sym_exec_statement] = STATE(4807), + [sym_type_alias_statement] = STATE(4807), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4807), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -63620,69 +63667,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(936), - [sym__indent] = ACTIONS(938), + [sym__newline] = ACTIONS(885), + [sym__indent] = ACTIONS(887), [sym_string_start] = ACTIONS(107), }, [348] = { - [sym__simple_statements] = STATE(1497), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4688), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(3024), + [sym_import_statement] = STATE(4807), + [sym_future_import_statement] = STATE(4807), + [sym_import_from_statement] = STATE(4807), + [sym_print_statement] = STATE(4807), + [sym_assert_statement] = STATE(4807), + [sym_expression_statement] = STATE(4807), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4807), + [sym_delete_statement] = STATE(4807), + [sym_raise_statement] = STATE(4807), + [sym_pass_statement] = STATE(4807), + [sym_break_statement] = STATE(4807), + [sym_continue_statement] = STATE(4807), + [sym_global_statement] = STATE(4807), + [sym_nonlocal_statement] = STATE(4807), + [sym_exec_statement] = STATE(4807), + [sym_type_alias_statement] = STATE(4807), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4807), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -63726,69 +63773,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(940), - [sym__indent] = ACTIONS(942), + [sym__newline] = ACTIONS(889), + [sym__indent] = ACTIONS(891), [sym_string_start] = ACTIONS(107), }, [349] = { - [sym__simple_statements] = STATE(1282), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4688), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(3033), + [sym_import_statement] = STATE(4807), + [sym_future_import_statement] = STATE(4807), + [sym_import_from_statement] = STATE(4807), + [sym_print_statement] = STATE(4807), + [sym_assert_statement] = STATE(4807), + [sym_expression_statement] = STATE(4807), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4807), + [sym_delete_statement] = STATE(4807), + [sym_raise_statement] = STATE(4807), + [sym_pass_statement] = STATE(4807), + [sym_break_statement] = STATE(4807), + [sym_continue_statement] = STATE(4807), + [sym_global_statement] = STATE(4807), + [sym_nonlocal_statement] = STATE(4807), + [sym_exec_statement] = STATE(4807), + [sym_type_alias_statement] = STATE(4807), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4807), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -63832,69 +63879,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(399), - [sym__indent] = ACTIONS(401), + [sym__newline] = ACTIONS(893), + [sym__indent] = ACTIONS(895), [sym_string_start] = ACTIONS(107), }, [350] = { - [sym__simple_statements] = STATE(979), - [sym_import_statement] = STATE(4724), - [sym_future_import_statement] = STATE(4724), - [sym_import_from_statement] = STATE(4724), - [sym_print_statement] = STATE(4724), - [sym_assert_statement] = STATE(4724), - [sym_expression_statement] = STATE(4724), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4724), - [sym_delete_statement] = STATE(4724), - [sym_raise_statement] = STATE(4724), - [sym_pass_statement] = STATE(4724), - [sym_break_statement] = STATE(4724), - [sym_continue_statement] = STATE(4724), - [sym_global_statement] = STATE(4724), - [sym_nonlocal_statement] = STATE(4724), - [sym_exec_statement] = STATE(4724), - [sym_type_alias_statement] = STATE(4724), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4724), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(2997), + [sym_import_statement] = STATE(4807), + [sym_future_import_statement] = STATE(4807), + [sym_import_from_statement] = STATE(4807), + [sym_print_statement] = STATE(4807), + [sym_assert_statement] = STATE(4807), + [sym_expression_statement] = STATE(4807), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4807), + [sym_delete_statement] = STATE(4807), + [sym_raise_statement] = STATE(4807), + [sym_pass_statement] = STATE(4807), + [sym_break_statement] = STATE(4807), + [sym_continue_statement] = STATE(4807), + [sym_global_statement] = STATE(4807), + [sym_nonlocal_statement] = STATE(4807), + [sym_exec_statement] = STATE(4807), + [sym_type_alias_statement] = STATE(4807), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4807), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -63938,69 +63985,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(944), - [sym__indent] = ACTIONS(946), + [sym__newline] = ACTIONS(897), + [sym__indent] = ACTIONS(899), [sym_string_start] = ACTIONS(107), }, [351] = { - [sym__simple_statements] = STATE(525), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4640), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1052), + [sym_import_statement] = STATE(4839), + [sym_future_import_statement] = STATE(4839), + [sym_import_from_statement] = STATE(4839), + [sym_print_statement] = STATE(4839), + [sym_assert_statement] = STATE(4839), + [sym_expression_statement] = STATE(4839), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4839), + [sym_delete_statement] = STATE(4839), + [sym_raise_statement] = STATE(4839), + [sym_pass_statement] = STATE(4839), + [sym_break_statement] = STATE(4839), + [sym_continue_statement] = STATE(4839), + [sym_global_statement] = STATE(4839), + [sym_nonlocal_statement] = STATE(4839), + [sym_exec_statement] = STATE(4839), + [sym_type_alias_statement] = STATE(4839), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4839), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -64044,69 +64091,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(948), - [sym__indent] = ACTIONS(950), + [sym__newline] = ACTIONS(901), + [sym__indent] = ACTIONS(903), [sym_string_start] = ACTIONS(107), }, [352] = { - [sym__simple_statements] = STATE(981), - [sym_import_statement] = STATE(4811), - [sym_future_import_statement] = STATE(4811), - [sym_import_from_statement] = STATE(4811), - [sym_print_statement] = STATE(4811), - [sym_assert_statement] = STATE(4811), - [sym_expression_statement] = STATE(4811), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4811), - [sym_delete_statement] = STATE(4811), - [sym_raise_statement] = STATE(4811), - [sym_pass_statement] = STATE(4811), - [sym_break_statement] = STATE(4811), - [sym_continue_statement] = STATE(4811), - [sym_global_statement] = STATE(4811), - [sym_nonlocal_statement] = STATE(4811), - [sym_exec_statement] = STATE(4811), - [sym_type_alias_statement] = STATE(4811), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4811), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(3021), + [sym_import_statement] = STATE(4807), + [sym_future_import_statement] = STATE(4807), + [sym_import_from_statement] = STATE(4807), + [sym_print_statement] = STATE(4807), + [sym_assert_statement] = STATE(4807), + [sym_expression_statement] = STATE(4807), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4807), + [sym_delete_statement] = STATE(4807), + [sym_raise_statement] = STATE(4807), + [sym_pass_statement] = STATE(4807), + [sym_break_statement] = STATE(4807), + [sym_continue_statement] = STATE(4807), + [sym_global_statement] = STATE(4807), + [sym_nonlocal_statement] = STATE(4807), + [sym_exec_statement] = STATE(4807), + [sym_type_alias_statement] = STATE(4807), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4807), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -64150,69 +64197,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(952), - [sym__indent] = ACTIONS(954), + [sym__newline] = ACTIONS(905), + [sym__indent] = ACTIONS(907), [sym_string_start] = ACTIONS(107), }, [353] = { - [sym__simple_statements] = STATE(2928), - [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(3429), - [sym__named_expression_lhs] = STATE(5564), - [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(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4783), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(5356), + [sym_import_statement] = STATE(4807), + [sym_future_import_statement] = STATE(4807), + [sym_import_from_statement] = STATE(4807), + [sym_print_statement] = STATE(4807), + [sym_assert_statement] = STATE(4807), + [sym_expression_statement] = STATE(4807), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4807), + [sym_delete_statement] = STATE(4807), + [sym_raise_statement] = STATE(4807), + [sym_pass_statement] = STATE(4807), + [sym_break_statement] = STATE(4807), + [sym_continue_statement] = STATE(4807), + [sym_global_statement] = STATE(4807), + [sym_nonlocal_statement] = STATE(4807), + [sym_exec_statement] = STATE(4807), + [sym_type_alias_statement] = STATE(4807), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4807), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -64256,69 +64303,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(427), - [sym__indent] = ACTIONS(429), + [sym__newline] = ACTIONS(909), + [sym__indent] = ACTIONS(911), [sym_string_start] = ACTIONS(107), }, [354] = { - [sym__simple_statements] = STATE(1308), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4688), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(525), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5109), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -64362,69 +64409,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(956), - [sym__indent] = ACTIONS(958), + [sym__newline] = ACTIONS(913), + [sym__indent] = ACTIONS(915), [sym_string_start] = ACTIONS(107), }, [355] = { - [sym__simple_statements] = STATE(539), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4640), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(669), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5109), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -64468,69 +64515,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(960), - [sym__indent] = ACTIONS(962), + [sym__newline] = ACTIONS(423), + [sym__indent] = ACTIONS(425), [sym_string_start] = ACTIONS(107), }, [356] = { - [sym__simple_statements] = STATE(1316), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4688), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1209), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4674), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -64574,69 +64621,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(964), - [sym__indent] = ACTIONS(966), + [sym__newline] = ACTIONS(917), + [sym__indent] = ACTIONS(919), [sym_string_start] = ACTIONS(107), }, [357] = { - [sym__simple_statements] = STATE(1340), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4688), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(673), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5109), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -64680,69 +64727,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(968), - [sym__indent] = ACTIONS(970), + [sym__newline] = ACTIONS(921), + [sym__indent] = ACTIONS(923), [sym_string_start] = ACTIONS(107), }, [358] = { - [sym__simple_statements] = STATE(542), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4640), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(526), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5109), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -64786,69 +64833,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(972), - [sym__indent] = ACTIONS(974), + [sym__newline] = ACTIONS(925), + [sym__indent] = ACTIONS(927), [sym_string_start] = ACTIONS(107), }, [359] = { - [sym__simple_statements] = STATE(543), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4640), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(3922), + [sym_import_statement] = STATE(4763), + [sym_future_import_statement] = STATE(4763), + [sym_import_from_statement] = STATE(4763), + [sym_print_statement] = STATE(4763), + [sym_assert_statement] = STATE(4763), + [sym_expression_statement] = STATE(4763), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4763), + [sym_delete_statement] = STATE(4763), + [sym_raise_statement] = STATE(4763), + [sym_pass_statement] = STATE(4763), + [sym_break_statement] = STATE(4763), + [sym_continue_statement] = STATE(4763), + [sym_global_statement] = STATE(4763), + [sym_nonlocal_statement] = STATE(4763), + [sym_exec_statement] = STATE(4763), + [sym_type_alias_statement] = STATE(4763), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4763), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -64892,69 +64939,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(976), - [sym__indent] = ACTIONS(978), + [sym__newline] = ACTIONS(929), + [sym__indent] = ACTIONS(931), [sym_string_start] = ACTIONS(107), }, [360] = { - [sym__simple_statements] = STATE(1184), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4688), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(3039), + [sym_import_statement] = STATE(4807), + [sym_future_import_statement] = STATE(4807), + [sym_import_from_statement] = STATE(4807), + [sym_print_statement] = STATE(4807), + [sym_assert_statement] = STATE(4807), + [sym_expression_statement] = STATE(4807), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4807), + [sym_delete_statement] = STATE(4807), + [sym_raise_statement] = STATE(4807), + [sym_pass_statement] = STATE(4807), + [sym_break_statement] = STATE(4807), + [sym_continue_statement] = STATE(4807), + [sym_global_statement] = STATE(4807), + [sym_nonlocal_statement] = STATE(4807), + [sym_exec_statement] = STATE(4807), + [sym_type_alias_statement] = STATE(4807), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4807), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -64998,69 +65045,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(980), - [sym__indent] = ACTIONS(982), + [sym__newline] = ACTIONS(933), + [sym__indent] = ACTIONS(935), [sym_string_start] = ACTIONS(107), }, [361] = { - [sym__simple_statements] = STATE(2962), - [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(3429), - [sym__named_expression_lhs] = STATE(5564), - [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(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4783), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1354), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4674), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -65104,69 +65151,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(984), - [sym__indent] = ACTIONS(986), + [sym__newline] = ACTIONS(937), + [sym__indent] = ACTIONS(939), [sym_string_start] = ACTIONS(107), }, [362] = { - [sym__simple_statements] = STATE(1539), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4688), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(527), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5109), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -65210,69 +65257,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(988), - [sym__indent] = ACTIONS(990), + [sym__newline] = ACTIONS(941), + [sym__indent] = ACTIONS(943), [sym_string_start] = ACTIONS(107), }, [363] = { - [sym__simple_statements] = STATE(5274), - [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(3429), - [sym__named_expression_lhs] = STATE(5564), - [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(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4783), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(2933), + [sym_import_statement] = STATE(4807), + [sym_future_import_statement] = STATE(4807), + [sym_import_from_statement] = STATE(4807), + [sym_print_statement] = STATE(4807), + [sym_assert_statement] = STATE(4807), + [sym_expression_statement] = STATE(4807), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4807), + [sym_delete_statement] = STATE(4807), + [sym_raise_statement] = STATE(4807), + [sym_pass_statement] = STATE(4807), + [sym_break_statement] = STATE(4807), + [sym_continue_statement] = STATE(4807), + [sym_global_statement] = STATE(4807), + [sym_nonlocal_statement] = STATE(4807), + [sym_exec_statement] = STATE(4807), + [sym_type_alias_statement] = STATE(4807), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4807), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -65316,69 +65363,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(992), - [sym__indent] = ACTIONS(994), + [sym__newline] = ACTIONS(945), + [sym__indent] = ACTIONS(947), [sym_string_start] = ACTIONS(107), }, [364] = { - [sym__simple_statements] = STATE(553), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4640), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(2953), + [sym_import_statement] = STATE(4807), + [sym_future_import_statement] = STATE(4807), + [sym_import_from_statement] = STATE(4807), + [sym_print_statement] = STATE(4807), + [sym_assert_statement] = STATE(4807), + [sym_expression_statement] = STATE(4807), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4807), + [sym_delete_statement] = STATE(4807), + [sym_raise_statement] = STATE(4807), + [sym_pass_statement] = STATE(4807), + [sym_break_statement] = STATE(4807), + [sym_continue_statement] = STATE(4807), + [sym_global_statement] = STATE(4807), + [sym_nonlocal_statement] = STATE(4807), + [sym_exec_statement] = STATE(4807), + [sym_type_alias_statement] = STATE(4807), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4807), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -65422,69 +65469,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(996), - [sym__indent] = ACTIONS(998), + [sym__newline] = ACTIONS(949), + [sym__indent] = ACTIONS(951), [sym_string_start] = ACTIONS(107), }, [365] = { - [sym__simple_statements] = STATE(1347), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4688), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1230), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4674), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -65528,69 +65575,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(1000), - [sym__indent] = ACTIONS(1002), + [sym__newline] = ACTIONS(953), + [sym__indent] = ACTIONS(955), [sym_string_start] = ACTIONS(107), }, [366] = { - [sym__simple_statements] = STATE(1202), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4688), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(2976), + [sym_import_statement] = STATE(4807), + [sym_future_import_statement] = STATE(4807), + [sym_import_from_statement] = STATE(4807), + [sym_print_statement] = STATE(4807), + [sym_assert_statement] = STATE(4807), + [sym_expression_statement] = STATE(4807), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4807), + [sym_delete_statement] = STATE(4807), + [sym_raise_statement] = STATE(4807), + [sym_pass_statement] = STATE(4807), + [sym_break_statement] = STATE(4807), + [sym_continue_statement] = STATE(4807), + [sym_global_statement] = STATE(4807), + [sym_nonlocal_statement] = STATE(4807), + [sym_exec_statement] = STATE(4807), + [sym_type_alias_statement] = STATE(4807), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4807), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -65634,69 +65681,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(1004), - [sym__indent] = ACTIONS(1006), + [sym__newline] = ACTIONS(957), + [sym__indent] = ACTIONS(959), [sym_string_start] = ACTIONS(107), }, [367] = { - [sym__simple_statements] = STATE(2925), - [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(3429), - [sym__named_expression_lhs] = STATE(5564), - [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(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4783), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(2983), + [sym_import_statement] = STATE(4807), + [sym_future_import_statement] = STATE(4807), + [sym_import_from_statement] = STATE(4807), + [sym_print_statement] = STATE(4807), + [sym_assert_statement] = STATE(4807), + [sym_expression_statement] = STATE(4807), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4807), + [sym_delete_statement] = STATE(4807), + [sym_raise_statement] = STATE(4807), + [sym_pass_statement] = STATE(4807), + [sym_break_statement] = STATE(4807), + [sym_continue_statement] = STATE(4807), + [sym_global_statement] = STATE(4807), + [sym_nonlocal_statement] = STATE(4807), + [sym_exec_statement] = STATE(4807), + [sym_type_alias_statement] = STATE(4807), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4807), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -65740,69 +65787,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(1008), - [sym__indent] = ACTIONS(1010), + [sym__newline] = ACTIONS(961), + [sym__indent] = ACTIONS(963), [sym_string_start] = ACTIONS(107), }, [368] = { - [sym__simple_statements] = STATE(936), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4688), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(2987), + [sym_import_statement] = STATE(4807), + [sym_future_import_statement] = STATE(4807), + [sym_import_from_statement] = STATE(4807), + [sym_print_statement] = STATE(4807), + [sym_assert_statement] = STATE(4807), + [sym_expression_statement] = STATE(4807), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4807), + [sym_delete_statement] = STATE(4807), + [sym_raise_statement] = STATE(4807), + [sym_pass_statement] = STATE(4807), + [sym_break_statement] = STATE(4807), + [sym_continue_statement] = STATE(4807), + [sym_global_statement] = STATE(4807), + [sym_nonlocal_statement] = STATE(4807), + [sym_exec_statement] = STATE(4807), + [sym_type_alias_statement] = STATE(4807), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4807), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -65846,69 +65893,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(1012), - [sym__indent] = ACTIONS(1014), + [sym__newline] = ACTIONS(965), + [sym__indent] = ACTIONS(967), [sym_string_start] = ACTIONS(107), }, [369] = { - [sym__simple_statements] = STATE(1245), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4688), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(677), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5109), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -65952,69 +65999,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(1016), - [sym__indent] = ACTIONS(1018), + [sym__newline] = ACTIONS(375), + [sym__indent] = ACTIONS(377), [sym_string_start] = ACTIONS(107), }, [370] = { - [sym__simple_statements] = STATE(3039), - [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(3429), - [sym__named_expression_lhs] = STATE(5564), - [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(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4783), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1381), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5109), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -66058,69 +66105,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(1020), - [sym__indent] = ACTIONS(1022), + [sym__newline] = ACTIONS(969), + [sym__indent] = ACTIONS(971), [sym_string_start] = ACTIONS(107), }, [371] = { - [sym__simple_statements] = STATE(568), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4640), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1162), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4674), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -66164,69 +66211,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(1024), - [sym__indent] = ACTIONS(1026), + [sym__newline] = ACTIONS(973), + [sym__indent] = ACTIONS(975), [sym_string_start] = ACTIONS(107), }, [372] = { - [sym__simple_statements] = STATE(1157), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4688), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1416), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4674), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -66270,69 +66317,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(1028), - [sym__indent] = ACTIONS(1030), + [sym__newline] = ACTIONS(977), + [sym__indent] = ACTIONS(979), [sym_string_start] = ACTIONS(107), }, [373] = { - [sym__simple_statements] = STATE(1259), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4688), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(679), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5109), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -66376,69 +66423,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(395), - [sym__indent] = ACTIONS(397), + [sym__newline] = ACTIONS(981), + [sym__indent] = ACTIONS(983), [sym_string_start] = ACTIONS(107), }, [374] = { - [sym__simple_statements] = STATE(2999), - [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(3429), - [sym__named_expression_lhs] = STATE(5564), - [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(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4783), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(2934), + [sym_import_statement] = STATE(4807), + [sym_future_import_statement] = STATE(4807), + [sym_import_from_statement] = STATE(4807), + [sym_print_statement] = STATE(4807), + [sym_assert_statement] = STATE(4807), + [sym_expression_statement] = STATE(4807), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4807), + [sym_delete_statement] = STATE(4807), + [sym_raise_statement] = STATE(4807), + [sym_pass_statement] = STATE(4807), + [sym_break_statement] = STATE(4807), + [sym_continue_statement] = STATE(4807), + [sym_global_statement] = STATE(4807), + [sym_nonlocal_statement] = STATE(4807), + [sym_exec_statement] = STATE(4807), + [sym_type_alias_statement] = STATE(4807), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4807), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -66482,69 +66529,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(1032), - [sym__indent] = ACTIONS(1034), + [sym__newline] = ACTIONS(985), + [sym__indent] = ACTIONS(987), [sym_string_start] = ACTIONS(107), }, [375] = { - [sym__simple_statements] = STATE(3002), - [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(3429), - [sym__named_expression_lhs] = STATE(5564), - [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(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4783), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1235), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4674), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -66588,69 +66635,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(1036), - [sym__indent] = ACTIONS(1038), + [sym__newline] = ACTIONS(989), + [sym__indent] = ACTIONS(991), [sym_string_start] = ACTIONS(107), }, [376] = { - [sym__simple_statements] = STATE(3047), - [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(3429), - [sym__named_expression_lhs] = STATE(5564), - [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(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4783), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1158), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5109), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -66694,69 +66741,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(1040), - [sym__indent] = ACTIONS(1042), + [sym__newline] = ACTIONS(993), + [sym__indent] = ACTIONS(995), [sym_string_start] = ACTIONS(107), }, [377] = { - [sym__simple_statements] = STATE(1250), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4688), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(2957), + [sym_import_statement] = STATE(4807), + [sym_future_import_statement] = STATE(4807), + [sym_import_from_statement] = STATE(4807), + [sym_print_statement] = STATE(4807), + [sym_assert_statement] = STATE(4807), + [sym_expression_statement] = STATE(4807), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4807), + [sym_delete_statement] = STATE(4807), + [sym_raise_statement] = STATE(4807), + [sym_pass_statement] = STATE(4807), + [sym_break_statement] = STATE(4807), + [sym_continue_statement] = STATE(4807), + [sym_global_statement] = STATE(4807), + [sym_nonlocal_statement] = STATE(4807), + [sym_exec_statement] = STATE(4807), + [sym_type_alias_statement] = STATE(4807), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4807), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -66800,69 +66847,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(1044), - [sym__indent] = ACTIONS(1046), + [sym__newline] = ACTIONS(997), + [sym__indent] = ACTIONS(999), [sym_string_start] = ACTIONS(107), }, [378] = { - [sym__simple_statements] = STATE(579), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4640), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1171), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4674), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -66906,69 +66953,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(407), - [sym__indent] = ACTIONS(409), + [sym__newline] = ACTIONS(443), + [sym__indent] = ACTIONS(445), [sym_string_start] = ACTIONS(107), }, [379] = { - [sym__simple_statements] = STATE(1279), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4688), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_chevron] = STATE(4492), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_list_splat_pattern] = STATE(2088), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3944), + [sym_primary_expression] = STATE(2032), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_attribute] = STATE(2111), + [sym_subscript] = STATE(2111), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [sym_identifier] = ACTIONS(1001), + [anon_sym_SEMI] = ACTIONS(1003), + [anon_sym_DOT] = ACTIONS(1005), + [anon_sym_LPAREN] = ACTIONS(1007), + [anon_sym_COMMA] = ACTIONS(1010), + [anon_sym_as] = ACTIONS(1005), + [anon_sym_STAR] = ACTIONS(1013), + [anon_sym_print] = ACTIONS(1016), + [anon_sym_GT_GT] = ACTIONS(1018), + [anon_sym_COLON_EQ] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1005), + [anon_sym_COLON] = ACTIONS(1022), + [anon_sym_match] = ACTIONS(1016), + [anon_sym_async] = ACTIONS(1016), + [anon_sym_in] = ACTIONS(1005), + [anon_sym_STAR_STAR] = ACTIONS(1005), + [anon_sym_exec] = ACTIONS(1016), + [anon_sym_EQ] = ACTIONS(1025), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AT] = ACTIONS(1005), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1005), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_not] = ACTIONS(1033), + [anon_sym_and] = ACTIONS(1005), + [anon_sym_or] = ACTIONS(1005), + [anon_sym_SLASH] = ACTIONS(1005), + [anon_sym_PERCENT] = ACTIONS(1005), + [anon_sym_SLASH_SLASH] = ACTIONS(1005), + [anon_sym_AMP] = ACTIONS(1030), + [anon_sym_CARET] = ACTIONS(1005), + [anon_sym_LT_LT] = ACTIONS(1005), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_is] = ACTIONS(1005), + [anon_sym_LT] = ACTIONS(1036), + [anon_sym_LT_EQ] = ACTIONS(1003), + [anon_sym_EQ_EQ] = ACTIONS(1003), + [anon_sym_BANG_EQ] = ACTIONS(1003), + [anon_sym_GT_EQ] = ACTIONS(1003), + [anon_sym_GT] = ACTIONS(1005), + [anon_sym_LT_GT] = ACTIONS(1003), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_PLUS_EQ] = ACTIONS(1039), + [anon_sym_DASH_EQ] = ACTIONS(1039), + [anon_sym_STAR_EQ] = ACTIONS(1039), + [anon_sym_SLASH_EQ] = ACTIONS(1039), + [anon_sym_AT_EQ] = ACTIONS(1039), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1039), + [anon_sym_PERCENT_EQ] = ACTIONS(1039), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1039), + [anon_sym_GT_GT_EQ] = ACTIONS(1039), + [anon_sym_LT_LT_EQ] = ACTIONS(1039), + [anon_sym_AMP_EQ] = ACTIONS(1039), + [anon_sym_CARET_EQ] = ACTIONS(1039), + [anon_sym_PIPE_EQ] = ACTIONS(1039), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [sym_integer] = ACTIONS(81), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(1041), + [anon_sym_api] = ACTIONS(1016), + [sym_true] = ACTIONS(81), + [sym_false] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(1003), + [sym_string_start] = ACTIONS(107), + }, + [380] = { + [sym__simple_statements] = STATE(2961), + [sym_import_statement] = STATE(4807), + [sym_future_import_statement] = STATE(4807), + [sym_import_from_statement] = STATE(4807), + [sym_print_statement] = STATE(4807), + [sym_assert_statement] = STATE(4807), + [sym_expression_statement] = STATE(4807), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4807), + [sym_delete_statement] = STATE(4807), + [sym_raise_statement] = STATE(4807), + [sym_pass_statement] = STATE(4807), + [sym_break_statement] = STATE(4807), + [sym_continue_statement] = STATE(4807), + [sym_global_statement] = STATE(4807), + [sym_nonlocal_statement] = STATE(4807), + [sym_exec_statement] = STATE(4807), + [sym_type_alias_statement] = STATE(4807), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4807), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -67012,69 +67165,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(1048), - [sym__indent] = ACTIONS(1050), + [sym__newline] = ACTIONS(1043), + [sym__indent] = ACTIONS(1045), [sym_string_start] = ACTIONS(107), }, - [380] = { - [sym__simple_statements] = STATE(583), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4640), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [381] = { + [sym__simple_statements] = STATE(1206), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4674), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -67118,69 +67271,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(1052), - [sym__indent] = ACTIONS(1054), + [sym__newline] = ACTIONS(1047), + [sym__indent] = ACTIONS(1049), [sym_string_start] = ACTIONS(107), }, - [381] = { - [sym__simple_statements] = STATE(3003), - [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(3429), - [sym__named_expression_lhs] = STATE(5564), - [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(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4783), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [382] = { + [sym__simple_statements] = STATE(2971), + [sym_import_statement] = STATE(4807), + [sym_future_import_statement] = STATE(4807), + [sym_import_from_statement] = STATE(4807), + [sym_print_statement] = STATE(4807), + [sym_assert_statement] = STATE(4807), + [sym_expression_statement] = STATE(4807), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4807), + [sym_delete_statement] = STATE(4807), + [sym_raise_statement] = STATE(4807), + [sym_pass_statement] = STATE(4807), + [sym_break_statement] = STATE(4807), + [sym_continue_statement] = STATE(4807), + [sym_global_statement] = STATE(4807), + [sym_nonlocal_statement] = STATE(4807), + [sym_exec_statement] = STATE(4807), + [sym_type_alias_statement] = STATE(4807), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4807), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -67224,69 +67377,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(1056), - [sym__indent] = ACTIONS(1058), + [sym__newline] = ACTIONS(1051), + [sym__indent] = ACTIONS(1053), [sym_string_start] = ACTIONS(107), }, - [382] = { - [sym__simple_statements] = STATE(1161), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4688), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [383] = { + [sym__simple_statements] = STATE(2975), + [sym_import_statement] = STATE(4807), + [sym_future_import_statement] = STATE(4807), + [sym_import_from_statement] = STATE(4807), + [sym_print_statement] = STATE(4807), + [sym_assert_statement] = STATE(4807), + [sym_expression_statement] = STATE(4807), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4807), + [sym_delete_statement] = STATE(4807), + [sym_raise_statement] = STATE(4807), + [sym_pass_statement] = STATE(4807), + [sym_break_statement] = STATE(4807), + [sym_continue_statement] = STATE(4807), + [sym_global_statement] = STATE(4807), + [sym_nonlocal_statement] = STATE(4807), + [sym_exec_statement] = STATE(4807), + [sym_type_alias_statement] = STATE(4807), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4807), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -67330,69 +67483,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(1060), - [sym__indent] = ACTIONS(1062), + [sym__newline] = ACTIONS(1055), + [sym__indent] = ACTIONS(1057), [sym_string_start] = ACTIONS(107), }, - [383] = { - [sym__simple_statements] = STATE(3036), - [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(3429), - [sym__named_expression_lhs] = STATE(5564), - [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(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4783), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [384] = { + [sym__simple_statements] = STATE(1524), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5109), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -67436,69 +67589,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(1064), - [sym__indent] = ACTIONS(1066), + [sym__newline] = ACTIONS(1059), + [sym__indent] = ACTIONS(1061), [sym_string_start] = ACTIONS(107), }, - [384] = { - [sym__simple_statements] = STATE(1253), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4688), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [385] = { + [sym__simple_statements] = STATE(685), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5109), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -67542,69 +67695,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(1068), - [sym__indent] = ACTIONS(1070), + [sym__newline] = ACTIONS(1063), + [sym__indent] = ACTIONS(1065), [sym_string_start] = ACTIONS(107), }, - [385] = { - [sym__simple_statements] = STATE(3046), - [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(3429), - [sym__named_expression_lhs] = STATE(5564), - [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(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4783), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [386] = { + [sym__simple_statements] = STATE(682), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5109), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -67648,69 +67801,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(1072), - [sym__indent] = ACTIONS(1074), + [sym__newline] = ACTIONS(431), + [sym__indent] = ACTIONS(433), [sym_string_start] = ACTIONS(107), }, - [386] = { - [sym__simple_statements] = STATE(3048), - [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(3429), - [sym__named_expression_lhs] = STATE(5564), - [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(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4783), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [387] = { + [sym__simple_statements] = STATE(921), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5109), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -67754,175 +67907,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(1076), - [sym__indent] = ACTIONS(1078), - [sym_string_start] = ACTIONS(107), - }, - [387] = { - [sym_chevron] = STATE(4570), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_list_splat_pattern] = STATE(2088), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3947), - [sym_primary_expression] = STATE(2024), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_attribute] = STATE(2123), - [sym_subscript] = STATE(2123), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [sym_identifier] = ACTIONS(577), - [anon_sym_SEMI] = ACTIONS(579), - [anon_sym_DOT] = ACTIONS(581), - [anon_sym_LPAREN] = ACTIONS(583), - [anon_sym_COMMA] = ACTIONS(586), - [anon_sym_as] = ACTIONS(581), - [anon_sym_STAR] = ACTIONS(589), - [anon_sym_print] = ACTIONS(592), - [anon_sym_GT_GT] = ACTIONS(594), - [anon_sym_COLON_EQ] = ACTIONS(596), - [anon_sym_if] = ACTIONS(581), - [anon_sym_COLON] = ACTIONS(1080), - [anon_sym_match] = ACTIONS(592), - [anon_sym_async] = ACTIONS(592), - [anon_sym_in] = ACTIONS(581), - [anon_sym_STAR_STAR] = ACTIONS(581), - [anon_sym_exec] = ACTIONS(592), - [anon_sym_EQ] = ACTIONS(598), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_AT] = ACTIONS(581), - [anon_sym_DASH] = ACTIONS(603), - [anon_sym_PIPE] = ACTIONS(581), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(603), - [anon_sym_not] = ACTIONS(606), - [anon_sym_and] = ACTIONS(581), - [anon_sym_or] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(581), - [anon_sym_PERCENT] = ACTIONS(581), - [anon_sym_SLASH_SLASH] = ACTIONS(581), - [anon_sym_AMP] = ACTIONS(603), - [anon_sym_CARET] = ACTIONS(581), - [anon_sym_LT_LT] = ACTIONS(581), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_is] = ACTIONS(581), - [anon_sym_LT] = ACTIONS(609), - [anon_sym_LT_EQ] = ACTIONS(579), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_GT_EQ] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_GT] = ACTIONS(579), - [anon_sym_lambda] = ACTIONS(73), - [anon_sym_PLUS_EQ] = ACTIONS(612), - [anon_sym_DASH_EQ] = ACTIONS(612), - [anon_sym_STAR_EQ] = ACTIONS(612), - [anon_sym_SLASH_EQ] = ACTIONS(612), - [anon_sym_AT_EQ] = ACTIONS(612), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(612), - [anon_sym_PERCENT_EQ] = ACTIONS(612), - [anon_sym_STAR_STAR_EQ] = ACTIONS(612), - [anon_sym_GT_GT_EQ] = ACTIONS(612), - [anon_sym_LT_LT_EQ] = ACTIONS(612), - [anon_sym_AMP_EQ] = ACTIONS(612), - [anon_sym_CARET_EQ] = ACTIONS(612), - [anon_sym_PIPE_EQ] = ACTIONS(612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(77), - [anon_sym_None] = ACTIONS(79), - [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(83), - [anon_sym_await] = ACTIONS(614), - [anon_sym_api] = ACTIONS(592), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(579), + [sym__newline] = ACTIONS(1067), + [sym__indent] = ACTIONS(1069), [sym_string_start] = ACTIONS(107), }, [388] = { - [sym__simple_statements] = STATE(595), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4640), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(2935), + [sym_import_statement] = STATE(4807), + [sym_future_import_statement] = STATE(4807), + [sym_import_from_statement] = STATE(4807), + [sym_print_statement] = STATE(4807), + [sym_assert_statement] = STATE(4807), + [sym_expression_statement] = STATE(4807), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4807), + [sym_delete_statement] = STATE(4807), + [sym_raise_statement] = STATE(4807), + [sym_pass_statement] = STATE(4807), + [sym_break_statement] = STATE(4807), + [sym_continue_statement] = STATE(4807), + [sym_global_statement] = STATE(4807), + [sym_nonlocal_statement] = STATE(4807), + [sym_exec_statement] = STATE(4807), + [sym_type_alias_statement] = STATE(4807), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4807), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -67966,69 +68013,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(1083), - [sym__indent] = ACTIONS(1085), + [sym__newline] = ACTIONS(1071), + [sym__indent] = ACTIONS(1073), [sym_string_start] = ACTIONS(107), }, [389] = { - [sym__simple_statements] = STATE(591), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4640), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(2936), + [sym_import_statement] = STATE(4807), + [sym_future_import_statement] = STATE(4807), + [sym_import_from_statement] = STATE(4807), + [sym_print_statement] = STATE(4807), + [sym_assert_statement] = STATE(4807), + [sym_expression_statement] = STATE(4807), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4807), + [sym_delete_statement] = STATE(4807), + [sym_raise_statement] = STATE(4807), + [sym_pass_statement] = STATE(4807), + [sym_break_statement] = STATE(4807), + [sym_continue_statement] = STATE(4807), + [sym_global_statement] = STATE(4807), + [sym_nonlocal_statement] = STATE(4807), + [sym_exec_statement] = STATE(4807), + [sym_type_alias_statement] = STATE(4807), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4807), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -68072,69 +68119,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(443), - [sym__indent] = ACTIONS(445), + [sym__newline] = ACTIONS(1075), + [sym__indent] = ACTIONS(1077), [sym_string_start] = ACTIONS(107), }, [390] = { - [sym__simple_statements] = STATE(2939), - [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(3429), - [sym__named_expression_lhs] = STATE(5564), - [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(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4783), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(2937), + [sym_import_statement] = STATE(4807), + [sym_future_import_statement] = STATE(4807), + [sym_import_from_statement] = STATE(4807), + [sym_print_statement] = STATE(4807), + [sym_assert_statement] = STATE(4807), + [sym_expression_statement] = STATE(4807), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4807), + [sym_delete_statement] = STATE(4807), + [sym_raise_statement] = STATE(4807), + [sym_pass_statement] = STATE(4807), + [sym_break_statement] = STATE(4807), + [sym_continue_statement] = STATE(4807), + [sym_global_statement] = STATE(4807), + [sym_nonlocal_statement] = STATE(4807), + [sym_exec_statement] = STATE(4807), + [sym_type_alias_statement] = STATE(4807), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4807), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -68178,69 +68225,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(1087), - [sym__indent] = ACTIONS(1089), + [sym__newline] = ACTIONS(1079), + [sym__indent] = ACTIONS(1081), [sym_string_start] = ACTIONS(107), }, [391] = { - [sym__simple_statements] = STATE(2940), - [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(3429), - [sym__named_expression_lhs] = STATE(5564), - [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(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4783), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1109), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5109), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -68284,69 +68331,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(1091), - [sym__indent] = ACTIONS(1093), + [sym__newline] = ACTIONS(1083), + [sym__indent] = ACTIONS(1085), [sym_string_start] = ACTIONS(107), }, [392] = { - [sym__simple_statements] = STATE(2941), - [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(3429), - [sym__named_expression_lhs] = STATE(5564), - [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(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4783), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1111), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5109), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -68390,69 +68437,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(1095), - [sym__indent] = ACTIONS(1097), + [sym__newline] = ACTIONS(1087), + [sym__indent] = ACTIONS(1089), [sym_string_start] = ACTIONS(107), }, [393] = { - [sym__simple_statements] = STATE(2944), - [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(3429), - [sym__named_expression_lhs] = STATE(5564), - [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(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4783), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1456), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5109), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -68496,69 +68543,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(1099), - [sym__indent] = ACTIONS(1101), + [sym__newline] = ACTIONS(1091), + [sym__indent] = ACTIONS(1093), [sym_string_start] = ACTIONS(107), }, [394] = { - [sym__simple_statements] = STATE(1363), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4688), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(2941), + [sym_import_statement] = STATE(4807), + [sym_future_import_statement] = STATE(4807), + [sym_import_from_statement] = STATE(4807), + [sym_print_statement] = STATE(4807), + [sym_assert_statement] = STATE(4807), + [sym_expression_statement] = STATE(4807), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4807), + [sym_delete_statement] = STATE(4807), + [sym_raise_statement] = STATE(4807), + [sym_pass_statement] = STATE(4807), + [sym_break_statement] = STATE(4807), + [sym_continue_statement] = STATE(4807), + [sym_global_statement] = STATE(4807), + [sym_nonlocal_statement] = STATE(4807), + [sym_exec_statement] = STATE(4807), + [sym_type_alias_statement] = STATE(4807), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4807), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -68602,69 +68649,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(1103), - [sym__indent] = ACTIONS(1105), + [sym__newline] = ACTIONS(1095), + [sym__indent] = ACTIONS(1097), [sym_string_start] = ACTIONS(107), }, [395] = { - [sym__simple_statements] = STATE(2958), - [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(3429), - [sym__named_expression_lhs] = STATE(5564), - [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(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4783), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(701), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5109), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -68708,69 +68755,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(1107), - [sym__indent] = ACTIONS(1109), + [sym__newline] = ACTIONS(1099), + [sym__indent] = ACTIONS(1101), [sym_string_start] = ACTIONS(107), }, [396] = { - [sym__simple_statements] = STATE(603), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4640), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1461), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5109), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -68814,69 +68861,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(419), - [sym__indent] = ACTIONS(421), + [sym__newline] = ACTIONS(1103), + [sym__indent] = ACTIONS(1105), [sym_string_start] = ACTIONS(107), }, [397] = { - [sym__simple_statements] = STATE(501), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4640), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(687), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5109), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -68920,69 +68967,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(1111), - [sym__indent] = ACTIONS(1113), + [sym__newline] = ACTIONS(427), + [sym__indent] = ACTIONS(429), [sym_string_start] = ACTIONS(107), }, [398] = { - [sym__simple_statements] = STATE(2988), - [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(3429), - [sym__named_expression_lhs] = STATE(5564), - [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(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4783), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(3010), + [sym_import_statement] = STATE(4807), + [sym_future_import_statement] = STATE(4807), + [sym_import_from_statement] = STATE(4807), + [sym_print_statement] = STATE(4807), + [sym_assert_statement] = STATE(4807), + [sym_expression_statement] = STATE(4807), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4807), + [sym_delete_statement] = STATE(4807), + [sym_raise_statement] = STATE(4807), + [sym_pass_statement] = STATE(4807), + [sym_break_statement] = STATE(4807), + [sym_continue_statement] = STATE(4807), + [sym_global_statement] = STATE(4807), + [sym_nonlocal_statement] = STATE(4807), + [sym_exec_statement] = STATE(4807), + [sym_type_alias_statement] = STATE(4807), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4807), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -69026,69 +69073,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(1115), - [sym__indent] = ACTIONS(1117), + [sym__newline] = ACTIONS(1107), + [sym__indent] = ACTIONS(1109), [sym_string_start] = ACTIONS(107), }, [399] = { - [sym__simple_statements] = STATE(2992), - [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(3429), - [sym__named_expression_lhs] = STATE(5564), - [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(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4783), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(2970), + [sym_import_statement] = STATE(4807), + [sym_future_import_statement] = STATE(4807), + [sym_import_from_statement] = STATE(4807), + [sym_print_statement] = STATE(4807), + [sym_assert_statement] = STATE(4807), + [sym_expression_statement] = STATE(4807), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4807), + [sym_delete_statement] = STATE(4807), + [sym_raise_statement] = STATE(4807), + [sym_pass_statement] = STATE(4807), + [sym_break_statement] = STATE(4807), + [sym_continue_statement] = STATE(4807), + [sym_global_statement] = STATE(4807), + [sym_nonlocal_statement] = STATE(4807), + [sym_exec_statement] = STATE(4807), + [sym_type_alias_statement] = STATE(4807), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4807), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -69132,69 +69179,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(1119), - [sym__indent] = ACTIONS(1121), + [sym__newline] = ACTIONS(1111), + [sym__indent] = ACTIONS(1113), [sym_string_start] = ACTIONS(107), }, [400] = { - [sym__simple_statements] = STATE(2993), - [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(3429), - [sym__named_expression_lhs] = STATE(5564), - [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(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4783), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1288), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4674), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -69238,69 +69285,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(1123), - [sym__indent] = ACTIONS(1125), + [sym__newline] = ACTIONS(1115), + [sym__indent] = ACTIONS(1117), [sym_string_start] = ACTIONS(107), }, [401] = { - [sym__simple_statements] = STATE(2995), - [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(3429), - [sym__named_expression_lhs] = STATE(5564), - [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(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4783), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1119), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5109), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -69344,69 +69391,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(1127), - [sym__indent] = ACTIONS(1129), + [sym__newline] = ACTIONS(1119), + [sym__indent] = ACTIONS(1121), [sym_string_start] = ACTIONS(107), }, [402] = { - [sym__simple_statements] = STATE(2996), - [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(3429), - [sym__named_expression_lhs] = STATE(5564), - [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(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4783), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(2985), + [sym_import_statement] = STATE(4807), + [sym_future_import_statement] = STATE(4807), + [sym_import_from_statement] = STATE(4807), + [sym_print_statement] = STATE(4807), + [sym_assert_statement] = STATE(4807), + [sym_expression_statement] = STATE(4807), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4807), + [sym_delete_statement] = STATE(4807), + [sym_raise_statement] = STATE(4807), + [sym_pass_statement] = STATE(4807), + [sym_break_statement] = STATE(4807), + [sym_continue_statement] = STATE(4807), + [sym_global_statement] = STATE(4807), + [sym_nonlocal_statement] = STATE(4807), + [sym_exec_statement] = STATE(4807), + [sym_type_alias_statement] = STATE(4807), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4807), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -69450,69 +69497,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(1131), - [sym__indent] = ACTIONS(1133), + [sym__newline] = ACTIONS(1123), + [sym__indent] = ACTIONS(1125), [sym_string_start] = ACTIONS(107), }, [403] = { - [sym__simple_statements] = STATE(2997), - [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(3429), - [sym__named_expression_lhs] = STATE(5564), - [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(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4783), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(2986), + [sym_import_statement] = STATE(4807), + [sym_future_import_statement] = STATE(4807), + [sym_import_from_statement] = STATE(4807), + [sym_print_statement] = STATE(4807), + [sym_assert_statement] = STATE(4807), + [sym_expression_statement] = STATE(4807), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4807), + [sym_delete_statement] = STATE(4807), + [sym_raise_statement] = STATE(4807), + [sym_pass_statement] = STATE(4807), + [sym_break_statement] = STATE(4807), + [sym_continue_statement] = STATE(4807), + [sym_global_statement] = STATE(4807), + [sym_nonlocal_statement] = STATE(4807), + [sym_exec_statement] = STATE(4807), + [sym_type_alias_statement] = STATE(4807), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4807), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -69556,69 +69603,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(1135), - [sym__indent] = ACTIONS(1137), + [sym__newline] = ACTIONS(1127), + [sym__indent] = ACTIONS(1129), [sym_string_start] = ACTIONS(107), }, [404] = { - [sym__simple_statements] = STATE(612), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4640), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1471), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5109), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -69662,69 +69709,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(387), - [sym__indent] = ACTIONS(389), + [sym__newline] = ACTIONS(1131), + [sym__indent] = ACTIONS(1133), [sym_string_start] = ACTIONS(107), }, [405] = { - [sym__simple_statements] = STATE(615), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4640), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(689), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5109), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [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(1135), + [sym__indent] = ACTIONS(1137), + [sym_string_start] = ACTIONS(107), + }, + [406] = { + [sym__simple_statements] = STATE(1178), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4674), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -69772,65 +69925,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(1141), [sym_string_start] = ACTIONS(107), }, - [406] = { - [sym__simple_statements] = STATE(3016), - [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(3429), - [sym__named_expression_lhs] = STATE(5564), - [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(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4783), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [407] = { + [sym__simple_statements] = STATE(1222), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4674), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -69878,65 +70031,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(1145), [sym_string_start] = ACTIONS(107), }, - [407] = { - [sym__simple_statements] = STATE(3021), - [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(3429), - [sym__named_expression_lhs] = STATE(5564), - [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(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4783), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [408] = { + [sym__simple_statements] = STATE(1019), + [sym_import_statement] = STATE(4875), + [sym_future_import_statement] = STATE(4875), + [sym_import_from_statement] = STATE(4875), + [sym_print_statement] = STATE(4875), + [sym_assert_statement] = STATE(4875), + [sym_expression_statement] = STATE(4875), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4875), + [sym_delete_statement] = STATE(4875), + [sym_raise_statement] = STATE(4875), + [sym_pass_statement] = STATE(4875), + [sym_break_statement] = STATE(4875), + [sym_continue_statement] = STATE(4875), + [sym_global_statement] = STATE(4875), + [sym_nonlocal_statement] = STATE(4875), + [sym_exec_statement] = STATE(4875), + [sym_type_alias_statement] = STATE(4875), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4875), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -69984,65 +70137,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(1149), [sym_string_start] = ACTIONS(107), }, - [408] = { - [sym__simple_statements] = STATE(3024), - [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(3429), - [sym__named_expression_lhs] = STATE(5564), - [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(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4783), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [409] = { + [sym__simple_statements] = STATE(3004), + [sym_import_statement] = STATE(4807), + [sym_future_import_statement] = STATE(4807), + [sym_import_from_statement] = STATE(4807), + [sym_print_statement] = STATE(4807), + [sym_assert_statement] = STATE(4807), + [sym_expression_statement] = STATE(4807), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4807), + [sym_delete_statement] = STATE(4807), + [sym_raise_statement] = STATE(4807), + [sym_pass_statement] = STATE(4807), + [sym_break_statement] = STATE(4807), + [sym_continue_statement] = STATE(4807), + [sym_global_statement] = STATE(4807), + [sym_nonlocal_statement] = STATE(4807), + [sym_exec_statement] = STATE(4807), + [sym_type_alias_statement] = STATE(4807), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4807), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -70090,65 +70243,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(1153), [sym_string_start] = ACTIONS(107), }, - [409] = { - [sym__simple_statements] = STATE(3027), - [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(3429), - [sym__named_expression_lhs] = STATE(5564), - [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(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4783), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [410] = { + [sym__simple_statements] = STATE(1286), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4674), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -70196,65 +70349,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(1157), [sym_string_start] = ACTIONS(107), }, - [410] = { - [sym__simple_statements] = STATE(3028), - [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(3429), - [sym__named_expression_lhs] = STATE(5564), - [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(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4783), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [411] = { + [sym__simple_statements] = STATE(1485), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5109), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -70302,65 +70455,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(1161), [sym_string_start] = ACTIONS(107), }, - [411] = { - [sym__simple_statements] = STATE(624), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4640), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [412] = { + [sym__simple_statements] = STATE(692), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5109), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -70408,65 +70561,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(1165), [sym_string_start] = ACTIONS(107), }, - [412] = { - [sym__simple_statements] = STATE(620), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4640), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [413] = { + [sym__simple_statements] = STATE(1202), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4674), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -70510,69 +70663,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(391), - [sym__indent] = ACTIONS(393), + [sym__newline] = ACTIONS(1167), + [sym__indent] = ACTIONS(1169), [sym_string_start] = ACTIONS(107), }, - [413] = { - [sym__simple_statements] = STATE(2959), - [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(3429), - [sym__named_expression_lhs] = STATE(5564), - [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(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4783), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [414] = { + [sym__simple_statements] = STATE(503), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5109), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -70616,175 +70769,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_include] = ACTIONS(93), [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(1167), - [sym__indent] = ACTIONS(1169), + [sym__newline] = ACTIONS(1171), + [sym__indent] = ACTIONS(1173), [sym_string_start] = ACTIONS(107), }, - [414] = { - [sym__simple_statements] = STATE(2930), - [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(3429), - [sym__named_expression_lhs] = STATE(5564), - [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(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4783), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [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(1171), - [sym__indent] = ACTIONS(1173), - [sym_string_start] = ACTIONS(107), - }, - [415] = { - [sym__simple_statements] = STATE(2931), - [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(3429), - [sym__named_expression_lhs] = STATE(5564), - [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(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4783), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [415] = { + [sym__simple_statements] = STATE(1020), + [sym_import_statement] = STATE(4901), + [sym_future_import_statement] = STATE(4901), + [sym_import_from_statement] = STATE(4901), + [sym_print_statement] = STATE(4901), + [sym_assert_statement] = STATE(4901), + [sym_expression_statement] = STATE(4901), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4901), + [sym_delete_statement] = STATE(4901), + [sym_raise_statement] = STATE(4901), + [sym_pass_statement] = STATE(4901), + [sym_break_statement] = STATE(4901), + [sym_continue_statement] = STATE(4901), + [sym_global_statement] = STATE(4901), + [sym_nonlocal_statement] = STATE(4901), + [sym_exec_statement] = STATE(4901), + [sym_type_alias_statement] = STATE(4901), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4901), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -70833,64 +70880,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [416] = { - [sym__simple_statements] = STATE(3053), - [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(3429), - [sym__named_expression_lhs] = STATE(5564), - [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(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4783), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1249), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4674), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -70939,170 +70986,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [417] = { - [sym__simple_statements] = STATE(627), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4640), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [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), + [sym_chevron] = STATE(4492), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_list_splat_pattern] = STATE(2088), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3944), + [sym_primary_expression] = STATE(2032), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_attribute] = STATE(2111), + [sym_subscript] = STATE(2111), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [sym_identifier] = ACTIONS(1001), + [anon_sym_SEMI] = ACTIONS(1003), + [anon_sym_DOT] = ACTIONS(1005), + [anon_sym_LPAREN] = ACTIONS(1007), + [anon_sym_COMMA] = ACTIONS(1010), + [anon_sym_as] = ACTIONS(1005), + [anon_sym_STAR] = ACTIONS(1013), + [anon_sym_print] = ACTIONS(1016), + [anon_sym_GT_GT] = ACTIONS(1018), + [anon_sym_COLON_EQ] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1005), + [anon_sym_COLON] = ACTIONS(1025), + [anon_sym_match] = ACTIONS(1016), + [anon_sym_async] = ACTIONS(1016), + [anon_sym_in] = ACTIONS(1005), + [anon_sym_STAR_STAR] = ACTIONS(1005), + [anon_sym_exec] = ACTIONS(1016), + [anon_sym_EQ] = ACTIONS(1025), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AT] = ACTIONS(1005), + [anon_sym_DASH] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1005), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(1030), + [anon_sym_not] = ACTIONS(1033), + [anon_sym_and] = ACTIONS(1005), + [anon_sym_or] = ACTIONS(1005), + [anon_sym_SLASH] = ACTIONS(1005), + [anon_sym_PERCENT] = ACTIONS(1005), + [anon_sym_SLASH_SLASH] = ACTIONS(1005), + [anon_sym_AMP] = ACTIONS(1030), + [anon_sym_CARET] = ACTIONS(1005), + [anon_sym_LT_LT] = ACTIONS(1005), [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(71), + [anon_sym_is] = ACTIONS(1005), + [anon_sym_LT] = ACTIONS(1036), + [anon_sym_LT_EQ] = ACTIONS(1003), + [anon_sym_EQ_EQ] = ACTIONS(1003), + [anon_sym_BANG_EQ] = ACTIONS(1003), + [anon_sym_GT_EQ] = ACTIONS(1003), + [anon_sym_GT] = ACTIONS(1005), + [anon_sym_LT_GT] = ACTIONS(1003), [anon_sym_lambda] = ACTIONS(73), - [anon_sym_yield] = ACTIONS(75), + [anon_sym_PLUS_EQ] = ACTIONS(1039), + [anon_sym_DASH_EQ] = ACTIONS(1039), + [anon_sym_STAR_EQ] = ACTIONS(1039), + [anon_sym_SLASH_EQ] = ACTIONS(1039), + [anon_sym_AT_EQ] = ACTIONS(1039), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1039), + [anon_sym_PERCENT_EQ] = ACTIONS(1039), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1039), + [anon_sym_GT_GT_EQ] = ACTIONS(1039), + [anon_sym_LT_LT_EQ] = ACTIONS(1039), + [anon_sym_AMP_EQ] = ACTIONS(1039), + [anon_sym_CARET_EQ] = ACTIONS(1039), + [anon_sym_PIPE_EQ] = ACTIONS(1039), [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), + [anon_sym_await] = ACTIONS(1041), + [anon_sym_api] = ACTIONS(1016), [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(435), - [sym__indent] = ACTIONS(437), + [sym__newline] = ACTIONS(1003), [sym_string_start] = ACTIONS(107), }, [418] = { - [sym__simple_statements] = STATE(2933), - [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(3429), - [sym__named_expression_lhs] = STATE(5564), - [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(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4783), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1498), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5109), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -71151,64 +71198,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [419] = { - [sym__simple_statements] = STATE(2943), - [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(3429), - [sym__named_expression_lhs] = STATE(5564), - [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(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4783), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(504), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5109), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -71257,64 +71304,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [420] = { - [sym__simple_statements] = STATE(3044), - [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(3429), - [sym__named_expression_lhs] = STATE(5564), - [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(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4783), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1301), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4674), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -71363,64 +71410,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [421] = { - [sym__simple_statements] = STATE(629), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4640), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(3890), + [sym_import_statement] = STATE(4763), + [sym_future_import_statement] = STATE(4763), + [sym_import_from_statement] = STATE(4763), + [sym_print_statement] = STATE(4763), + [sym_assert_statement] = STATE(4763), + [sym_expression_statement] = STATE(4763), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4763), + [sym_delete_statement] = STATE(4763), + [sym_raise_statement] = STATE(4763), + [sym_pass_statement] = STATE(4763), + [sym_break_statement] = STATE(4763), + [sym_continue_statement] = STATE(4763), + [sym_global_statement] = STATE(4763), + [sym_nonlocal_statement] = STATE(4763), + [sym_exec_statement] = STATE(4763), + [sym_type_alias_statement] = STATE(4763), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4763), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -71469,64 +71516,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [422] = { - [sym__simple_statements] = STATE(3051), - [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(3429), - [sym__named_expression_lhs] = STATE(5564), - [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(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4783), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(505), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5109), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -71575,64 +71622,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [423] = { - [sym__simple_statements] = STATE(635), - [sym_import_statement] = STATE(4640), - [sym_future_import_statement] = STATE(4640), - [sym_import_from_statement] = STATE(4640), - [sym_print_statement] = STATE(4640), - [sym_assert_statement] = STATE(4640), - [sym_expression_statement] = STATE(4640), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4640), - [sym_delete_statement] = STATE(4640), - [sym_raise_statement] = STATE(4640), - [sym_pass_statement] = STATE(4640), - [sym_break_statement] = STATE(4640), - [sym_continue_statement] = STATE(4640), - [sym_global_statement] = STATE(4640), - [sym_nonlocal_statement] = STATE(4640), - [sym_exec_statement] = STATE(4640), - [sym_type_alias_statement] = STATE(4640), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4640), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(1244), + [sym_import_statement] = STATE(4674), + [sym_future_import_statement] = STATE(4674), + [sym_import_from_statement] = STATE(4674), + [sym_print_statement] = STATE(4674), + [sym_assert_statement] = STATE(4674), + [sym_expression_statement] = STATE(4674), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(4674), + [sym_delete_statement] = STATE(4674), + [sym_raise_statement] = STATE(4674), + [sym_pass_statement] = STATE(4674), + [sym_break_statement] = STATE(4674), + [sym_continue_statement] = STATE(4674), + [sym_global_statement] = STATE(4674), + [sym_nonlocal_statement] = STATE(4674), + [sym_exec_statement] = STATE(4674), + [sym_type_alias_statement] = STATE(4674), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(4674), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -71681,64 +71728,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [424] = { - [sym__simple_statements] = STATE(1406), - [sym_import_statement] = STATE(4688), - [sym_future_import_statement] = STATE(4688), - [sym_import_from_statement] = STATE(4688), - [sym_print_statement] = STATE(4688), - [sym_assert_statement] = STATE(4688), - [sym_expression_statement] = STATE(4688), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(4688), - [sym_delete_statement] = STATE(4688), - [sym_raise_statement] = STATE(4688), - [sym_pass_statement] = STATE(4688), - [sym_break_statement] = STATE(4688), - [sym_continue_statement] = STATE(4688), - [sym_global_statement] = STATE(4688), - [sym_nonlocal_statement] = STATE(4688), - [sym_exec_statement] = STATE(4688), - [sym_type_alias_statement] = STATE(4688), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(4688), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym__simple_statements] = STATE(547), + [sym_import_statement] = STATE(5109), + [sym_future_import_statement] = STATE(5109), + [sym_import_from_statement] = STATE(5109), + [sym_print_statement] = STATE(5109), + [sym_assert_statement] = STATE(5109), + [sym_expression_statement] = STATE(5109), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5109), + [sym_delete_statement] = STATE(5109), + [sym_raise_statement] = STATE(5109), + [sym_pass_statement] = STATE(5109), + [sym_break_statement] = STATE(5109), + [sym_continue_statement] = STATE(5109), + [sym_global_statement] = STATE(5109), + [sym_nonlocal_statement] = STATE(5109), + [sym_exec_statement] = STATE(5109), + [sym_type_alias_statement] = STATE(5109), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5109), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -71787,95 +71834,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [425] = { - [sym_named_expression] = STATE(3081), - [sym__named_expression_lhs] = STATE(5469), - [sym_list_splat_pattern] = STATE(2432), - [sym_as_pattern] = STATE(3081), - [sym_expression] = STATE(4071), - [sym_primary_expression] = STATE(2067), - [sym_not_operator] = STATE(3081), - [sym_boolean_operator] = STATE(3081), - [sym_binary_operator] = STATE(2549), - [sym_unary_operator] = STATE(2549), - [sym_comparison_operator] = STATE(3081), - [sym_lambda] = STATE(3081), - [sym_attribute] = STATE(2549), - [sym_subscript] = STATE(2549), - [sym_ellipsis] = STATE(2549), - [sym_call] = STATE(2549), - [sym_list] = STATE(2549), - [sym_set] = STATE(2549), - [sym_tuple] = STATE(2549), - [sym_dictionary] = STATE(2549), - [sym_list_comprehension] = STATE(2549), - [sym_dictionary_comprehension] = STATE(2549), - [sym_set_comprehension] = STATE(2549), - [sym_generator_expression] = STATE(2549), - [sym_parenthesized_expression] = STATE(2549), - [sym_conditional_expression] = STATE(3081), - [sym_concatenated_string] = STATE(2549), - [sym_string] = STATE(2140), - [sym_none] = STATE(2549), - [sym_await] = STATE(2549), - [sym_new_expression] = STATE(3081), - [sym_sizeof_expression] = STATE(2549), - [sym_cast_expression] = STATE(2549), + [sym_named_expression] = STATE(3088), + [sym__named_expression_lhs] = STATE(5579), + [sym_list_splat_pattern] = STATE(2536), + [sym_as_pattern] = STATE(3088), + [sym_expression] = STATE(4044), + [sym_primary_expression] = STATE(2072), + [sym_not_operator] = STATE(3088), + [sym_boolean_operator] = STATE(3088), + [sym_binary_operator] = STATE(2401), + [sym_unary_operator] = STATE(2401), + [sym_comparison_operator] = STATE(3088), + [sym_lambda] = STATE(3088), + [sym_attribute] = STATE(2401), + [sym_subscript] = STATE(2401), + [sym_ellipsis] = STATE(2401), + [sym_call] = STATE(2401), + [sym_list] = STATE(2401), + [sym_set] = STATE(2401), + [sym_tuple] = STATE(2401), + [sym_dictionary] = STATE(2401), + [sym_list_comprehension] = STATE(2401), + [sym_dictionary_comprehension] = STATE(2401), + [sym_set_comprehension] = STATE(2401), + [sym_generator_expression] = STATE(2401), + [sym_parenthesized_expression] = STATE(2401), + [sym_conditional_expression] = STATE(3088), + [sym_concatenated_string] = STATE(2401), + [sym_string] = STATE(2161), + [sym_none] = STATE(2401), + [sym_await] = STATE(2401), + [sym_new_expression] = STATE(3088), + [sym_sizeof_expression] = STATE(2401), + [sym_cast_expression] = STATE(2401), [sym_identifier] = ACTIONS(1211), - [anon_sym_SEMI] = ACTIONS(579), - [anon_sym_DOT] = ACTIONS(581), + [anon_sym_SEMI] = ACTIONS(1003), + [anon_sym_DOT] = ACTIONS(1005), [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_COMMA] = ACTIONS(586), - [anon_sym_as] = ACTIONS(581), + [anon_sym_COMMA] = ACTIONS(1010), + [anon_sym_as] = ACTIONS(1005), [anon_sym_STAR] = ACTIONS(1215), [anon_sym_print] = ACTIONS(1217), - [anon_sym_GT_GT] = ACTIONS(581), - [anon_sym_COLON_EQ] = ACTIONS(596), - [anon_sym_if] = ACTIONS(581), - [anon_sym_COLON] = ACTIONS(598), + [anon_sym_GT_GT] = ACTIONS(1005), + [anon_sym_COLON_EQ] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1005), + [anon_sym_COLON] = ACTIONS(1025), [anon_sym_match] = ACTIONS(1217), [anon_sym_async] = ACTIONS(1217), - [anon_sym_in] = ACTIONS(581), - [anon_sym_STAR_STAR] = ACTIONS(581), + [anon_sym_in] = ACTIONS(1005), + [anon_sym_STAR_STAR] = ACTIONS(1005), [anon_sym_exec] = ACTIONS(1217), - [anon_sym_EQ] = ACTIONS(598), + [anon_sym_EQ] = ACTIONS(1025), [anon_sym_LBRACK] = ACTIONS(1219), - [anon_sym_AT] = ACTIONS(581), + [anon_sym_AT] = ACTIONS(1005), [anon_sym_DASH] = ACTIONS(1221), - [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(1005), [anon_sym_LBRACE] = ACTIONS(1223), [anon_sym_PLUS] = ACTIONS(1221), [anon_sym_not] = ACTIONS(1225), - [anon_sym_and] = ACTIONS(581), - [anon_sym_or] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(581), - [anon_sym_PERCENT] = ACTIONS(581), - [anon_sym_SLASH_SLASH] = ACTIONS(581), + [anon_sym_and] = ACTIONS(1005), + [anon_sym_or] = ACTIONS(1005), + [anon_sym_SLASH] = ACTIONS(1005), + [anon_sym_PERCENT] = ACTIONS(1005), + [anon_sym_SLASH_SLASH] = ACTIONS(1005), [anon_sym_AMP] = ACTIONS(1221), - [anon_sym_CARET] = ACTIONS(581), - [anon_sym_LT_LT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(1005), + [anon_sym_LT_LT] = ACTIONS(1005), [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_is] = ACTIONS(581), + [anon_sym_is] = ACTIONS(1005), [anon_sym_LT] = ACTIONS(1229), - [anon_sym_LT_EQ] = ACTIONS(579), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_GT_EQ] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_GT] = ACTIONS(579), + [anon_sym_LT_EQ] = ACTIONS(1003), + [anon_sym_EQ_EQ] = ACTIONS(1003), + [anon_sym_BANG_EQ] = ACTIONS(1003), + [anon_sym_GT_EQ] = ACTIONS(1003), + [anon_sym_GT] = ACTIONS(1005), + [anon_sym_LT_GT] = ACTIONS(1003), [anon_sym_lambda] = ACTIONS(1231), - [anon_sym_PLUS_EQ] = ACTIONS(612), - [anon_sym_DASH_EQ] = ACTIONS(612), - [anon_sym_STAR_EQ] = ACTIONS(612), - [anon_sym_SLASH_EQ] = ACTIONS(612), - [anon_sym_AT_EQ] = ACTIONS(612), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(612), - [anon_sym_PERCENT_EQ] = ACTIONS(612), - [anon_sym_STAR_STAR_EQ] = ACTIONS(612), - [anon_sym_GT_GT_EQ] = ACTIONS(612), - [anon_sym_LT_LT_EQ] = ACTIONS(612), - [anon_sym_AMP_EQ] = ACTIONS(612), - [anon_sym_CARET_EQ] = ACTIONS(612), - [anon_sym_PIPE_EQ] = ACTIONS(612), + [anon_sym_PLUS_EQ] = ACTIONS(1039), + [anon_sym_DASH_EQ] = ACTIONS(1039), + [anon_sym_STAR_EQ] = ACTIONS(1039), + [anon_sym_SLASH_EQ] = ACTIONS(1039), + [anon_sym_AT_EQ] = ACTIONS(1039), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1039), + [anon_sym_PERCENT_EQ] = ACTIONS(1039), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1039), + [anon_sym_GT_GT_EQ] = ACTIONS(1039), + [anon_sym_LT_LT_EQ] = ACTIONS(1039), + [anon_sym_AMP_EQ] = ACTIONS(1039), + [anon_sym_CARET_EQ] = ACTIONS(1039), + [anon_sym_PIPE_EQ] = ACTIONS(1039), [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), [anon_sym_None] = ACTIONS(1235), [sym_integer] = ACTIONS(1237), @@ -71888,99 +71935,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(3), [anon_sym_new] = ACTIONS(1243), [anon_sym_sizeof] = ACTIONS(1245), - [sym__newline] = ACTIONS(579), + [sym__newline] = ACTIONS(1003), [sym_string_start] = ACTIONS(1247), }, [426] = { - [sym_named_expression] = STATE(3081), - [sym__named_expression_lhs] = STATE(5469), - [sym_list_splat_pattern] = STATE(2432), - [sym_as_pattern] = STATE(3081), - [sym_expression] = STATE(4125), - [sym_primary_expression] = STATE(2067), - [sym_not_operator] = STATE(3081), - [sym_boolean_operator] = STATE(3081), - [sym_binary_operator] = STATE(2549), - [sym_unary_operator] = STATE(2549), - [sym_comparison_operator] = STATE(3081), - [sym_lambda] = STATE(3081), - [sym_attribute] = STATE(2549), - [sym_subscript] = STATE(2549), - [sym_ellipsis] = STATE(2549), - [sym_call] = STATE(2549), - [sym_list] = STATE(2549), - [sym_set] = STATE(2549), - [sym_tuple] = STATE(2549), - [sym_dictionary] = STATE(2549), - [sym_list_comprehension] = STATE(2549), - [sym_dictionary_comprehension] = STATE(2549), - [sym_set_comprehension] = STATE(2549), - [sym_generator_expression] = STATE(2549), - [sym_parenthesized_expression] = STATE(2549), - [sym_conditional_expression] = STATE(3081), - [sym_concatenated_string] = STATE(2549), - [sym_string] = STATE(2140), - [sym_none] = STATE(2549), - [sym_await] = STATE(2549), - [sym_new_expression] = STATE(3081), - [sym_sizeof_expression] = STATE(2549), - [sym_cast_expression] = STATE(2549), + [sym_named_expression] = STATE(3088), + [sym__named_expression_lhs] = STATE(5579), + [sym_list_splat_pattern] = STATE(2536), + [sym_as_pattern] = STATE(3088), + [sym_expression] = STATE(4102), + [sym_primary_expression] = STATE(2072), + [sym_not_operator] = STATE(3088), + [sym_boolean_operator] = STATE(3088), + [sym_binary_operator] = STATE(2401), + [sym_unary_operator] = STATE(2401), + [sym_comparison_operator] = STATE(3088), + [sym_lambda] = STATE(3088), + [sym_attribute] = STATE(2401), + [sym_subscript] = STATE(2401), + [sym_ellipsis] = STATE(2401), + [sym_call] = STATE(2401), + [sym_list] = STATE(2401), + [sym_set] = STATE(2401), + [sym_tuple] = STATE(2401), + [sym_dictionary] = STATE(2401), + [sym_list_comprehension] = STATE(2401), + [sym_dictionary_comprehension] = STATE(2401), + [sym_set_comprehension] = STATE(2401), + [sym_generator_expression] = STATE(2401), + [sym_parenthesized_expression] = STATE(2401), + [sym_conditional_expression] = STATE(3088), + [sym_concatenated_string] = STATE(2401), + [sym_string] = STATE(2161), + [sym_none] = STATE(2401), + [sym_await] = STATE(2401), + [sym_new_expression] = STATE(3088), + [sym_sizeof_expression] = STATE(2401), + [sym_cast_expression] = STATE(2401), [sym_identifier] = ACTIONS(1211), - [anon_sym_SEMI] = ACTIONS(579), - [anon_sym_DOT] = ACTIONS(581), + [anon_sym_SEMI] = ACTIONS(1003), + [anon_sym_DOT] = ACTIONS(1005), [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_COMMA] = ACTIONS(586), - [anon_sym_as] = ACTIONS(581), + [anon_sym_COMMA] = ACTIONS(1010), + [anon_sym_as] = ACTIONS(1005), [anon_sym_STAR] = ACTIONS(1215), [anon_sym_print] = ACTIONS(1217), - [anon_sym_GT_GT] = ACTIONS(581), - [anon_sym_COLON_EQ] = ACTIONS(596), - [anon_sym_if] = ACTIONS(581), - [anon_sym_COLON] = ACTIONS(598), + [anon_sym_GT_GT] = ACTIONS(1005), + [anon_sym_COLON_EQ] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1005), + [anon_sym_COLON] = ACTIONS(1025), [anon_sym_match] = ACTIONS(1217), [anon_sym_async] = ACTIONS(1217), - [anon_sym_in] = ACTIONS(581), - [anon_sym_STAR_STAR] = ACTIONS(581), + [anon_sym_in] = ACTIONS(1005), + [anon_sym_STAR_STAR] = ACTIONS(1005), [anon_sym_exec] = ACTIONS(1217), - [anon_sym_EQ] = ACTIONS(598), + [anon_sym_EQ] = ACTIONS(1025), [anon_sym_LBRACK] = ACTIONS(1219), - [anon_sym_AT] = ACTIONS(581), + [anon_sym_AT] = ACTIONS(1005), [anon_sym_DASH] = ACTIONS(1221), - [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(1005), [anon_sym_LBRACE] = ACTIONS(1223), [anon_sym_PLUS] = ACTIONS(1221), [anon_sym_not] = ACTIONS(1225), - [anon_sym_and] = ACTIONS(581), - [anon_sym_or] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(581), - [anon_sym_PERCENT] = ACTIONS(581), - [anon_sym_SLASH_SLASH] = ACTIONS(581), + [anon_sym_and] = ACTIONS(1005), + [anon_sym_or] = ACTIONS(1005), + [anon_sym_SLASH] = ACTIONS(1005), + [anon_sym_PERCENT] = ACTIONS(1005), + [anon_sym_SLASH_SLASH] = ACTIONS(1005), [anon_sym_AMP] = ACTIONS(1221), - [anon_sym_CARET] = ACTIONS(581), - [anon_sym_LT_LT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(1005), + [anon_sym_LT_LT] = ACTIONS(1005), [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_is] = ACTIONS(581), + [anon_sym_is] = ACTIONS(1005), [anon_sym_LT] = ACTIONS(1229), - [anon_sym_LT_EQ] = ACTIONS(579), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_GT_EQ] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_GT] = ACTIONS(579), + [anon_sym_LT_EQ] = ACTIONS(1003), + [anon_sym_EQ_EQ] = ACTIONS(1003), + [anon_sym_BANG_EQ] = ACTIONS(1003), + [anon_sym_GT_EQ] = ACTIONS(1003), + [anon_sym_GT] = ACTIONS(1005), + [anon_sym_LT_GT] = ACTIONS(1003), [anon_sym_lambda] = ACTIONS(1231), - [anon_sym_PLUS_EQ] = ACTIONS(612), - [anon_sym_DASH_EQ] = ACTIONS(612), - [anon_sym_STAR_EQ] = ACTIONS(612), - [anon_sym_SLASH_EQ] = ACTIONS(612), - [anon_sym_AT_EQ] = ACTIONS(612), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(612), - [anon_sym_PERCENT_EQ] = ACTIONS(612), - [anon_sym_STAR_STAR_EQ] = ACTIONS(612), - [anon_sym_GT_GT_EQ] = ACTIONS(612), - [anon_sym_LT_LT_EQ] = ACTIONS(612), - [anon_sym_AMP_EQ] = ACTIONS(612), - [anon_sym_CARET_EQ] = ACTIONS(612), - [anon_sym_PIPE_EQ] = ACTIONS(612), + [anon_sym_PLUS_EQ] = ACTIONS(1039), + [anon_sym_DASH_EQ] = ACTIONS(1039), + [anon_sym_STAR_EQ] = ACTIONS(1039), + [anon_sym_SLASH_EQ] = ACTIONS(1039), + [anon_sym_AT_EQ] = ACTIONS(1039), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1039), + [anon_sym_PERCENT_EQ] = ACTIONS(1039), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1039), + [anon_sym_GT_GT_EQ] = ACTIONS(1039), + [anon_sym_LT_LT_EQ] = ACTIONS(1039), + [anon_sym_AMP_EQ] = ACTIONS(1039), + [anon_sym_CARET_EQ] = ACTIONS(1039), + [anon_sym_PIPE_EQ] = ACTIONS(1039), [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), [anon_sym_None] = ACTIONS(1235), [sym_integer] = ACTIONS(1237), @@ -71993,67 +72040,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(3), [anon_sym_new] = ACTIONS(1243), [anon_sym_sizeof] = ACTIONS(1245), - [sym__newline] = ACTIONS(579), + [sym__newline] = ACTIONS(1003), [sym_string_start] = ACTIONS(1247), }, [427] = { - [sym_import_statement] = STATE(5202), - [sym_future_import_statement] = STATE(5202), - [sym_import_from_statement] = STATE(5202), - [sym_print_statement] = STATE(5202), - [sym_assert_statement] = STATE(5202), - [sym_expression_statement] = STATE(5202), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(5202), - [sym_delete_statement] = STATE(5202), - [sym_raise_statement] = STATE(5202), - [sym_pass_statement] = STATE(5202), - [sym_break_statement] = STATE(5202), - [sym_continue_statement] = STATE(5202), - [sym_global_statement] = STATE(5202), - [sym_nonlocal_statement] = STATE(5202), - [sym_exec_statement] = STATE(5202), - [sym_type_alias_statement] = STATE(5202), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(5202), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_import_statement] = STATE(5168), + [sym_future_import_statement] = STATE(5168), + [sym_import_from_statement] = STATE(5168), + [sym_print_statement] = STATE(5168), + [sym_assert_statement] = STATE(5168), + [sym_expression_statement] = STATE(5168), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5168), + [sym_delete_statement] = STATE(5168), + [sym_raise_statement] = STATE(5168), + [sym_pass_statement] = STATE(5168), + [sym_break_statement] = STATE(5168), + [sym_continue_statement] = STATE(5168), + [sym_global_statement] = STATE(5168), + [sym_nonlocal_statement] = STATE(5168), + [sym_exec_statement] = STATE(5168), + [sym_type_alias_statement] = STATE(5168), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5168), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -72101,63 +72148,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [428] = { - [sym_import_statement] = STATE(5202), - [sym_future_import_statement] = STATE(5202), - [sym_import_from_statement] = STATE(5202), - [sym_print_statement] = STATE(5202), - [sym_assert_statement] = STATE(5202), - [sym_expression_statement] = STATE(5202), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(5202), - [sym_delete_statement] = STATE(5202), - [sym_raise_statement] = STATE(5202), - [sym_pass_statement] = STATE(5202), - [sym_break_statement] = STATE(5202), - [sym_continue_statement] = STATE(5202), - [sym_global_statement] = STATE(5202), - [sym_nonlocal_statement] = STATE(5202), - [sym_exec_statement] = STATE(5202), - [sym_type_alias_statement] = STATE(5202), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(5202), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_import_statement] = STATE(5168), + [sym_future_import_statement] = STATE(5168), + [sym_import_from_statement] = STATE(5168), + [sym_print_statement] = STATE(5168), + [sym_assert_statement] = STATE(5168), + [sym_expression_statement] = STATE(5168), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5168), + [sym_delete_statement] = STATE(5168), + [sym_raise_statement] = STATE(5168), + [sym_pass_statement] = STATE(5168), + [sym_break_statement] = STATE(5168), + [sym_continue_statement] = STATE(5168), + [sym_global_statement] = STATE(5168), + [sym_nonlocal_statement] = STATE(5168), + [sym_exec_statement] = STATE(5168), + [sym_type_alias_statement] = STATE(5168), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5168), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -72205,63 +72252,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [429] = { - [sym_import_statement] = STATE(5202), - [sym_future_import_statement] = STATE(5202), - [sym_import_from_statement] = STATE(5202), - [sym_print_statement] = STATE(5202), - [sym_assert_statement] = STATE(5202), - [sym_expression_statement] = STATE(5202), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(5202), - [sym_delete_statement] = STATE(5202), - [sym_raise_statement] = STATE(5202), - [sym_pass_statement] = STATE(5202), - [sym_break_statement] = STATE(5202), - [sym_continue_statement] = STATE(5202), - [sym_global_statement] = STATE(5202), - [sym_nonlocal_statement] = STATE(5202), - [sym_exec_statement] = STATE(5202), - [sym_type_alias_statement] = STATE(5202), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(5202), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_import_statement] = STATE(5168), + [sym_future_import_statement] = STATE(5168), + [sym_import_from_statement] = STATE(5168), + [sym_print_statement] = STATE(5168), + [sym_assert_statement] = STATE(5168), + [sym_expression_statement] = STATE(5168), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5168), + [sym_delete_statement] = STATE(5168), + [sym_raise_statement] = STATE(5168), + [sym_pass_statement] = STATE(5168), + [sym_break_statement] = STATE(5168), + [sym_continue_statement] = STATE(5168), + [sym_global_statement] = STATE(5168), + [sym_nonlocal_statement] = STATE(5168), + [sym_exec_statement] = STATE(5168), + [sym_type_alias_statement] = STATE(5168), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5168), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -72309,63 +72356,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [430] = { - [sym_import_statement] = STATE(5202), - [sym_future_import_statement] = STATE(5202), - [sym_import_from_statement] = STATE(5202), - [sym_print_statement] = STATE(5202), - [sym_assert_statement] = STATE(5202), - [sym_expression_statement] = STATE(5202), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(5202), - [sym_delete_statement] = STATE(5202), - [sym_raise_statement] = STATE(5202), - [sym_pass_statement] = STATE(5202), - [sym_break_statement] = STATE(5202), - [sym_continue_statement] = STATE(5202), - [sym_global_statement] = STATE(5202), - [sym_nonlocal_statement] = STATE(5202), - [sym_exec_statement] = STATE(5202), - [sym_type_alias_statement] = STATE(5202), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(5202), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_import_statement] = STATE(5168), + [sym_future_import_statement] = STATE(5168), + [sym_import_from_statement] = STATE(5168), + [sym_print_statement] = STATE(5168), + [sym_assert_statement] = STATE(5168), + [sym_expression_statement] = STATE(5168), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5168), + [sym_delete_statement] = STATE(5168), + [sym_raise_statement] = STATE(5168), + [sym_pass_statement] = STATE(5168), + [sym_break_statement] = STATE(5168), + [sym_continue_statement] = STATE(5168), + [sym_global_statement] = STATE(5168), + [sym_nonlocal_statement] = STATE(5168), + [sym_exec_statement] = STATE(5168), + [sym_type_alias_statement] = STATE(5168), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5168), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -72413,63 +72460,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [431] = { - [sym_import_statement] = STATE(5202), - [sym_future_import_statement] = STATE(5202), - [sym_import_from_statement] = STATE(5202), - [sym_print_statement] = STATE(5202), - [sym_assert_statement] = STATE(5202), - [sym_expression_statement] = STATE(5202), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(5202), - [sym_delete_statement] = STATE(5202), - [sym_raise_statement] = STATE(5202), - [sym_pass_statement] = STATE(5202), - [sym_break_statement] = STATE(5202), - [sym_continue_statement] = STATE(5202), - [sym_global_statement] = STATE(5202), - [sym_nonlocal_statement] = STATE(5202), - [sym_exec_statement] = STATE(5202), - [sym_type_alias_statement] = STATE(5202), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(5202), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_import_statement] = STATE(5168), + [sym_future_import_statement] = STATE(5168), + [sym_import_from_statement] = STATE(5168), + [sym_print_statement] = STATE(5168), + [sym_assert_statement] = STATE(5168), + [sym_expression_statement] = STATE(5168), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5168), + [sym_delete_statement] = STATE(5168), + [sym_raise_statement] = STATE(5168), + [sym_pass_statement] = STATE(5168), + [sym_break_statement] = STATE(5168), + [sym_continue_statement] = STATE(5168), + [sym_global_statement] = STATE(5168), + [sym_nonlocal_statement] = STATE(5168), + [sym_exec_statement] = STATE(5168), + [sym_type_alias_statement] = STATE(5168), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5168), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -72517,63 +72564,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [432] = { - [sym_import_statement] = STATE(5202), - [sym_future_import_statement] = STATE(5202), - [sym_import_from_statement] = STATE(5202), - [sym_print_statement] = STATE(5202), - [sym_assert_statement] = STATE(5202), - [sym_expression_statement] = STATE(5202), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(5202), - [sym_delete_statement] = STATE(5202), - [sym_raise_statement] = STATE(5202), - [sym_pass_statement] = STATE(5202), - [sym_break_statement] = STATE(5202), - [sym_continue_statement] = STATE(5202), - [sym_global_statement] = STATE(5202), - [sym_nonlocal_statement] = STATE(5202), - [sym_exec_statement] = STATE(5202), - [sym_type_alias_statement] = STATE(5202), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(5202), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_import_statement] = STATE(5168), + [sym_future_import_statement] = STATE(5168), + [sym_import_from_statement] = STATE(5168), + [sym_print_statement] = STATE(5168), + [sym_assert_statement] = STATE(5168), + [sym_expression_statement] = STATE(5168), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5168), + [sym_delete_statement] = STATE(5168), + [sym_raise_statement] = STATE(5168), + [sym_pass_statement] = STATE(5168), + [sym_break_statement] = STATE(5168), + [sym_continue_statement] = STATE(5168), + [sym_global_statement] = STATE(5168), + [sym_nonlocal_statement] = STATE(5168), + [sym_exec_statement] = STATE(5168), + [sym_type_alias_statement] = STATE(5168), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5168), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -72621,63 +72668,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [433] = { - [sym_import_statement] = STATE(5202), - [sym_future_import_statement] = STATE(5202), - [sym_import_from_statement] = STATE(5202), - [sym_print_statement] = STATE(5202), - [sym_assert_statement] = STATE(5202), - [sym_expression_statement] = STATE(5202), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(5202), - [sym_delete_statement] = STATE(5202), - [sym_raise_statement] = STATE(5202), - [sym_pass_statement] = STATE(5202), - [sym_break_statement] = STATE(5202), - [sym_continue_statement] = STATE(5202), - [sym_global_statement] = STATE(5202), - [sym_nonlocal_statement] = STATE(5202), - [sym_exec_statement] = STATE(5202), - [sym_type_alias_statement] = STATE(5202), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(5202), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_import_statement] = STATE(5168), + [sym_future_import_statement] = STATE(5168), + [sym_import_from_statement] = STATE(5168), + [sym_print_statement] = STATE(5168), + [sym_assert_statement] = STATE(5168), + [sym_expression_statement] = STATE(5168), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5168), + [sym_delete_statement] = STATE(5168), + [sym_raise_statement] = STATE(5168), + [sym_pass_statement] = STATE(5168), + [sym_break_statement] = STATE(5168), + [sym_continue_statement] = STATE(5168), + [sym_global_statement] = STATE(5168), + [sym_nonlocal_statement] = STATE(5168), + [sym_exec_statement] = STATE(5168), + [sym_type_alias_statement] = STATE(5168), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5168), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -72725,63 +72772,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [434] = { - [sym_import_statement] = STATE(5202), - [sym_future_import_statement] = STATE(5202), - [sym_import_from_statement] = STATE(5202), - [sym_print_statement] = STATE(5202), - [sym_assert_statement] = STATE(5202), - [sym_expression_statement] = STATE(5202), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(5202), - [sym_delete_statement] = STATE(5202), - [sym_raise_statement] = STATE(5202), - [sym_pass_statement] = STATE(5202), - [sym_break_statement] = STATE(5202), - [sym_continue_statement] = STATE(5202), - [sym_global_statement] = STATE(5202), - [sym_nonlocal_statement] = STATE(5202), - [sym_exec_statement] = STATE(5202), - [sym_type_alias_statement] = STATE(5202), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(5202), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_import_statement] = STATE(5168), + [sym_future_import_statement] = STATE(5168), + [sym_import_from_statement] = STATE(5168), + [sym_print_statement] = STATE(5168), + [sym_assert_statement] = STATE(5168), + [sym_expression_statement] = STATE(5168), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5168), + [sym_delete_statement] = STATE(5168), + [sym_raise_statement] = STATE(5168), + [sym_pass_statement] = STATE(5168), + [sym_break_statement] = STATE(5168), + [sym_continue_statement] = STATE(5168), + [sym_global_statement] = STATE(5168), + [sym_nonlocal_statement] = STATE(5168), + [sym_exec_statement] = STATE(5168), + [sym_type_alias_statement] = STATE(5168), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5168), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -72829,63 +72876,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [435] = { - [sym_import_statement] = STATE(5202), - [sym_future_import_statement] = STATE(5202), - [sym_import_from_statement] = STATE(5202), - [sym_print_statement] = STATE(5202), - [sym_assert_statement] = STATE(5202), - [sym_expression_statement] = STATE(5202), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(5202), - [sym_delete_statement] = STATE(5202), - [sym_raise_statement] = STATE(5202), - [sym_pass_statement] = STATE(5202), - [sym_break_statement] = STATE(5202), - [sym_continue_statement] = STATE(5202), - [sym_global_statement] = STATE(5202), - [sym_nonlocal_statement] = STATE(5202), - [sym_exec_statement] = STATE(5202), - [sym_type_alias_statement] = STATE(5202), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(5202), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_import_statement] = STATE(5168), + [sym_future_import_statement] = STATE(5168), + [sym_import_from_statement] = STATE(5168), + [sym_print_statement] = STATE(5168), + [sym_assert_statement] = STATE(5168), + [sym_expression_statement] = STATE(5168), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5168), + [sym_delete_statement] = STATE(5168), + [sym_raise_statement] = STATE(5168), + [sym_pass_statement] = STATE(5168), + [sym_break_statement] = STATE(5168), + [sym_continue_statement] = STATE(5168), + [sym_global_statement] = STATE(5168), + [sym_nonlocal_statement] = STATE(5168), + [sym_exec_statement] = STATE(5168), + [sym_type_alias_statement] = STATE(5168), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5168), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -72933,63 +72980,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [436] = { - [sym_import_statement] = STATE(5202), - [sym_future_import_statement] = STATE(5202), - [sym_import_from_statement] = STATE(5202), - [sym_print_statement] = STATE(5202), - [sym_assert_statement] = STATE(5202), - [sym_expression_statement] = STATE(5202), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(5202), - [sym_delete_statement] = STATE(5202), - [sym_raise_statement] = STATE(5202), - [sym_pass_statement] = STATE(5202), - [sym_break_statement] = STATE(5202), - [sym_continue_statement] = STATE(5202), - [sym_global_statement] = STATE(5202), - [sym_nonlocal_statement] = STATE(5202), - [sym_exec_statement] = STATE(5202), - [sym_type_alias_statement] = STATE(5202), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(5202), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_import_statement] = STATE(5168), + [sym_future_import_statement] = STATE(5168), + [sym_import_from_statement] = STATE(5168), + [sym_print_statement] = STATE(5168), + [sym_assert_statement] = STATE(5168), + [sym_expression_statement] = STATE(5168), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5168), + [sym_delete_statement] = STATE(5168), + [sym_raise_statement] = STATE(5168), + [sym_pass_statement] = STATE(5168), + [sym_break_statement] = STATE(5168), + [sym_continue_statement] = STATE(5168), + [sym_global_statement] = STATE(5168), + [sym_nonlocal_statement] = STATE(5168), + [sym_exec_statement] = STATE(5168), + [sym_type_alias_statement] = STATE(5168), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5168), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -73037,63 +73084,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [437] = { - [sym_import_statement] = STATE(5202), - [sym_future_import_statement] = STATE(5202), - [sym_import_from_statement] = STATE(5202), - [sym_print_statement] = STATE(5202), - [sym_assert_statement] = STATE(5202), - [sym_expression_statement] = STATE(5202), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(5202), - [sym_delete_statement] = STATE(5202), - [sym_raise_statement] = STATE(5202), - [sym_pass_statement] = STATE(5202), - [sym_break_statement] = STATE(5202), - [sym_continue_statement] = STATE(5202), - [sym_global_statement] = STATE(5202), - [sym_nonlocal_statement] = STATE(5202), - [sym_exec_statement] = STATE(5202), - [sym_type_alias_statement] = STATE(5202), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(5202), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_import_statement] = STATE(5168), + [sym_future_import_statement] = STATE(5168), + [sym_import_from_statement] = STATE(5168), + [sym_print_statement] = STATE(5168), + [sym_assert_statement] = STATE(5168), + [sym_expression_statement] = STATE(5168), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5168), + [sym_delete_statement] = STATE(5168), + [sym_raise_statement] = STATE(5168), + [sym_pass_statement] = STATE(5168), + [sym_break_statement] = STATE(5168), + [sym_continue_statement] = STATE(5168), + [sym_global_statement] = STATE(5168), + [sym_nonlocal_statement] = STATE(5168), + [sym_exec_statement] = STATE(5168), + [sym_type_alias_statement] = STATE(5168), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5168), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -73141,63 +73188,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [438] = { - [sym_import_statement] = STATE(5202), - [sym_future_import_statement] = STATE(5202), - [sym_import_from_statement] = STATE(5202), - [sym_print_statement] = STATE(5202), - [sym_assert_statement] = STATE(5202), - [sym_expression_statement] = STATE(5202), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(5202), - [sym_delete_statement] = STATE(5202), - [sym_raise_statement] = STATE(5202), - [sym_pass_statement] = STATE(5202), - [sym_break_statement] = STATE(5202), - [sym_continue_statement] = STATE(5202), - [sym_global_statement] = STATE(5202), - [sym_nonlocal_statement] = STATE(5202), - [sym_exec_statement] = STATE(5202), - [sym_type_alias_statement] = STATE(5202), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(5202), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_import_statement] = STATE(5168), + [sym_future_import_statement] = STATE(5168), + [sym_import_from_statement] = STATE(5168), + [sym_print_statement] = STATE(5168), + [sym_assert_statement] = STATE(5168), + [sym_expression_statement] = STATE(5168), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5168), + [sym_delete_statement] = STATE(5168), + [sym_raise_statement] = STATE(5168), + [sym_pass_statement] = STATE(5168), + [sym_break_statement] = STATE(5168), + [sym_continue_statement] = STATE(5168), + [sym_global_statement] = STATE(5168), + [sym_nonlocal_statement] = STATE(5168), + [sym_exec_statement] = STATE(5168), + [sym_type_alias_statement] = STATE(5168), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5168), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -73245,63 +73292,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [439] = { - [sym_import_statement] = STATE(5202), - [sym_future_import_statement] = STATE(5202), - [sym_import_from_statement] = STATE(5202), - [sym_print_statement] = STATE(5202), - [sym_assert_statement] = STATE(5202), - [sym_expression_statement] = STATE(5202), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(5202), - [sym_delete_statement] = STATE(5202), - [sym_raise_statement] = STATE(5202), - [sym_pass_statement] = STATE(5202), - [sym_break_statement] = STATE(5202), - [sym_continue_statement] = STATE(5202), - [sym_global_statement] = STATE(5202), - [sym_nonlocal_statement] = STATE(5202), - [sym_exec_statement] = STATE(5202), - [sym_type_alias_statement] = STATE(5202), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(5202), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_import_statement] = STATE(5168), + [sym_future_import_statement] = STATE(5168), + [sym_import_from_statement] = STATE(5168), + [sym_print_statement] = STATE(5168), + [sym_assert_statement] = STATE(5168), + [sym_expression_statement] = STATE(5168), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5168), + [sym_delete_statement] = STATE(5168), + [sym_raise_statement] = STATE(5168), + [sym_pass_statement] = STATE(5168), + [sym_break_statement] = STATE(5168), + [sym_continue_statement] = STATE(5168), + [sym_global_statement] = STATE(5168), + [sym_nonlocal_statement] = STATE(5168), + [sym_exec_statement] = STATE(5168), + [sym_type_alias_statement] = STATE(5168), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5168), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -73349,63 +73396,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [440] = { - [sym_import_statement] = STATE(5202), - [sym_future_import_statement] = STATE(5202), - [sym_import_from_statement] = STATE(5202), - [sym_print_statement] = STATE(5202), - [sym_assert_statement] = STATE(5202), - [sym_expression_statement] = STATE(5202), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(5202), - [sym_delete_statement] = STATE(5202), - [sym_raise_statement] = STATE(5202), - [sym_pass_statement] = STATE(5202), - [sym_break_statement] = STATE(5202), - [sym_continue_statement] = STATE(5202), - [sym_global_statement] = STATE(5202), - [sym_nonlocal_statement] = STATE(5202), - [sym_exec_statement] = STATE(5202), - [sym_type_alias_statement] = STATE(5202), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(5202), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_import_statement] = STATE(5168), + [sym_future_import_statement] = STATE(5168), + [sym_import_from_statement] = STATE(5168), + [sym_print_statement] = STATE(5168), + [sym_assert_statement] = STATE(5168), + [sym_expression_statement] = STATE(5168), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5168), + [sym_delete_statement] = STATE(5168), + [sym_raise_statement] = STATE(5168), + [sym_pass_statement] = STATE(5168), + [sym_break_statement] = STATE(5168), + [sym_continue_statement] = STATE(5168), + [sym_global_statement] = STATE(5168), + [sym_nonlocal_statement] = STATE(5168), + [sym_exec_statement] = STATE(5168), + [sym_type_alias_statement] = STATE(5168), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5168), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -73453,63 +73500,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [441] = { - [sym_import_statement] = STATE(5202), - [sym_future_import_statement] = STATE(5202), - [sym_import_from_statement] = STATE(5202), - [sym_print_statement] = STATE(5202), - [sym_assert_statement] = STATE(5202), - [sym_expression_statement] = STATE(5202), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(5202), - [sym_delete_statement] = STATE(5202), - [sym_raise_statement] = STATE(5202), - [sym_pass_statement] = STATE(5202), - [sym_break_statement] = STATE(5202), - [sym_continue_statement] = STATE(5202), - [sym_global_statement] = STATE(5202), - [sym_nonlocal_statement] = STATE(5202), - [sym_exec_statement] = STATE(5202), - [sym_type_alias_statement] = STATE(5202), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(5202), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_import_statement] = STATE(5168), + [sym_future_import_statement] = STATE(5168), + [sym_import_from_statement] = STATE(5168), + [sym_print_statement] = STATE(5168), + [sym_assert_statement] = STATE(5168), + [sym_expression_statement] = STATE(5168), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5168), + [sym_delete_statement] = STATE(5168), + [sym_raise_statement] = STATE(5168), + [sym_pass_statement] = STATE(5168), + [sym_break_statement] = STATE(5168), + [sym_continue_statement] = STATE(5168), + [sym_global_statement] = STATE(5168), + [sym_nonlocal_statement] = STATE(5168), + [sym_exec_statement] = STATE(5168), + [sym_type_alias_statement] = STATE(5168), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5168), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -73557,63 +73604,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [442] = { - [sym_import_statement] = STATE(5202), - [sym_future_import_statement] = STATE(5202), - [sym_import_from_statement] = STATE(5202), - [sym_print_statement] = STATE(5202), - [sym_assert_statement] = STATE(5202), - [sym_expression_statement] = STATE(5202), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(5202), - [sym_delete_statement] = STATE(5202), - [sym_raise_statement] = STATE(5202), - [sym_pass_statement] = STATE(5202), - [sym_break_statement] = STATE(5202), - [sym_continue_statement] = STATE(5202), - [sym_global_statement] = STATE(5202), - [sym_nonlocal_statement] = STATE(5202), - [sym_exec_statement] = STATE(5202), - [sym_type_alias_statement] = STATE(5202), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(5202), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_import_statement] = STATE(5168), + [sym_future_import_statement] = STATE(5168), + [sym_import_from_statement] = STATE(5168), + [sym_print_statement] = STATE(5168), + [sym_assert_statement] = STATE(5168), + [sym_expression_statement] = STATE(5168), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5168), + [sym_delete_statement] = STATE(5168), + [sym_raise_statement] = STATE(5168), + [sym_pass_statement] = STATE(5168), + [sym_break_statement] = STATE(5168), + [sym_continue_statement] = STATE(5168), + [sym_global_statement] = STATE(5168), + [sym_nonlocal_statement] = STATE(5168), + [sym_exec_statement] = STATE(5168), + [sym_type_alias_statement] = STATE(5168), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5168), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -73661,63 +73708,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [443] = { - [sym_import_statement] = STATE(5202), - [sym_future_import_statement] = STATE(5202), - [sym_import_from_statement] = STATE(5202), - [sym_print_statement] = STATE(5202), - [sym_assert_statement] = STATE(5202), - [sym_expression_statement] = STATE(5202), - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_return_statement] = STATE(5202), - [sym_delete_statement] = STATE(5202), - [sym_raise_statement] = STATE(5202), - [sym_pass_statement] = STATE(5202), - [sym_break_statement] = STATE(5202), - [sym_continue_statement] = STATE(5202), - [sym_global_statement] = STATE(5202), - [sym_nonlocal_statement] = STATE(5202), - [sym_exec_statement] = STATE(5202), - [sym_type_alias_statement] = STATE(5202), - [sym_pattern] = STATE(3276), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3919), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5226), - [sym_augmented_assignment] = STATE(5226), - [sym_pattern_list] = STATE(3391), - [sym_yield] = STATE(5226), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_include_statement] = STATE(5202), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_import_statement] = STATE(5168), + [sym_future_import_statement] = STATE(5168), + [sym_import_from_statement] = STATE(5168), + [sym_print_statement] = STATE(5168), + [sym_assert_statement] = STATE(5168), + [sym_expression_statement] = STATE(5168), + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_return_statement] = STATE(5168), + [sym_delete_statement] = STATE(5168), + [sym_raise_statement] = STATE(5168), + [sym_pass_statement] = STATE(5168), + [sym_break_statement] = STATE(5168), + [sym_continue_statement] = STATE(5168), + [sym_global_statement] = STATE(5168), + [sym_nonlocal_statement] = STATE(5168), + [sym_exec_statement] = STATE(5168), + [sym_type_alias_statement] = STATE(5168), + [sym_pattern] = STATE(3316), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5320), + [sym_augmented_assignment] = STATE(5320), + [sym_pattern_list] = STATE(3390), + [sym_yield] = STATE(5320), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_include_statement] = STATE(5168), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -73765,83 +73812,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [444] = { [sym_list_splat_pattern] = STATE(2088), - [sym_primary_expression] = STATE(2052), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_attribute] = STATE(2123), - [sym_subscript] = STATE(2123), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_primary_expression] = STATE(2056), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_attribute] = STATE(2111), + [sym_subscript] = STATE(2111), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(81), - [anon_sym_SEMI] = ACTIONS(579), - [anon_sym_DOT] = ACTIONS(581), + [anon_sym_SEMI] = ACTIONS(1003), + [anon_sym_DOT] = ACTIONS(1005), [anon_sym_LPAREN] = ACTIONS(1281), - [anon_sym_COMMA] = ACTIONS(586), - [anon_sym_as] = ACTIONS(581), + [anon_sym_COMMA] = ACTIONS(1010), + [anon_sym_as] = ACTIONS(1005), [anon_sym_STAR] = ACTIONS(1283), [anon_sym_print] = ACTIONS(1285), - [anon_sym_GT_GT] = ACTIONS(581), - [anon_sym_COLON_EQ] = ACTIONS(596), - [anon_sym_if] = ACTIONS(581), - [anon_sym_COLON] = ACTIONS(1080), + [anon_sym_GT_GT] = ACTIONS(1005), + [anon_sym_COLON_EQ] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1005), + [anon_sym_COLON] = ACTIONS(1025), [anon_sym_match] = ACTIONS(1285), [anon_sym_async] = ACTIONS(1285), - [anon_sym_in] = ACTIONS(581), - [anon_sym_STAR_STAR] = ACTIONS(581), + [anon_sym_in] = ACTIONS(1005), + [anon_sym_STAR_STAR] = ACTIONS(1005), [anon_sym_exec] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(598), + [anon_sym_EQ] = ACTIONS(1025), [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(581), + [anon_sym_AT] = ACTIONS(1005), [anon_sym_DASH] = ACTIONS(1289), - [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(1005), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(1289), - [anon_sym_not] = ACTIONS(581), - [anon_sym_and] = ACTIONS(581), - [anon_sym_or] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(581), - [anon_sym_PERCENT] = ACTIONS(581), - [anon_sym_SLASH_SLASH] = ACTIONS(581), + [anon_sym_not] = ACTIONS(1005), + [anon_sym_and] = ACTIONS(1005), + [anon_sym_or] = ACTIONS(1005), + [anon_sym_SLASH] = ACTIONS(1005), + [anon_sym_PERCENT] = ACTIONS(1005), + [anon_sym_SLASH_SLASH] = ACTIONS(1005), [anon_sym_AMP] = ACTIONS(1289), - [anon_sym_CARET] = ACTIONS(581), - [anon_sym_LT_LT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(1005), + [anon_sym_LT_LT] = ACTIONS(1005), [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_is] = ACTIONS(581), + [anon_sym_is] = ACTIONS(1005), [anon_sym_LT] = ACTIONS(1291), - [anon_sym_LT_EQ] = ACTIONS(579), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_GT_EQ] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_GT] = ACTIONS(579), - [anon_sym_PLUS_EQ] = ACTIONS(612), - [anon_sym_DASH_EQ] = ACTIONS(612), - [anon_sym_STAR_EQ] = ACTIONS(612), - [anon_sym_SLASH_EQ] = ACTIONS(612), - [anon_sym_AT_EQ] = ACTIONS(612), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(612), - [anon_sym_PERCENT_EQ] = ACTIONS(612), - [anon_sym_STAR_STAR_EQ] = ACTIONS(612), - [anon_sym_GT_GT_EQ] = ACTIONS(612), - [anon_sym_LT_LT_EQ] = ACTIONS(612), - [anon_sym_AMP_EQ] = ACTIONS(612), - [anon_sym_CARET_EQ] = ACTIONS(612), - [anon_sym_PIPE_EQ] = ACTIONS(612), + [anon_sym_LT_EQ] = ACTIONS(1003), + [anon_sym_EQ_EQ] = ACTIONS(1003), + [anon_sym_BANG_EQ] = ACTIONS(1003), + [anon_sym_GT_EQ] = ACTIONS(1003), + [anon_sym_GT] = ACTIONS(1005), + [anon_sym_LT_GT] = ACTIONS(1003), + [anon_sym_PLUS_EQ] = ACTIONS(1039), + [anon_sym_DASH_EQ] = ACTIONS(1039), + [anon_sym_STAR_EQ] = ACTIONS(1039), + [anon_sym_SLASH_EQ] = ACTIONS(1039), + [anon_sym_AT_EQ] = ACTIONS(1039), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1039), + [anon_sym_PERCENT_EQ] = ACTIONS(1039), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1039), + [anon_sym_GT_GT_EQ] = ACTIONS(1039), + [anon_sym_LT_LT_EQ] = ACTIONS(1039), + [anon_sym_AMP_EQ] = ACTIONS(1039), + [anon_sym_CARET_EQ] = ACTIONS(1039), + [anon_sym_PIPE_EQ] = ACTIONS(1039), [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), @@ -73853,88 +73900,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(579), + [sym__newline] = ACTIONS(1003), [sym_string_start] = ACTIONS(107), }, [445] = { [sym_list_splat_pattern] = STATE(2088), - [sym_primary_expression] = STATE(2052), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_attribute] = STATE(2123), - [sym_subscript] = STATE(2123), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_primary_expression] = STATE(2056), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_attribute] = STATE(2111), + [sym_subscript] = STATE(2111), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(81), - [anon_sym_SEMI] = ACTIONS(579), - [anon_sym_DOT] = ACTIONS(581), + [anon_sym_SEMI] = ACTIONS(1003), + [anon_sym_DOT] = ACTIONS(1005), [anon_sym_LPAREN] = ACTIONS(1281), - [anon_sym_COMMA] = ACTIONS(586), - [anon_sym_as] = ACTIONS(581), + [anon_sym_COMMA] = ACTIONS(1010), + [anon_sym_as] = ACTIONS(1005), [anon_sym_STAR] = ACTIONS(1283), [anon_sym_print] = ACTIONS(1285), - [anon_sym_GT_GT] = ACTIONS(581), - [anon_sym_COLON_EQ] = ACTIONS(596), - [anon_sym_if] = ACTIONS(581), - [anon_sym_COLON] = ACTIONS(598), + [anon_sym_GT_GT] = ACTIONS(1005), + [anon_sym_COLON_EQ] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1005), + [anon_sym_COLON] = ACTIONS(1022), [anon_sym_match] = ACTIONS(1285), [anon_sym_async] = ACTIONS(1285), - [anon_sym_in] = ACTIONS(581), - [anon_sym_STAR_STAR] = ACTIONS(581), + [anon_sym_in] = ACTIONS(1005), + [anon_sym_STAR_STAR] = ACTIONS(1005), [anon_sym_exec] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(598), + [anon_sym_EQ] = ACTIONS(1025), [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(581), + [anon_sym_AT] = ACTIONS(1005), [anon_sym_DASH] = ACTIONS(1289), - [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(1005), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(1289), - [anon_sym_not] = ACTIONS(581), - [anon_sym_and] = ACTIONS(581), - [anon_sym_or] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(581), - [anon_sym_PERCENT] = ACTIONS(581), - [anon_sym_SLASH_SLASH] = ACTIONS(581), + [anon_sym_not] = ACTIONS(1005), + [anon_sym_and] = ACTIONS(1005), + [anon_sym_or] = ACTIONS(1005), + [anon_sym_SLASH] = ACTIONS(1005), + [anon_sym_PERCENT] = ACTIONS(1005), + [anon_sym_SLASH_SLASH] = ACTIONS(1005), [anon_sym_AMP] = ACTIONS(1289), - [anon_sym_CARET] = ACTIONS(581), - [anon_sym_LT_LT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(1005), + [anon_sym_LT_LT] = ACTIONS(1005), [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_is] = ACTIONS(581), + [anon_sym_is] = ACTIONS(1005), [anon_sym_LT] = ACTIONS(1291), - [anon_sym_LT_EQ] = ACTIONS(579), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_GT_EQ] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_GT] = ACTIONS(579), - [anon_sym_PLUS_EQ] = ACTIONS(612), - [anon_sym_DASH_EQ] = ACTIONS(612), - [anon_sym_STAR_EQ] = ACTIONS(612), - [anon_sym_SLASH_EQ] = ACTIONS(612), - [anon_sym_AT_EQ] = ACTIONS(612), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(612), - [anon_sym_PERCENT_EQ] = ACTIONS(612), - [anon_sym_STAR_STAR_EQ] = ACTIONS(612), - [anon_sym_GT_GT_EQ] = ACTIONS(612), - [anon_sym_LT_LT_EQ] = ACTIONS(612), - [anon_sym_AMP_EQ] = ACTIONS(612), - [anon_sym_CARET_EQ] = ACTIONS(612), - [anon_sym_PIPE_EQ] = ACTIONS(612), + [anon_sym_LT_EQ] = ACTIONS(1003), + [anon_sym_EQ_EQ] = ACTIONS(1003), + [anon_sym_BANG_EQ] = ACTIONS(1003), + [anon_sym_GT_EQ] = ACTIONS(1003), + [anon_sym_GT] = ACTIONS(1005), + [anon_sym_LT_GT] = ACTIONS(1003), + [anon_sym_PLUS_EQ] = ACTIONS(1039), + [anon_sym_DASH_EQ] = ACTIONS(1039), + [anon_sym_STAR_EQ] = ACTIONS(1039), + [anon_sym_SLASH_EQ] = ACTIONS(1039), + [anon_sym_AT_EQ] = ACTIONS(1039), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1039), + [anon_sym_PERCENT_EQ] = ACTIONS(1039), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1039), + [anon_sym_GT_GT_EQ] = ACTIONS(1039), + [anon_sym_LT_LT_EQ] = ACTIONS(1039), + [anon_sym_AMP_EQ] = ACTIONS(1039), + [anon_sym_CARET_EQ] = ACTIONS(1039), + [anon_sym_PIPE_EQ] = ACTIONS(1039), [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), @@ -73946,33 +73993,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(579), + [sym__newline] = ACTIONS(1003), [sym_string_start] = ACTIONS(107), }, [446] = { - [sym_list_splat_pattern] = STATE(2432), - [sym_primary_expression] = STATE(3190), - [sym_binary_operator] = STATE(2549), - [sym_unary_operator] = STATE(2549), - [sym_attribute] = STATE(2549), - [sym_subscript] = STATE(2549), - [sym_ellipsis] = STATE(2549), - [sym_call] = STATE(2549), - [sym_list] = STATE(2549), - [sym_set] = STATE(2549), - [sym_tuple] = STATE(2549), - [sym_dictionary] = STATE(2549), - [sym_list_comprehension] = STATE(2549), - [sym_dictionary_comprehension] = STATE(2549), - [sym_set_comprehension] = STATE(2549), - [sym_generator_expression] = STATE(2549), - [sym_parenthesized_expression] = STATE(2549), - [sym_concatenated_string] = STATE(2549), - [sym_string] = STATE(2140), - [sym_none] = STATE(2549), - [sym_await] = STATE(2549), - [sym_sizeof_expression] = STATE(2549), - [sym_cast_expression] = STATE(2549), + [sym_list_splat_pattern] = STATE(2536), + [sym_primary_expression] = STATE(3239), + [sym_binary_operator] = STATE(2401), + [sym_unary_operator] = STATE(2401), + [sym_attribute] = STATE(2401), + [sym_subscript] = STATE(2401), + [sym_ellipsis] = STATE(2401), + [sym_call] = STATE(2401), + [sym_list] = STATE(2401), + [sym_set] = STATE(2401), + [sym_tuple] = STATE(2401), + [sym_dictionary] = STATE(2401), + [sym_list_comprehension] = STATE(2401), + [sym_dictionary_comprehension] = STATE(2401), + [sym_set_comprehension] = STATE(2401), + [sym_generator_expression] = STATE(2401), + [sym_parenthesized_expression] = STATE(2401), + [sym_concatenated_string] = STATE(2401), + [sym_string] = STATE(2161), + [sym_none] = STATE(2401), + [sym_await] = STATE(2401), + [sym_sizeof_expression] = STATE(2401), + [sym_cast_expression] = STATE(2401), [sym_identifier] = ACTIONS(1237), [anon_sym_SEMI] = ACTIONS(1295), [anon_sym_DOT] = ACTIONS(1297), @@ -74042,52 +74089,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(1247), }, [447] = { - [sym_named_expression] = STATE(2459), - [sym__named_expression_lhs] = STATE(5688), - [sym_list_splat] = STATE(4970), - [sym_parenthesized_list_splat] = STATE(4977), - [sym__patterns] = STATE(5637), - [sym_pattern] = STATE(5006), - [sym_tuple_pattern] = STATE(5295), - [sym_list_pattern] = STATE(5295), - [sym_list_splat_pattern] = STATE(2460), - [sym_as_pattern] = STATE(2459), - [sym_expression] = STATE(3680), - [sym_primary_expression] = STATE(2060), - [sym_not_operator] = STATE(2459), - [sym_boolean_operator] = STATE(2459), - [sym_binary_operator] = STATE(2457), - [sym_unary_operator] = STATE(2457), - [sym_comparison_operator] = STATE(2459), - [sym_lambda] = STATE(2459), - [sym_yield] = STATE(4851), - [sym_attribute] = STATE(2462), - [sym_subscript] = STATE(2462), - [sym_ellipsis] = STATE(2457), - [sym_call] = STATE(2457), - [sym_list] = STATE(2457), - [sym_set] = STATE(2457), - [sym_tuple] = STATE(2457), - [sym_dictionary] = STATE(2457), - [sym_list_comprehension] = STATE(2457), - [sym_dictionary_comprehension] = STATE(2457), - [sym_set_comprehension] = STATE(2457), - [sym_generator_expression] = STATE(2457), - [sym_parenthesized_expression] = STATE(2457), - [sym__collection_elements] = STATE(5681), - [sym_conditional_expression] = STATE(2459), - [sym_concatenated_string] = STATE(2457), - [sym_string] = STATE(2170), - [sym_none] = STATE(2457), - [sym_await] = STATE(2457), - [sym_int_type] = STATE(3507), - [sym__signedness] = STATE(3124), - [sym__longness] = STATE(3338), - [sym_function_pointer_type] = STATE(3507), - [sym_c_type] = STATE(5154), - [sym_new_expression] = STATE(2459), - [sym_sizeof_expression] = STATE(2457), - [sym_cast_expression] = STATE(2457), + [sym_named_expression] = STATE(2421), + [sym__named_expression_lhs] = STATE(5522), + [sym_list_splat] = STATE(4708), + [sym_parenthesized_list_splat] = STATE(4708), + [sym__patterns] = STATE(5592), + [sym_pattern] = STATE(4748), + [sym_tuple_pattern] = STATE(5264), + [sym_list_pattern] = STATE(5264), + [sym_list_splat_pattern] = STATE(2422), + [sym_as_pattern] = STATE(2421), + [sym_expression] = STATE(3660), + [sym_primary_expression] = STATE(2066), + [sym_not_operator] = STATE(2421), + [sym_boolean_operator] = STATE(2421), + [sym_binary_operator] = STATE(2414), + [sym_unary_operator] = STATE(2414), + [sym_comparison_operator] = STATE(2421), + [sym_lambda] = STATE(2421), + [sym_yield] = STATE(4837), + [sym_attribute] = STATE(2425), + [sym_subscript] = STATE(2425), + [sym_ellipsis] = STATE(2414), + [sym_call] = STATE(2414), + [sym_list] = STATE(2414), + [sym_set] = STATE(2414), + [sym_tuple] = STATE(2414), + [sym_dictionary] = STATE(2414), + [sym_list_comprehension] = STATE(2414), + [sym_dictionary_comprehension] = STATE(2414), + [sym_set_comprehension] = STATE(2414), + [sym_generator_expression] = STATE(2414), + [sym_parenthesized_expression] = STATE(2414), + [sym__collection_elements] = STATE(5713), + [sym_conditional_expression] = STATE(2421), + [sym_concatenated_string] = STATE(2414), + [sym_string] = STATE(2147), + [sym_none] = STATE(2414), + [sym_await] = STATE(2414), + [sym_int_type] = STATE(3449), + [sym__signedness] = STATE(3148), + [sym__longness] = STATE(3367), + [sym_function_pointer_type] = STATE(3449), + [sym_c_type] = STATE(5186), + [sym_new_expression] = STATE(2421), + [sym_sizeof_expression] = STATE(2414), + [sym_cast_expression] = STATE(2414), [sym_identifier] = ACTIONS(1314), [anon_sym_LPAREN] = ACTIONS(1316), [anon_sym_RPAREN] = ACTIONS(1318), @@ -74131,52 +74178,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(1362), }, [448] = { - [sym_named_expression] = STATE(2459), - [sym__named_expression_lhs] = STATE(5688), - [sym_list_splat] = STATE(4756), - [sym_parenthesized_list_splat] = STATE(4756), - [sym__patterns] = STATE(5637), - [sym_pattern] = STATE(5006), - [sym_tuple_pattern] = STATE(5295), - [sym_list_pattern] = STATE(5295), - [sym_list_splat_pattern] = STATE(2460), - [sym_as_pattern] = STATE(2459), - [sym_expression] = STATE(3667), - [sym_primary_expression] = STATE(2060), - [sym_not_operator] = STATE(2459), - [sym_boolean_operator] = STATE(2459), - [sym_binary_operator] = STATE(2457), - [sym_unary_operator] = STATE(2457), - [sym_comparison_operator] = STATE(2459), - [sym_lambda] = STATE(2459), - [sym_yield] = STATE(4647), - [sym_attribute] = STATE(2462), - [sym_subscript] = STATE(2462), - [sym_ellipsis] = STATE(2457), - [sym_call] = STATE(2457), - [sym_list] = STATE(2457), - [sym_set] = STATE(2457), - [sym_tuple] = STATE(2457), - [sym_dictionary] = STATE(2457), - [sym_list_comprehension] = STATE(2457), - [sym_dictionary_comprehension] = STATE(2457), - [sym_set_comprehension] = STATE(2457), - [sym_generator_expression] = STATE(2457), - [sym_parenthesized_expression] = STATE(2457), - [sym__collection_elements] = STATE(5455), - [sym_conditional_expression] = STATE(2459), - [sym_concatenated_string] = STATE(2457), - [sym_string] = STATE(2170), - [sym_none] = STATE(2457), - [sym_await] = STATE(2457), - [sym_int_type] = STATE(3507), - [sym__signedness] = STATE(3124), - [sym__longness] = STATE(3338), - [sym_function_pointer_type] = STATE(3507), - [sym_c_type] = STATE(5154), - [sym_new_expression] = STATE(2459), - [sym_sizeof_expression] = STATE(2457), - [sym_cast_expression] = STATE(2457), + [sym_named_expression] = STATE(2421), + [sym__named_expression_lhs] = STATE(5522), + [sym_list_splat] = STATE(5063), + [sym_parenthesized_list_splat] = STATE(4789), + [sym__patterns] = STATE(5580), + [sym_pattern] = STATE(4748), + [sym_tuple_pattern] = STATE(5264), + [sym_list_pattern] = STATE(5264), + [sym_list_splat_pattern] = STATE(2422), + [sym_as_pattern] = STATE(2421), + [sym_expression] = STATE(3640), + [sym_primary_expression] = STATE(2066), + [sym_not_operator] = STATE(2421), + [sym_boolean_operator] = STATE(2421), + [sym_binary_operator] = STATE(2414), + [sym_unary_operator] = STATE(2414), + [sym_comparison_operator] = STATE(2421), + [sym_lambda] = STATE(2421), + [sym_yield] = STATE(4804), + [sym_attribute] = STATE(2425), + [sym_subscript] = STATE(2425), + [sym_ellipsis] = STATE(2414), + [sym_call] = STATE(2414), + [sym_list] = STATE(2414), + [sym_set] = STATE(2414), + [sym_tuple] = STATE(2414), + [sym_dictionary] = STATE(2414), + [sym_list_comprehension] = STATE(2414), + [sym_dictionary_comprehension] = STATE(2414), + [sym_set_comprehension] = STATE(2414), + [sym_generator_expression] = STATE(2414), + [sym_parenthesized_expression] = STATE(2414), + [sym__collection_elements] = STATE(5702), + [sym_conditional_expression] = STATE(2421), + [sym_concatenated_string] = STATE(2414), + [sym_string] = STATE(2147), + [sym_none] = STATE(2414), + [sym_await] = STATE(2414), + [sym_int_type] = STATE(3449), + [sym__signedness] = STATE(3148), + [sym__longness] = STATE(3367), + [sym_function_pointer_type] = STATE(3449), + [sym_c_type] = STATE(5199), + [sym_new_expression] = STATE(2421), + [sym_sizeof_expression] = STATE(2414), + [sym_cast_expression] = STATE(2414), [sym_identifier] = ACTIONS(1314), [anon_sym_LPAREN] = ACTIONS(1316), [anon_sym_RPAREN] = ACTIONS(1364), @@ -74220,52 +74267,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(1362), }, [449] = { - [sym_named_expression] = STATE(2459), - [sym__named_expression_lhs] = STATE(5688), - [sym_list_splat] = STATE(4756), - [sym_parenthesized_list_splat] = STATE(4756), - [sym__patterns] = STATE(5694), - [sym_pattern] = STATE(5006), - [sym_tuple_pattern] = STATE(5295), - [sym_list_pattern] = STATE(5295), - [sym_list_splat_pattern] = STATE(2460), - [sym_as_pattern] = STATE(2459), - [sym_expression] = STATE(3664), - [sym_primary_expression] = STATE(2060), - [sym_not_operator] = STATE(2459), - [sym_boolean_operator] = STATE(2459), - [sym_binary_operator] = STATE(2457), - [sym_unary_operator] = STATE(2457), - [sym_comparison_operator] = STATE(2459), - [sym_lambda] = STATE(2459), - [sym_yield] = STATE(4816), - [sym_attribute] = STATE(2462), - [sym_subscript] = STATE(2462), - [sym_ellipsis] = STATE(2457), - [sym_call] = STATE(2457), - [sym_list] = STATE(2457), - [sym_set] = STATE(2457), - [sym_tuple] = STATE(2457), - [sym_dictionary] = STATE(2457), - [sym_list_comprehension] = STATE(2457), - [sym_dictionary_comprehension] = STATE(2457), - [sym_set_comprehension] = STATE(2457), - [sym_generator_expression] = STATE(2457), - [sym_parenthesized_expression] = STATE(2457), - [sym__collection_elements] = STATE(5415), - [sym_conditional_expression] = STATE(2459), - [sym_concatenated_string] = STATE(2457), - [sym_string] = STATE(2170), - [sym_none] = STATE(2457), - [sym_await] = STATE(2457), - [sym_int_type] = STATE(3507), - [sym__signedness] = STATE(3124), - [sym__longness] = STATE(3338), - [sym_function_pointer_type] = STATE(3507), - [sym_c_type] = STATE(5238), - [sym_new_expression] = STATE(2459), - [sym_sizeof_expression] = STATE(2457), - [sym_cast_expression] = STATE(2457), + [sym_named_expression] = STATE(2421), + [sym__named_expression_lhs] = STATE(5522), + [sym_list_splat] = STATE(4708), + [sym_parenthesized_list_splat] = STATE(4708), + [sym__patterns] = STATE(5580), + [sym_pattern] = STATE(4748), + [sym_tuple_pattern] = STATE(5264), + [sym_list_pattern] = STATE(5264), + [sym_list_splat_pattern] = STATE(2422), + [sym_as_pattern] = STATE(2421), + [sym_expression] = STATE(3709), + [sym_primary_expression] = STATE(2066), + [sym_not_operator] = STATE(2421), + [sym_boolean_operator] = STATE(2421), + [sym_binary_operator] = STATE(2414), + [sym_unary_operator] = STATE(2414), + [sym_comparison_operator] = STATE(2421), + [sym_lambda] = STATE(2421), + [sym_yield] = STATE(5116), + [sym_attribute] = STATE(2425), + [sym_subscript] = STATE(2425), + [sym_ellipsis] = STATE(2414), + [sym_call] = STATE(2414), + [sym_list] = STATE(2414), + [sym_set] = STATE(2414), + [sym_tuple] = STATE(2414), + [sym_dictionary] = STATE(2414), + [sym_list_comprehension] = STATE(2414), + [sym_dictionary_comprehension] = STATE(2414), + [sym_set_comprehension] = STATE(2414), + [sym_generator_expression] = STATE(2414), + [sym_parenthesized_expression] = STATE(2414), + [sym__collection_elements] = STATE(5598), + [sym_conditional_expression] = STATE(2421), + [sym_concatenated_string] = STATE(2414), + [sym_string] = STATE(2147), + [sym_none] = STATE(2414), + [sym_await] = STATE(2414), + [sym_int_type] = STATE(3449), + [sym__signedness] = STATE(3148), + [sym__longness] = STATE(3367), + [sym_function_pointer_type] = STATE(3449), + [sym_c_type] = STATE(5199), + [sym_new_expression] = STATE(2421), + [sym_sizeof_expression] = STATE(2414), + [sym_cast_expression] = STATE(2414), [sym_identifier] = ACTIONS(1314), [anon_sym_LPAREN] = ACTIONS(1316), [anon_sym_RPAREN] = ACTIONS(1366), @@ -74309,48 +74356,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(1362), }, [450] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(4794), - [sym_dictionary_splat] = STATE(4794), - [sym_parenthesized_list_splat] = STATE(4795), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4020), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(4794), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_int_type] = STATE(3507), - [sym__signedness] = STATE(3124), - [sym__longness] = STATE(3338), - [sym_function_pointer_type] = STATE(3507), - [sym_c_type] = STATE(4622), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(4818), + [sym_dictionary_splat] = STATE(4818), + [sym_parenthesized_list_splat] = STATE(4819), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4063), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(4818), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_int_type] = STATE(3449), + [sym__signedness] = STATE(3148), + [sym__longness] = STATE(3367), + [sym_function_pointer_type] = STATE(3449), + [sym_c_type] = STATE(4508), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), [sym_identifier] = ACTIONS(1368), [anon_sym_LPAREN] = ACTIONS(1370), [anon_sym_RPAREN] = ACTIONS(1372), @@ -74395,52 +74442,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(1408), }, [451] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(5080), - [sym_dictionary_splat] = STATE(5080), - [sym_parenthesized_list_splat] = STATE(5096), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4065), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(5080), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_int_type] = STATE(3507), - [sym__signedness] = STATE(3124), - [sym__longness] = STATE(3338), - [sym_function_pointer_type] = STATE(3507), - [sym_c_type] = STATE(4622), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), - [sym_identifier] = ACTIONS(1368), + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(5160), + [sym_dictionary_splat] = STATE(5160), + [sym_parenthesized_list_splat] = STATE(5161), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4048), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(5160), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_int_type] = STATE(3449), + [sym__signedness] = STATE(3148), + [sym__longness] = STATE(3367), + [sym_function_pointer_type] = STATE(3449), + [sym_c_type] = STATE(5322), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(1410), [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_RPAREN] = ACTIONS(1410), - [anon_sym_COMMA] = ACTIONS(1412), + [anon_sym_RPAREN] = ACTIONS(1412), + [anon_sym_COMMA] = ACTIONS(1414), [anon_sym_STAR] = ACTIONS(1376), [anon_sym_print] = ACTIONS(1378), [anon_sym_match] = ACTIONS(1378), @@ -74481,49 +74528,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(1408), }, [452] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(4802), - [sym_dictionary_splat] = STATE(4802), - [sym_parenthesized_list_splat] = STATE(4805), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4049), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(4802), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_int_type] = STATE(3507), - [sym__signedness] = STATE(3124), - [sym__longness] = STATE(3338), - [sym_function_pointer_type] = STATE(3507), - [sym_c_type] = STATE(5173), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), - [sym_identifier] = ACTIONS(1414), + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(5057), + [sym_dictionary_splat] = STATE(5057), + [sym_parenthesized_list_splat] = STATE(5059), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4067), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(5057), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_int_type] = STATE(3449), + [sym__signedness] = STATE(3148), + [sym__longness] = STATE(3367), + [sym_function_pointer_type] = STATE(3449), + [sym_c_type] = STATE(4508), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(1368), [anon_sym_LPAREN] = ACTIONS(1370), [anon_sym_RPAREN] = ACTIONS(1416), [anon_sym_COMMA] = ACTIONS(1418), @@ -74567,52 +74614,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(1408), }, [453] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(4802), - [sym_dictionary_splat] = STATE(4802), - [sym_parenthesized_list_splat] = STATE(4805), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4049), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(4802), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_int_type] = STATE(3507), - [sym__signedness] = STATE(3124), - [sym__longness] = STATE(3338), - [sym_function_pointer_type] = STATE(3507), - [sym_c_type] = STATE(5232), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), - [sym_identifier] = ACTIONS(1414), + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(5160), + [sym_dictionary_splat] = STATE(5160), + [sym_parenthesized_list_splat] = STATE(5161), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4048), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(5160), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_int_type] = STATE(3449), + [sym__signedness] = STATE(3148), + [sym__longness] = STATE(3367), + [sym_function_pointer_type] = STATE(3449), + [sym_c_type] = STATE(5379), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(1410), [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_RPAREN] = ACTIONS(1416), - [anon_sym_COMMA] = ACTIONS(1418), + [anon_sym_RPAREN] = ACTIONS(1412), + [anon_sym_COMMA] = ACTIONS(1414), [anon_sym_STAR] = ACTIONS(1376), [anon_sym_print] = ACTIONS(1378), [anon_sym_match] = ACTIONS(1378), @@ -74653,52 +74700,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(1408), }, [454] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(5150), - [sym_dictionary_splat] = STATE(5150), - [sym_parenthesized_list_splat] = STATE(4683), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(3976), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(5150), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_int_type] = STATE(3507), - [sym__signedness] = STATE(3124), - [sym__longness] = STATE(3338), - [sym_function_pointer_type] = STATE(3507), - [sym_c_type] = STATE(4622), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), - [sym_identifier] = ACTIONS(1368), + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(5160), + [sym_dictionary_splat] = STATE(5160), + [sym_parenthesized_list_splat] = STATE(5161), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4048), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(5160), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_int_type] = STATE(3449), + [sym__signedness] = STATE(3148), + [sym__longness] = STATE(3367), + [sym_function_pointer_type] = STATE(3449), + [sym_c_type] = STATE(5291), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(1410), [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_RPAREN] = ACTIONS(1420), - [anon_sym_COMMA] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(1412), + [anon_sym_COMMA] = ACTIONS(1414), [anon_sym_STAR] = ACTIONS(1376), [anon_sym_print] = ACTIONS(1378), [anon_sym_match] = ACTIONS(1378), @@ -74739,138 +74786,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(1408), }, [455] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(4802), - [sym_dictionary_splat] = STATE(4802), - [sym_parenthesized_list_splat] = STATE(4805), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4049), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(4802), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_int_type] = STATE(3507), - [sym__signedness] = STATE(3124), - [sym__longness] = STATE(3338), - [sym_function_pointer_type] = STATE(3507), - [sym_c_type] = STATE(5340), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), - [sym_identifier] = ACTIONS(1414), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_RPAREN] = ACTIONS(1416), - [anon_sym_COMMA] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_print] = ACTIONS(1378), - [anon_sym_match] = ACTIONS(1378), - [anon_sym_async] = ACTIONS(1378), - [anon_sym_STAR_STAR] = ACTIONS(1380), - [anon_sym_exec] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(1382), - [anon_sym_DASH] = ACTIONS(1384), - [anon_sym_LBRACE] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1384), - [anon_sym_not] = ACTIONS(1388), - [anon_sym_AMP] = ACTIONS(1384), - [anon_sym_TILDE] = ACTIONS(1384), - [anon_sym_LT] = ACTIONS(1390), - [anon_sym_lambda] = ACTIONS(1392), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1394), - [anon_sym_None] = ACTIONS(1396), - [sym_integer] = ACTIONS(1398), - [sym_float] = ACTIONS(1400), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_api] = ACTIONS(1378), - [sym_true] = ACTIONS(1398), - [sym_false] = ACTIONS(1398), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1348), - [anon_sym_double] = ACTIONS(1348), - [anon_sym_complex] = ACTIONS(1348), - [anon_sym_new] = ACTIONS(1404), - [anon_sym_signed] = ACTIONS(1352), - [anon_sym_unsigned] = ACTIONS(1352), - [anon_sym_char] = ACTIONS(1354), - [anon_sym_short] = ACTIONS(1354), - [anon_sym_long] = ACTIONS(1356), - [anon_sym_const] = ACTIONS(1358), - [anon_sym_volatile] = ACTIONS(1358), - [anon_sym_sizeof] = ACTIONS(1406), - [sym_string_start] = ACTIONS(1408), - }, - [456] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(4802), - [sym_dictionary_splat] = STATE(4802), - [sym_parenthesized_list_splat] = STATE(4805), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4049), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(4802), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_int_type] = STATE(3507), - [sym__signedness] = STATE(3124), - [sym__longness] = STATE(3338), - [sym_function_pointer_type] = STATE(3507), - [sym_c_type] = STATE(4622), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(4969), + [sym_dictionary_splat] = STATE(4969), + [sym_parenthesized_list_splat] = STATE(4970), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4117), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(4969), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_int_type] = STATE(3449), + [sym__signedness] = STATE(3148), + [sym__longness] = STATE(3367), + [sym_function_pointer_type] = STATE(3449), + [sym_c_type] = STATE(4508), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), [sym_identifier] = ACTIONS(1368), [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_RPAREN] = ACTIONS(1424), - [anon_sym_COMMA] = ACTIONS(1418), + [anon_sym_RPAREN] = ACTIONS(1420), + [anon_sym_COMMA] = ACTIONS(1422), + [anon_sym_STAR] = ACTIONS(1376), + [anon_sym_print] = ACTIONS(1378), + [anon_sym_match] = ACTIONS(1378), + [anon_sym_async] = ACTIONS(1378), + [anon_sym_STAR_STAR] = ACTIONS(1380), + [anon_sym_exec] = ACTIONS(1378), + [anon_sym_LBRACK] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_LBRACE] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(1384), + [anon_sym_not] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_TILDE] = ACTIONS(1384), + [anon_sym_LT] = ACTIONS(1390), + [anon_sym_lambda] = ACTIONS(1392), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1394), + [anon_sym_None] = ACTIONS(1396), + [sym_integer] = ACTIONS(1398), + [sym_float] = ACTIONS(1400), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_api] = ACTIONS(1378), + [sym_true] = ACTIONS(1398), + [sym_false] = ACTIONS(1398), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1348), + [anon_sym_double] = ACTIONS(1348), + [anon_sym_complex] = ACTIONS(1348), + [anon_sym_new] = ACTIONS(1404), + [anon_sym_signed] = ACTIONS(1352), + [anon_sym_unsigned] = ACTIONS(1352), + [anon_sym_char] = ACTIONS(1354), + [anon_sym_short] = ACTIONS(1354), + [anon_sym_long] = ACTIONS(1356), + [anon_sym_const] = ACTIONS(1358), + [anon_sym_volatile] = ACTIONS(1358), + [anon_sym_sizeof] = ACTIONS(1406), + [sym_string_start] = ACTIONS(1408), + }, + [456] = { + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(5160), + [sym_dictionary_splat] = STATE(5160), + [sym_parenthesized_list_splat] = STATE(5161), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4048), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(5160), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_int_type] = STATE(3449), + [sym__signedness] = STATE(3148), + [sym__longness] = STATE(3367), + [sym_function_pointer_type] = STATE(3449), + [sym_c_type] = STATE(5328), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(1410), + [anon_sym_LPAREN] = ACTIONS(1370), + [anon_sym_RPAREN] = ACTIONS(1412), + [anon_sym_COMMA] = ACTIONS(1414), [anon_sym_STAR] = ACTIONS(1376), [anon_sym_print] = ACTIONS(1378), [anon_sym_match] = ACTIONS(1378), @@ -74911,52 +74958,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(1408), }, [457] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(4802), - [sym_dictionary_splat] = STATE(4802), - [sym_parenthesized_list_splat] = STATE(4805), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4049), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(4802), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_int_type] = STATE(3507), - [sym__signedness] = STATE(3124), - [sym__longness] = STATE(3338), - [sym_function_pointer_type] = STATE(3507), - [sym_c_type] = STATE(5281), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), - [sym_identifier] = ACTIONS(1414), + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(5160), + [sym_dictionary_splat] = STATE(5160), + [sym_parenthesized_list_splat] = STATE(5161), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4048), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(5160), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_int_type] = STATE(3449), + [sym__signedness] = STATE(3148), + [sym__longness] = STATE(3367), + [sym_function_pointer_type] = STATE(3449), + [sym_c_type] = STATE(4508), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(1368), [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_RPAREN] = ACTIONS(1416), - [anon_sym_COMMA] = ACTIONS(1418), + [anon_sym_RPAREN] = ACTIONS(1424), + [anon_sym_COMMA] = ACTIONS(1414), [anon_sym_STAR] = ACTIONS(1376), [anon_sym_print] = ACTIONS(1378), [anon_sym_match] = ACTIONS(1378), @@ -74997,48 +75044,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(1408), }, [458] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(4883), - [sym_dictionary_splat] = STATE(4883), - [sym_parenthesized_list_splat] = STATE(4884), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(3990), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(4883), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_int_type] = STATE(3507), - [sym__signedness] = STATE(3124), - [sym__longness] = STATE(3338), - [sym_function_pointer_type] = STATE(3507), - [sym_c_type] = STATE(4622), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(4915), + [sym_dictionary_splat] = STATE(4915), + [sym_parenthesized_list_splat] = STATE(4916), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4043), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(4915), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_int_type] = STATE(3449), + [sym__signedness] = STATE(3148), + [sym__longness] = STATE(3367), + [sym_function_pointer_type] = STATE(3449), + [sym_c_type] = STATE(4508), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), [sym_identifier] = ACTIONS(1368), [anon_sym_LPAREN] = ACTIONS(1370), [anon_sym_RPAREN] = ACTIONS(1424), @@ -75083,48 +75130,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(1408), }, [459] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(4738), - [sym_dictionary_splat] = STATE(4738), - [sym_parenthesized_list_splat] = STATE(4739), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4013), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(4738), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_int_type] = STATE(3507), - [sym__signedness] = STATE(3124), - [sym__longness] = STATE(3338), - [sym_function_pointer_type] = STATE(3507), - [sym_c_type] = STATE(4622), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(4766), + [sym_dictionary_splat] = STATE(4766), + [sym_parenthesized_list_splat] = STATE(4767), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4052), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(4766), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_int_type] = STATE(3449), + [sym__signedness] = STATE(3148), + [sym__longness] = STATE(3367), + [sym_function_pointer_type] = STATE(3449), + [sym_c_type] = STATE(4508), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), [sym_identifier] = ACTIONS(1368), [anon_sym_LPAREN] = ACTIONS(1370), [anon_sym_RPAREN] = ACTIONS(1428), @@ -75169,52 +75216,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(1408), }, [460] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(4794), - [sym_dictionary_splat] = STATE(4794), - [sym_parenthesized_list_splat] = STATE(4795), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4020), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(4794), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_int_type] = STATE(3507), - [sym__signedness] = STATE(3124), - [sym__longness] = STATE(3338), - [sym_function_pointer_type] = STATE(3507), - [sym_c_type] = STATE(4622), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(4953), + [sym_dictionary_splat] = STATE(4953), + [sym_parenthesized_list_splat] = STATE(4954), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4077), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(4953), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_int_type] = STATE(3449), + [sym__signedness] = STATE(3148), + [sym__longness] = STATE(3367), + [sym_function_pointer_type] = STATE(3449), + [sym_c_type] = STATE(4508), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), [sym_identifier] = ACTIONS(1368), [anon_sym_LPAREN] = ACTIONS(1370), [anon_sym_RPAREN] = ACTIONS(1432), - [anon_sym_COMMA] = ACTIONS(1374), + [anon_sym_COMMA] = ACTIONS(1434), [anon_sym_STAR] = ACTIONS(1376), [anon_sym_print] = ACTIONS(1378), [anon_sym_match] = ACTIONS(1378), @@ -75255,52 +75302,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(1408), }, [461] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(4912), - [sym_dictionary_splat] = STATE(4912), - [sym_parenthesized_list_splat] = STATE(4913), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4032), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(4912), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_int_type] = STATE(3507), - [sym__signedness] = STATE(3124), - [sym__longness] = STATE(3338), - [sym_function_pointer_type] = STATE(3507), - [sym_c_type] = STATE(4622), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(4887), + [sym_dictionary_splat] = STATE(4887), + [sym_parenthesized_list_splat] = STATE(4888), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4082), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(4887), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_int_type] = STATE(3449), + [sym__signedness] = STATE(3148), + [sym__longness] = STATE(3367), + [sym_function_pointer_type] = STATE(3449), + [sym_c_type] = STATE(4508), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), [sym_identifier] = ACTIONS(1368), [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_RPAREN] = ACTIONS(1434), - [anon_sym_COMMA] = ACTIONS(1436), + [anon_sym_RPAREN] = ACTIONS(1436), + [anon_sym_COMMA] = ACTIONS(1438), [anon_sym_STAR] = ACTIONS(1376), [anon_sym_print] = ACTIONS(1378), [anon_sym_match] = ACTIONS(1378), @@ -75341,52 +75388,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(1408), }, [462] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(4860), - [sym_dictionary_splat] = STATE(4860), - [sym_parenthesized_list_splat] = STATE(4861), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(4860), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_int_type] = STATE(3507), - [sym__signedness] = STATE(3124), - [sym__longness] = STATE(3338), - [sym_function_pointer_type] = STATE(3507), - [sym_c_type] = STATE(4622), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(4936), + [sym_dictionary_splat] = STATE(4936), + [sym_parenthesized_list_splat] = STATE(4937), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4088), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(4936), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_int_type] = STATE(3449), + [sym__signedness] = STATE(3148), + [sym__longness] = STATE(3367), + [sym_function_pointer_type] = STATE(3449), + [sym_c_type] = STATE(4508), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), [sym_identifier] = ACTIONS(1368), [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_RPAREN] = ACTIONS(1438), - [anon_sym_COMMA] = ACTIONS(1440), + [anon_sym_RPAREN] = ACTIONS(1440), + [anon_sym_COMMA] = ACTIONS(1442), [anon_sym_STAR] = ACTIONS(1376), [anon_sym_print] = ACTIONS(1378), [anon_sym_match] = ACTIONS(1378), @@ -75427,52 +75474,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(1408), }, [463] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(4899), - [sym_dictionary_splat] = STATE(4899), - [sym_parenthesized_list_splat] = STATE(4900), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4045), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(4899), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_int_type] = STATE(3507), - [sym__signedness] = STATE(3124), - [sym__longness] = STATE(3338), - [sym_function_pointer_type] = STATE(3507), - [sym_c_type] = STATE(4622), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), - [sym_identifier] = ACTIONS(1368), + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(5160), + [sym_dictionary_splat] = STATE(5160), + [sym_parenthesized_list_splat] = STATE(5161), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4048), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(5160), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_int_type] = STATE(3449), + [sym__signedness] = STATE(3148), + [sym__longness] = STATE(3367), + [sym_function_pointer_type] = STATE(3449), + [sym_c_type] = STATE(5286), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(1410), [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_RPAREN] = ACTIONS(1442), - [anon_sym_COMMA] = ACTIONS(1444), + [anon_sym_RPAREN] = ACTIONS(1412), + [anon_sym_COMMA] = ACTIONS(1414), [anon_sym_STAR] = ACTIONS(1376), [anon_sym_print] = ACTIONS(1378), [anon_sym_match] = ACTIONS(1378), @@ -75513,52 +75560,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(1408), }, [464] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(4825), - [sym_dictionary_splat] = STATE(4825), - [sym_parenthesized_list_splat] = STATE(4826), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4051), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(4825), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_int_type] = STATE(3507), - [sym__signedness] = STATE(3124), - [sym__longness] = STATE(3338), - [sym_function_pointer_type] = STATE(3507), - [sym_c_type] = STATE(4622), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(4969), + [sym_dictionary_splat] = STATE(4969), + [sym_parenthesized_list_splat] = STATE(4970), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4117), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(4969), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_int_type] = STATE(3449), + [sym__signedness] = STATE(3148), + [sym__longness] = STATE(3367), + [sym_function_pointer_type] = STATE(3449), + [sym_c_type] = STATE(4508), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), [sym_identifier] = ACTIONS(1368), [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_RPAREN] = ACTIONS(1434), - [anon_sym_COMMA] = ACTIONS(1446), + [anon_sym_RPAREN] = ACTIONS(1444), + [anon_sym_COMMA] = ACTIONS(1422), [anon_sym_STAR] = ACTIONS(1376), [anon_sym_print] = ACTIONS(1378), [anon_sym_match] = ACTIONS(1378), @@ -75599,52 +75646,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(1408), }, [465] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(5150), - [sym_dictionary_splat] = STATE(5150), - [sym_parenthesized_list_splat] = STATE(4683), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(3976), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(5150), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_int_type] = STATE(3507), - [sym__signedness] = STATE(3124), - [sym__longness] = STATE(3338), - [sym_function_pointer_type] = STATE(3507), - [sym_c_type] = STATE(4622), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(5057), + [sym_dictionary_splat] = STATE(5057), + [sym_parenthesized_list_splat] = STATE(5059), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4067), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(5057), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_int_type] = STATE(3449), + [sym__signedness] = STATE(3148), + [sym__longness] = STATE(3367), + [sym_function_pointer_type] = STATE(3449), + [sym_c_type] = STATE(4508), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), [sym_identifier] = ACTIONS(1368), [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_RPAREN] = ACTIONS(1448), - [anon_sym_COMMA] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(1446), + [anon_sym_COMMA] = ACTIONS(1418), [anon_sym_STAR] = ACTIONS(1376), [anon_sym_print] = ACTIONS(1378), [anon_sym_match] = ACTIONS(1378), @@ -75685,52 +75732,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(1408), }, [466] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(5080), - [sym_dictionary_splat] = STATE(5080), - [sym_parenthesized_list_splat] = STATE(5096), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4065), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(5080), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_int_type] = STATE(3507), - [sym__signedness] = STATE(3124), - [sym__longness] = STATE(3338), - [sym_function_pointer_type] = STATE(3507), - [sym_c_type] = STATE(4622), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(5160), + [sym_dictionary_splat] = STATE(5160), + [sym_parenthesized_list_splat] = STATE(5161), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4048), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(5160), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_int_type] = STATE(3449), + [sym__signedness] = STATE(3148), + [sym__longness] = STATE(3367), + [sym_function_pointer_type] = STATE(3449), + [sym_c_type] = STATE(4508), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), [sym_identifier] = ACTIONS(1368), [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_RPAREN] = ACTIONS(1450), - [anon_sym_COMMA] = ACTIONS(1412), + [anon_sym_RPAREN] = ACTIONS(1448), + [anon_sym_COMMA] = ACTIONS(1414), [anon_sym_STAR] = ACTIONS(1376), [anon_sym_print] = ACTIONS(1378), [anon_sym_match] = ACTIONS(1378), @@ -75771,52 +75818,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(1408), }, [467] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(4802), - [sym_dictionary_splat] = STATE(4802), - [sym_parenthesized_list_splat] = STATE(4805), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4049), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(4802), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_int_type] = STATE(3507), - [sym__signedness] = STATE(3124), - [sym__longness] = STATE(3338), - [sym_function_pointer_type] = STATE(3507), - [sym_c_type] = STATE(4622), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(4766), + [sym_dictionary_splat] = STATE(4766), + [sym_parenthesized_list_splat] = STATE(4767), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4052), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(4766), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_int_type] = STATE(3449), + [sym__signedness] = STATE(3148), + [sym__longness] = STATE(3367), + [sym_function_pointer_type] = STATE(3449), + [sym_c_type] = STATE(4508), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), [sym_identifier] = ACTIONS(1368), [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_RPAREN] = ACTIONS(1452), - [anon_sym_COMMA] = ACTIONS(1418), + [anon_sym_RPAREN] = ACTIONS(1450), + [anon_sym_COMMA] = ACTIONS(1430), [anon_sym_STAR] = ACTIONS(1376), [anon_sym_print] = ACTIONS(1378), [anon_sym_match] = ACTIONS(1378), @@ -75857,52 +75904,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(1408), }, [468] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(4738), - [sym_dictionary_splat] = STATE(4738), - [sym_parenthesized_list_splat] = STATE(4739), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4013), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(4738), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_int_type] = STATE(3507), - [sym__signedness] = STATE(3124), - [sym__longness] = STATE(3338), - [sym_function_pointer_type] = STATE(3507), - [sym_c_type] = STATE(4622), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(4818), + [sym_dictionary_splat] = STATE(4818), + [sym_parenthesized_list_splat] = STATE(4819), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4063), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(4818), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_int_type] = STATE(3449), + [sym__signedness] = STATE(3148), + [sym__longness] = STATE(3367), + [sym_function_pointer_type] = STATE(3449), + [sym_c_type] = STATE(4508), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), [sym_identifier] = ACTIONS(1368), [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_RPAREN] = ACTIONS(1454), - [anon_sym_COMMA] = ACTIONS(1430), + [anon_sym_RPAREN] = ACTIONS(1452), + [anon_sym_COMMA] = ACTIONS(1374), [anon_sym_STAR] = ACTIONS(1376), [anon_sym_print] = ACTIONS(1378), [anon_sym_match] = ACTIONS(1378), @@ -75943,52 +75990,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(1408), }, [469] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(4825), - [sym_dictionary_splat] = STATE(4825), - [sym_parenthesized_list_splat] = STATE(4826), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4051), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(4825), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_int_type] = STATE(3507), - [sym__signedness] = STATE(3124), - [sym__longness] = STATE(3338), - [sym_function_pointer_type] = STATE(3507), - [sym_c_type] = STATE(4622), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(4853), + [sym_dictionary_splat] = STATE(4853), + [sym_parenthesized_list_splat] = STATE(4854), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4093), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(4853), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_int_type] = STATE(3449), + [sym__signedness] = STATE(3148), + [sym__longness] = STATE(3367), + [sym_function_pointer_type] = STATE(3449), + [sym_c_type] = STATE(4508), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), [sym_identifier] = ACTIONS(1368), [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_RPAREN] = ACTIONS(1456), - [anon_sym_COMMA] = ACTIONS(1446), + [anon_sym_RPAREN] = ACTIONS(1454), + [anon_sym_COMMA] = ACTIONS(1456), [anon_sym_STAR] = ACTIONS(1376), [anon_sym_print] = ACTIONS(1378), [anon_sym_match] = ACTIONS(1378), @@ -76029,52 +76076,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(1408), }, [470] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(4860), - [sym_dictionary_splat] = STATE(4860), - [sym_parenthesized_list_splat] = STATE(4861), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4036), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(4860), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_int_type] = STATE(3507), - [sym__signedness] = STATE(3124), - [sym__longness] = STATE(3338), - [sym_function_pointer_type] = STATE(3507), - [sym_c_type] = STATE(4622), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(4887), + [sym_dictionary_splat] = STATE(4887), + [sym_parenthesized_list_splat] = STATE(4888), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4082), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(4887), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_int_type] = STATE(3449), + [sym__signedness] = STATE(3148), + [sym__longness] = STATE(3367), + [sym_function_pointer_type] = STATE(3449), + [sym_c_type] = STATE(4508), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), [sym_identifier] = ACTIONS(1368), [anon_sym_LPAREN] = ACTIONS(1370), [anon_sym_RPAREN] = ACTIONS(1458), - [anon_sym_COMMA] = ACTIONS(1440), + [anon_sym_COMMA] = ACTIONS(1438), [anon_sym_STAR] = ACTIONS(1376), [anon_sym_print] = ACTIONS(1378), [anon_sym_match] = ACTIONS(1378), @@ -76115,52 +76162,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(1408), }, [471] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(4899), - [sym_dictionary_splat] = STATE(4899), - [sym_parenthesized_list_splat] = STATE(4900), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4045), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(4899), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_int_type] = STATE(3507), - [sym__signedness] = STATE(3124), - [sym__longness] = STATE(3338), - [sym_function_pointer_type] = STATE(3507), - [sym_c_type] = STATE(4622), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(4936), + [sym_dictionary_splat] = STATE(4936), + [sym_parenthesized_list_splat] = STATE(4937), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4088), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(4936), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_int_type] = STATE(3449), + [sym__signedness] = STATE(3148), + [sym__longness] = STATE(3367), + [sym_function_pointer_type] = STATE(3449), + [sym_c_type] = STATE(4508), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), [sym_identifier] = ACTIONS(1368), [anon_sym_LPAREN] = ACTIONS(1370), [anon_sym_RPAREN] = ACTIONS(1460), - [anon_sym_COMMA] = ACTIONS(1444), + [anon_sym_COMMA] = ACTIONS(1442), [anon_sym_STAR] = ACTIONS(1376), [anon_sym_print] = ACTIONS(1378), [anon_sym_match] = ACTIONS(1378), @@ -76201,52 +76248,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(1408), }, [472] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(4930), - [sym_dictionary_splat] = STATE(4930), - [sym_parenthesized_list_splat] = STATE(4931), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4056), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(4930), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_int_type] = STATE(3507), - [sym__signedness] = STATE(3124), - [sym__longness] = STATE(3338), - [sym_function_pointer_type] = STATE(3507), - [sym_c_type] = STATE(4622), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), - [sym_identifier] = ACTIONS(1368), + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(5160), + [sym_dictionary_splat] = STATE(5160), + [sym_parenthesized_list_splat] = STATE(5161), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4048), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(5160), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_int_type] = STATE(3449), + [sym__signedness] = STATE(3148), + [sym__longness] = STATE(3367), + [sym_function_pointer_type] = STATE(3449), + [sym_c_type] = STATE(5292), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(1410), [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_RPAREN] = ACTIONS(1420), - [anon_sym_COMMA] = ACTIONS(1462), + [anon_sym_RPAREN] = ACTIONS(1412), + [anon_sym_COMMA] = ACTIONS(1414), [anon_sym_STAR] = ACTIONS(1376), [anon_sym_print] = ACTIONS(1378), [anon_sym_match] = ACTIONS(1378), @@ -76287,52 +76334,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(1408), }, [473] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(4802), - [sym_dictionary_splat] = STATE(4802), - [sym_parenthesized_list_splat] = STATE(4805), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4049), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(4802), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_int_type] = STATE(3507), - [sym__signedness] = STATE(3124), - [sym__longness] = STATE(3338), - [sym_function_pointer_type] = STATE(3507), - [sym_c_type] = STATE(5214), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), - [sym_identifier] = ACTIONS(1414), + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(4972), + [sym_dictionary_splat] = STATE(4972), + [sym_parenthesized_list_splat] = STATE(4973), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4096), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(4972), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_int_type] = STATE(3449), + [sym__signedness] = STATE(3148), + [sym__longness] = STATE(3367), + [sym_function_pointer_type] = STATE(3449), + [sym_c_type] = STATE(4508), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(1368), [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_RPAREN] = ACTIONS(1416), - [anon_sym_COMMA] = ACTIONS(1418), + [anon_sym_RPAREN] = ACTIONS(1420), + [anon_sym_COMMA] = ACTIONS(1462), [anon_sym_STAR] = ACTIONS(1376), [anon_sym_print] = ACTIONS(1378), [anon_sym_match] = ACTIONS(1378), @@ -76373,52 +76420,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(1408), }, [474] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(4802), - [sym_dictionary_splat] = STATE(4802), - [sym_parenthesized_list_splat] = STATE(4805), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4049), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(4802), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_int_type] = STATE(3507), - [sym__signedness] = STATE(3124), - [sym__longness] = STATE(3338), - [sym_function_pointer_type] = STATE(3507), - [sym_c_type] = STATE(5222), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), - [sym_identifier] = ACTIONS(1414), + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(5160), + [sym_dictionary_splat] = STATE(5160), + [sym_parenthesized_list_splat] = STATE(5161), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4048), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(5160), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_int_type] = STATE(3449), + [sym__signedness] = STATE(3148), + [sym__longness] = STATE(3367), + [sym_function_pointer_type] = STATE(3449), + [sym_c_type] = STATE(5231), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(1410), [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_RPAREN] = ACTIONS(1416), - [anon_sym_COMMA] = ACTIONS(1418), + [anon_sym_RPAREN] = ACTIONS(1412), + [anon_sym_COMMA] = ACTIONS(1414), [anon_sym_STAR] = ACTIONS(1376), [anon_sym_print] = ACTIONS(1378), [anon_sym_match] = ACTIONS(1378), @@ -76459,52 +76506,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(1408), }, [475] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(4802), - [sym_dictionary_splat] = STATE(4802), - [sym_parenthesized_list_splat] = STATE(4805), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4049), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(4802), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_int_type] = STATE(3507), - [sym__signedness] = STATE(3124), - [sym__longness] = STATE(3338), - [sym_function_pointer_type] = STATE(3507), - [sym_c_type] = STATE(5227), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), - [sym_identifier] = ACTIONS(1414), + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(5160), + [sym_dictionary_splat] = STATE(5160), + [sym_parenthesized_list_splat] = STATE(5161), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4048), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(5160), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_int_type] = STATE(3449), + [sym__signedness] = STATE(3148), + [sym__longness] = STATE(3367), + [sym_function_pointer_type] = STATE(3449), + [sym_c_type] = STATE(5240), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(1410), [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_RPAREN] = ACTIONS(1416), - [anon_sym_COMMA] = ACTIONS(1418), + [anon_sym_RPAREN] = ACTIONS(1412), + [anon_sym_COMMA] = ACTIONS(1414), [anon_sym_STAR] = ACTIONS(1376), [anon_sym_print] = ACTIONS(1378), [anon_sym_match] = ACTIONS(1378), @@ -76545,52 +76592,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(1408), }, [476] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(4802), - [sym_dictionary_splat] = STATE(4802), - [sym_parenthesized_list_splat] = STATE(4805), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4049), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(4802), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_int_type] = STATE(3507), - [sym__signedness] = STATE(3124), - [sym__longness] = STATE(3338), - [sym_function_pointer_type] = STATE(3507), - [sym_c_type] = STATE(5231), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), - [sym_identifier] = ACTIONS(1414), + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(5160), + [sym_dictionary_splat] = STATE(5160), + [sym_parenthesized_list_splat] = STATE(5161), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4048), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(5160), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_int_type] = STATE(3449), + [sym__signedness] = STATE(3148), + [sym__longness] = STATE(3367), + [sym_function_pointer_type] = STATE(3449), + [sym_c_type] = STATE(5245), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(1410), [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_RPAREN] = ACTIONS(1416), - [anon_sym_COMMA] = ACTIONS(1418), + [anon_sym_RPAREN] = ACTIONS(1412), + [anon_sym_COMMA] = ACTIONS(1414), [anon_sym_STAR] = ACTIONS(1376), [anon_sym_print] = ACTIONS(1378), [anon_sym_match] = ACTIONS(1378), @@ -76631,52 +76678,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(1408), }, [477] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(4802), - [sym_dictionary_splat] = STATE(4802), - [sym_parenthesized_list_splat] = STATE(4805), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4049), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(4802), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_int_type] = STATE(3507), - [sym__signedness] = STATE(3124), - [sym__longness] = STATE(3338), - [sym_function_pointer_type] = STATE(3507), - [sym_c_type] = STATE(5262), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), - [sym_identifier] = ACTIONS(1414), + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(5160), + [sym_dictionary_splat] = STATE(5160), + [sym_parenthesized_list_splat] = STATE(5161), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4048), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(5160), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_int_type] = STATE(3449), + [sym__signedness] = STATE(3148), + [sym__longness] = STATE(3367), + [sym_function_pointer_type] = STATE(3449), + [sym_c_type] = STATE(5250), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(1410), [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_RPAREN] = ACTIONS(1416), - [anon_sym_COMMA] = ACTIONS(1418), + [anon_sym_RPAREN] = ACTIONS(1412), + [anon_sym_COMMA] = ACTIONS(1414), [anon_sym_STAR] = ACTIONS(1376), [anon_sym_print] = ACTIONS(1378), [anon_sym_match] = ACTIONS(1378), @@ -76717,52 +76764,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(1408), }, [478] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(4802), - [sym_dictionary_splat] = STATE(4802), - [sym_parenthesized_list_splat] = STATE(4805), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4049), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(4802), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_int_type] = STATE(3507), - [sym__signedness] = STATE(3124), - [sym__longness] = STATE(3338), - [sym_function_pointer_type] = STATE(3507), - [sym_c_type] = STATE(5270), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), - [sym_identifier] = ACTIONS(1414), + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(5160), + [sym_dictionary_splat] = STATE(5160), + [sym_parenthesized_list_splat] = STATE(5161), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4048), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(5160), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_int_type] = STATE(3449), + [sym__signedness] = STATE(3148), + [sym__longness] = STATE(3367), + [sym_function_pointer_type] = STATE(3449), + [sym_c_type] = STATE(5276), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(1410), [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_RPAREN] = ACTIONS(1416), - [anon_sym_COMMA] = ACTIONS(1418), + [anon_sym_RPAREN] = ACTIONS(1412), + [anon_sym_COMMA] = ACTIONS(1414), [anon_sym_STAR] = ACTIONS(1376), [anon_sym_print] = ACTIONS(1378), [anon_sym_match] = ACTIONS(1378), @@ -76803,52 +76850,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(1408), }, [479] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(4802), - [sym_dictionary_splat] = STATE(4802), - [sym_parenthesized_list_splat] = STATE(4805), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4049), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(4802), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_int_type] = STATE(3507), - [sym__signedness] = STATE(3124), - [sym__longness] = STATE(3338), - [sym_function_pointer_type] = STATE(3507), - [sym_c_type] = STATE(5151), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), - [sym_identifier] = ACTIONS(1414), + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(5160), + [sym_dictionary_splat] = STATE(5160), + [sym_parenthesized_list_splat] = STATE(5161), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4048), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(5160), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_int_type] = STATE(3449), + [sym__signedness] = STATE(3148), + [sym__longness] = STATE(3367), + [sym_function_pointer_type] = STATE(3449), + [sym_c_type] = STATE(5283), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(1410), [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_RPAREN] = ACTIONS(1416), - [anon_sym_COMMA] = ACTIONS(1418), + [anon_sym_RPAREN] = ACTIONS(1412), + [anon_sym_COMMA] = ACTIONS(1414), [anon_sym_STAR] = ACTIONS(1376), [anon_sym_print] = ACTIONS(1378), [anon_sym_match] = ACTIONS(1378), @@ -76889,52 +76936,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(1408), }, [480] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(4802), - [sym_dictionary_splat] = STATE(4802), - [sym_parenthesized_list_splat] = STATE(4805), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4049), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(4802), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_int_type] = STATE(3507), - [sym__signedness] = STATE(3124), - [sym__longness] = STATE(3338), - [sym_function_pointer_type] = STATE(3507), - [sym_c_type] = STATE(5278), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), - [sym_identifier] = ACTIONS(1414), + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(4853), + [sym_dictionary_splat] = STATE(4853), + [sym_parenthesized_list_splat] = STATE(4854), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4093), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(4853), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_int_type] = STATE(3449), + [sym__signedness] = STATE(3148), + [sym__longness] = STATE(3367), + [sym_function_pointer_type] = STATE(3449), + [sym_c_type] = STATE(4508), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(1368), [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_RPAREN] = ACTIONS(1416), - [anon_sym_COMMA] = ACTIONS(1418), + [anon_sym_RPAREN] = ACTIONS(1432), + [anon_sym_COMMA] = ACTIONS(1456), [anon_sym_STAR] = ACTIONS(1376), [anon_sym_print] = ACTIONS(1378), [anon_sym_match] = ACTIONS(1378), @@ -76975,48 +77022,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(1408), }, [481] = { - [sym_named_expression] = STATE(2459), - [sym__named_expression_lhs] = STATE(5688), - [sym_list_splat] = STATE(4970), - [sym_parenthesized_list_splat] = STATE(4977), - [sym_list_splat_pattern] = STATE(2477), - [sym_as_pattern] = STATE(2459), - [sym_expression] = STATE(3647), - [sym_primary_expression] = STATE(2060), - [sym_not_operator] = STATE(2459), - [sym_boolean_operator] = STATE(2459), - [sym_binary_operator] = STATE(2457), - [sym_unary_operator] = STATE(2457), - [sym_comparison_operator] = STATE(2459), - [sym_lambda] = STATE(2459), - [sym_yield] = STATE(4847), - [sym_attribute] = STATE(2457), - [sym_subscript] = STATE(2457), - [sym_ellipsis] = STATE(2457), - [sym_call] = STATE(2457), - [sym_list] = STATE(2457), - [sym_set] = STATE(2457), - [sym_tuple] = STATE(2457), - [sym_dictionary] = STATE(2457), - [sym_list_comprehension] = STATE(2457), - [sym_dictionary_comprehension] = STATE(2457), - [sym_set_comprehension] = STATE(2457), - [sym_generator_expression] = STATE(2457), - [sym_parenthesized_expression] = STATE(2457), - [sym__collection_elements] = STATE(5474), - [sym_conditional_expression] = STATE(2459), - [sym_concatenated_string] = STATE(2457), - [sym_string] = STATE(2170), - [sym_none] = STATE(2457), - [sym_await] = STATE(2457), - [sym_int_type] = STATE(3507), - [sym__signedness] = STATE(3124), - [sym__longness] = STATE(3338), - [sym_function_pointer_type] = STATE(3507), - [sym_c_type] = STATE(5154), - [sym_new_expression] = STATE(2459), - [sym_sizeof_expression] = STATE(2457), - [sym_cast_expression] = STATE(2457), + [sym_named_expression] = STATE(2421), + [sym__named_expression_lhs] = STATE(5522), + [sym_list_splat] = STATE(4708), + [sym_parenthesized_list_splat] = STATE(4708), + [sym_list_splat_pattern] = STATE(2472), + [sym_as_pattern] = STATE(2421), + [sym_expression] = STATE(3665), + [sym_primary_expression] = STATE(2066), + [sym_not_operator] = STATE(2421), + [sym_boolean_operator] = STATE(2421), + [sym_binary_operator] = STATE(2414), + [sym_unary_operator] = STATE(2414), + [sym_comparison_operator] = STATE(2421), + [sym_lambda] = STATE(2421), + [sym_yield] = STATE(4877), + [sym_attribute] = STATE(2414), + [sym_subscript] = STATE(2414), + [sym_ellipsis] = STATE(2414), + [sym_call] = STATE(2414), + [sym_list] = STATE(2414), + [sym_set] = STATE(2414), + [sym_tuple] = STATE(2414), + [sym_dictionary] = STATE(2414), + [sym_list_comprehension] = STATE(2414), + [sym_dictionary_comprehension] = STATE(2414), + [sym_set_comprehension] = STATE(2414), + [sym_generator_expression] = STATE(2414), + [sym_parenthesized_expression] = STATE(2414), + [sym__collection_elements] = STATE(5407), + [sym_conditional_expression] = STATE(2421), + [sym_concatenated_string] = STATE(2414), + [sym_string] = STATE(2147), + [sym_none] = STATE(2414), + [sym_await] = STATE(2414), + [sym_int_type] = STATE(3449), + [sym__signedness] = STATE(3148), + [sym__longness] = STATE(3367), + [sym_function_pointer_type] = STATE(3449), + [sym_c_type] = STATE(5199), + [sym_new_expression] = STATE(2421), + [sym_sizeof_expression] = STATE(2414), + [sym_cast_expression] = STATE(2414), [sym_identifier] = ACTIONS(1464), [anon_sym_LPAREN] = ACTIONS(1466), [anon_sym_RPAREN] = ACTIONS(1468), @@ -77060,48 +77107,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(1362), }, [482] = { - [sym_named_expression] = STATE(2459), - [sym__named_expression_lhs] = STATE(5688), - [sym_list_splat] = STATE(4970), - [sym_parenthesized_list_splat] = STATE(4977), - [sym_list_splat_pattern] = STATE(2477), - [sym_as_pattern] = STATE(2459), - [sym_expression] = STATE(3680), - [sym_primary_expression] = STATE(2060), - [sym_not_operator] = STATE(2459), - [sym_boolean_operator] = STATE(2459), - [sym_binary_operator] = STATE(2457), - [sym_unary_operator] = STATE(2457), - [sym_comparison_operator] = STATE(2459), - [sym_lambda] = STATE(2459), - [sym_yield] = STATE(4851), - [sym_attribute] = STATE(2457), - [sym_subscript] = STATE(2457), - [sym_ellipsis] = STATE(2457), - [sym_call] = STATE(2457), - [sym_list] = STATE(2457), - [sym_set] = STATE(2457), - [sym_tuple] = STATE(2457), - [sym_dictionary] = STATE(2457), - [sym_list_comprehension] = STATE(2457), - [sym_dictionary_comprehension] = STATE(2457), - [sym_set_comprehension] = STATE(2457), - [sym_generator_expression] = STATE(2457), - [sym_parenthesized_expression] = STATE(2457), - [sym__collection_elements] = STATE(5681), - [sym_conditional_expression] = STATE(2459), - [sym_concatenated_string] = STATE(2457), - [sym_string] = STATE(2170), - [sym_none] = STATE(2457), - [sym_await] = STATE(2457), - [sym_int_type] = STATE(3507), - [sym__signedness] = STATE(3124), - [sym__longness] = STATE(3338), - [sym_function_pointer_type] = STATE(3507), - [sym_c_type] = STATE(5154), - [sym_new_expression] = STATE(2459), - [sym_sizeof_expression] = STATE(2457), - [sym_cast_expression] = STATE(2457), + [sym_named_expression] = STATE(2421), + [sym__named_expression_lhs] = STATE(5522), + [sym_list_splat] = STATE(5063), + [sym_parenthesized_list_splat] = STATE(4789), + [sym_list_splat_pattern] = STATE(2472), + [sym_as_pattern] = STATE(2421), + [sym_expression] = STATE(3640), + [sym_primary_expression] = STATE(2066), + [sym_not_operator] = STATE(2421), + [sym_boolean_operator] = STATE(2421), + [sym_binary_operator] = STATE(2414), + [sym_unary_operator] = STATE(2414), + [sym_comparison_operator] = STATE(2421), + [sym_lambda] = STATE(2421), + [sym_yield] = STATE(4804), + [sym_attribute] = STATE(2414), + [sym_subscript] = STATE(2414), + [sym_ellipsis] = STATE(2414), + [sym_call] = STATE(2414), + [sym_list] = STATE(2414), + [sym_set] = STATE(2414), + [sym_tuple] = STATE(2414), + [sym_dictionary] = STATE(2414), + [sym_list_comprehension] = STATE(2414), + [sym_dictionary_comprehension] = STATE(2414), + [sym_set_comprehension] = STATE(2414), + [sym_generator_expression] = STATE(2414), + [sym_parenthesized_expression] = STATE(2414), + [sym__collection_elements] = STATE(5702), + [sym_conditional_expression] = STATE(2421), + [sym_concatenated_string] = STATE(2414), + [sym_string] = STATE(2147), + [sym_none] = STATE(2414), + [sym_await] = STATE(2414), + [sym_int_type] = STATE(3449), + [sym__signedness] = STATE(3148), + [sym__longness] = STATE(3367), + [sym_function_pointer_type] = STATE(3449), + [sym_c_type] = STATE(5199), + [sym_new_expression] = STATE(2421), + [sym_sizeof_expression] = STATE(2414), + [sym_cast_expression] = STATE(2414), [sym_identifier] = ACTIONS(1464), [anon_sym_LPAREN] = ACTIONS(1466), [anon_sym_RPAREN] = ACTIONS(1476), @@ -77145,6 +77192,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(1362), }, [483] = { + [sym_named_expression] = STATE(2421), + [sym__named_expression_lhs] = STATE(5522), + [sym_list_splat] = STATE(5063), + [sym_parenthesized_list_splat] = STATE(4789), + [sym_list_splat_pattern] = STATE(2472), + [sym_as_pattern] = STATE(2421), + [sym_expression] = STATE(3665), + [sym_primary_expression] = STATE(2066), + [sym_not_operator] = STATE(2421), + [sym_boolean_operator] = STATE(2421), + [sym_binary_operator] = STATE(2414), + [sym_unary_operator] = STATE(2414), + [sym_comparison_operator] = STATE(2421), + [sym_lambda] = STATE(2421), + [sym_yield] = STATE(4877), + [sym_attribute] = STATE(2414), + [sym_subscript] = STATE(2414), + [sym_ellipsis] = STATE(2414), + [sym_call] = STATE(2414), + [sym_list] = STATE(2414), + [sym_set] = STATE(2414), + [sym_tuple] = STATE(2414), + [sym_dictionary] = STATE(2414), + [sym_list_comprehension] = STATE(2414), + [sym_dictionary_comprehension] = STATE(2414), + [sym_set_comprehension] = STATE(2414), + [sym_generator_expression] = STATE(2414), + [sym_parenthesized_expression] = STATE(2414), + [sym__collection_elements] = STATE(5407), + [sym_conditional_expression] = STATE(2421), + [sym_concatenated_string] = STATE(2414), + [sym_string] = STATE(2147), + [sym_none] = STATE(2414), + [sym_await] = STATE(2414), + [sym_int_type] = STATE(3449), + [sym__signedness] = STATE(3148), + [sym__longness] = STATE(3367), + [sym_function_pointer_type] = STATE(3449), + [sym_c_type] = STATE(5199), + [sym_new_expression] = STATE(2421), + [sym_sizeof_expression] = STATE(2414), + [sym_cast_expression] = STATE(2414), + [sym_identifier] = ACTIONS(1464), + [anon_sym_LPAREN] = ACTIONS(1466), + [anon_sym_RPAREN] = ACTIONS(1468), + [anon_sym_STAR] = ACTIONS(1320), + [anon_sym_print] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1470), + [anon_sym_async] = ACTIONS(1470), + [anon_sym_exec] = ACTIONS(1470), + [anon_sym_LBRACK] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1326), + [anon_sym_LBRACE] = ACTIONS(1328), + [anon_sym_PLUS] = ACTIONS(1326), + [anon_sym_not] = ACTIONS(1330), + [anon_sym_AMP] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1326), + [anon_sym_LT] = ACTIONS(1332), + [anon_sym_lambda] = ACTIONS(1334), + [anon_sym_yield] = ACTIONS(1336), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1338), + [anon_sym_None] = ACTIONS(1340), + [sym_integer] = ACTIONS(1342), + [sym_float] = ACTIONS(1344), + [anon_sym_await] = ACTIONS(1474), + [anon_sym_api] = ACTIONS(1470), + [sym_true] = ACTIONS(1342), + [sym_false] = ACTIONS(1342), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1348), + [anon_sym_double] = ACTIONS(1348), + [anon_sym_complex] = ACTIONS(1348), + [anon_sym_new] = ACTIONS(1350), + [anon_sym_signed] = ACTIONS(1352), + [anon_sym_unsigned] = ACTIONS(1352), + [anon_sym_char] = ACTIONS(1354), + [anon_sym_short] = ACTIONS(1354), + [anon_sym_long] = ACTIONS(1356), + [anon_sym_const] = ACTIONS(1358), + [anon_sym_volatile] = ACTIONS(1358), + [anon_sym_sizeof] = ACTIONS(1360), + [sym_string_start] = ACTIONS(1362), + }, + [484] = { [sym_identifier] = ACTIONS(1478), [anon_sym_SEMI] = ACTIONS(1480), [anon_sym_import] = ACTIONS(1478), @@ -77227,7 +77359,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1480), [sym_string_start] = ACTIONS(1480), }, - [484] = { + [485] = { + [sym_list_splat_pattern] = STATE(2088), + [sym_primary_expression] = STATE(2056), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_attribute] = STATE(2111), + [sym_subscript] = STATE(2111), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [sym_identifier] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(1003), + [anon_sym_DOT] = ACTIONS(1005), + [anon_sym_from] = ACTIONS(1005), + [anon_sym_LPAREN] = ACTIONS(1281), + [anon_sym_COMMA] = ACTIONS(1003), + [anon_sym_as] = ACTIONS(1005), + [anon_sym_STAR] = ACTIONS(1283), + [anon_sym_print] = ACTIONS(1285), + [anon_sym_GT_GT] = ACTIONS(1003), + [anon_sym_COLON_EQ] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1005), + [anon_sym_COLON] = ACTIONS(1005), + [anon_sym_match] = ACTIONS(1285), + [anon_sym_async] = ACTIONS(1285), + [anon_sym_in] = ACTIONS(1005), + [anon_sym_with] = ACTIONS(1005), + [anon_sym_STAR_STAR] = ACTIONS(1003), + [anon_sym_exec] = ACTIONS(1285), + [anon_sym_EQ] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1287), + [anon_sym_AT] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(1003), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(1005), + [anon_sym_and] = ACTIONS(1005), + [anon_sym_or] = ACTIONS(1005), + [anon_sym_SLASH] = ACTIONS(1005), + [anon_sym_PERCENT] = ACTIONS(1003), + [anon_sym_SLASH_SLASH] = ACTIONS(1003), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(1003), + [anon_sym_LT_LT] = ACTIONS(1003), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_is] = ACTIONS(1005), + [anon_sym_LT] = ACTIONS(1291), + [anon_sym_LT_EQ] = ACTIONS(1003), + [anon_sym_EQ_EQ] = ACTIONS(1003), + [anon_sym_BANG_EQ] = ACTIONS(1003), + [anon_sym_GT_EQ] = ACTIONS(1003), + [anon_sym_GT] = ACTIONS(1005), + [anon_sym_LT_GT] = ACTIONS(1003), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [sym_integer] = ACTIONS(81), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(1293), + [anon_sym_api] = ACTIONS(1285), + [sym_true] = ACTIONS(81), + [sym_false] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_nogil] = ACTIONS(1005), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(1003), + [sym_string_start] = ACTIONS(107), + }, + [486] = { [sym_identifier] = ACTIONS(1482), [anon_sym_SEMI] = ACTIONS(1484), [anon_sym_import] = ACTIONS(1482), @@ -77310,7 +77525,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1484), [sym_string_start] = ACTIONS(1484), }, - [485] = { + [487] = { [sym_identifier] = ACTIONS(1486), [anon_sym_SEMI] = ACTIONS(1488), [anon_sym_import] = ACTIONS(1486), @@ -77393,90 +77608,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1488), [sym_string_start] = ACTIONS(1488), }, - [486] = { - [sym_list_splat_pattern] = STATE(2088), - [sym_primary_expression] = STATE(2052), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_attribute] = STATE(2123), - [sym_subscript] = STATE(2123), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [sym_identifier] = ACTIONS(81), - [anon_sym_SEMI] = ACTIONS(579), - [anon_sym_DOT] = ACTIONS(581), - [anon_sym_from] = ACTIONS(581), - [anon_sym_LPAREN] = ACTIONS(1281), - [anon_sym_COMMA] = ACTIONS(579), - [anon_sym_as] = ACTIONS(581), - [anon_sym_STAR] = ACTIONS(1283), - [anon_sym_print] = ACTIONS(1285), - [anon_sym_GT_GT] = ACTIONS(579), - [anon_sym_COLON_EQ] = ACTIONS(596), - [anon_sym_if] = ACTIONS(581), - [anon_sym_COLON] = ACTIONS(581), - [anon_sym_match] = ACTIONS(1285), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_in] = ACTIONS(581), - [anon_sym_with] = ACTIONS(581), - [anon_sym_STAR_STAR] = ACTIONS(579), - [anon_sym_exec] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(581), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_PIPE] = ACTIONS(579), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(581), - [anon_sym_and] = ACTIONS(581), - [anon_sym_or] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(581), - [anon_sym_PERCENT] = ACTIONS(579), - [anon_sym_SLASH_SLASH] = ACTIONS(579), - [anon_sym_AMP] = ACTIONS(65), - [anon_sym_CARET] = ACTIONS(579), - [anon_sym_LT_LT] = ACTIONS(579), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_is] = ACTIONS(581), - [anon_sym_LT] = ACTIONS(1291), - [anon_sym_LT_EQ] = ACTIONS(579), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_GT_EQ] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_GT] = ACTIONS(579), - [anon_sym_DOT_DOT_DOT] = ACTIONS(77), - [anon_sym_None] = ACTIONS(79), - [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(83), - [anon_sym_await] = ACTIONS(1293), - [anon_sym_api] = ACTIONS(1285), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_nogil] = ACTIONS(581), - [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(579), - [sym_string_start] = ACTIONS(107), - }, - [487] = { + [488] = { [sym_identifier] = ACTIONS(1490), [anon_sym_SEMI] = ACTIONS(1492), [anon_sym_import] = ACTIONS(1490), @@ -77559,7 +77691,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1492), [sym_string_start] = ACTIONS(1492), }, - [488] = { + [489] = { [sym_identifier] = ACTIONS(1494), [anon_sym_SEMI] = ACTIONS(1496), [anon_sym_import] = ACTIONS(1494), @@ -77642,30 +77774,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1496), [sym_string_start] = ACTIONS(1496), }, - [489] = { - [sym_list_splat_pattern] = STATE(2432), - [sym_primary_expression] = STATE(3190), - [sym_binary_operator] = STATE(2549), - [sym_unary_operator] = STATE(2549), - [sym_attribute] = STATE(2549), - [sym_subscript] = STATE(2549), - [sym_ellipsis] = STATE(2549), - [sym_call] = STATE(2549), - [sym_list] = STATE(2549), - [sym_set] = STATE(2549), - [sym_tuple] = STATE(2549), - [sym_dictionary] = STATE(2549), - [sym_list_comprehension] = STATE(2549), - [sym_dictionary_comprehension] = STATE(2549), - [sym_set_comprehension] = STATE(2549), - [sym_generator_expression] = STATE(2549), - [sym_parenthesized_expression] = STATE(2549), - [sym_concatenated_string] = STATE(2549), - [sym_string] = STATE(2140), - [sym_none] = STATE(2549), - [sym_await] = STATE(2549), - [sym_sizeof_expression] = STATE(2549), - [sym_cast_expression] = STATE(2549), + [490] = { + [sym_list_splat_pattern] = STATE(2536), + [sym_primary_expression] = STATE(3239), + [sym_binary_operator] = STATE(2401), + [sym_unary_operator] = STATE(2401), + [sym_attribute] = STATE(2401), + [sym_subscript] = STATE(2401), + [sym_ellipsis] = STATE(2401), + [sym_call] = STATE(2401), + [sym_list] = STATE(2401), + [sym_set] = STATE(2401), + [sym_tuple] = STATE(2401), + [sym_dictionary] = STATE(2401), + [sym_list_comprehension] = STATE(2401), + [sym_dictionary_comprehension] = STATE(2401), + [sym_set_comprehension] = STATE(2401), + [sym_generator_expression] = STATE(2401), + [sym_parenthesized_expression] = STATE(2401), + [sym_concatenated_string] = STATE(2401), + [sym_string] = STATE(2161), + [sym_none] = STATE(2401), + [sym_await] = STATE(2401), + [sym_sizeof_expression] = STATE(2401), + [sym_cast_expression] = STATE(2401), [sym_identifier] = ACTIONS(1237), [anon_sym_SEMI] = ACTIONS(1295), [anon_sym_DOT] = ACTIONS(1297), @@ -77724,73 +77856,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1295), [sym_string_start] = ACTIONS(1247), }, - [490] = { + [491] = { [sym_list_splat_pattern] = STATE(2088), - [sym_primary_expression] = STATE(2052), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_attribute] = STATE(2123), - [sym_subscript] = STATE(2123), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [sym_primary_expression] = STATE(2056), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_attribute] = STATE(2111), + [sym_subscript] = STATE(2111), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(81), - [anon_sym_SEMI] = ACTIONS(579), - [anon_sym_DOT] = ACTIONS(581), - [anon_sym_from] = ACTIONS(581), + [anon_sym_SEMI] = ACTIONS(1003), + [anon_sym_DOT] = ACTIONS(1005), + [anon_sym_from] = ACTIONS(1005), [anon_sym_LPAREN] = ACTIONS(1281), - [anon_sym_COMMA] = ACTIONS(579), - [anon_sym_as] = ACTIONS(581), + [anon_sym_COMMA] = ACTIONS(1003), + [anon_sym_as] = ACTIONS(1005), [anon_sym_STAR] = ACTIONS(1283), [anon_sym_print] = ACTIONS(1285), - [anon_sym_GT_GT] = ACTIONS(579), - [anon_sym_if] = ACTIONS(581), - [anon_sym_COLON] = ACTIONS(579), + [anon_sym_GT_GT] = ACTIONS(1003), + [anon_sym_if] = ACTIONS(1005), + [anon_sym_COLON] = ACTIONS(1003), [anon_sym_match] = ACTIONS(1285), [anon_sym_async] = ACTIONS(1285), - [anon_sym_in] = ACTIONS(581), - [anon_sym_with] = ACTIONS(581), - [anon_sym_STAR_STAR] = ACTIONS(579), + [anon_sym_in] = ACTIONS(1005), + [anon_sym_with] = ACTIONS(1005), + [anon_sym_STAR_STAR] = ACTIONS(1003), [anon_sym_exec] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(581), + [anon_sym_EQ] = ACTIONS(1005), [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(579), + [anon_sym_AT] = ACTIONS(1003), [anon_sym_DASH] = ACTIONS(65), - [anon_sym_PIPE] = ACTIONS(579), + [anon_sym_PIPE] = ACTIONS(1003), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(581), - [anon_sym_and] = ACTIONS(581), - [anon_sym_or] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(581), - [anon_sym_PERCENT] = ACTIONS(579), - [anon_sym_SLASH_SLASH] = ACTIONS(579), + [anon_sym_not] = ACTIONS(1005), + [anon_sym_and] = ACTIONS(1005), + [anon_sym_or] = ACTIONS(1005), + [anon_sym_SLASH] = ACTIONS(1005), + [anon_sym_PERCENT] = ACTIONS(1003), + [anon_sym_SLASH_SLASH] = ACTIONS(1003), [anon_sym_AMP] = ACTIONS(65), - [anon_sym_CARET] = ACTIONS(579), - [anon_sym_LT_LT] = ACTIONS(579), + [anon_sym_CARET] = ACTIONS(1003), + [anon_sym_LT_LT] = ACTIONS(1003), [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_is] = ACTIONS(581), + [anon_sym_is] = ACTIONS(1005), [anon_sym_LT] = ACTIONS(1291), - [anon_sym_LT_EQ] = ACTIONS(579), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_GT_EQ] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_GT] = ACTIONS(579), + [anon_sym_LT_EQ] = ACTIONS(1003), + [anon_sym_EQ_EQ] = ACTIONS(1003), + [anon_sym_BANG_EQ] = ACTIONS(1003), + [anon_sym_GT_EQ] = ACTIONS(1003), + [anon_sym_GT] = ACTIONS(1005), + [anon_sym_LT_GT] = ACTIONS(1003), [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), @@ -77801,12 +77933,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_nogil] = ACTIONS(581), + [anon_sym_nogil] = ACTIONS(1005), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(579), + [sym__newline] = ACTIONS(1003), [sym_string_start] = ACTIONS(107), }, - [491] = { + [492] = { [sym_identifier] = ACTIONS(1501), [anon_sym_SEMI] = ACTIONS(1503), [anon_sym_import] = ACTIONS(1501), @@ -77887,7 +78019,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1503), [sym_string_start] = ACTIONS(1503), }, - [492] = { + [493] = { [sym_identifier] = ACTIONS(1507), [anon_sym_SEMI] = ACTIONS(1509), [anon_sym_import] = ACTIONS(1507), @@ -77968,7 +78100,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1509), [sym_string_start] = ACTIONS(1509), }, - [493] = { + [494] = { [sym_identifier] = ACTIONS(1511), [anon_sym_SEMI] = ACTIONS(1513), [anon_sym_import] = ACTIONS(1511), @@ -78049,7 +78181,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1513), [sym_string_start] = ACTIONS(1513), }, - [494] = { + [495] = { [sym_identifier] = ACTIONS(1515), [anon_sym_SEMI] = ACTIONS(1517), [anon_sym_import] = ACTIONS(1515), @@ -78130,7 +78262,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1517), [sym_string_start] = ACTIONS(1517), }, - [495] = { + [496] = { [sym_identifier] = ACTIONS(1521), [anon_sym_SEMI] = ACTIONS(1523), [anon_sym_import] = ACTIONS(1521), @@ -78211,7 +78343,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1523), [sym_string_start] = ACTIONS(1523), }, - [496] = { + [497] = { [sym_identifier] = ACTIONS(1527), [anon_sym_SEMI] = ACTIONS(1529), [anon_sym_import] = ACTIONS(1527), @@ -78292,7 +78424,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1529), [sym_string_start] = ACTIONS(1529), }, - [497] = { + [498] = { [sym_identifier] = ACTIONS(1533), [anon_sym_SEMI] = ACTIONS(1535), [anon_sym_import] = ACTIONS(1533), @@ -78373,7 +78505,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1535), [sym_string_start] = ACTIONS(1535), }, - [498] = { + [499] = { [sym_identifier] = ACTIONS(1539), [anon_sym_SEMI] = ACTIONS(1541), [anon_sym_import] = ACTIONS(1539), @@ -78454,7 +78586,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1541), [sym_string_start] = ACTIONS(1541), }, - [499] = { + [500] = { [sym_identifier] = ACTIONS(1545), [anon_sym_SEMI] = ACTIONS(1547), [anon_sym_import] = ACTIONS(1545), @@ -78535,7 +78667,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1547), [sym_string_start] = ACTIONS(1547), }, - [500] = { + [501] = { [sym_identifier] = ACTIONS(1551), [anon_sym_SEMI] = ACTIONS(1553), [anon_sym_import] = ACTIONS(1551), @@ -78616,7 +78748,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1553), [sym_string_start] = ACTIONS(1553), }, - [501] = { + [502] = { [sym_identifier] = ACTIONS(1557), [anon_sym_SEMI] = ACTIONS(1559), [anon_sym_import] = ACTIONS(1557), @@ -78696,7 +78828,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1559), [sym_string_start] = ACTIONS(1559), }, - [502] = { + [503] = { [sym_identifier] = ACTIONS(1561), [anon_sym_SEMI] = ACTIONS(1563), [anon_sym_import] = ACTIONS(1561), @@ -78776,7 +78908,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1563), [sym_string_start] = ACTIONS(1563), }, - [503] = { + [504] = { [sym_identifier] = ACTIONS(1565), [anon_sym_SEMI] = ACTIONS(1567), [anon_sym_import] = ACTIONS(1565), @@ -78856,7 +78988,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1567), [sym_string_start] = ACTIONS(1567), }, - [504] = { + [505] = { [sym_identifier] = ACTIONS(1569), [anon_sym_SEMI] = ACTIONS(1571), [anon_sym_import] = ACTIONS(1569), @@ -78936,7 +79068,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1571), [sym_string_start] = ACTIONS(1571), }, - [505] = { + [506] = { [sym_identifier] = ACTIONS(1573), [anon_sym_SEMI] = ACTIONS(1575), [anon_sym_import] = ACTIONS(1573), @@ -79016,7 +79148,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1575), [sym_string_start] = ACTIONS(1575), }, - [506] = { + [507] = { [sym_identifier] = ACTIONS(1577), [anon_sym_SEMI] = ACTIONS(1579), [anon_sym_import] = ACTIONS(1577), @@ -79096,7 +79228,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1579), [sym_string_start] = ACTIONS(1579), }, - [507] = { + [508] = { [sym_identifier] = ACTIONS(1581), [anon_sym_SEMI] = ACTIONS(1583), [anon_sym_import] = ACTIONS(1581), @@ -79176,7 +79308,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1583), [sym_string_start] = ACTIONS(1583), }, - [508] = { + [509] = { [sym_identifier] = ACTIONS(1585), [anon_sym_SEMI] = ACTIONS(1587), [anon_sym_import] = ACTIONS(1585), @@ -79256,7 +79388,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1587), [sym_string_start] = ACTIONS(1587), }, - [509] = { + [510] = { [sym_identifier] = ACTIONS(1589), [anon_sym_SEMI] = ACTIONS(1591), [anon_sym_import] = ACTIONS(1589), @@ -79336,7 +79468,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1591), [sym_string_start] = ACTIONS(1591), }, - [510] = { + [511] = { [sym_identifier] = ACTIONS(1593), [anon_sym_SEMI] = ACTIONS(1595), [anon_sym_import] = ACTIONS(1593), @@ -79416,7 +79548,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1595), [sym_string_start] = ACTIONS(1595), }, - [511] = { + [512] = { [sym_identifier] = ACTIONS(1597), [anon_sym_SEMI] = ACTIONS(1599), [anon_sym_import] = ACTIONS(1597), @@ -79496,7 +79628,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1599), [sym_string_start] = ACTIONS(1599), }, - [512] = { + [513] = { [sym_identifier] = ACTIONS(1601), [anon_sym_SEMI] = ACTIONS(1603), [anon_sym_import] = ACTIONS(1601), @@ -79576,7 +79708,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1603), [sym_string_start] = ACTIONS(1603), }, - [513] = { + [514] = { [sym_identifier] = ACTIONS(1605), [anon_sym_SEMI] = ACTIONS(1607), [anon_sym_import] = ACTIONS(1605), @@ -79656,7 +79788,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1607), [sym_string_start] = ACTIONS(1607), }, - [514] = { + [515] = { [sym_identifier] = ACTIONS(1609), [anon_sym_SEMI] = ACTIONS(1611), [anon_sym_import] = ACTIONS(1609), @@ -79736,7 +79868,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1611), [sym_string_start] = ACTIONS(1611), }, - [515] = { + [516] = { [sym_identifier] = ACTIONS(1613), [anon_sym_SEMI] = ACTIONS(1615), [anon_sym_import] = ACTIONS(1613), @@ -79816,7 +79948,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1615), [sym_string_start] = ACTIONS(1615), }, - [516] = { + [517] = { [sym_identifier] = ACTIONS(1617), [anon_sym_SEMI] = ACTIONS(1619), [anon_sym_import] = ACTIONS(1617), @@ -79896,86 +80028,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1619), [sym_string_start] = ACTIONS(1619), }, - [517] = { - [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(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), - }, [518] = { [sym_identifier] = ACTIONS(1621), [anon_sym_SEMI] = ACTIONS(1623), @@ -80297,6 +80349,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(1635), }, [522] = { + [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(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), + }, + [523] = { + [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(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), + }, + [524] = { [sym_identifier] = ACTIONS(1637), [anon_sym_SEMI] = ACTIONS(1639), [anon_sym_import] = ACTIONS(1637), @@ -80376,7 +80588,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1639), [sym_string_start] = ACTIONS(1639), }, - [523] = { + [525] = { [sym_identifier] = ACTIONS(1641), [anon_sym_SEMI] = ACTIONS(1643), [anon_sym_import] = ACTIONS(1641), @@ -80456,7 +80668,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1643), [sym_string_start] = ACTIONS(1643), }, - [524] = { + [526] = { [sym_identifier] = ACTIONS(1645), [anon_sym_SEMI] = ACTIONS(1647), [anon_sym_import] = ACTIONS(1645), @@ -80536,7 +80748,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1647), [sym_string_start] = ACTIONS(1647), }, - [525] = { + [527] = { [sym_identifier] = ACTIONS(1649), [anon_sym_SEMI] = ACTIONS(1651), [anon_sym_import] = ACTIONS(1649), @@ -80616,7 +80828,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1651), [sym_string_start] = ACTIONS(1651), }, - [526] = { + [528] = { [sym_identifier] = ACTIONS(1653), [anon_sym_SEMI] = ACTIONS(1655), [anon_sym_import] = ACTIONS(1653), @@ -80696,7 +80908,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1655), [sym_string_start] = ACTIONS(1655), }, - [527] = { + [529] = { [sym_identifier] = ACTIONS(1657), [anon_sym_SEMI] = ACTIONS(1659), [anon_sym_import] = ACTIONS(1657), @@ -80776,7 +80988,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1659), [sym_string_start] = ACTIONS(1659), }, - [528] = { + [530] = { [sym_identifier] = ACTIONS(1661), [anon_sym_SEMI] = ACTIONS(1663), [anon_sym_import] = ACTIONS(1661), @@ -80856,7 +81068,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1663), [sym_string_start] = ACTIONS(1663), }, - [529] = { + [531] = { [sym_identifier] = ACTIONS(1665), [anon_sym_SEMI] = ACTIONS(1667), [anon_sym_import] = ACTIONS(1665), @@ -80936,7 +81148,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1667), [sym_string_start] = ACTIONS(1667), }, - [530] = { + [532] = { [sym_identifier] = ACTIONS(1669), [anon_sym_SEMI] = ACTIONS(1671), [anon_sym_import] = ACTIONS(1669), @@ -81016,7 +81228,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1671), [sym_string_start] = ACTIONS(1671), }, - [531] = { + [533] = { [sym_identifier] = ACTIONS(1673), [anon_sym_SEMI] = ACTIONS(1675), [anon_sym_import] = ACTIONS(1673), @@ -81096,7 +81308,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1675), [sym_string_start] = ACTIONS(1675), }, - [532] = { + [534] = { [sym_identifier] = ACTIONS(1677), [anon_sym_SEMI] = ACTIONS(1679), [anon_sym_import] = ACTIONS(1677), @@ -81176,7 +81388,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1679), [sym_string_start] = ACTIONS(1679), }, - [533] = { + [535] = { [sym_identifier] = ACTIONS(1681), [anon_sym_SEMI] = ACTIONS(1683), [anon_sym_import] = ACTIONS(1681), @@ -81256,7 +81468,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1683), [sym_string_start] = ACTIONS(1683), }, - [534] = { + [536] = { [sym_identifier] = ACTIONS(1685), [anon_sym_SEMI] = ACTIONS(1687), [anon_sym_import] = ACTIONS(1685), @@ -81336,7 +81548,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1687), [sym_string_start] = ACTIONS(1687), }, - [535] = { + [537] = { [sym_identifier] = ACTIONS(1689), [anon_sym_SEMI] = ACTIONS(1691), [anon_sym_import] = ACTIONS(1689), @@ -81416,7 +81628,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1691), [sym_string_start] = ACTIONS(1691), }, - [536] = { + [538] = { [sym_identifier] = ACTIONS(1693), [anon_sym_SEMI] = ACTIONS(1695), [anon_sym_import] = ACTIONS(1693), @@ -81496,7 +81708,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1695), [sym_string_start] = ACTIONS(1695), }, - [537] = { + [539] = { [sym_identifier] = ACTIONS(1697), [anon_sym_SEMI] = ACTIONS(1699), [anon_sym_import] = ACTIONS(1697), @@ -81576,7 +81788,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1699), [sym_string_start] = ACTIONS(1699), }, - [538] = { + [540] = { + [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(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), + }, + [541] = { [sym_identifier] = ACTIONS(1701), [anon_sym_SEMI] = ACTIONS(1703), [anon_sym_import] = ACTIONS(1701), @@ -81656,7 +81948,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1703), [sym_string_start] = ACTIONS(1703), }, - [539] = { + [542] = { + [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(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), + }, + [543] = { [sym_identifier] = ACTIONS(1705), [anon_sym_SEMI] = ACTIONS(1707), [anon_sym_import] = ACTIONS(1705), @@ -81736,7 +82108,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1707), [sym_string_start] = ACTIONS(1707), }, - [540] = { + [544] = { + [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(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), + }, + [545] = { [sym_identifier] = ACTIONS(1709), [anon_sym_SEMI] = ACTIONS(1711), [anon_sym_import] = ACTIONS(1709), @@ -81816,7 +82268,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1711), [sym_string_start] = ACTIONS(1711), }, - [541] = { + [546] = { [sym_identifier] = ACTIONS(1713), [anon_sym_SEMI] = ACTIONS(1715), [anon_sym_import] = ACTIONS(1713), @@ -81896,7 +82348,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1715), [sym_string_start] = ACTIONS(1715), }, - [542] = { + [547] = { [sym_identifier] = ACTIONS(1717), [anon_sym_SEMI] = ACTIONS(1719), [anon_sym_import] = ACTIONS(1717), @@ -81976,7 +82428,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1719), [sym_string_start] = ACTIONS(1719), }, - [543] = { + [548] = { [sym_identifier] = ACTIONS(1721), [anon_sym_SEMI] = ACTIONS(1723), [anon_sym_import] = ACTIONS(1721), @@ -82056,7 +82508,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1723), [sym_string_start] = ACTIONS(1723), }, - [544] = { + [549] = { [sym_identifier] = ACTIONS(1725), [anon_sym_SEMI] = ACTIONS(1727), [anon_sym_import] = ACTIONS(1725), @@ -82136,7 +82588,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1727), [sym_string_start] = ACTIONS(1727), }, - [545] = { + [550] = { [sym_identifier] = ACTIONS(1729), [anon_sym_SEMI] = ACTIONS(1731), [anon_sym_import] = ACTIONS(1729), @@ -82216,7 +82668,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1731), [sym_string_start] = ACTIONS(1731), }, - [546] = { + [551] = { [sym_identifier] = ACTIONS(1733), [anon_sym_SEMI] = ACTIONS(1735), [anon_sym_import] = ACTIONS(1733), @@ -82296,7 +82748,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1735), [sym_string_start] = ACTIONS(1735), }, - [547] = { + [552] = { [sym_identifier] = ACTIONS(1737), [anon_sym_SEMI] = ACTIONS(1739), [anon_sym_import] = ACTIONS(1737), @@ -82376,7 +82828,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1739), [sym_string_start] = ACTIONS(1739), }, - [548] = { + [553] = { [sym_identifier] = ACTIONS(1741), [anon_sym_SEMI] = ACTIONS(1743), [anon_sym_import] = ACTIONS(1741), @@ -82456,7 +82908,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1743), [sym_string_start] = ACTIONS(1743), }, - [549] = { + [554] = { [sym_identifier] = ACTIONS(1745), [anon_sym_SEMI] = ACTIONS(1747), [anon_sym_import] = ACTIONS(1745), @@ -82536,7 +82988,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1747), [sym_string_start] = ACTIONS(1747), }, - [550] = { + [555] = { [sym_identifier] = ACTIONS(1749), [anon_sym_SEMI] = ACTIONS(1751), [anon_sym_import] = ACTIONS(1749), @@ -82616,7 +83068,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1751), [sym_string_start] = ACTIONS(1751), }, - [551] = { + [556] = { [sym_identifier] = ACTIONS(1753), [anon_sym_SEMI] = ACTIONS(1755), [anon_sym_import] = ACTIONS(1753), @@ -82696,7 +83148,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1755), [sym_string_start] = ACTIONS(1755), }, - [552] = { + [557] = { [sym_identifier] = ACTIONS(1757), [anon_sym_SEMI] = ACTIONS(1759), [anon_sym_import] = ACTIONS(1757), @@ -82776,7 +83228,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1759), [sym_string_start] = ACTIONS(1759), }, - [553] = { + [558] = { [sym_identifier] = ACTIONS(1761), [anon_sym_SEMI] = ACTIONS(1763), [anon_sym_import] = ACTIONS(1761), @@ -82856,7 +83308,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1763), [sym_string_start] = ACTIONS(1763), }, - [554] = { + [559] = { [sym_identifier] = ACTIONS(1765), [anon_sym_SEMI] = ACTIONS(1767), [anon_sym_import] = ACTIONS(1765), @@ -82936,7 +83388,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1767), [sym_string_start] = ACTIONS(1767), }, - [555] = { + [560] = { [sym_identifier] = ACTIONS(1769), [anon_sym_SEMI] = ACTIONS(1771), [anon_sym_import] = ACTIONS(1769), @@ -83016,7 +83468,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1771), [sym_string_start] = ACTIONS(1771), }, - [556] = { + [561] = { [sym_identifier] = ACTIONS(1773), [anon_sym_SEMI] = ACTIONS(1775), [anon_sym_import] = ACTIONS(1773), @@ -83096,7 +83548,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1775), [sym_string_start] = ACTIONS(1775), }, - [557] = { + [562] = { [sym_identifier] = ACTIONS(1777), [anon_sym_SEMI] = ACTIONS(1779), [anon_sym_import] = ACTIONS(1777), @@ -83176,7 +83628,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1779), [sym_string_start] = ACTIONS(1779), }, - [558] = { + [563] = { [sym_identifier] = ACTIONS(1781), [anon_sym_SEMI] = ACTIONS(1783), [anon_sym_import] = ACTIONS(1781), @@ -83256,7 +83708,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1783), [sym_string_start] = ACTIONS(1783), }, - [559] = { + [564] = { [sym_identifier] = ACTIONS(1785), [anon_sym_SEMI] = ACTIONS(1787), [anon_sym_import] = ACTIONS(1785), @@ -83336,7 +83788,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1787), [sym_string_start] = ACTIONS(1787), }, - [560] = { + [565] = { + [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(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), + }, + [566] = { [sym_identifier] = ACTIONS(1789), [anon_sym_SEMI] = ACTIONS(1791), [anon_sym_import] = ACTIONS(1789), @@ -83416,7 +83948,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1791), [sym_string_start] = ACTIONS(1791), }, - [561] = { + [567] = { [sym_identifier] = ACTIONS(1793), [anon_sym_SEMI] = ACTIONS(1795), [anon_sym_import] = ACTIONS(1793), @@ -83496,7 +84028,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1795), [sym_string_start] = ACTIONS(1795), }, - [562] = { + [568] = { + [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(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), + }, + [569] = { [sym_identifier] = ACTIONS(1797), [anon_sym_SEMI] = ACTIONS(1799), [anon_sym_import] = ACTIONS(1797), @@ -83576,7 +84188,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1799), [sym_string_start] = ACTIONS(1799), }, - [563] = { + [570] = { + [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(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), + }, + [571] = { [sym_identifier] = ACTIONS(1801), [anon_sym_SEMI] = ACTIONS(1803), [anon_sym_import] = ACTIONS(1801), @@ -83656,7 +84348,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1803), [sym_string_start] = ACTIONS(1803), }, - [564] = { + [572] = { [sym_identifier] = ACTIONS(1805), [anon_sym_SEMI] = ACTIONS(1807), [anon_sym_import] = ACTIONS(1805), @@ -83736,7 +84428,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1807), [sym_string_start] = ACTIONS(1807), }, - [565] = { + [573] = { [sym_identifier] = ACTIONS(1809), [anon_sym_SEMI] = ACTIONS(1811), [anon_sym_import] = ACTIONS(1809), @@ -83816,7 +84508,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1811), [sym_string_start] = ACTIONS(1811), }, - [566] = { + [574] = { [sym_identifier] = ACTIONS(1813), [anon_sym_SEMI] = ACTIONS(1815), [anon_sym_import] = ACTIONS(1813), @@ -83896,7 +84588,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1815), [sym_string_start] = ACTIONS(1815), }, - [567] = { + [575] = { [sym_identifier] = ACTIONS(1817), [anon_sym_SEMI] = ACTIONS(1819), [anon_sym_import] = ACTIONS(1817), @@ -83976,7 +84668,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1819), [sym_string_start] = ACTIONS(1819), }, - [568] = { + [576] = { [sym_identifier] = ACTIONS(1821), [anon_sym_SEMI] = ACTIONS(1823), [anon_sym_import] = ACTIONS(1821), @@ -84056,7 +84748,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1823), [sym_string_start] = ACTIONS(1823), }, - [569] = { + [577] = { [sym_identifier] = ACTIONS(1825), [anon_sym_SEMI] = ACTIONS(1827), [anon_sym_import] = ACTIONS(1825), @@ -84136,7 +84828,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1827), [sym_string_start] = ACTIONS(1827), }, - [570] = { + [578] = { [sym_identifier] = ACTIONS(1829), [anon_sym_SEMI] = ACTIONS(1831), [anon_sym_import] = ACTIONS(1829), @@ -84216,7 +84908,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1831), [sym_string_start] = ACTIONS(1831), }, - [571] = { + [579] = { [sym_identifier] = ACTIONS(1833), [anon_sym_SEMI] = ACTIONS(1835), [anon_sym_import] = ACTIONS(1833), @@ -84296,7 +84988,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1835), [sym_string_start] = ACTIONS(1835), }, - [572] = { + [580] = { [sym_identifier] = ACTIONS(1837), [anon_sym_SEMI] = ACTIONS(1839), [anon_sym_import] = ACTIONS(1837), @@ -84376,7 +85068,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1839), [sym_string_start] = ACTIONS(1839), }, - [573] = { + [581] = { [sym_identifier] = ACTIONS(1841), [anon_sym_SEMI] = ACTIONS(1843), [anon_sym_import] = ACTIONS(1841), @@ -84456,7 +85148,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1843), [sym_string_start] = ACTIONS(1843), }, - [574] = { + [582] = { [sym_identifier] = ACTIONS(1845), [anon_sym_SEMI] = ACTIONS(1847), [anon_sym_import] = ACTIONS(1845), @@ -84536,7 +85228,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1847), [sym_string_start] = ACTIONS(1847), }, - [575] = { + [583] = { [sym_identifier] = ACTIONS(1849), [anon_sym_SEMI] = ACTIONS(1851), [anon_sym_import] = ACTIONS(1849), @@ -84616,7 +85308,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1851), [sym_string_start] = ACTIONS(1851), }, - [576] = { + [584] = { [sym_identifier] = ACTIONS(1853), [anon_sym_SEMI] = ACTIONS(1855), [anon_sym_import] = ACTIONS(1853), @@ -84696,7 +85388,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1855), [sym_string_start] = ACTIONS(1855), }, - [577] = { + [585] = { [sym_identifier] = ACTIONS(1857), [anon_sym_SEMI] = ACTIONS(1859), [anon_sym_import] = ACTIONS(1857), @@ -84776,7 +85468,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1859), [sym_string_start] = ACTIONS(1859), }, - [578] = { + [586] = { [sym_identifier] = ACTIONS(1861), [anon_sym_SEMI] = ACTIONS(1863), [anon_sym_import] = ACTIONS(1861), @@ -84856,7 +85548,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1863), [sym_string_start] = ACTIONS(1863), }, - [579] = { + [587] = { [sym_identifier] = ACTIONS(1865), [anon_sym_SEMI] = ACTIONS(1867), [anon_sym_import] = ACTIONS(1865), @@ -84936,7 +85628,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1867), [sym_string_start] = ACTIONS(1867), }, - [580] = { + [588] = { [sym_identifier] = ACTIONS(1869), [anon_sym_SEMI] = ACTIONS(1871), [anon_sym_import] = ACTIONS(1869), @@ -85016,7 +85708,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1871), [sym_string_start] = ACTIONS(1871), }, - [581] = { + [589] = { [sym_identifier] = ACTIONS(1873), [anon_sym_SEMI] = ACTIONS(1875), [anon_sym_import] = ACTIONS(1873), @@ -85096,7 +85788,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1875), [sym_string_start] = ACTIONS(1875), }, - [582] = { + [590] = { [sym_identifier] = ACTIONS(1877), [anon_sym_SEMI] = ACTIONS(1879), [anon_sym_import] = ACTIONS(1877), @@ -85176,7 +85868,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1879), [sym_string_start] = ACTIONS(1879), }, - [583] = { + [591] = { [sym_identifier] = ACTIONS(1881), [anon_sym_SEMI] = ACTIONS(1883), [anon_sym_import] = ACTIONS(1881), @@ -85256,7 +85948,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1883), [sym_string_start] = ACTIONS(1883), }, - [584] = { + [592] = { [sym_identifier] = ACTIONS(1885), [anon_sym_SEMI] = ACTIONS(1887), [anon_sym_import] = ACTIONS(1885), @@ -85336,7 +86028,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1887), [sym_string_start] = ACTIONS(1887), }, - [585] = { + [593] = { [sym_identifier] = ACTIONS(1889), [anon_sym_SEMI] = ACTIONS(1891), [anon_sym_import] = ACTIONS(1889), @@ -85416,7 +86108,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1891), [sym_string_start] = ACTIONS(1891), }, - [586] = { + [594] = { [sym_identifier] = ACTIONS(1893), [anon_sym_SEMI] = ACTIONS(1895), [anon_sym_import] = ACTIONS(1893), @@ -85496,7 +86188,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1895), [sym_string_start] = ACTIONS(1895), }, - [587] = { + [595] = { + [sym_identifier] = ACTIONS(1853), + [anon_sym_SEMI] = ACTIONS(1855), + [anon_sym_import] = ACTIONS(1853), + [anon_sym_cimport] = ACTIONS(1853), + [anon_sym_from] = ACTIONS(1853), + [anon_sym_LPAREN] = ACTIONS(1855), + [anon_sym_STAR] = ACTIONS(1855), + [anon_sym_print] = ACTIONS(1853), + [anon_sym_assert] = ACTIONS(1853), + [anon_sym_return] = ACTIONS(1853), + [anon_sym_del] = ACTIONS(1853), + [anon_sym_raise] = ACTIONS(1853), + [anon_sym_pass] = ACTIONS(1853), + [anon_sym_break] = ACTIONS(1853), + [anon_sym_continue] = ACTIONS(1853), + [anon_sym_if] = ACTIONS(1853), + [anon_sym_match] = ACTIONS(1853), + [anon_sym_async] = ACTIONS(1853), + [anon_sym_for] = ACTIONS(1853), + [anon_sym_while] = ACTIONS(1853), + [anon_sym_try] = ACTIONS(1853), + [anon_sym_with] = ACTIONS(1853), + [anon_sym_def] = ACTIONS(1853), + [anon_sym_global] = ACTIONS(1853), + [anon_sym_nonlocal] = ACTIONS(1853), + [anon_sym_exec] = ACTIONS(1853), + [anon_sym_type] = ACTIONS(1853), + [anon_sym_class] = ACTIONS(1853), + [anon_sym_LBRACK] = ACTIONS(1855), + [anon_sym_AT] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_LBRACE] = ACTIONS(1855), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_not] = ACTIONS(1853), + [anon_sym_AMP] = ACTIONS(1855), + [anon_sym_TILDE] = ACTIONS(1855), + [anon_sym_LT] = ACTIONS(1855), + [anon_sym_lambda] = ACTIONS(1853), + [anon_sym_yield] = ACTIONS(1853), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1855), + [anon_sym_None] = ACTIONS(1853), + [sym_integer] = ACTIONS(1853), + [sym_float] = ACTIONS(1855), + [anon_sym_await] = ACTIONS(1853), + [anon_sym_api] = ACTIONS(1853), + [sym_true] = ACTIONS(1853), + [sym_false] = ACTIONS(1853), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1853), + [anon_sym_include] = ACTIONS(1853), + [anon_sym_DEF] = ACTIONS(1853), + [anon_sym_cdef] = ACTIONS(1853), + [anon_sym_cpdef] = ACTIONS(1853), + [anon_sym_int] = ACTIONS(1853), + [anon_sym_double] = ACTIONS(1853), + [anon_sym_complex] = ACTIONS(1853), + [anon_sym_new] = ACTIONS(1853), + [anon_sym_signed] = ACTIONS(1853), + [anon_sym_unsigned] = ACTIONS(1853), + [anon_sym_char] = ACTIONS(1853), + [anon_sym_short] = ACTIONS(1853), + [anon_sym_long] = ACTIONS(1853), + [anon_sym_const] = ACTIONS(1853), + [anon_sym_volatile] = ACTIONS(1853), + [anon_sym_ctypedef] = ACTIONS(1853), + [anon_sym_struct] = ACTIONS(1853), + [anon_sym_union] = ACTIONS(1853), + [anon_sym_enum] = ACTIONS(1853), + [anon_sym_cppclass] = ACTIONS(1853), + [anon_sym_fused] = ACTIONS(1853), + [anon_sym_public] = ACTIONS(1853), + [anon_sym_packed] = ACTIONS(1853), + [anon_sym_inline] = ACTIONS(1853), + [anon_sym_readonly] = ACTIONS(1853), + [anon_sym_sizeof] = ACTIONS(1853), + [sym__dedent] = ACTIONS(1855), + [sym_string_start] = ACTIONS(1855), + }, + [596] = { [sym_identifier] = ACTIONS(1897), [anon_sym_SEMI] = ACTIONS(1899), [anon_sym_import] = ACTIONS(1897), @@ -85576,7 +86348,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1899), [sym_string_start] = ACTIONS(1899), }, - [588] = { + [597] = { [sym_identifier] = ACTIONS(1901), [anon_sym_SEMI] = ACTIONS(1903), [anon_sym_import] = ACTIONS(1901), @@ -85656,87 +86428,567 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1903), [sym_string_start] = ACTIONS(1903), }, - [589] = { - [sym_list_splat_pattern] = STATE(2357), - [sym_primary_expression] = STATE(2136), - [sym_binary_operator] = STATE(2255), - [sym_unary_operator] = STATE(2255), - [sym_attribute] = STATE(2255), - [sym_subscript] = STATE(2255), - [sym_ellipsis] = STATE(2255), - [sym_call] = STATE(2255), - [sym_list] = STATE(2255), - [sym_set] = STATE(2255), - [sym_tuple] = STATE(2255), - [sym_dictionary] = STATE(2255), - [sym_list_comprehension] = STATE(2255), - [sym_dictionary_comprehension] = STATE(2255), - [sym_set_comprehension] = STATE(2255), - [sym_generator_expression] = STATE(2255), - [sym_parenthesized_expression] = STATE(2255), - [sym_concatenated_string] = STATE(2255), - [sym_string] = STATE(2073), - [sym_none] = STATE(2255), - [sym_await] = STATE(2255), - [sym_sizeof_expression] = STATE(2255), - [sym_cast_expression] = STATE(2255), + [598] = { [sym_identifier] = ACTIONS(1905), - [anon_sym_DOT] = ACTIONS(581), + [anon_sym_SEMI] = ACTIONS(1907), + [anon_sym_import] = ACTIONS(1905), + [anon_sym_cimport] = ACTIONS(1905), + [anon_sym_from] = ACTIONS(1905), [anon_sym_LPAREN] = ACTIONS(1907), - [anon_sym_COMMA] = ACTIONS(579), - [anon_sym_as] = ACTIONS(581), - [anon_sym_STAR] = ACTIONS(1909), - [anon_sym_print] = ACTIONS(1911), - [anon_sym_GT_GT] = ACTIONS(579), - [anon_sym_COLON_EQ] = ACTIONS(596), - [anon_sym_if] = ACTIONS(581), - [anon_sym_COLON] = ACTIONS(581), - [anon_sym_match] = ACTIONS(1911), - [anon_sym_async] = ACTIONS(1911), - [anon_sym_in] = ACTIONS(581), - [anon_sym_STAR_STAR] = ACTIONS(579), - [anon_sym_exec] = ACTIONS(1911), - [anon_sym_EQ] = ACTIONS(581), - [anon_sym_LBRACK] = ACTIONS(1913), - [anon_sym_AT] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(1915), - [anon_sym_PIPE] = ACTIONS(579), - [anon_sym_LBRACE] = ACTIONS(1917), - [anon_sym_RBRACE] = ACTIONS(579), - [anon_sym_PLUS] = ACTIONS(1915), - [anon_sym_not] = ACTIONS(581), - [anon_sym_and] = ACTIONS(581), - [anon_sym_or] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(581), - [anon_sym_PERCENT] = ACTIONS(579), - [anon_sym_SLASH_SLASH] = ACTIONS(579), - [anon_sym_AMP] = ACTIONS(1915), - [anon_sym_CARET] = ACTIONS(579), - [anon_sym_LT_LT] = ACTIONS(579), - [anon_sym_TILDE] = ACTIONS(1915), - [anon_sym_is] = ACTIONS(581), - [anon_sym_LT] = ACTIONS(1919), - [anon_sym_LT_EQ] = ACTIONS(579), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_GT_EQ] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_GT] = ACTIONS(579), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1921), - [anon_sym_None] = ACTIONS(1923), - [sym_type_conversion] = ACTIONS(579), + [anon_sym_STAR] = ACTIONS(1907), + [anon_sym_print] = ACTIONS(1905), + [anon_sym_assert] = ACTIONS(1905), + [anon_sym_return] = ACTIONS(1905), + [anon_sym_del] = ACTIONS(1905), + [anon_sym_raise] = ACTIONS(1905), + [anon_sym_pass] = ACTIONS(1905), + [anon_sym_break] = ACTIONS(1905), + [anon_sym_continue] = ACTIONS(1905), + [anon_sym_if] = ACTIONS(1905), + [anon_sym_match] = ACTIONS(1905), + [anon_sym_async] = ACTIONS(1905), + [anon_sym_for] = ACTIONS(1905), + [anon_sym_while] = ACTIONS(1905), + [anon_sym_try] = ACTIONS(1905), + [anon_sym_with] = ACTIONS(1905), + [anon_sym_def] = ACTIONS(1905), + [anon_sym_global] = ACTIONS(1905), + [anon_sym_nonlocal] = ACTIONS(1905), + [anon_sym_exec] = ACTIONS(1905), + [anon_sym_type] = ACTIONS(1905), + [anon_sym_class] = ACTIONS(1905), + [anon_sym_LBRACK] = ACTIONS(1907), + [anon_sym_AT] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_LBRACE] = ACTIONS(1907), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_not] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(1907), + [anon_sym_TILDE] = ACTIONS(1907), + [anon_sym_LT] = ACTIONS(1907), + [anon_sym_lambda] = ACTIONS(1905), + [anon_sym_yield] = ACTIONS(1905), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1907), + [anon_sym_None] = ACTIONS(1905), [sym_integer] = ACTIONS(1905), - [sym_float] = ACTIONS(1925), - [anon_sym_await] = ACTIONS(1927), - [anon_sym_api] = ACTIONS(1911), + [sym_float] = ACTIONS(1907), + [anon_sym_await] = ACTIONS(1905), + [anon_sym_api] = ACTIONS(1905), [sym_true] = ACTIONS(1905), [sym_false] = ACTIONS(1905), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1905), + [anon_sym_include] = ACTIONS(1905), + [anon_sym_DEF] = ACTIONS(1905), + [anon_sym_cdef] = ACTIONS(1905), + [anon_sym_cpdef] = ACTIONS(1905), + [anon_sym_int] = ACTIONS(1905), + [anon_sym_double] = ACTIONS(1905), + [anon_sym_complex] = ACTIONS(1905), + [anon_sym_new] = ACTIONS(1905), + [anon_sym_signed] = ACTIONS(1905), + [anon_sym_unsigned] = ACTIONS(1905), + [anon_sym_char] = ACTIONS(1905), + [anon_sym_short] = ACTIONS(1905), + [anon_sym_long] = ACTIONS(1905), + [anon_sym_const] = ACTIONS(1905), + [anon_sym_volatile] = ACTIONS(1905), + [anon_sym_ctypedef] = ACTIONS(1905), + [anon_sym_struct] = ACTIONS(1905), + [anon_sym_union] = ACTIONS(1905), + [anon_sym_enum] = ACTIONS(1905), + [anon_sym_cppclass] = ACTIONS(1905), + [anon_sym_fused] = ACTIONS(1905), + [anon_sym_public] = ACTIONS(1905), + [anon_sym_packed] = ACTIONS(1905), + [anon_sym_inline] = ACTIONS(1905), + [anon_sym_readonly] = ACTIONS(1905), + [anon_sym_sizeof] = ACTIONS(1905), + [sym__dedent] = ACTIONS(1907), + [sym_string_start] = ACTIONS(1907), + }, + [599] = { + [sym_identifier] = ACTIONS(1909), + [anon_sym_SEMI] = ACTIONS(1911), + [anon_sym_import] = ACTIONS(1909), + [anon_sym_cimport] = ACTIONS(1909), + [anon_sym_from] = ACTIONS(1909), + [anon_sym_LPAREN] = ACTIONS(1911), + [anon_sym_STAR] = ACTIONS(1911), + [anon_sym_print] = ACTIONS(1909), + [anon_sym_assert] = ACTIONS(1909), + [anon_sym_return] = ACTIONS(1909), + [anon_sym_del] = ACTIONS(1909), + [anon_sym_raise] = ACTIONS(1909), + [anon_sym_pass] = ACTIONS(1909), + [anon_sym_break] = ACTIONS(1909), + [anon_sym_continue] = ACTIONS(1909), + [anon_sym_if] = ACTIONS(1909), + [anon_sym_match] = ACTIONS(1909), + [anon_sym_async] = ACTIONS(1909), + [anon_sym_for] = ACTIONS(1909), + [anon_sym_while] = ACTIONS(1909), + [anon_sym_try] = ACTIONS(1909), + [anon_sym_with] = ACTIONS(1909), + [anon_sym_def] = ACTIONS(1909), + [anon_sym_global] = ACTIONS(1909), + [anon_sym_nonlocal] = ACTIONS(1909), + [anon_sym_exec] = ACTIONS(1909), + [anon_sym_type] = ACTIONS(1909), + [anon_sym_class] = ACTIONS(1909), + [anon_sym_LBRACK] = ACTIONS(1911), + [anon_sym_AT] = ACTIONS(1911), + [anon_sym_DASH] = ACTIONS(1911), + [anon_sym_LBRACE] = ACTIONS(1911), + [anon_sym_PLUS] = ACTIONS(1911), + [anon_sym_not] = ACTIONS(1909), + [anon_sym_AMP] = ACTIONS(1911), + [anon_sym_TILDE] = ACTIONS(1911), + [anon_sym_LT] = ACTIONS(1911), + [anon_sym_lambda] = ACTIONS(1909), + [anon_sym_yield] = ACTIONS(1909), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1911), + [anon_sym_None] = ACTIONS(1909), + [sym_integer] = ACTIONS(1909), + [sym_float] = ACTIONS(1911), + [anon_sym_await] = ACTIONS(1909), + [anon_sym_api] = ACTIONS(1909), + [sym_true] = ACTIONS(1909), + [sym_false] = ACTIONS(1909), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1909), + [anon_sym_include] = ACTIONS(1909), + [anon_sym_DEF] = ACTIONS(1909), + [anon_sym_cdef] = ACTIONS(1909), + [anon_sym_cpdef] = ACTIONS(1909), + [anon_sym_int] = ACTIONS(1909), + [anon_sym_double] = ACTIONS(1909), + [anon_sym_complex] = ACTIONS(1909), + [anon_sym_new] = ACTIONS(1909), + [anon_sym_signed] = ACTIONS(1909), + [anon_sym_unsigned] = ACTIONS(1909), + [anon_sym_char] = ACTIONS(1909), + [anon_sym_short] = ACTIONS(1909), + [anon_sym_long] = ACTIONS(1909), + [anon_sym_const] = ACTIONS(1909), + [anon_sym_volatile] = ACTIONS(1909), + [anon_sym_ctypedef] = ACTIONS(1909), + [anon_sym_struct] = ACTIONS(1909), + [anon_sym_union] = ACTIONS(1909), + [anon_sym_enum] = ACTIONS(1909), + [anon_sym_cppclass] = ACTIONS(1909), + [anon_sym_fused] = ACTIONS(1909), + [anon_sym_public] = ACTIONS(1909), + [anon_sym_packed] = ACTIONS(1909), + [anon_sym_inline] = ACTIONS(1909), + [anon_sym_readonly] = ACTIONS(1909), + [anon_sym_sizeof] = ACTIONS(1909), + [sym__dedent] = ACTIONS(1911), + [sym_string_start] = ACTIONS(1911), + }, + [600] = { + [sym_identifier] = ACTIONS(1913), + [anon_sym_SEMI] = ACTIONS(1915), + [anon_sym_import] = ACTIONS(1913), + [anon_sym_cimport] = ACTIONS(1913), + [anon_sym_from] = ACTIONS(1913), + [anon_sym_LPAREN] = ACTIONS(1915), + [anon_sym_STAR] = ACTIONS(1915), + [anon_sym_print] = ACTIONS(1913), + [anon_sym_assert] = ACTIONS(1913), + [anon_sym_return] = ACTIONS(1913), + [anon_sym_del] = ACTIONS(1913), + [anon_sym_raise] = ACTIONS(1913), + [anon_sym_pass] = ACTIONS(1913), + [anon_sym_break] = ACTIONS(1913), + [anon_sym_continue] = ACTIONS(1913), + [anon_sym_if] = ACTIONS(1913), + [anon_sym_match] = ACTIONS(1913), + [anon_sym_async] = ACTIONS(1913), + [anon_sym_for] = ACTIONS(1913), + [anon_sym_while] = ACTIONS(1913), + [anon_sym_try] = ACTIONS(1913), + [anon_sym_with] = ACTIONS(1913), + [anon_sym_def] = ACTIONS(1913), + [anon_sym_global] = ACTIONS(1913), + [anon_sym_nonlocal] = ACTIONS(1913), + [anon_sym_exec] = ACTIONS(1913), + [anon_sym_type] = ACTIONS(1913), + [anon_sym_class] = ACTIONS(1913), + [anon_sym_LBRACK] = ACTIONS(1915), + [anon_sym_AT] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [anon_sym_LBRACE] = ACTIONS(1915), + [anon_sym_PLUS] = ACTIONS(1915), + [anon_sym_not] = ACTIONS(1913), + [anon_sym_AMP] = ACTIONS(1915), + [anon_sym_TILDE] = ACTIONS(1915), + [anon_sym_LT] = ACTIONS(1915), + [anon_sym_lambda] = ACTIONS(1913), + [anon_sym_yield] = ACTIONS(1913), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1915), + [anon_sym_None] = ACTIONS(1913), + [sym_integer] = ACTIONS(1913), + [sym_float] = ACTIONS(1915), + [anon_sym_await] = ACTIONS(1913), + [anon_sym_api] = ACTIONS(1913), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1913), + [anon_sym_include] = ACTIONS(1913), + [anon_sym_DEF] = ACTIONS(1913), + [anon_sym_cdef] = ACTIONS(1913), + [anon_sym_cpdef] = ACTIONS(1913), + [anon_sym_int] = ACTIONS(1913), + [anon_sym_double] = ACTIONS(1913), + [anon_sym_complex] = ACTIONS(1913), + [anon_sym_new] = ACTIONS(1913), + [anon_sym_signed] = ACTIONS(1913), + [anon_sym_unsigned] = ACTIONS(1913), + [anon_sym_char] = ACTIONS(1913), + [anon_sym_short] = ACTIONS(1913), + [anon_sym_long] = ACTIONS(1913), + [anon_sym_const] = ACTIONS(1913), + [anon_sym_volatile] = ACTIONS(1913), + [anon_sym_ctypedef] = ACTIONS(1913), + [anon_sym_struct] = ACTIONS(1913), + [anon_sym_union] = ACTIONS(1913), + [anon_sym_enum] = ACTIONS(1913), + [anon_sym_cppclass] = ACTIONS(1913), + [anon_sym_fused] = ACTIONS(1913), + [anon_sym_public] = ACTIONS(1913), + [anon_sym_packed] = ACTIONS(1913), + [anon_sym_inline] = ACTIONS(1913), + [anon_sym_readonly] = ACTIONS(1913), + [anon_sym_sizeof] = ACTIONS(1913), + [sym__dedent] = ACTIONS(1915), + [sym_string_start] = ACTIONS(1915), + }, + [601] = { + [sym_identifier] = ACTIONS(1917), + [anon_sym_SEMI] = ACTIONS(1919), + [anon_sym_import] = ACTIONS(1917), + [anon_sym_cimport] = ACTIONS(1917), + [anon_sym_from] = ACTIONS(1917), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(1919), + [anon_sym_print] = ACTIONS(1917), + [anon_sym_assert] = ACTIONS(1917), + [anon_sym_return] = ACTIONS(1917), + [anon_sym_del] = ACTIONS(1917), + [anon_sym_raise] = ACTIONS(1917), + [anon_sym_pass] = ACTIONS(1917), + [anon_sym_break] = ACTIONS(1917), + [anon_sym_continue] = ACTIONS(1917), + [anon_sym_if] = ACTIONS(1917), + [anon_sym_match] = ACTIONS(1917), + [anon_sym_async] = ACTIONS(1917), + [anon_sym_for] = ACTIONS(1917), + [anon_sym_while] = ACTIONS(1917), + [anon_sym_try] = ACTIONS(1917), + [anon_sym_with] = ACTIONS(1917), + [anon_sym_def] = ACTIONS(1917), + [anon_sym_global] = ACTIONS(1917), + [anon_sym_nonlocal] = ACTIONS(1917), + [anon_sym_exec] = ACTIONS(1917), + [anon_sym_type] = ACTIONS(1917), + [anon_sym_class] = ACTIONS(1917), + [anon_sym_LBRACK] = ACTIONS(1919), + [anon_sym_AT] = ACTIONS(1919), + [anon_sym_DASH] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1919), + [anon_sym_PLUS] = ACTIONS(1919), + [anon_sym_not] = ACTIONS(1917), + [anon_sym_AMP] = ACTIONS(1919), + [anon_sym_TILDE] = ACTIONS(1919), + [anon_sym_LT] = ACTIONS(1919), + [anon_sym_lambda] = ACTIONS(1917), + [anon_sym_yield] = ACTIONS(1917), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1919), + [anon_sym_None] = ACTIONS(1917), + [sym_integer] = ACTIONS(1917), + [sym_float] = ACTIONS(1919), + [anon_sym_await] = ACTIONS(1917), + [anon_sym_api] = ACTIONS(1917), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1917), + [anon_sym_include] = ACTIONS(1917), + [anon_sym_DEF] = ACTIONS(1917), + [anon_sym_cdef] = ACTIONS(1917), + [anon_sym_cpdef] = ACTIONS(1917), + [anon_sym_int] = ACTIONS(1917), + [anon_sym_double] = ACTIONS(1917), + [anon_sym_complex] = ACTIONS(1917), + [anon_sym_new] = ACTIONS(1917), + [anon_sym_signed] = ACTIONS(1917), + [anon_sym_unsigned] = ACTIONS(1917), + [anon_sym_char] = ACTIONS(1917), + [anon_sym_short] = ACTIONS(1917), + [anon_sym_long] = ACTIONS(1917), + [anon_sym_const] = ACTIONS(1917), + [anon_sym_volatile] = ACTIONS(1917), + [anon_sym_ctypedef] = ACTIONS(1917), + [anon_sym_struct] = ACTIONS(1917), + [anon_sym_union] = ACTIONS(1917), + [anon_sym_enum] = ACTIONS(1917), + [anon_sym_cppclass] = ACTIONS(1917), + [anon_sym_fused] = ACTIONS(1917), + [anon_sym_public] = ACTIONS(1917), + [anon_sym_packed] = ACTIONS(1917), + [anon_sym_inline] = ACTIONS(1917), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_sizeof] = ACTIONS(1917), + [sym__dedent] = ACTIONS(1919), + [sym_string_start] = ACTIONS(1919), + }, + [602] = { + [sym_identifier] = ACTIONS(1921), + [anon_sym_SEMI] = ACTIONS(1923), + [anon_sym_import] = ACTIONS(1921), + [anon_sym_cimport] = ACTIONS(1921), + [anon_sym_from] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_STAR] = ACTIONS(1923), + [anon_sym_print] = ACTIONS(1921), + [anon_sym_assert] = ACTIONS(1921), + [anon_sym_return] = ACTIONS(1921), + [anon_sym_del] = ACTIONS(1921), + [anon_sym_raise] = ACTIONS(1921), + [anon_sym_pass] = ACTIONS(1921), + [anon_sym_break] = ACTIONS(1921), + [anon_sym_continue] = ACTIONS(1921), + [anon_sym_if] = ACTIONS(1921), + [anon_sym_match] = ACTIONS(1921), + [anon_sym_async] = ACTIONS(1921), + [anon_sym_for] = ACTIONS(1921), + [anon_sym_while] = ACTIONS(1921), + [anon_sym_try] = ACTIONS(1921), + [anon_sym_with] = ACTIONS(1921), + [anon_sym_def] = ACTIONS(1921), + [anon_sym_global] = ACTIONS(1921), + [anon_sym_nonlocal] = ACTIONS(1921), + [anon_sym_exec] = ACTIONS(1921), + [anon_sym_type] = ACTIONS(1921), + [anon_sym_class] = ACTIONS(1921), + [anon_sym_LBRACK] = ACTIONS(1923), + [anon_sym_AT] = ACTIONS(1923), + [anon_sym_DASH] = ACTIONS(1923), + [anon_sym_LBRACE] = ACTIONS(1923), + [anon_sym_PLUS] = ACTIONS(1923), + [anon_sym_not] = ACTIONS(1921), + [anon_sym_AMP] = ACTIONS(1923), + [anon_sym_TILDE] = ACTIONS(1923), + [anon_sym_LT] = ACTIONS(1923), + [anon_sym_lambda] = ACTIONS(1921), + [anon_sym_yield] = ACTIONS(1921), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1923), + [anon_sym_None] = ACTIONS(1921), + [sym_integer] = ACTIONS(1921), + [sym_float] = ACTIONS(1923), + [anon_sym_await] = ACTIONS(1921), + [anon_sym_api] = ACTIONS(1921), + [sym_true] = ACTIONS(1921), + [sym_false] = ACTIONS(1921), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1921), + [anon_sym_include] = ACTIONS(1921), + [anon_sym_DEF] = ACTIONS(1921), + [anon_sym_cdef] = ACTIONS(1921), + [anon_sym_cpdef] = ACTIONS(1921), + [anon_sym_int] = ACTIONS(1921), + [anon_sym_double] = ACTIONS(1921), + [anon_sym_complex] = ACTIONS(1921), + [anon_sym_new] = ACTIONS(1921), + [anon_sym_signed] = ACTIONS(1921), + [anon_sym_unsigned] = ACTIONS(1921), + [anon_sym_char] = ACTIONS(1921), + [anon_sym_short] = ACTIONS(1921), + [anon_sym_long] = ACTIONS(1921), + [anon_sym_const] = ACTIONS(1921), + [anon_sym_volatile] = ACTIONS(1921), + [anon_sym_ctypedef] = ACTIONS(1921), + [anon_sym_struct] = ACTIONS(1921), + [anon_sym_union] = ACTIONS(1921), + [anon_sym_enum] = ACTIONS(1921), + [anon_sym_cppclass] = ACTIONS(1921), + [anon_sym_fused] = ACTIONS(1921), + [anon_sym_public] = ACTIONS(1921), + [anon_sym_packed] = ACTIONS(1921), + [anon_sym_inline] = ACTIONS(1921), + [anon_sym_readonly] = ACTIONS(1921), + [anon_sym_sizeof] = ACTIONS(1921), + [sym__dedent] = ACTIONS(1923), + [sym_string_start] = ACTIONS(1923), + }, + [603] = { + [sym_identifier] = ACTIONS(1925), + [anon_sym_SEMI] = ACTIONS(1927), + [anon_sym_import] = ACTIONS(1925), + [anon_sym_cimport] = ACTIONS(1925), + [anon_sym_from] = ACTIONS(1925), + [anon_sym_LPAREN] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1927), + [anon_sym_print] = ACTIONS(1925), + [anon_sym_assert] = ACTIONS(1925), + [anon_sym_return] = ACTIONS(1925), + [anon_sym_del] = ACTIONS(1925), + [anon_sym_raise] = ACTIONS(1925), + [anon_sym_pass] = ACTIONS(1925), + [anon_sym_break] = ACTIONS(1925), + [anon_sym_continue] = ACTIONS(1925), + [anon_sym_if] = ACTIONS(1925), + [anon_sym_match] = ACTIONS(1925), + [anon_sym_async] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(1925), + [anon_sym_while] = ACTIONS(1925), + [anon_sym_try] = ACTIONS(1925), + [anon_sym_with] = ACTIONS(1925), + [anon_sym_def] = ACTIONS(1925), + [anon_sym_global] = ACTIONS(1925), + [anon_sym_nonlocal] = ACTIONS(1925), + [anon_sym_exec] = ACTIONS(1925), + [anon_sym_type] = ACTIONS(1925), + [anon_sym_class] = ACTIONS(1925), + [anon_sym_LBRACK] = ACTIONS(1927), + [anon_sym_AT] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_LBRACE] = ACTIONS(1927), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_not] = ACTIONS(1925), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(1927), + [anon_sym_lambda] = ACTIONS(1925), + [anon_sym_yield] = ACTIONS(1925), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1927), + [anon_sym_None] = ACTIONS(1925), + [sym_integer] = ACTIONS(1925), + [sym_float] = ACTIONS(1927), + [anon_sym_await] = ACTIONS(1925), + [anon_sym_api] = ACTIONS(1925), + [sym_true] = ACTIONS(1925), + [sym_false] = ACTIONS(1925), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1925), + [anon_sym_include] = ACTIONS(1925), + [anon_sym_DEF] = ACTIONS(1925), + [anon_sym_cdef] = ACTIONS(1925), + [anon_sym_cpdef] = ACTIONS(1925), + [anon_sym_int] = ACTIONS(1925), + [anon_sym_double] = ACTIONS(1925), + [anon_sym_complex] = ACTIONS(1925), + [anon_sym_new] = ACTIONS(1925), + [anon_sym_signed] = ACTIONS(1925), + [anon_sym_unsigned] = ACTIONS(1925), + [anon_sym_char] = ACTIONS(1925), + [anon_sym_short] = ACTIONS(1925), + [anon_sym_long] = ACTIONS(1925), + [anon_sym_const] = ACTIONS(1925), + [anon_sym_volatile] = ACTIONS(1925), + [anon_sym_ctypedef] = ACTIONS(1925), + [anon_sym_struct] = ACTIONS(1925), + [anon_sym_union] = ACTIONS(1925), + [anon_sym_enum] = ACTIONS(1925), + [anon_sym_cppclass] = ACTIONS(1925), + [anon_sym_fused] = ACTIONS(1925), + [anon_sym_public] = ACTIONS(1925), + [anon_sym_packed] = ACTIONS(1925), + [anon_sym_inline] = ACTIONS(1925), + [anon_sym_readonly] = ACTIONS(1925), + [anon_sym_sizeof] = ACTIONS(1925), + [sym__dedent] = ACTIONS(1927), + [sym_string_start] = ACTIONS(1927), + }, + [604] = { + [sym_identifier] = ACTIONS(1929), + [anon_sym_SEMI] = ACTIONS(1931), + [anon_sym_import] = ACTIONS(1929), + [anon_sym_cimport] = ACTIONS(1929), + [anon_sym_from] = ACTIONS(1929), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_STAR] = ACTIONS(1931), + [anon_sym_print] = ACTIONS(1929), + [anon_sym_assert] = ACTIONS(1929), + [anon_sym_return] = ACTIONS(1929), + [anon_sym_del] = ACTIONS(1929), + [anon_sym_raise] = ACTIONS(1929), + [anon_sym_pass] = ACTIONS(1929), + [anon_sym_break] = ACTIONS(1929), + [anon_sym_continue] = ACTIONS(1929), + [anon_sym_if] = ACTIONS(1929), + [anon_sym_match] = ACTIONS(1929), + [anon_sym_async] = ACTIONS(1929), + [anon_sym_for] = ACTIONS(1929), + [anon_sym_while] = ACTIONS(1929), + [anon_sym_try] = ACTIONS(1929), + [anon_sym_with] = ACTIONS(1929), + [anon_sym_def] = ACTIONS(1929), + [anon_sym_global] = ACTIONS(1929), + [anon_sym_nonlocal] = ACTIONS(1929), + [anon_sym_exec] = ACTIONS(1929), + [anon_sym_type] = ACTIONS(1929), + [anon_sym_class] = ACTIONS(1929), + [anon_sym_LBRACK] = ACTIONS(1931), + [anon_sym_AT] = ACTIONS(1931), + [anon_sym_DASH] = ACTIONS(1931), + [anon_sym_LBRACE] = ACTIONS(1931), + [anon_sym_PLUS] = ACTIONS(1931), + [anon_sym_not] = ACTIONS(1929), + [anon_sym_AMP] = ACTIONS(1931), + [anon_sym_TILDE] = ACTIONS(1931), + [anon_sym_LT] = ACTIONS(1931), + [anon_sym_lambda] = ACTIONS(1929), + [anon_sym_yield] = ACTIONS(1929), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1931), + [anon_sym_None] = ACTIONS(1929), + [sym_integer] = ACTIONS(1929), + [sym_float] = ACTIONS(1931), + [anon_sym_await] = ACTIONS(1929), + [anon_sym_api] = ACTIONS(1929), + [sym_true] = ACTIONS(1929), + [sym_false] = ACTIONS(1929), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1929), + [anon_sym_include] = ACTIONS(1929), + [anon_sym_DEF] = ACTIONS(1929), + [anon_sym_cdef] = ACTIONS(1929), + [anon_sym_cpdef] = ACTIONS(1929), + [anon_sym_int] = ACTIONS(1929), + [anon_sym_double] = ACTIONS(1929), + [anon_sym_complex] = ACTIONS(1929), + [anon_sym_new] = ACTIONS(1929), + [anon_sym_signed] = ACTIONS(1929), + [anon_sym_unsigned] = ACTIONS(1929), + [anon_sym_char] = ACTIONS(1929), + [anon_sym_short] = ACTIONS(1929), + [anon_sym_long] = ACTIONS(1929), + [anon_sym_const] = ACTIONS(1929), + [anon_sym_volatile] = ACTIONS(1929), + [anon_sym_ctypedef] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1929), + [anon_sym_union] = ACTIONS(1929), + [anon_sym_enum] = ACTIONS(1929), + [anon_sym_cppclass] = ACTIONS(1929), + [anon_sym_fused] = ACTIONS(1929), + [anon_sym_public] = ACTIONS(1929), + [anon_sym_packed] = ACTIONS(1929), + [anon_sym_inline] = ACTIONS(1929), + [anon_sym_readonly] = ACTIONS(1929), [anon_sym_sizeof] = ACTIONS(1929), + [sym__dedent] = ACTIONS(1931), [sym_string_start] = ACTIONS(1931), }, - [590] = { + [605] = { [sym_identifier] = ACTIONS(1933), [anon_sym_SEMI] = ACTIONS(1935), [anon_sym_import] = ACTIONS(1933), @@ -85816,7 +87068,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1935), [sym_string_start] = ACTIONS(1935), }, - [591] = { + [606] = { [sym_identifier] = ACTIONS(1937), [anon_sym_SEMI] = ACTIONS(1939), [anon_sym_import] = ACTIONS(1937), @@ -85896,567 +87148,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1939), [sym_string_start] = ACTIONS(1939), }, - [592] = { + [607] = { + [sym_list_splat_pattern] = STATE(2284), + [sym_primary_expression] = STATE(2166), + [sym_binary_operator] = STATE(2257), + [sym_unary_operator] = STATE(2257), + [sym_attribute] = STATE(2257), + [sym_subscript] = STATE(2257), + [sym_ellipsis] = STATE(2257), + [sym_call] = STATE(2257), + [sym_list] = STATE(2257), + [sym_set] = STATE(2257), + [sym_tuple] = STATE(2257), + [sym_dictionary] = STATE(2257), + [sym_list_comprehension] = STATE(2257), + [sym_dictionary_comprehension] = STATE(2257), + [sym_set_comprehension] = STATE(2257), + [sym_generator_expression] = STATE(2257), + [sym_parenthesized_expression] = STATE(2257), + [sym_concatenated_string] = STATE(2257), + [sym_string] = STATE(2089), + [sym_none] = STATE(2257), + [sym_await] = STATE(2257), + [sym_sizeof_expression] = STATE(2257), + [sym_cast_expression] = STATE(2257), [sym_identifier] = ACTIONS(1941), - [anon_sym_SEMI] = ACTIONS(1943), - [anon_sym_import] = ACTIONS(1941), - [anon_sym_cimport] = ACTIONS(1941), - [anon_sym_from] = ACTIONS(1941), + [anon_sym_DOT] = ACTIONS(1005), [anon_sym_LPAREN] = ACTIONS(1943), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_print] = ACTIONS(1941), - [anon_sym_assert] = ACTIONS(1941), - [anon_sym_return] = ACTIONS(1941), - [anon_sym_del] = ACTIONS(1941), - [anon_sym_raise] = ACTIONS(1941), - [anon_sym_pass] = ACTIONS(1941), - [anon_sym_break] = ACTIONS(1941), - [anon_sym_continue] = ACTIONS(1941), - [anon_sym_if] = ACTIONS(1941), - [anon_sym_match] = ACTIONS(1941), - [anon_sym_async] = ACTIONS(1941), - [anon_sym_for] = ACTIONS(1941), - [anon_sym_while] = ACTIONS(1941), - [anon_sym_try] = ACTIONS(1941), - [anon_sym_with] = ACTIONS(1941), - [anon_sym_def] = ACTIONS(1941), - [anon_sym_global] = ACTIONS(1941), - [anon_sym_nonlocal] = ACTIONS(1941), - [anon_sym_exec] = ACTIONS(1941), - [anon_sym_type] = ACTIONS(1941), - [anon_sym_class] = ACTIONS(1941), - [anon_sym_LBRACK] = ACTIONS(1943), - [anon_sym_AT] = ACTIONS(1943), - [anon_sym_DASH] = ACTIONS(1943), - [anon_sym_LBRACE] = ACTIONS(1943), - [anon_sym_PLUS] = ACTIONS(1943), - [anon_sym_not] = ACTIONS(1941), - [anon_sym_AMP] = ACTIONS(1943), - [anon_sym_TILDE] = ACTIONS(1943), - [anon_sym_LT] = ACTIONS(1943), - [anon_sym_lambda] = ACTIONS(1941), - [anon_sym_yield] = ACTIONS(1941), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1943), - [anon_sym_None] = ACTIONS(1941), - [sym_integer] = ACTIONS(1941), - [sym_float] = ACTIONS(1943), - [anon_sym_await] = ACTIONS(1941), - [anon_sym_api] = ACTIONS(1941), - [sym_true] = ACTIONS(1941), - [sym_false] = ACTIONS(1941), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1941), - [anon_sym_include] = ACTIONS(1941), - [anon_sym_DEF] = ACTIONS(1941), - [anon_sym_cdef] = ACTIONS(1941), - [anon_sym_cpdef] = ACTIONS(1941), - [anon_sym_int] = ACTIONS(1941), - [anon_sym_double] = ACTIONS(1941), - [anon_sym_complex] = ACTIONS(1941), - [anon_sym_new] = ACTIONS(1941), - [anon_sym_signed] = ACTIONS(1941), - [anon_sym_unsigned] = ACTIONS(1941), - [anon_sym_char] = ACTIONS(1941), - [anon_sym_short] = ACTIONS(1941), - [anon_sym_long] = ACTIONS(1941), - [anon_sym_const] = ACTIONS(1941), - [anon_sym_volatile] = ACTIONS(1941), - [anon_sym_ctypedef] = ACTIONS(1941), - [anon_sym_struct] = ACTIONS(1941), - [anon_sym_union] = ACTIONS(1941), - [anon_sym_enum] = ACTIONS(1941), - [anon_sym_cppclass] = ACTIONS(1941), - [anon_sym_fused] = ACTIONS(1941), - [anon_sym_public] = ACTIONS(1941), - [anon_sym_packed] = ACTIONS(1941), - [anon_sym_inline] = ACTIONS(1941), - [anon_sym_readonly] = ACTIONS(1941), - [anon_sym_sizeof] = ACTIONS(1941), - [sym__dedent] = ACTIONS(1943), - [sym_string_start] = ACTIONS(1943), - }, - [593] = { - [sym_identifier] = ACTIONS(1945), - [anon_sym_SEMI] = ACTIONS(1947), - [anon_sym_import] = ACTIONS(1945), - [anon_sym_cimport] = ACTIONS(1945), - [anon_sym_from] = ACTIONS(1945), - [anon_sym_LPAREN] = ACTIONS(1947), - [anon_sym_STAR] = ACTIONS(1947), - [anon_sym_print] = ACTIONS(1945), - [anon_sym_assert] = ACTIONS(1945), - [anon_sym_return] = ACTIONS(1945), - [anon_sym_del] = ACTIONS(1945), - [anon_sym_raise] = ACTIONS(1945), - [anon_sym_pass] = ACTIONS(1945), - [anon_sym_break] = ACTIONS(1945), - [anon_sym_continue] = ACTIONS(1945), - [anon_sym_if] = ACTIONS(1945), - [anon_sym_match] = ACTIONS(1945), - [anon_sym_async] = ACTIONS(1945), - [anon_sym_for] = ACTIONS(1945), - [anon_sym_while] = ACTIONS(1945), - [anon_sym_try] = ACTIONS(1945), - [anon_sym_with] = ACTIONS(1945), - [anon_sym_def] = ACTIONS(1945), - [anon_sym_global] = ACTIONS(1945), - [anon_sym_nonlocal] = ACTIONS(1945), - [anon_sym_exec] = ACTIONS(1945), - [anon_sym_type] = ACTIONS(1945), - [anon_sym_class] = ACTIONS(1945), - [anon_sym_LBRACK] = ACTIONS(1947), - [anon_sym_AT] = ACTIONS(1947), - [anon_sym_DASH] = ACTIONS(1947), - [anon_sym_LBRACE] = ACTIONS(1947), - [anon_sym_PLUS] = ACTIONS(1947), - [anon_sym_not] = ACTIONS(1945), - [anon_sym_AMP] = ACTIONS(1947), - [anon_sym_TILDE] = ACTIONS(1947), - [anon_sym_LT] = ACTIONS(1947), - [anon_sym_lambda] = ACTIONS(1945), - [anon_sym_yield] = ACTIONS(1945), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1947), - [anon_sym_None] = ACTIONS(1945), - [sym_integer] = ACTIONS(1945), - [sym_float] = ACTIONS(1947), - [anon_sym_await] = ACTIONS(1945), - [anon_sym_api] = ACTIONS(1945), - [sym_true] = ACTIONS(1945), - [sym_false] = ACTIONS(1945), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1945), - [anon_sym_include] = ACTIONS(1945), - [anon_sym_DEF] = ACTIONS(1945), - [anon_sym_cdef] = ACTIONS(1945), - [anon_sym_cpdef] = ACTIONS(1945), - [anon_sym_int] = ACTIONS(1945), - [anon_sym_double] = ACTIONS(1945), - [anon_sym_complex] = ACTIONS(1945), - [anon_sym_new] = ACTIONS(1945), - [anon_sym_signed] = ACTIONS(1945), - [anon_sym_unsigned] = ACTIONS(1945), - [anon_sym_char] = ACTIONS(1945), - [anon_sym_short] = ACTIONS(1945), - [anon_sym_long] = ACTIONS(1945), - [anon_sym_const] = ACTIONS(1945), - [anon_sym_volatile] = ACTIONS(1945), - [anon_sym_ctypedef] = ACTIONS(1945), - [anon_sym_struct] = ACTIONS(1945), - [anon_sym_union] = ACTIONS(1945), - [anon_sym_enum] = ACTIONS(1945), - [anon_sym_cppclass] = ACTIONS(1945), - [anon_sym_fused] = ACTIONS(1945), - [anon_sym_public] = ACTIONS(1945), - [anon_sym_packed] = ACTIONS(1945), - [anon_sym_inline] = ACTIONS(1945), - [anon_sym_readonly] = ACTIONS(1945), - [anon_sym_sizeof] = ACTIONS(1945), - [sym__dedent] = ACTIONS(1947), - [sym_string_start] = ACTIONS(1947), - }, - [594] = { - [sym_identifier] = ACTIONS(1949), - [anon_sym_SEMI] = ACTIONS(1951), - [anon_sym_import] = ACTIONS(1949), - [anon_sym_cimport] = ACTIONS(1949), - [anon_sym_from] = ACTIONS(1949), - [anon_sym_LPAREN] = ACTIONS(1951), - [anon_sym_STAR] = ACTIONS(1951), - [anon_sym_print] = ACTIONS(1949), - [anon_sym_assert] = ACTIONS(1949), - [anon_sym_return] = ACTIONS(1949), - [anon_sym_del] = ACTIONS(1949), - [anon_sym_raise] = ACTIONS(1949), - [anon_sym_pass] = ACTIONS(1949), - [anon_sym_break] = ACTIONS(1949), - [anon_sym_continue] = ACTIONS(1949), - [anon_sym_if] = ACTIONS(1949), - [anon_sym_match] = ACTIONS(1949), - [anon_sym_async] = ACTIONS(1949), - [anon_sym_for] = ACTIONS(1949), - [anon_sym_while] = ACTIONS(1949), - [anon_sym_try] = ACTIONS(1949), - [anon_sym_with] = ACTIONS(1949), - [anon_sym_def] = ACTIONS(1949), - [anon_sym_global] = ACTIONS(1949), - [anon_sym_nonlocal] = ACTIONS(1949), - [anon_sym_exec] = ACTIONS(1949), - [anon_sym_type] = ACTIONS(1949), - [anon_sym_class] = ACTIONS(1949), - [anon_sym_LBRACK] = ACTIONS(1951), - [anon_sym_AT] = ACTIONS(1951), + [anon_sym_COMMA] = ACTIONS(1003), + [anon_sym_as] = ACTIONS(1005), + [anon_sym_STAR] = ACTIONS(1945), + [anon_sym_print] = ACTIONS(1947), + [anon_sym_GT_GT] = ACTIONS(1003), + [anon_sym_COLON_EQ] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1005), + [anon_sym_COLON] = ACTIONS(1005), + [anon_sym_match] = ACTIONS(1947), + [anon_sym_async] = ACTIONS(1947), + [anon_sym_in] = ACTIONS(1005), + [anon_sym_STAR_STAR] = ACTIONS(1003), + [anon_sym_exec] = ACTIONS(1947), + [anon_sym_EQ] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_AT] = ACTIONS(1003), [anon_sym_DASH] = ACTIONS(1951), - [anon_sym_LBRACE] = ACTIONS(1951), + [anon_sym_PIPE] = ACTIONS(1003), + [anon_sym_LBRACE] = ACTIONS(1953), + [anon_sym_RBRACE] = ACTIONS(1003), [anon_sym_PLUS] = ACTIONS(1951), - [anon_sym_not] = ACTIONS(1949), + [anon_sym_not] = ACTIONS(1005), + [anon_sym_and] = ACTIONS(1005), + [anon_sym_or] = ACTIONS(1005), + [anon_sym_SLASH] = ACTIONS(1005), + [anon_sym_PERCENT] = ACTIONS(1003), + [anon_sym_SLASH_SLASH] = ACTIONS(1003), [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1003), + [anon_sym_LT_LT] = ACTIONS(1003), [anon_sym_TILDE] = ACTIONS(1951), - [anon_sym_LT] = ACTIONS(1951), - [anon_sym_lambda] = ACTIONS(1949), - [anon_sym_yield] = ACTIONS(1949), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1951), - [anon_sym_None] = ACTIONS(1949), - [sym_integer] = ACTIONS(1949), - [sym_float] = ACTIONS(1951), - [anon_sym_await] = ACTIONS(1949), - [anon_sym_api] = ACTIONS(1949), - [sym_true] = ACTIONS(1949), - [sym_false] = ACTIONS(1949), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1949), - [anon_sym_include] = ACTIONS(1949), - [anon_sym_DEF] = ACTIONS(1949), - [anon_sym_cdef] = ACTIONS(1949), - [anon_sym_cpdef] = ACTIONS(1949), - [anon_sym_int] = ACTIONS(1949), - [anon_sym_double] = ACTIONS(1949), - [anon_sym_complex] = ACTIONS(1949), - [anon_sym_new] = ACTIONS(1949), - [anon_sym_signed] = ACTIONS(1949), - [anon_sym_unsigned] = ACTIONS(1949), - [anon_sym_char] = ACTIONS(1949), - [anon_sym_short] = ACTIONS(1949), - [anon_sym_long] = ACTIONS(1949), - [anon_sym_const] = ACTIONS(1949), - [anon_sym_volatile] = ACTIONS(1949), - [anon_sym_ctypedef] = ACTIONS(1949), - [anon_sym_struct] = ACTIONS(1949), - [anon_sym_union] = ACTIONS(1949), - [anon_sym_enum] = ACTIONS(1949), - [anon_sym_cppclass] = ACTIONS(1949), - [anon_sym_fused] = ACTIONS(1949), - [anon_sym_public] = ACTIONS(1949), - [anon_sym_packed] = ACTIONS(1949), - [anon_sym_inline] = ACTIONS(1949), - [anon_sym_readonly] = ACTIONS(1949), - [anon_sym_sizeof] = ACTIONS(1949), - [sym__dedent] = ACTIONS(1951), - [sym_string_start] = ACTIONS(1951), - }, - [595] = { - [sym_identifier] = ACTIONS(1953), - [anon_sym_SEMI] = ACTIONS(1955), - [anon_sym_import] = ACTIONS(1953), - [anon_sym_cimport] = ACTIONS(1953), - [anon_sym_from] = ACTIONS(1953), - [anon_sym_LPAREN] = ACTIONS(1955), - [anon_sym_STAR] = ACTIONS(1955), - [anon_sym_print] = ACTIONS(1953), - [anon_sym_assert] = ACTIONS(1953), - [anon_sym_return] = ACTIONS(1953), - [anon_sym_del] = ACTIONS(1953), - [anon_sym_raise] = ACTIONS(1953), - [anon_sym_pass] = ACTIONS(1953), - [anon_sym_break] = ACTIONS(1953), - [anon_sym_continue] = ACTIONS(1953), - [anon_sym_if] = ACTIONS(1953), - [anon_sym_match] = ACTIONS(1953), - [anon_sym_async] = ACTIONS(1953), - [anon_sym_for] = ACTIONS(1953), - [anon_sym_while] = ACTIONS(1953), - [anon_sym_try] = ACTIONS(1953), - [anon_sym_with] = ACTIONS(1953), - [anon_sym_def] = ACTIONS(1953), - [anon_sym_global] = ACTIONS(1953), - [anon_sym_nonlocal] = ACTIONS(1953), - [anon_sym_exec] = ACTIONS(1953), - [anon_sym_type] = ACTIONS(1953), - [anon_sym_class] = ACTIONS(1953), - [anon_sym_LBRACK] = ACTIONS(1955), - [anon_sym_AT] = ACTIONS(1955), - [anon_sym_DASH] = ACTIONS(1955), - [anon_sym_LBRACE] = ACTIONS(1955), - [anon_sym_PLUS] = ACTIONS(1955), - [anon_sym_not] = ACTIONS(1953), - [anon_sym_AMP] = ACTIONS(1955), - [anon_sym_TILDE] = ACTIONS(1955), + [anon_sym_is] = ACTIONS(1005), [anon_sym_LT] = ACTIONS(1955), - [anon_sym_lambda] = ACTIONS(1953), - [anon_sym_yield] = ACTIONS(1953), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1955), - [anon_sym_None] = ACTIONS(1953), - [sym_integer] = ACTIONS(1953), - [sym_float] = ACTIONS(1955), - [anon_sym_await] = ACTIONS(1953), - [anon_sym_api] = ACTIONS(1953), - [sym_true] = ACTIONS(1953), - [sym_false] = ACTIONS(1953), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1953), - [anon_sym_include] = ACTIONS(1953), - [anon_sym_DEF] = ACTIONS(1953), - [anon_sym_cdef] = ACTIONS(1953), - [anon_sym_cpdef] = ACTIONS(1953), - [anon_sym_int] = ACTIONS(1953), - [anon_sym_double] = ACTIONS(1953), - [anon_sym_complex] = ACTIONS(1953), - [anon_sym_new] = ACTIONS(1953), - [anon_sym_signed] = ACTIONS(1953), - [anon_sym_unsigned] = ACTIONS(1953), - [anon_sym_char] = ACTIONS(1953), - [anon_sym_short] = ACTIONS(1953), - [anon_sym_long] = ACTIONS(1953), - [anon_sym_const] = ACTIONS(1953), - [anon_sym_volatile] = ACTIONS(1953), - [anon_sym_ctypedef] = ACTIONS(1953), - [anon_sym_struct] = ACTIONS(1953), - [anon_sym_union] = ACTIONS(1953), - [anon_sym_enum] = ACTIONS(1953), - [anon_sym_cppclass] = ACTIONS(1953), - [anon_sym_fused] = ACTIONS(1953), - [anon_sym_public] = ACTIONS(1953), - [anon_sym_packed] = ACTIONS(1953), - [anon_sym_inline] = ACTIONS(1953), - [anon_sym_readonly] = ACTIONS(1953), - [anon_sym_sizeof] = ACTIONS(1953), - [sym__dedent] = ACTIONS(1955), - [sym_string_start] = ACTIONS(1955), - }, - [596] = { - [sym_identifier] = ACTIONS(1957), - [anon_sym_SEMI] = ACTIONS(1959), - [anon_sym_import] = ACTIONS(1957), - [anon_sym_cimport] = ACTIONS(1957), - [anon_sym_from] = ACTIONS(1957), - [anon_sym_LPAREN] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(1959), - [anon_sym_print] = ACTIONS(1957), - [anon_sym_assert] = ACTIONS(1957), - [anon_sym_return] = ACTIONS(1957), - [anon_sym_del] = ACTIONS(1957), - [anon_sym_raise] = ACTIONS(1957), - [anon_sym_pass] = ACTIONS(1957), - [anon_sym_break] = ACTIONS(1957), - [anon_sym_continue] = ACTIONS(1957), - [anon_sym_if] = ACTIONS(1957), - [anon_sym_match] = ACTIONS(1957), - [anon_sym_async] = ACTIONS(1957), - [anon_sym_for] = ACTIONS(1957), - [anon_sym_while] = ACTIONS(1957), - [anon_sym_try] = ACTIONS(1957), - [anon_sym_with] = ACTIONS(1957), - [anon_sym_def] = ACTIONS(1957), - [anon_sym_global] = ACTIONS(1957), - [anon_sym_nonlocal] = ACTIONS(1957), - [anon_sym_exec] = ACTIONS(1957), - [anon_sym_type] = ACTIONS(1957), - [anon_sym_class] = ACTIONS(1957), - [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_AT] = ACTIONS(1959), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_LBRACE] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_not] = ACTIONS(1957), - [anon_sym_AMP] = ACTIONS(1959), - [anon_sym_TILDE] = ACTIONS(1959), - [anon_sym_LT] = ACTIONS(1959), - [anon_sym_lambda] = ACTIONS(1957), - [anon_sym_yield] = ACTIONS(1957), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1959), - [anon_sym_None] = ACTIONS(1957), - [sym_integer] = ACTIONS(1957), - [sym_float] = ACTIONS(1959), - [anon_sym_await] = ACTIONS(1957), - [anon_sym_api] = ACTIONS(1957), - [sym_true] = ACTIONS(1957), - [sym_false] = ACTIONS(1957), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1957), - [anon_sym_include] = ACTIONS(1957), - [anon_sym_DEF] = ACTIONS(1957), - [anon_sym_cdef] = ACTIONS(1957), - [anon_sym_cpdef] = ACTIONS(1957), - [anon_sym_int] = ACTIONS(1957), - [anon_sym_double] = ACTIONS(1957), - [anon_sym_complex] = ACTIONS(1957), - [anon_sym_new] = ACTIONS(1957), - [anon_sym_signed] = ACTIONS(1957), - [anon_sym_unsigned] = ACTIONS(1957), - [anon_sym_char] = ACTIONS(1957), - [anon_sym_short] = ACTIONS(1957), - [anon_sym_long] = ACTIONS(1957), - [anon_sym_const] = ACTIONS(1957), - [anon_sym_volatile] = ACTIONS(1957), - [anon_sym_ctypedef] = ACTIONS(1957), - [anon_sym_struct] = ACTIONS(1957), - [anon_sym_union] = ACTIONS(1957), - [anon_sym_enum] = ACTIONS(1957), - [anon_sym_cppclass] = ACTIONS(1957), - [anon_sym_fused] = ACTIONS(1957), - [anon_sym_public] = ACTIONS(1957), - [anon_sym_packed] = ACTIONS(1957), - [anon_sym_inline] = ACTIONS(1957), - [anon_sym_readonly] = ACTIONS(1957), - [anon_sym_sizeof] = ACTIONS(1957), - [sym__dedent] = ACTIONS(1959), - [sym_string_start] = ACTIONS(1959), - }, - [597] = { - [sym_identifier] = ACTIONS(1961), - [anon_sym_SEMI] = ACTIONS(1963), - [anon_sym_import] = ACTIONS(1961), - [anon_sym_cimport] = ACTIONS(1961), - [anon_sym_from] = ACTIONS(1961), - [anon_sym_LPAREN] = ACTIONS(1963), - [anon_sym_STAR] = ACTIONS(1963), - [anon_sym_print] = ACTIONS(1961), - [anon_sym_assert] = ACTIONS(1961), - [anon_sym_return] = ACTIONS(1961), - [anon_sym_del] = ACTIONS(1961), - [anon_sym_raise] = ACTIONS(1961), - [anon_sym_pass] = ACTIONS(1961), - [anon_sym_break] = ACTIONS(1961), - [anon_sym_continue] = ACTIONS(1961), - [anon_sym_if] = ACTIONS(1961), - [anon_sym_match] = ACTIONS(1961), - [anon_sym_async] = ACTIONS(1961), - [anon_sym_for] = ACTIONS(1961), - [anon_sym_while] = ACTIONS(1961), - [anon_sym_try] = ACTIONS(1961), - [anon_sym_with] = ACTIONS(1961), - [anon_sym_def] = ACTIONS(1961), - [anon_sym_global] = ACTIONS(1961), - [anon_sym_nonlocal] = ACTIONS(1961), - [anon_sym_exec] = ACTIONS(1961), - [anon_sym_type] = ACTIONS(1961), - [anon_sym_class] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_AT] = ACTIONS(1963), - [anon_sym_DASH] = ACTIONS(1963), - [anon_sym_LBRACE] = ACTIONS(1963), - [anon_sym_PLUS] = ACTIONS(1963), - [anon_sym_not] = ACTIONS(1961), - [anon_sym_AMP] = ACTIONS(1963), - [anon_sym_TILDE] = ACTIONS(1963), - [anon_sym_LT] = ACTIONS(1963), - [anon_sym_lambda] = ACTIONS(1961), - [anon_sym_yield] = ACTIONS(1961), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1963), - [anon_sym_None] = ACTIONS(1961), - [sym_integer] = ACTIONS(1961), - [sym_float] = ACTIONS(1963), - [anon_sym_await] = ACTIONS(1961), - [anon_sym_api] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1961), - [anon_sym_include] = ACTIONS(1961), - [anon_sym_DEF] = ACTIONS(1961), - [anon_sym_cdef] = ACTIONS(1961), - [anon_sym_cpdef] = ACTIONS(1961), - [anon_sym_int] = ACTIONS(1961), - [anon_sym_double] = ACTIONS(1961), - [anon_sym_complex] = ACTIONS(1961), - [anon_sym_new] = ACTIONS(1961), - [anon_sym_signed] = ACTIONS(1961), - [anon_sym_unsigned] = ACTIONS(1961), - [anon_sym_char] = ACTIONS(1961), - [anon_sym_short] = ACTIONS(1961), - [anon_sym_long] = ACTIONS(1961), - [anon_sym_const] = ACTIONS(1961), - [anon_sym_volatile] = ACTIONS(1961), - [anon_sym_ctypedef] = ACTIONS(1961), - [anon_sym_struct] = ACTIONS(1961), - [anon_sym_union] = ACTIONS(1961), - [anon_sym_enum] = ACTIONS(1961), - [anon_sym_cppclass] = ACTIONS(1961), - [anon_sym_fused] = ACTIONS(1961), - [anon_sym_public] = ACTIONS(1961), - [anon_sym_packed] = ACTIONS(1961), - [anon_sym_inline] = ACTIONS(1961), - [anon_sym_readonly] = ACTIONS(1961), - [anon_sym_sizeof] = ACTIONS(1961), - [sym__dedent] = ACTIONS(1963), - [sym_string_start] = ACTIONS(1963), - }, - [598] = { - [sym_identifier] = ACTIONS(1965), - [anon_sym_SEMI] = ACTIONS(1967), - [anon_sym_import] = ACTIONS(1965), - [anon_sym_cimport] = ACTIONS(1965), - [anon_sym_from] = ACTIONS(1965), - [anon_sym_LPAREN] = ACTIONS(1967), - [anon_sym_STAR] = ACTIONS(1967), - [anon_sym_print] = ACTIONS(1965), - [anon_sym_assert] = ACTIONS(1965), - [anon_sym_return] = ACTIONS(1965), - [anon_sym_del] = ACTIONS(1965), - [anon_sym_raise] = ACTIONS(1965), - [anon_sym_pass] = ACTIONS(1965), - [anon_sym_break] = ACTIONS(1965), - [anon_sym_continue] = ACTIONS(1965), - [anon_sym_if] = ACTIONS(1965), - [anon_sym_match] = ACTIONS(1965), - [anon_sym_async] = ACTIONS(1965), - [anon_sym_for] = ACTIONS(1965), - [anon_sym_while] = ACTIONS(1965), - [anon_sym_try] = ACTIONS(1965), - [anon_sym_with] = ACTIONS(1965), - [anon_sym_def] = ACTIONS(1965), - [anon_sym_global] = ACTIONS(1965), - [anon_sym_nonlocal] = ACTIONS(1965), - [anon_sym_exec] = ACTIONS(1965), - [anon_sym_type] = ACTIONS(1965), - [anon_sym_class] = ACTIONS(1965), - [anon_sym_LBRACK] = ACTIONS(1967), - [anon_sym_AT] = ACTIONS(1967), - [anon_sym_DASH] = ACTIONS(1967), - [anon_sym_LBRACE] = ACTIONS(1967), - [anon_sym_PLUS] = ACTIONS(1967), - [anon_sym_not] = ACTIONS(1965), - [anon_sym_AMP] = ACTIONS(1967), - [anon_sym_TILDE] = ACTIONS(1967), - [anon_sym_LT] = ACTIONS(1967), - [anon_sym_lambda] = ACTIONS(1965), - [anon_sym_yield] = ACTIONS(1965), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1967), - [anon_sym_None] = ACTIONS(1965), - [sym_integer] = ACTIONS(1965), - [sym_float] = ACTIONS(1967), - [anon_sym_await] = ACTIONS(1965), - [anon_sym_api] = ACTIONS(1965), - [sym_true] = ACTIONS(1965), - [sym_false] = ACTIONS(1965), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1965), - [anon_sym_include] = ACTIONS(1965), - [anon_sym_DEF] = ACTIONS(1965), - [anon_sym_cdef] = ACTIONS(1965), - [anon_sym_cpdef] = ACTIONS(1965), - [anon_sym_int] = ACTIONS(1965), - [anon_sym_double] = ACTIONS(1965), - [anon_sym_complex] = ACTIONS(1965), - [anon_sym_new] = ACTIONS(1965), - [anon_sym_signed] = ACTIONS(1965), - [anon_sym_unsigned] = ACTIONS(1965), - [anon_sym_char] = ACTIONS(1965), - [anon_sym_short] = ACTIONS(1965), - [anon_sym_long] = ACTIONS(1965), - [anon_sym_const] = ACTIONS(1965), - [anon_sym_volatile] = ACTIONS(1965), - [anon_sym_ctypedef] = ACTIONS(1965), - [anon_sym_struct] = ACTIONS(1965), - [anon_sym_union] = ACTIONS(1965), - [anon_sym_enum] = ACTIONS(1965), - [anon_sym_cppclass] = ACTIONS(1965), - [anon_sym_fused] = ACTIONS(1965), - [anon_sym_public] = ACTIONS(1965), - [anon_sym_packed] = ACTIONS(1965), - [anon_sym_inline] = ACTIONS(1965), - [anon_sym_readonly] = ACTIONS(1965), + [anon_sym_LT_EQ] = ACTIONS(1003), + [anon_sym_EQ_EQ] = ACTIONS(1003), + [anon_sym_BANG_EQ] = ACTIONS(1003), + [anon_sym_GT_EQ] = ACTIONS(1003), + [anon_sym_GT] = ACTIONS(1005), + [anon_sym_LT_GT] = ACTIONS(1003), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1957), + [anon_sym_None] = ACTIONS(1959), + [sym_type_conversion] = ACTIONS(1003), + [sym_integer] = ACTIONS(1941), + [sym_float] = ACTIONS(1961), + [anon_sym_await] = ACTIONS(1963), + [anon_sym_api] = ACTIONS(1947), + [sym_true] = ACTIONS(1941), + [sym_false] = ACTIONS(1941), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), [anon_sym_sizeof] = ACTIONS(1965), - [sym__dedent] = ACTIONS(1967), [sym_string_start] = ACTIONS(1967), }, - [599] = { + [608] = { [sym_identifier] = ACTIONS(1969), [anon_sym_SEMI] = ACTIONS(1971), [anon_sym_import] = ACTIONS(1969), @@ -86536,7 +87308,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1971), [sym_string_start] = ACTIONS(1971), }, - [600] = { + [609] = { [sym_identifier] = ACTIONS(1973), [anon_sym_SEMI] = ACTIONS(1975), [anon_sym_import] = ACTIONS(1973), @@ -86616,7 +87388,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1975), [sym_string_start] = ACTIONS(1975), }, - [601] = { + [610] = { [sym_identifier] = ACTIONS(1977), [anon_sym_SEMI] = ACTIONS(1979), [anon_sym_import] = ACTIONS(1977), @@ -86696,7 +87468,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1979), [sym_string_start] = ACTIONS(1979), }, - [602] = { + [611] = { [sym_identifier] = ACTIONS(1981), [anon_sym_SEMI] = ACTIONS(1983), [anon_sym_import] = ACTIONS(1981), @@ -86776,7 +87548,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1983), [sym_string_start] = ACTIONS(1983), }, - [603] = { + [612] = { [sym_identifier] = ACTIONS(1985), [anon_sym_SEMI] = ACTIONS(1987), [anon_sym_import] = ACTIONS(1985), @@ -86856,7 +87628,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1987), [sym_string_start] = ACTIONS(1987), }, - [604] = { + [613] = { [sym_identifier] = ACTIONS(1989), [anon_sym_SEMI] = ACTIONS(1991), [anon_sym_import] = ACTIONS(1989), @@ -86936,7 +87708,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1991), [sym_string_start] = ACTIONS(1991), }, - [605] = { + [614] = { [sym_identifier] = ACTIONS(1993), [anon_sym_SEMI] = ACTIONS(1995), [anon_sym_import] = ACTIONS(1993), @@ -87016,7 +87788,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1995), [sym_string_start] = ACTIONS(1995), }, - [606] = { + [615] = { [sym_identifier] = ACTIONS(1997), [anon_sym_SEMI] = ACTIONS(1999), [anon_sym_import] = ACTIONS(1997), @@ -87096,7 +87868,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1999), [sym_string_start] = ACTIONS(1999), }, - [607] = { + [616] = { [sym_identifier] = ACTIONS(2001), [anon_sym_SEMI] = ACTIONS(2003), [anon_sym_import] = ACTIONS(2001), @@ -87176,7 +87948,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2003), [sym_string_start] = ACTIONS(2003), }, - [608] = { + [617] = { [sym_identifier] = ACTIONS(2005), [anon_sym_SEMI] = ACTIONS(2007), [anon_sym_import] = ACTIONS(2005), @@ -87256,7 +88028,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2007), [sym_string_start] = ACTIONS(2007), }, - [609] = { + [618] = { [sym_identifier] = ACTIONS(2009), [anon_sym_SEMI] = ACTIONS(2011), [anon_sym_import] = ACTIONS(2009), @@ -87336,7 +88108,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2011), [sym_string_start] = ACTIONS(2011), }, - [610] = { + [619] = { [sym_identifier] = ACTIONS(2013), [anon_sym_SEMI] = ACTIONS(2015), [anon_sym_import] = ACTIONS(2013), @@ -87416,7 +88188,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2015), [sym_string_start] = ACTIONS(2015), }, - [611] = { + [620] = { [sym_identifier] = ACTIONS(2017), [anon_sym_SEMI] = ACTIONS(2019), [anon_sym_import] = ACTIONS(2017), @@ -87496,7 +88268,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2019), [sym_string_start] = ACTIONS(2019), }, - [612] = { + [621] = { [sym_identifier] = ACTIONS(2021), [anon_sym_SEMI] = ACTIONS(2023), [anon_sym_import] = ACTIONS(2021), @@ -87576,7 +88348,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2023), [sym_string_start] = ACTIONS(2023), }, - [613] = { + [622] = { [sym_identifier] = ACTIONS(2025), [anon_sym_SEMI] = ACTIONS(2027), [anon_sym_import] = ACTIONS(2025), @@ -87656,14 +88428,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2027), [sym_string_start] = ACTIONS(2027), }, - [614] = { + [623] = { [sym_identifier] = ACTIONS(2029), [anon_sym_SEMI] = ACTIONS(2031), [anon_sym_import] = ACTIONS(2029), [anon_sym_cimport] = ACTIONS(2029), [anon_sym_from] = ACTIONS(2029), - [anon_sym_LPAREN] = ACTIONS(2033), - [anon_sym_STAR] = ACTIONS(2033), + [anon_sym_LPAREN] = ACTIONS(2031), + [anon_sym_STAR] = ACTIONS(2031), [anon_sym_print] = ACTIONS(2029), [anon_sym_assert] = ACTIONS(2029), [anon_sym_return] = ACTIONS(2029), @@ -87685,21 +88457,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(2029), [anon_sym_type] = ACTIONS(2029), [anon_sym_class] = ACTIONS(2029), - [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_LBRACK] = ACTIONS(2031), + [anon_sym_AT] = ACTIONS(2031), + [anon_sym_DASH] = ACTIONS(2031), + [anon_sym_LBRACE] = ACTIONS(2031), + [anon_sym_PLUS] = ACTIONS(2031), [anon_sym_not] = ACTIONS(2029), - [anon_sym_AMP] = ACTIONS(2033), - [anon_sym_TILDE] = ACTIONS(2033), - [anon_sym_LT] = ACTIONS(2033), + [anon_sym_AMP] = ACTIONS(2031), + [anon_sym_TILDE] = ACTIONS(2031), + [anon_sym_LT] = ACTIONS(2031), [anon_sym_lambda] = ACTIONS(2029), [anon_sym_yield] = ACTIONS(2029), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2033), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2031), [anon_sym_None] = ACTIONS(2029), [sym_integer] = ACTIONS(2029), - [sym_float] = ACTIONS(2033), + [sym_float] = ACTIONS(2031), [anon_sym_await] = ACTIONS(2029), [anon_sym_api] = ACTIONS(2029), [sym_true] = ACTIONS(2029), @@ -87733,970 +88505,1050 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(2029), [anon_sym_readonly] = ACTIONS(2029), [anon_sym_sizeof] = ACTIONS(2029), - [sym__dedent] = ACTIONS(2033), - [sym_string_start] = ACTIONS(2033), + [sym__dedent] = ACTIONS(2031), + [sym_string_start] = ACTIONS(2031), }, - [615] = { - [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(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), + [624] = { + [sym_identifier] = ACTIONS(2033), + [anon_sym_SEMI] = ACTIONS(2035), + [anon_sym_import] = ACTIONS(2033), + [anon_sym_cimport] = ACTIONS(2033), + [anon_sym_from] = ACTIONS(2033), + [anon_sym_LPAREN] = ACTIONS(2035), + [anon_sym_STAR] = ACTIONS(2035), + [anon_sym_print] = ACTIONS(2033), + [anon_sym_assert] = ACTIONS(2033), + [anon_sym_return] = ACTIONS(2033), + [anon_sym_del] = ACTIONS(2033), + [anon_sym_raise] = ACTIONS(2033), + [anon_sym_pass] = ACTIONS(2033), + [anon_sym_break] = ACTIONS(2033), + [anon_sym_continue] = ACTIONS(2033), + [anon_sym_if] = ACTIONS(2033), + [anon_sym_match] = ACTIONS(2033), + [anon_sym_async] = ACTIONS(2033), + [anon_sym_for] = ACTIONS(2033), + [anon_sym_while] = ACTIONS(2033), + [anon_sym_try] = ACTIONS(2033), + [anon_sym_with] = ACTIONS(2033), + [anon_sym_def] = ACTIONS(2033), + [anon_sym_global] = ACTIONS(2033), + [anon_sym_nonlocal] = ACTIONS(2033), + [anon_sym_exec] = ACTIONS(2033), + [anon_sym_type] = ACTIONS(2033), + [anon_sym_class] = ACTIONS(2033), + [anon_sym_LBRACK] = ACTIONS(2035), + [anon_sym_AT] = ACTIONS(2035), + [anon_sym_DASH] = ACTIONS(2035), + [anon_sym_LBRACE] = ACTIONS(2035), + [anon_sym_PLUS] = ACTIONS(2035), + [anon_sym_not] = ACTIONS(2033), + [anon_sym_AMP] = ACTIONS(2035), + [anon_sym_TILDE] = ACTIONS(2035), + [anon_sym_LT] = ACTIONS(2035), + [anon_sym_lambda] = ACTIONS(2033), + [anon_sym_yield] = ACTIONS(2033), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2035), + [anon_sym_None] = ACTIONS(2033), + [sym_integer] = ACTIONS(2033), + [sym_float] = ACTIONS(2035), + [anon_sym_await] = ACTIONS(2033), + [anon_sym_api] = ACTIONS(2033), + [sym_true] = ACTIONS(2033), + [sym_false] = ACTIONS(2033), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2033), + [anon_sym_include] = ACTIONS(2033), + [anon_sym_DEF] = ACTIONS(2033), + [anon_sym_cdef] = ACTIONS(2033), + [anon_sym_cpdef] = ACTIONS(2033), + [anon_sym_int] = ACTIONS(2033), + [anon_sym_double] = ACTIONS(2033), + [anon_sym_complex] = ACTIONS(2033), + [anon_sym_new] = ACTIONS(2033), + [anon_sym_signed] = ACTIONS(2033), + [anon_sym_unsigned] = ACTIONS(2033), + [anon_sym_char] = ACTIONS(2033), + [anon_sym_short] = ACTIONS(2033), + [anon_sym_long] = ACTIONS(2033), + [anon_sym_const] = ACTIONS(2033), + [anon_sym_volatile] = ACTIONS(2033), + [anon_sym_ctypedef] = ACTIONS(2033), + [anon_sym_struct] = ACTIONS(2033), + [anon_sym_union] = ACTIONS(2033), + [anon_sym_enum] = ACTIONS(2033), + [anon_sym_cppclass] = ACTIONS(2033), + [anon_sym_fused] = ACTIONS(2033), + [anon_sym_public] = ACTIONS(2033), + [anon_sym_packed] = ACTIONS(2033), + [anon_sym_inline] = ACTIONS(2033), + [anon_sym_readonly] = ACTIONS(2033), + [anon_sym_sizeof] = ACTIONS(2033), + [sym__dedent] = ACTIONS(2035), + [sym_string_start] = ACTIONS(2035), }, - [616] = { - [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(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), + [625] = { + [sym_identifier] = ACTIONS(2037), + [anon_sym_SEMI] = ACTIONS(2039), + [anon_sym_import] = ACTIONS(2037), + [anon_sym_cimport] = ACTIONS(2037), + [anon_sym_from] = ACTIONS(2037), + [anon_sym_LPAREN] = ACTIONS(2039), + [anon_sym_STAR] = ACTIONS(2039), + [anon_sym_print] = ACTIONS(2037), + [anon_sym_assert] = ACTIONS(2037), + [anon_sym_return] = ACTIONS(2037), + [anon_sym_del] = ACTIONS(2037), + [anon_sym_raise] = ACTIONS(2037), + [anon_sym_pass] = ACTIONS(2037), + [anon_sym_break] = ACTIONS(2037), + [anon_sym_continue] = ACTIONS(2037), + [anon_sym_if] = ACTIONS(2037), + [anon_sym_match] = ACTIONS(2037), + [anon_sym_async] = ACTIONS(2037), + [anon_sym_for] = ACTIONS(2037), + [anon_sym_while] = ACTIONS(2037), + [anon_sym_try] = ACTIONS(2037), + [anon_sym_with] = ACTIONS(2037), + [anon_sym_def] = ACTIONS(2037), + [anon_sym_global] = ACTIONS(2037), + [anon_sym_nonlocal] = ACTIONS(2037), + [anon_sym_exec] = ACTIONS(2037), + [anon_sym_type] = ACTIONS(2037), + [anon_sym_class] = ACTIONS(2037), + [anon_sym_LBRACK] = ACTIONS(2039), + [anon_sym_AT] = ACTIONS(2039), + [anon_sym_DASH] = ACTIONS(2039), + [anon_sym_LBRACE] = ACTIONS(2039), + [anon_sym_PLUS] = ACTIONS(2039), + [anon_sym_not] = ACTIONS(2037), + [anon_sym_AMP] = ACTIONS(2039), + [anon_sym_TILDE] = ACTIONS(2039), + [anon_sym_LT] = ACTIONS(2039), + [anon_sym_lambda] = ACTIONS(2037), + [anon_sym_yield] = ACTIONS(2037), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2039), + [anon_sym_None] = ACTIONS(2037), + [sym_integer] = ACTIONS(2037), + [sym_float] = ACTIONS(2039), + [anon_sym_await] = ACTIONS(2037), + [anon_sym_api] = ACTIONS(2037), + [sym_true] = ACTIONS(2037), + [sym_false] = ACTIONS(2037), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2037), + [anon_sym_include] = ACTIONS(2037), + [anon_sym_DEF] = ACTIONS(2037), + [anon_sym_cdef] = ACTIONS(2037), + [anon_sym_cpdef] = ACTIONS(2037), + [anon_sym_int] = ACTIONS(2037), + [anon_sym_double] = ACTIONS(2037), + [anon_sym_complex] = ACTIONS(2037), + [anon_sym_new] = ACTIONS(2037), + [anon_sym_signed] = ACTIONS(2037), + [anon_sym_unsigned] = ACTIONS(2037), + [anon_sym_char] = ACTIONS(2037), + [anon_sym_short] = ACTIONS(2037), + [anon_sym_long] = ACTIONS(2037), + [anon_sym_const] = ACTIONS(2037), + [anon_sym_volatile] = ACTIONS(2037), + [anon_sym_ctypedef] = ACTIONS(2037), + [anon_sym_struct] = ACTIONS(2037), + [anon_sym_union] = ACTIONS(2037), + [anon_sym_enum] = ACTIONS(2037), + [anon_sym_cppclass] = ACTIONS(2037), + [anon_sym_fused] = ACTIONS(2037), + [anon_sym_public] = ACTIONS(2037), + [anon_sym_packed] = ACTIONS(2037), + [anon_sym_inline] = ACTIONS(2037), + [anon_sym_readonly] = ACTIONS(2037), + [anon_sym_sizeof] = ACTIONS(2037), + [sym__dedent] = ACTIONS(2039), + [sym_string_start] = ACTIONS(2039), }, - [617] = { - [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(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), + [626] = { + [sym_identifier] = ACTIONS(2041), + [anon_sym_SEMI] = ACTIONS(2043), + [anon_sym_import] = ACTIONS(2041), + [anon_sym_cimport] = ACTIONS(2041), + [anon_sym_from] = ACTIONS(2041), + [anon_sym_LPAREN] = ACTIONS(2043), + [anon_sym_STAR] = ACTIONS(2043), + [anon_sym_print] = ACTIONS(2041), + [anon_sym_assert] = ACTIONS(2041), + [anon_sym_return] = ACTIONS(2041), + [anon_sym_del] = ACTIONS(2041), + [anon_sym_raise] = ACTIONS(2041), + [anon_sym_pass] = ACTIONS(2041), + [anon_sym_break] = ACTIONS(2041), + [anon_sym_continue] = ACTIONS(2041), + [anon_sym_if] = ACTIONS(2041), + [anon_sym_match] = ACTIONS(2041), + [anon_sym_async] = ACTIONS(2041), + [anon_sym_for] = ACTIONS(2041), + [anon_sym_while] = ACTIONS(2041), + [anon_sym_try] = ACTIONS(2041), + [anon_sym_with] = ACTIONS(2041), + [anon_sym_def] = ACTIONS(2041), + [anon_sym_global] = ACTIONS(2041), + [anon_sym_nonlocal] = ACTIONS(2041), + [anon_sym_exec] = ACTIONS(2041), + [anon_sym_type] = ACTIONS(2041), + [anon_sym_class] = ACTIONS(2041), + [anon_sym_LBRACK] = ACTIONS(2043), + [anon_sym_AT] = ACTIONS(2043), + [anon_sym_DASH] = ACTIONS(2043), + [anon_sym_LBRACE] = ACTIONS(2043), + [anon_sym_PLUS] = ACTIONS(2043), + [anon_sym_not] = ACTIONS(2041), + [anon_sym_AMP] = ACTIONS(2043), + [anon_sym_TILDE] = ACTIONS(2043), + [anon_sym_LT] = ACTIONS(2043), + [anon_sym_lambda] = ACTIONS(2041), + [anon_sym_yield] = ACTIONS(2041), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2043), + [anon_sym_None] = ACTIONS(2041), + [sym_integer] = ACTIONS(2041), + [sym_float] = ACTIONS(2043), + [anon_sym_await] = ACTIONS(2041), + [anon_sym_api] = ACTIONS(2041), + [sym_true] = ACTIONS(2041), + [sym_false] = ACTIONS(2041), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2041), + [anon_sym_include] = ACTIONS(2041), + [anon_sym_DEF] = ACTIONS(2041), + [anon_sym_cdef] = ACTIONS(2041), + [anon_sym_cpdef] = ACTIONS(2041), + [anon_sym_int] = ACTIONS(2041), + [anon_sym_double] = ACTIONS(2041), + [anon_sym_complex] = ACTIONS(2041), + [anon_sym_new] = ACTIONS(2041), + [anon_sym_signed] = ACTIONS(2041), + [anon_sym_unsigned] = ACTIONS(2041), + [anon_sym_char] = ACTIONS(2041), + [anon_sym_short] = ACTIONS(2041), + [anon_sym_long] = ACTIONS(2041), + [anon_sym_const] = ACTIONS(2041), + [anon_sym_volatile] = ACTIONS(2041), + [anon_sym_ctypedef] = ACTIONS(2041), + [anon_sym_struct] = ACTIONS(2041), + [anon_sym_union] = ACTIONS(2041), + [anon_sym_enum] = ACTIONS(2041), + [anon_sym_cppclass] = ACTIONS(2041), + [anon_sym_fused] = ACTIONS(2041), + [anon_sym_public] = ACTIONS(2041), + [anon_sym_packed] = ACTIONS(2041), + [anon_sym_inline] = ACTIONS(2041), + [anon_sym_readonly] = ACTIONS(2041), + [anon_sym_sizeof] = ACTIONS(2041), + [sym__dedent] = ACTIONS(2043), + [sym_string_start] = ACTIONS(2043), }, - [618] = { - [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(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), + [627] = { + [sym_identifier] = ACTIONS(2045), + [anon_sym_SEMI] = ACTIONS(2047), + [anon_sym_import] = ACTIONS(2045), + [anon_sym_cimport] = ACTIONS(2045), + [anon_sym_from] = ACTIONS(2045), + [anon_sym_LPAREN] = ACTIONS(2047), + [anon_sym_STAR] = ACTIONS(2047), + [anon_sym_print] = ACTIONS(2045), + [anon_sym_assert] = ACTIONS(2045), + [anon_sym_return] = ACTIONS(2045), + [anon_sym_del] = ACTIONS(2045), + [anon_sym_raise] = ACTIONS(2045), + [anon_sym_pass] = ACTIONS(2045), + [anon_sym_break] = ACTIONS(2045), + [anon_sym_continue] = ACTIONS(2045), + [anon_sym_if] = ACTIONS(2045), + [anon_sym_match] = ACTIONS(2045), + [anon_sym_async] = ACTIONS(2045), + [anon_sym_for] = ACTIONS(2045), + [anon_sym_while] = ACTIONS(2045), + [anon_sym_try] = ACTIONS(2045), + [anon_sym_with] = ACTIONS(2045), + [anon_sym_def] = ACTIONS(2045), + [anon_sym_global] = ACTIONS(2045), + [anon_sym_nonlocal] = ACTIONS(2045), + [anon_sym_exec] = ACTIONS(2045), + [anon_sym_type] = ACTIONS(2045), + [anon_sym_class] = ACTIONS(2045), + [anon_sym_LBRACK] = ACTIONS(2047), + [anon_sym_AT] = ACTIONS(2047), + [anon_sym_DASH] = ACTIONS(2047), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_PLUS] = ACTIONS(2047), + [anon_sym_not] = ACTIONS(2045), + [anon_sym_AMP] = ACTIONS(2047), + [anon_sym_TILDE] = ACTIONS(2047), + [anon_sym_LT] = ACTIONS(2047), + [anon_sym_lambda] = ACTIONS(2045), + [anon_sym_yield] = ACTIONS(2045), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2047), + [anon_sym_None] = ACTIONS(2045), + [sym_integer] = ACTIONS(2045), + [sym_float] = ACTIONS(2047), + [anon_sym_await] = ACTIONS(2045), + [anon_sym_api] = ACTIONS(2045), + [sym_true] = ACTIONS(2045), + [sym_false] = ACTIONS(2045), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2045), + [anon_sym_include] = ACTIONS(2045), + [anon_sym_DEF] = ACTIONS(2045), + [anon_sym_cdef] = ACTIONS(2045), + [anon_sym_cpdef] = ACTIONS(2045), + [anon_sym_int] = ACTIONS(2045), + [anon_sym_double] = ACTIONS(2045), + [anon_sym_complex] = ACTIONS(2045), + [anon_sym_new] = ACTIONS(2045), + [anon_sym_signed] = ACTIONS(2045), + [anon_sym_unsigned] = ACTIONS(2045), + [anon_sym_char] = ACTIONS(2045), + [anon_sym_short] = ACTIONS(2045), + [anon_sym_long] = ACTIONS(2045), + [anon_sym_const] = ACTIONS(2045), + [anon_sym_volatile] = ACTIONS(2045), + [anon_sym_ctypedef] = ACTIONS(2045), + [anon_sym_struct] = ACTIONS(2045), + [anon_sym_union] = ACTIONS(2045), + [anon_sym_enum] = ACTIONS(2045), + [anon_sym_cppclass] = ACTIONS(2045), + [anon_sym_fused] = ACTIONS(2045), + [anon_sym_public] = ACTIONS(2045), + [anon_sym_packed] = ACTIONS(2045), + [anon_sym_inline] = ACTIONS(2045), + [anon_sym_readonly] = ACTIONS(2045), + [anon_sym_sizeof] = ACTIONS(2045), + [sym__dedent] = ACTIONS(2047), + [sym_string_start] = ACTIONS(2047), }, - [619] = { - [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(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), + [628] = { + [sym_identifier] = ACTIONS(2049), + [anon_sym_SEMI] = ACTIONS(2051), + [anon_sym_import] = ACTIONS(2049), + [anon_sym_cimport] = ACTIONS(2049), + [anon_sym_from] = ACTIONS(2049), + [anon_sym_LPAREN] = ACTIONS(2051), + [anon_sym_STAR] = ACTIONS(2051), + [anon_sym_print] = ACTIONS(2049), + [anon_sym_assert] = ACTIONS(2049), + [anon_sym_return] = ACTIONS(2049), + [anon_sym_del] = ACTIONS(2049), + [anon_sym_raise] = ACTIONS(2049), + [anon_sym_pass] = ACTIONS(2049), + [anon_sym_break] = ACTIONS(2049), + [anon_sym_continue] = ACTIONS(2049), + [anon_sym_if] = ACTIONS(2049), + [anon_sym_match] = ACTIONS(2049), + [anon_sym_async] = ACTIONS(2049), + [anon_sym_for] = ACTIONS(2049), + [anon_sym_while] = ACTIONS(2049), + [anon_sym_try] = ACTIONS(2049), + [anon_sym_with] = ACTIONS(2049), + [anon_sym_def] = ACTIONS(2049), + [anon_sym_global] = ACTIONS(2049), + [anon_sym_nonlocal] = ACTIONS(2049), + [anon_sym_exec] = ACTIONS(2049), + [anon_sym_type] = ACTIONS(2049), + [anon_sym_class] = ACTIONS(2049), + [anon_sym_LBRACK] = ACTIONS(2051), + [anon_sym_AT] = ACTIONS(2051), + [anon_sym_DASH] = ACTIONS(2051), + [anon_sym_LBRACE] = ACTIONS(2051), + [anon_sym_PLUS] = ACTIONS(2051), + [anon_sym_not] = ACTIONS(2049), + [anon_sym_AMP] = ACTIONS(2051), + [anon_sym_TILDE] = ACTIONS(2051), + [anon_sym_LT] = ACTIONS(2051), + [anon_sym_lambda] = ACTIONS(2049), + [anon_sym_yield] = ACTIONS(2049), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2051), + [anon_sym_None] = ACTIONS(2049), + [sym_integer] = ACTIONS(2049), + [sym_float] = ACTIONS(2051), + [anon_sym_await] = ACTIONS(2049), + [anon_sym_api] = ACTIONS(2049), + [sym_true] = ACTIONS(2049), + [sym_false] = ACTIONS(2049), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2049), + [anon_sym_include] = ACTIONS(2049), + [anon_sym_DEF] = ACTIONS(2049), + [anon_sym_cdef] = ACTIONS(2049), + [anon_sym_cpdef] = ACTIONS(2049), + [anon_sym_int] = ACTIONS(2049), + [anon_sym_double] = ACTIONS(2049), + [anon_sym_complex] = ACTIONS(2049), + [anon_sym_new] = ACTIONS(2049), + [anon_sym_signed] = ACTIONS(2049), + [anon_sym_unsigned] = ACTIONS(2049), + [anon_sym_char] = ACTIONS(2049), + [anon_sym_short] = ACTIONS(2049), + [anon_sym_long] = ACTIONS(2049), + [anon_sym_const] = ACTIONS(2049), + [anon_sym_volatile] = ACTIONS(2049), + [anon_sym_ctypedef] = ACTIONS(2049), + [anon_sym_struct] = ACTIONS(2049), + [anon_sym_union] = ACTIONS(2049), + [anon_sym_enum] = ACTIONS(2049), + [anon_sym_cppclass] = ACTIONS(2049), + [anon_sym_fused] = ACTIONS(2049), + [anon_sym_public] = ACTIONS(2049), + [anon_sym_packed] = ACTIONS(2049), + [anon_sym_inline] = ACTIONS(2049), + [anon_sym_readonly] = ACTIONS(2049), + [anon_sym_sizeof] = ACTIONS(2049), + [sym__dedent] = ACTIONS(2051), + [sym_string_start] = ACTIONS(2051), }, - [620] = { - [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(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), + [629] = { + [sym_identifier] = ACTIONS(2053), + [anon_sym_SEMI] = ACTIONS(2055), + [anon_sym_import] = ACTIONS(2053), + [anon_sym_cimport] = ACTIONS(2053), + [anon_sym_from] = ACTIONS(2053), + [anon_sym_LPAREN] = ACTIONS(2055), + [anon_sym_STAR] = ACTIONS(2055), + [anon_sym_print] = ACTIONS(2053), + [anon_sym_assert] = ACTIONS(2053), + [anon_sym_return] = ACTIONS(2053), + [anon_sym_del] = ACTIONS(2053), + [anon_sym_raise] = ACTIONS(2053), + [anon_sym_pass] = ACTIONS(2053), + [anon_sym_break] = ACTIONS(2053), + [anon_sym_continue] = ACTIONS(2053), + [anon_sym_if] = ACTIONS(2053), + [anon_sym_match] = ACTIONS(2053), + [anon_sym_async] = ACTIONS(2053), + [anon_sym_for] = ACTIONS(2053), + [anon_sym_while] = ACTIONS(2053), + [anon_sym_try] = ACTIONS(2053), + [anon_sym_with] = ACTIONS(2053), + [anon_sym_def] = ACTIONS(2053), + [anon_sym_global] = ACTIONS(2053), + [anon_sym_nonlocal] = ACTIONS(2053), + [anon_sym_exec] = ACTIONS(2053), + [anon_sym_type] = ACTIONS(2053), + [anon_sym_class] = ACTIONS(2053), + [anon_sym_LBRACK] = ACTIONS(2055), + [anon_sym_AT] = ACTIONS(2055), + [anon_sym_DASH] = ACTIONS(2055), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_PLUS] = ACTIONS(2055), + [anon_sym_not] = ACTIONS(2053), + [anon_sym_AMP] = ACTIONS(2055), + [anon_sym_TILDE] = ACTIONS(2055), + [anon_sym_LT] = ACTIONS(2055), + [anon_sym_lambda] = ACTIONS(2053), + [anon_sym_yield] = ACTIONS(2053), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2055), + [anon_sym_None] = ACTIONS(2053), + [sym_integer] = ACTIONS(2053), + [sym_float] = ACTIONS(2055), + [anon_sym_await] = ACTIONS(2053), + [anon_sym_api] = ACTIONS(2053), + [sym_true] = ACTIONS(2053), + [sym_false] = ACTIONS(2053), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2053), + [anon_sym_include] = ACTIONS(2053), + [anon_sym_DEF] = ACTIONS(2053), + [anon_sym_cdef] = ACTIONS(2053), + [anon_sym_cpdef] = ACTIONS(2053), + [anon_sym_int] = ACTIONS(2053), + [anon_sym_double] = ACTIONS(2053), + [anon_sym_complex] = ACTIONS(2053), + [anon_sym_new] = ACTIONS(2053), + [anon_sym_signed] = ACTIONS(2053), + [anon_sym_unsigned] = ACTIONS(2053), + [anon_sym_char] = ACTIONS(2053), + [anon_sym_short] = ACTIONS(2053), + [anon_sym_long] = ACTIONS(2053), + [anon_sym_const] = ACTIONS(2053), + [anon_sym_volatile] = ACTIONS(2053), + [anon_sym_ctypedef] = ACTIONS(2053), + [anon_sym_struct] = ACTIONS(2053), + [anon_sym_union] = ACTIONS(2053), + [anon_sym_enum] = ACTIONS(2053), + [anon_sym_cppclass] = ACTIONS(2053), + [anon_sym_fused] = ACTIONS(2053), + [anon_sym_public] = ACTIONS(2053), + [anon_sym_packed] = ACTIONS(2053), + [anon_sym_inline] = ACTIONS(2053), + [anon_sym_readonly] = ACTIONS(2053), + [anon_sym_sizeof] = ACTIONS(2053), + [sym__dedent] = ACTIONS(2055), + [sym_string_start] = ACTIONS(2055), }, - [621] = { - [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(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), + [630] = { + [sym_identifier] = ACTIONS(2057), + [anon_sym_SEMI] = ACTIONS(2059), + [anon_sym_import] = ACTIONS(2057), + [anon_sym_cimport] = ACTIONS(2057), + [anon_sym_from] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(2059), + [anon_sym_STAR] = ACTIONS(2059), + [anon_sym_print] = ACTIONS(2057), + [anon_sym_assert] = ACTIONS(2057), + [anon_sym_return] = ACTIONS(2057), + [anon_sym_del] = ACTIONS(2057), + [anon_sym_raise] = ACTIONS(2057), + [anon_sym_pass] = ACTIONS(2057), + [anon_sym_break] = ACTIONS(2057), + [anon_sym_continue] = ACTIONS(2057), + [anon_sym_if] = ACTIONS(2057), + [anon_sym_match] = ACTIONS(2057), + [anon_sym_async] = ACTIONS(2057), + [anon_sym_for] = ACTIONS(2057), + [anon_sym_while] = ACTIONS(2057), + [anon_sym_try] = ACTIONS(2057), + [anon_sym_with] = ACTIONS(2057), + [anon_sym_def] = ACTIONS(2057), + [anon_sym_global] = ACTIONS(2057), + [anon_sym_nonlocal] = ACTIONS(2057), + [anon_sym_exec] = ACTIONS(2057), + [anon_sym_type] = ACTIONS(2057), + [anon_sym_class] = ACTIONS(2057), + [anon_sym_LBRACK] = ACTIONS(2059), + [anon_sym_AT] = ACTIONS(2059), + [anon_sym_DASH] = ACTIONS(2059), + [anon_sym_LBRACE] = ACTIONS(2059), + [anon_sym_PLUS] = ACTIONS(2059), + [anon_sym_not] = ACTIONS(2057), + [anon_sym_AMP] = ACTIONS(2059), + [anon_sym_TILDE] = ACTIONS(2059), + [anon_sym_LT] = ACTIONS(2059), + [anon_sym_lambda] = ACTIONS(2057), + [anon_sym_yield] = ACTIONS(2057), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2059), + [anon_sym_None] = ACTIONS(2057), + [sym_integer] = ACTIONS(2057), + [sym_float] = ACTIONS(2059), + [anon_sym_await] = ACTIONS(2057), + [anon_sym_api] = ACTIONS(2057), + [sym_true] = ACTIONS(2057), + [sym_false] = ACTIONS(2057), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2057), + [anon_sym_include] = ACTIONS(2057), + [anon_sym_DEF] = ACTIONS(2057), + [anon_sym_cdef] = ACTIONS(2057), + [anon_sym_cpdef] = ACTIONS(2057), + [anon_sym_int] = ACTIONS(2057), + [anon_sym_double] = ACTIONS(2057), + [anon_sym_complex] = ACTIONS(2057), + [anon_sym_new] = ACTIONS(2057), + [anon_sym_signed] = ACTIONS(2057), + [anon_sym_unsigned] = ACTIONS(2057), + [anon_sym_char] = ACTIONS(2057), + [anon_sym_short] = ACTIONS(2057), + [anon_sym_long] = ACTIONS(2057), + [anon_sym_const] = ACTIONS(2057), + [anon_sym_volatile] = ACTIONS(2057), + [anon_sym_ctypedef] = ACTIONS(2057), + [anon_sym_struct] = ACTIONS(2057), + [anon_sym_union] = ACTIONS(2057), + [anon_sym_enum] = ACTIONS(2057), + [anon_sym_cppclass] = ACTIONS(2057), + [anon_sym_fused] = ACTIONS(2057), + [anon_sym_public] = ACTIONS(2057), + [anon_sym_packed] = ACTIONS(2057), + [anon_sym_inline] = ACTIONS(2057), + [anon_sym_readonly] = ACTIONS(2057), + [anon_sym_sizeof] = ACTIONS(2057), + [sym__dedent] = ACTIONS(2059), + [sym_string_start] = ACTIONS(2059), }, - [622] = { - [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(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), + [631] = { + [sym_identifier] = ACTIONS(2061), + [anon_sym_SEMI] = ACTIONS(2063), + [anon_sym_import] = ACTIONS(2061), + [anon_sym_cimport] = ACTIONS(2061), + [anon_sym_from] = ACTIONS(2061), + [anon_sym_LPAREN] = ACTIONS(2063), + [anon_sym_STAR] = ACTIONS(2063), + [anon_sym_print] = ACTIONS(2061), + [anon_sym_assert] = ACTIONS(2061), + [anon_sym_return] = ACTIONS(2061), + [anon_sym_del] = ACTIONS(2061), + [anon_sym_raise] = ACTIONS(2061), + [anon_sym_pass] = ACTIONS(2061), + [anon_sym_break] = ACTIONS(2061), + [anon_sym_continue] = ACTIONS(2061), + [anon_sym_if] = ACTIONS(2061), + [anon_sym_match] = ACTIONS(2061), + [anon_sym_async] = ACTIONS(2061), + [anon_sym_for] = ACTIONS(2061), + [anon_sym_while] = ACTIONS(2061), + [anon_sym_try] = ACTIONS(2061), + [anon_sym_with] = ACTIONS(2061), + [anon_sym_def] = ACTIONS(2061), + [anon_sym_global] = ACTIONS(2061), + [anon_sym_nonlocal] = ACTIONS(2061), + [anon_sym_exec] = ACTIONS(2061), + [anon_sym_type] = ACTIONS(2061), + [anon_sym_class] = ACTIONS(2061), + [anon_sym_LBRACK] = ACTIONS(2063), + [anon_sym_AT] = ACTIONS(2063), + [anon_sym_DASH] = ACTIONS(2063), + [anon_sym_LBRACE] = ACTIONS(2063), + [anon_sym_PLUS] = ACTIONS(2063), + [anon_sym_not] = ACTIONS(2061), + [anon_sym_AMP] = ACTIONS(2063), + [anon_sym_TILDE] = ACTIONS(2063), + [anon_sym_LT] = ACTIONS(2063), + [anon_sym_lambda] = ACTIONS(2061), + [anon_sym_yield] = ACTIONS(2061), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2063), + [anon_sym_None] = ACTIONS(2061), + [sym_integer] = ACTIONS(2061), + [sym_float] = ACTIONS(2063), + [anon_sym_await] = ACTIONS(2061), + [anon_sym_api] = ACTIONS(2061), + [sym_true] = ACTIONS(2061), + [sym_false] = ACTIONS(2061), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2061), + [anon_sym_include] = ACTIONS(2061), + [anon_sym_DEF] = ACTIONS(2061), + [anon_sym_cdef] = ACTIONS(2061), + [anon_sym_cpdef] = ACTIONS(2061), + [anon_sym_int] = ACTIONS(2061), + [anon_sym_double] = ACTIONS(2061), + [anon_sym_complex] = ACTIONS(2061), + [anon_sym_new] = ACTIONS(2061), + [anon_sym_signed] = ACTIONS(2061), + [anon_sym_unsigned] = ACTIONS(2061), + [anon_sym_char] = ACTIONS(2061), + [anon_sym_short] = ACTIONS(2061), + [anon_sym_long] = ACTIONS(2061), + [anon_sym_const] = ACTIONS(2061), + [anon_sym_volatile] = ACTIONS(2061), + [anon_sym_ctypedef] = ACTIONS(2061), + [anon_sym_struct] = ACTIONS(2061), + [anon_sym_union] = ACTIONS(2061), + [anon_sym_enum] = ACTIONS(2061), + [anon_sym_cppclass] = ACTIONS(2061), + [anon_sym_fused] = ACTIONS(2061), + [anon_sym_public] = ACTIONS(2061), + [anon_sym_packed] = ACTIONS(2061), + [anon_sym_inline] = ACTIONS(2061), + [anon_sym_readonly] = ACTIONS(2061), + [anon_sym_sizeof] = ACTIONS(2061), + [sym__dedent] = ACTIONS(2063), + [sym_string_start] = ACTIONS(2063), }, - [623] = { - [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(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), + [632] = { + [sym_identifier] = ACTIONS(2065), + [anon_sym_SEMI] = ACTIONS(2067), + [anon_sym_import] = ACTIONS(2065), + [anon_sym_cimport] = ACTIONS(2065), + [anon_sym_from] = ACTIONS(2065), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_STAR] = ACTIONS(2067), + [anon_sym_print] = ACTIONS(2065), + [anon_sym_assert] = ACTIONS(2065), + [anon_sym_return] = ACTIONS(2065), + [anon_sym_del] = ACTIONS(2065), + [anon_sym_raise] = ACTIONS(2065), + [anon_sym_pass] = ACTIONS(2065), + [anon_sym_break] = ACTIONS(2065), + [anon_sym_continue] = ACTIONS(2065), + [anon_sym_if] = ACTIONS(2065), + [anon_sym_match] = ACTIONS(2065), + [anon_sym_async] = ACTIONS(2065), + [anon_sym_for] = ACTIONS(2065), + [anon_sym_while] = ACTIONS(2065), + [anon_sym_try] = ACTIONS(2065), + [anon_sym_with] = ACTIONS(2065), + [anon_sym_def] = ACTIONS(2065), + [anon_sym_global] = ACTIONS(2065), + [anon_sym_nonlocal] = ACTIONS(2065), + [anon_sym_exec] = ACTIONS(2065), + [anon_sym_type] = ACTIONS(2065), + [anon_sym_class] = ACTIONS(2065), + [anon_sym_LBRACK] = ACTIONS(2067), + [anon_sym_AT] = ACTIONS(2067), + [anon_sym_DASH] = ACTIONS(2067), + [anon_sym_LBRACE] = ACTIONS(2067), + [anon_sym_PLUS] = ACTIONS(2067), + [anon_sym_not] = ACTIONS(2065), + [anon_sym_AMP] = ACTIONS(2067), + [anon_sym_TILDE] = ACTIONS(2067), + [anon_sym_LT] = ACTIONS(2067), + [anon_sym_lambda] = ACTIONS(2065), + [anon_sym_yield] = ACTIONS(2065), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2067), + [anon_sym_None] = ACTIONS(2065), + [sym_integer] = ACTIONS(2065), + [sym_float] = ACTIONS(2067), + [anon_sym_await] = ACTIONS(2065), + [anon_sym_api] = ACTIONS(2065), + [sym_true] = ACTIONS(2065), + [sym_false] = ACTIONS(2065), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2065), + [anon_sym_include] = ACTIONS(2065), + [anon_sym_DEF] = ACTIONS(2065), + [anon_sym_cdef] = ACTIONS(2065), + [anon_sym_cpdef] = ACTIONS(2065), + [anon_sym_int] = ACTIONS(2065), + [anon_sym_double] = ACTIONS(2065), + [anon_sym_complex] = ACTIONS(2065), + [anon_sym_new] = ACTIONS(2065), + [anon_sym_signed] = ACTIONS(2065), + [anon_sym_unsigned] = ACTIONS(2065), + [anon_sym_char] = ACTIONS(2065), + [anon_sym_short] = ACTIONS(2065), + [anon_sym_long] = ACTIONS(2065), + [anon_sym_const] = ACTIONS(2065), + [anon_sym_volatile] = ACTIONS(2065), + [anon_sym_ctypedef] = ACTIONS(2065), + [anon_sym_struct] = ACTIONS(2065), + [anon_sym_union] = ACTIONS(2065), + [anon_sym_enum] = ACTIONS(2065), + [anon_sym_cppclass] = ACTIONS(2065), + [anon_sym_fused] = ACTIONS(2065), + [anon_sym_public] = ACTIONS(2065), + [anon_sym_packed] = ACTIONS(2065), + [anon_sym_inline] = ACTIONS(2065), + [anon_sym_readonly] = ACTIONS(2065), + [anon_sym_sizeof] = ACTIONS(2065), + [sym__dedent] = ACTIONS(2067), + [sym_string_start] = ACTIONS(2067), }, - [624] = { - [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(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), + [633] = { + [sym_identifier] = ACTIONS(2069), + [anon_sym_SEMI] = ACTIONS(2071), + [anon_sym_import] = ACTIONS(2069), + [anon_sym_cimport] = ACTIONS(2069), + [anon_sym_from] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(2071), + [anon_sym_print] = ACTIONS(2069), + [anon_sym_assert] = ACTIONS(2069), + [anon_sym_return] = ACTIONS(2069), + [anon_sym_del] = ACTIONS(2069), + [anon_sym_raise] = ACTIONS(2069), + [anon_sym_pass] = ACTIONS(2069), + [anon_sym_break] = ACTIONS(2069), + [anon_sym_continue] = ACTIONS(2069), + [anon_sym_if] = ACTIONS(2069), + [anon_sym_match] = ACTIONS(2069), + [anon_sym_async] = ACTIONS(2069), + [anon_sym_for] = ACTIONS(2069), + [anon_sym_while] = ACTIONS(2069), + [anon_sym_try] = ACTIONS(2069), + [anon_sym_with] = ACTIONS(2069), + [anon_sym_def] = ACTIONS(2069), + [anon_sym_global] = ACTIONS(2069), + [anon_sym_nonlocal] = ACTIONS(2069), + [anon_sym_exec] = ACTIONS(2069), + [anon_sym_type] = ACTIONS(2069), + [anon_sym_class] = ACTIONS(2069), + [anon_sym_LBRACK] = ACTIONS(2071), + [anon_sym_AT] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_LBRACE] = ACTIONS(2071), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_not] = ACTIONS(2069), + [anon_sym_AMP] = ACTIONS(2071), + [anon_sym_TILDE] = ACTIONS(2071), + [anon_sym_LT] = ACTIONS(2071), + [anon_sym_lambda] = ACTIONS(2069), + [anon_sym_yield] = ACTIONS(2069), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2071), + [anon_sym_None] = ACTIONS(2069), + [sym_integer] = ACTIONS(2069), + [sym_float] = ACTIONS(2071), + [anon_sym_await] = ACTIONS(2069), + [anon_sym_api] = ACTIONS(2069), + [sym_true] = ACTIONS(2069), + [sym_false] = ACTIONS(2069), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2069), + [anon_sym_include] = ACTIONS(2069), + [anon_sym_DEF] = ACTIONS(2069), + [anon_sym_cdef] = ACTIONS(2069), + [anon_sym_cpdef] = ACTIONS(2069), + [anon_sym_int] = ACTIONS(2069), + [anon_sym_double] = ACTIONS(2069), + [anon_sym_complex] = ACTIONS(2069), + [anon_sym_new] = ACTIONS(2069), + [anon_sym_signed] = ACTIONS(2069), + [anon_sym_unsigned] = ACTIONS(2069), + [anon_sym_char] = ACTIONS(2069), + [anon_sym_short] = ACTIONS(2069), + [anon_sym_long] = ACTIONS(2069), + [anon_sym_const] = ACTIONS(2069), + [anon_sym_volatile] = ACTIONS(2069), + [anon_sym_ctypedef] = ACTIONS(2069), + [anon_sym_struct] = ACTIONS(2069), + [anon_sym_union] = ACTIONS(2069), + [anon_sym_enum] = ACTIONS(2069), + [anon_sym_cppclass] = ACTIONS(2069), + [anon_sym_fused] = ACTIONS(2069), + [anon_sym_public] = ACTIONS(2069), + [anon_sym_packed] = ACTIONS(2069), + [anon_sym_inline] = ACTIONS(2069), + [anon_sym_readonly] = ACTIONS(2069), + [anon_sym_sizeof] = ACTIONS(2069), + [sym__dedent] = ACTIONS(2071), + [sym_string_start] = ACTIONS(2071), }, - [625] = { - [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(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), + [634] = { + [sym_identifier] = ACTIONS(2073), + [anon_sym_SEMI] = ACTIONS(2075), + [anon_sym_import] = ACTIONS(2073), + [anon_sym_cimport] = ACTIONS(2073), + [anon_sym_from] = ACTIONS(2073), + [anon_sym_LPAREN] = ACTIONS(2075), + [anon_sym_STAR] = ACTIONS(2075), + [anon_sym_print] = ACTIONS(2073), + [anon_sym_assert] = ACTIONS(2073), + [anon_sym_return] = ACTIONS(2073), + [anon_sym_del] = ACTIONS(2073), + [anon_sym_raise] = ACTIONS(2073), + [anon_sym_pass] = ACTIONS(2073), + [anon_sym_break] = ACTIONS(2073), + [anon_sym_continue] = ACTIONS(2073), + [anon_sym_if] = ACTIONS(2073), + [anon_sym_match] = ACTIONS(2073), + [anon_sym_async] = ACTIONS(2073), + [anon_sym_for] = ACTIONS(2073), + [anon_sym_while] = ACTIONS(2073), + [anon_sym_try] = ACTIONS(2073), + [anon_sym_with] = ACTIONS(2073), + [anon_sym_def] = ACTIONS(2073), + [anon_sym_global] = ACTIONS(2073), + [anon_sym_nonlocal] = ACTIONS(2073), + [anon_sym_exec] = ACTIONS(2073), + [anon_sym_type] = ACTIONS(2073), + [anon_sym_class] = ACTIONS(2073), + [anon_sym_LBRACK] = ACTIONS(2075), + [anon_sym_AT] = ACTIONS(2075), + [anon_sym_DASH] = ACTIONS(2075), + [anon_sym_LBRACE] = ACTIONS(2075), + [anon_sym_PLUS] = ACTIONS(2075), + [anon_sym_not] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2075), + [anon_sym_TILDE] = ACTIONS(2075), + [anon_sym_LT] = ACTIONS(2075), + [anon_sym_lambda] = ACTIONS(2073), + [anon_sym_yield] = ACTIONS(2073), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2075), + [anon_sym_None] = ACTIONS(2073), + [sym_integer] = ACTIONS(2073), + [sym_float] = ACTIONS(2075), + [anon_sym_await] = ACTIONS(2073), + [anon_sym_api] = ACTIONS(2073), + [sym_true] = ACTIONS(2073), + [sym_false] = ACTIONS(2073), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2073), + [anon_sym_include] = ACTIONS(2073), + [anon_sym_DEF] = ACTIONS(2073), + [anon_sym_cdef] = ACTIONS(2073), + [anon_sym_cpdef] = ACTIONS(2073), + [anon_sym_int] = ACTIONS(2073), + [anon_sym_double] = ACTIONS(2073), + [anon_sym_complex] = ACTIONS(2073), + [anon_sym_new] = ACTIONS(2073), + [anon_sym_signed] = ACTIONS(2073), + [anon_sym_unsigned] = ACTIONS(2073), + [anon_sym_char] = ACTIONS(2073), + [anon_sym_short] = ACTIONS(2073), + [anon_sym_long] = ACTIONS(2073), + [anon_sym_const] = ACTIONS(2073), + [anon_sym_volatile] = ACTIONS(2073), + [anon_sym_ctypedef] = ACTIONS(2073), + [anon_sym_struct] = ACTIONS(2073), + [anon_sym_union] = ACTIONS(2073), + [anon_sym_enum] = ACTIONS(2073), + [anon_sym_cppclass] = ACTIONS(2073), + [anon_sym_fused] = ACTIONS(2073), + [anon_sym_public] = ACTIONS(2073), + [anon_sym_packed] = ACTIONS(2073), + [anon_sym_inline] = ACTIONS(2073), + [anon_sym_readonly] = ACTIONS(2073), + [anon_sym_sizeof] = ACTIONS(2073), + [sym__dedent] = ACTIONS(2075), + [sym_string_start] = ACTIONS(2075), }, - [626] = { - [sym_identifier] = ACTIONS(2079), - [anon_sym_SEMI] = ACTIONS(2081), - [anon_sym_import] = ACTIONS(2079), - [anon_sym_cimport] = ACTIONS(2079), - [anon_sym_from] = ACTIONS(2079), + [635] = { + [sym_identifier] = ACTIONS(2077), + [anon_sym_SEMI] = ACTIONS(2079), + [anon_sym_import] = ACTIONS(2077), + [anon_sym_cimport] = ACTIONS(2077), + [anon_sym_from] = ACTIONS(2077), + [anon_sym_LPAREN] = ACTIONS(2079), + [anon_sym_STAR] = ACTIONS(2079), + [anon_sym_print] = ACTIONS(2077), + [anon_sym_assert] = ACTIONS(2077), + [anon_sym_return] = ACTIONS(2077), + [anon_sym_del] = ACTIONS(2077), + [anon_sym_raise] = ACTIONS(2077), + [anon_sym_pass] = ACTIONS(2077), + [anon_sym_break] = ACTIONS(2077), + [anon_sym_continue] = ACTIONS(2077), + [anon_sym_if] = ACTIONS(2077), + [anon_sym_match] = ACTIONS(2077), + [anon_sym_async] = ACTIONS(2077), + [anon_sym_for] = ACTIONS(2077), + [anon_sym_while] = ACTIONS(2077), + [anon_sym_try] = ACTIONS(2077), + [anon_sym_with] = ACTIONS(2077), + [anon_sym_def] = ACTIONS(2077), + [anon_sym_global] = ACTIONS(2077), + [anon_sym_nonlocal] = ACTIONS(2077), + [anon_sym_exec] = ACTIONS(2077), + [anon_sym_type] = ACTIONS(2077), + [anon_sym_class] = ACTIONS(2077), + [anon_sym_LBRACK] = ACTIONS(2079), + [anon_sym_AT] = ACTIONS(2079), + [anon_sym_DASH] = ACTIONS(2079), + [anon_sym_LBRACE] = ACTIONS(2079), + [anon_sym_PLUS] = ACTIONS(2079), + [anon_sym_not] = ACTIONS(2077), + [anon_sym_AMP] = ACTIONS(2079), + [anon_sym_TILDE] = ACTIONS(2079), + [anon_sym_LT] = ACTIONS(2079), + [anon_sym_lambda] = ACTIONS(2077), + [anon_sym_yield] = ACTIONS(2077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2079), + [anon_sym_None] = ACTIONS(2077), + [sym_integer] = ACTIONS(2077), + [sym_float] = ACTIONS(2079), + [anon_sym_await] = ACTIONS(2077), + [anon_sym_api] = ACTIONS(2077), + [sym_true] = ACTIONS(2077), + [sym_false] = ACTIONS(2077), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2077), + [anon_sym_include] = ACTIONS(2077), + [anon_sym_DEF] = ACTIONS(2077), + [anon_sym_cdef] = ACTIONS(2077), + [anon_sym_cpdef] = ACTIONS(2077), + [anon_sym_int] = ACTIONS(2077), + [anon_sym_double] = ACTIONS(2077), + [anon_sym_complex] = ACTIONS(2077), + [anon_sym_new] = ACTIONS(2077), + [anon_sym_signed] = ACTIONS(2077), + [anon_sym_unsigned] = ACTIONS(2077), + [anon_sym_char] = ACTIONS(2077), + [anon_sym_short] = ACTIONS(2077), + [anon_sym_long] = ACTIONS(2077), + [anon_sym_const] = ACTIONS(2077), + [anon_sym_volatile] = ACTIONS(2077), + [anon_sym_ctypedef] = ACTIONS(2077), + [anon_sym_struct] = ACTIONS(2077), + [anon_sym_union] = ACTIONS(2077), + [anon_sym_enum] = ACTIONS(2077), + [anon_sym_cppclass] = ACTIONS(2077), + [anon_sym_fused] = ACTIONS(2077), + [anon_sym_public] = ACTIONS(2077), + [anon_sym_packed] = ACTIONS(2077), + [anon_sym_inline] = ACTIONS(2077), + [anon_sym_readonly] = ACTIONS(2077), + [anon_sym_sizeof] = ACTIONS(2077), + [sym__dedent] = ACTIONS(2079), + [sym_string_start] = ACTIONS(2079), + }, + [636] = { + [sym_identifier] = ACTIONS(2081), + [anon_sym_SEMI] = ACTIONS(2083), + [anon_sym_import] = ACTIONS(2081), + [anon_sym_cimport] = ACTIONS(2081), + [anon_sym_from] = ACTIONS(2081), [anon_sym_LPAREN] = ACTIONS(2083), [anon_sym_STAR] = ACTIONS(2083), - [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_print] = ACTIONS(2081), + [anon_sym_assert] = ACTIONS(2081), + [anon_sym_return] = ACTIONS(2081), + [anon_sym_del] = ACTIONS(2081), + [anon_sym_raise] = ACTIONS(2081), + [anon_sym_pass] = ACTIONS(2081), + [anon_sym_break] = ACTIONS(2081), + [anon_sym_continue] = ACTIONS(2081), + [anon_sym_if] = ACTIONS(2081), + [anon_sym_match] = ACTIONS(2081), + [anon_sym_async] = ACTIONS(2081), + [anon_sym_for] = ACTIONS(2081), + [anon_sym_while] = ACTIONS(2081), + [anon_sym_try] = ACTIONS(2081), + [anon_sym_with] = ACTIONS(2081), + [anon_sym_def] = ACTIONS(2081), + [anon_sym_global] = ACTIONS(2081), + [anon_sym_nonlocal] = ACTIONS(2081), + [anon_sym_exec] = ACTIONS(2081), + [anon_sym_type] = ACTIONS(2081), + [anon_sym_class] = ACTIONS(2081), [anon_sym_LBRACK] = ACTIONS(2083), [anon_sym_AT] = ACTIONS(2083), [anon_sym_DASH] = ACTIONS(2083), [anon_sym_LBRACE] = ACTIONS(2083), [anon_sym_PLUS] = ACTIONS(2083), - [anon_sym_not] = ACTIONS(2079), + [anon_sym_not] = ACTIONS(2081), [anon_sym_AMP] = ACTIONS(2083), [anon_sym_TILDE] = ACTIONS(2083), [anon_sym_LT] = ACTIONS(2083), - [anon_sym_lambda] = ACTIONS(2079), - [anon_sym_yield] = ACTIONS(2079), + [anon_sym_lambda] = ACTIONS(2081), + [anon_sym_yield] = ACTIONS(2081), [anon_sym_DOT_DOT_DOT] = ACTIONS(2083), - [anon_sym_None] = ACTIONS(2079), - [sym_integer] = ACTIONS(2079), + [anon_sym_None] = ACTIONS(2081), + [sym_integer] = ACTIONS(2081), [sym_float] = ACTIONS(2083), - [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(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), + [anon_sym_await] = ACTIONS(2081), + [anon_sym_api] = ACTIONS(2081), + [sym_true] = ACTIONS(2081), + [sym_false] = ACTIONS(2081), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2081), + [anon_sym_include] = ACTIONS(2081), + [anon_sym_DEF] = ACTIONS(2081), + [anon_sym_cdef] = ACTIONS(2081), + [anon_sym_cpdef] = ACTIONS(2081), + [anon_sym_int] = ACTIONS(2081), + [anon_sym_double] = ACTIONS(2081), + [anon_sym_complex] = ACTIONS(2081), + [anon_sym_new] = ACTIONS(2081), + [anon_sym_signed] = ACTIONS(2081), + [anon_sym_unsigned] = ACTIONS(2081), + [anon_sym_char] = ACTIONS(2081), + [anon_sym_short] = ACTIONS(2081), + [anon_sym_long] = ACTIONS(2081), + [anon_sym_const] = ACTIONS(2081), + [anon_sym_volatile] = ACTIONS(2081), + [anon_sym_ctypedef] = ACTIONS(2081), + [anon_sym_struct] = ACTIONS(2081), + [anon_sym_union] = ACTIONS(2081), + [anon_sym_enum] = ACTIONS(2081), + [anon_sym_cppclass] = ACTIONS(2081), + [anon_sym_fused] = ACTIONS(2081), + [anon_sym_public] = ACTIONS(2081), + [anon_sym_packed] = ACTIONS(2081), + [anon_sym_inline] = ACTIONS(2081), + [anon_sym_readonly] = ACTIONS(2081), + [anon_sym_sizeof] = ACTIONS(2081), [sym__dedent] = ACTIONS(2083), [sym_string_start] = ACTIONS(2083), }, - [627] = { + [637] = { [sym_identifier] = ACTIONS(2085), [anon_sym_SEMI] = ACTIONS(2087), [anon_sym_import] = ACTIONS(2085), @@ -88776,7 +89628,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2087), [sym_string_start] = ACTIONS(2087), }, - [628] = { + [638] = { [sym_identifier] = ACTIONS(2089), [anon_sym_SEMI] = ACTIONS(2091), [anon_sym_import] = ACTIONS(2089), @@ -88856,7 +89708,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2091), [sym_string_start] = ACTIONS(2091), }, - [629] = { + [639] = { [sym_identifier] = ACTIONS(2093), [anon_sym_SEMI] = ACTIONS(2095), [anon_sym_import] = ACTIONS(2093), @@ -88936,7 +89788,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2095), [sym_string_start] = ACTIONS(2095), }, - [630] = { + [640] = { [sym_identifier] = ACTIONS(2097), [anon_sym_SEMI] = ACTIONS(2099), [anon_sym_import] = ACTIONS(2097), @@ -89016,7 +89868,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2099), [sym_string_start] = ACTIONS(2099), }, - [631] = { + [641] = { [sym_identifier] = ACTIONS(2101), [anon_sym_SEMI] = ACTIONS(2103), [anon_sym_import] = ACTIONS(2101), @@ -89096,7 +89948,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2103), [sym_string_start] = ACTIONS(2103), }, - [632] = { + [642] = { [sym_identifier] = ACTIONS(2105), [anon_sym_SEMI] = ACTIONS(2107), [anon_sym_import] = ACTIONS(2105), @@ -89176,7 +90028,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2107), [sym_string_start] = ACTIONS(2107), }, - [633] = { + [643] = { [sym_identifier] = ACTIONS(2109), [anon_sym_SEMI] = ACTIONS(2111), [anon_sym_import] = ACTIONS(2109), @@ -89256,7 +90108,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2111), [sym_string_start] = ACTIONS(2111), }, - [634] = { + [644] = { [sym_identifier] = ACTIONS(2113), [anon_sym_SEMI] = ACTIONS(2115), [anon_sym_import] = ACTIONS(2113), @@ -89336,7 +90188,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2115), [sym_string_start] = ACTIONS(2115), }, - [635] = { + [645] = { [sym_identifier] = ACTIONS(2117), [anon_sym_SEMI] = ACTIONS(2119), [anon_sym_import] = ACTIONS(2117), @@ -89416,7 +90268,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2119), [sym_string_start] = ACTIONS(2119), }, - [636] = { + [646] = { [sym_identifier] = ACTIONS(2121), [anon_sym_SEMI] = ACTIONS(2123), [anon_sym_import] = ACTIONS(2121), @@ -89496,7 +90348,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2123), [sym_string_start] = ACTIONS(2123), }, - [637] = { + [647] = { [sym_identifier] = ACTIONS(2125), [anon_sym_SEMI] = ACTIONS(2127), [anon_sym_import] = ACTIONS(2125), @@ -89576,7 +90428,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2127), [sym_string_start] = ACTIONS(2127), }, - [638] = { + [648] = { [sym_identifier] = ACTIONS(2129), [anon_sym_SEMI] = ACTIONS(2131), [anon_sym_import] = ACTIONS(2129), @@ -89656,7 +90508,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2131), [sym_string_start] = ACTIONS(2131), }, - [639] = { + [649] = { [sym_identifier] = ACTIONS(2133), [anon_sym_SEMI] = ACTIONS(2135), [anon_sym_import] = ACTIONS(2133), @@ -89736,7 +90588,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2135), [sym_string_start] = ACTIONS(2135), }, - [640] = { + [650] = { [sym_identifier] = ACTIONS(2137), [anon_sym_SEMI] = ACTIONS(2139), [anon_sym_import] = ACTIONS(2137), @@ -89816,7 +90668,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2139), [sym_string_start] = ACTIONS(2139), }, - [641] = { + [651] = { [sym_identifier] = ACTIONS(2141), [anon_sym_SEMI] = ACTIONS(2143), [anon_sym_import] = ACTIONS(2141), @@ -89896,7 +90748,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2143), [sym_string_start] = ACTIONS(2143), }, - [642] = { + [652] = { [sym_identifier] = ACTIONS(2145), [anon_sym_SEMI] = ACTIONS(2147), [anon_sym_import] = ACTIONS(2145), @@ -89976,7 +90828,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2147), [sym_string_start] = ACTIONS(2147), }, - [643] = { + [653] = { [sym_identifier] = ACTIONS(2149), [anon_sym_SEMI] = ACTIONS(2151), [anon_sym_import] = ACTIONS(2149), @@ -90056,7 +90908,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2151), [sym_string_start] = ACTIONS(2151), }, - [644] = { + [654] = { [sym_identifier] = ACTIONS(2153), [anon_sym_SEMI] = ACTIONS(2155), [anon_sym_import] = ACTIONS(2153), @@ -90136,7 +90988,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2155), [sym_string_start] = ACTIONS(2155), }, - [645] = { + [655] = { [sym_identifier] = ACTIONS(2157), [anon_sym_SEMI] = ACTIONS(2159), [anon_sym_import] = ACTIONS(2157), @@ -90216,7 +91068,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2159), [sym_string_start] = ACTIONS(2159), }, - [646] = { + [656] = { [sym_identifier] = ACTIONS(2161), [anon_sym_SEMI] = ACTIONS(2163), [anon_sym_import] = ACTIONS(2161), @@ -90296,87 +91148,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2163), [sym_string_start] = ACTIONS(2163), }, - [647] = { - [sym_list_splat_pattern] = STATE(2357), - [sym_primary_expression] = STATE(2136), - [sym_binary_operator] = STATE(2255), - [sym_unary_operator] = STATE(2255), - [sym_attribute] = STATE(2255), - [sym_subscript] = STATE(2255), - [sym_ellipsis] = STATE(2255), - [sym_call] = STATE(2255), - [sym_list] = STATE(2255), - [sym_set] = STATE(2255), - [sym_tuple] = STATE(2255), - [sym_dictionary] = STATE(2255), - [sym_list_comprehension] = STATE(2255), - [sym_dictionary_comprehension] = STATE(2255), - [sym_set_comprehension] = STATE(2255), - [sym_generator_expression] = STATE(2255), - [sym_parenthesized_expression] = STATE(2255), - [sym_concatenated_string] = STATE(2255), - [sym_string] = STATE(2073), - [sym_none] = STATE(2255), - [sym_await] = STATE(2255), - [sym_sizeof_expression] = STATE(2255), - [sym_cast_expression] = STATE(2255), - [sym_identifier] = ACTIONS(1905), - [anon_sym_DOT] = ACTIONS(581), - [anon_sym_LPAREN] = ACTIONS(1907), - [anon_sym_COMMA] = ACTIONS(586), - [anon_sym_as] = ACTIONS(581), - [anon_sym_STAR] = ACTIONS(1909), - [anon_sym_print] = ACTIONS(1911), - [anon_sym_GT_GT] = ACTIONS(579), - [anon_sym_COLON_EQ] = ACTIONS(596), - [anon_sym_if] = ACTIONS(581), - [anon_sym_COLON] = ACTIONS(581), - [anon_sym_match] = ACTIONS(1911), - [anon_sym_async] = ACTIONS(1911), - [anon_sym_in] = ACTIONS(581), - [anon_sym_STAR_STAR] = ACTIONS(579), - [anon_sym_exec] = ACTIONS(1911), - [anon_sym_EQ] = ACTIONS(581), - [anon_sym_LBRACK] = ACTIONS(1913), - [anon_sym_AT] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(1915), - [anon_sym_PIPE] = ACTIONS(579), - [anon_sym_LBRACE] = ACTIONS(1917), - [anon_sym_RBRACE] = ACTIONS(579), - [anon_sym_PLUS] = ACTIONS(1915), - [anon_sym_not] = ACTIONS(581), - [anon_sym_and] = ACTIONS(581), - [anon_sym_or] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(581), - [anon_sym_PERCENT] = ACTIONS(579), - [anon_sym_SLASH_SLASH] = ACTIONS(579), - [anon_sym_AMP] = ACTIONS(1915), - [anon_sym_CARET] = ACTIONS(579), - [anon_sym_LT_LT] = ACTIONS(579), - [anon_sym_TILDE] = ACTIONS(1915), - [anon_sym_is] = ACTIONS(581), - [anon_sym_LT] = ACTIONS(1919), - [anon_sym_LT_EQ] = ACTIONS(579), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_GT_EQ] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_GT] = ACTIONS(579), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1921), - [anon_sym_None] = ACTIONS(1923), - [sym_type_conversion] = ACTIONS(579), - [sym_integer] = ACTIONS(1905), - [sym_float] = ACTIONS(1925), - [anon_sym_await] = ACTIONS(1927), - [anon_sym_api] = ACTIONS(1911), - [sym_true] = ACTIONS(1905), - [sym_false] = ACTIONS(1905), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(1929), - [sym_string_start] = ACTIONS(1931), - }, - [648] = { + [657] = { [sym_identifier] = ACTIONS(2165), [anon_sym_SEMI] = ACTIONS(2167), [anon_sym_import] = ACTIONS(2165), @@ -90456,7 +91228,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2167), [sym_string_start] = ACTIONS(2167), }, - [649] = { + [658] = { [sym_identifier] = ACTIONS(2169), [anon_sym_SEMI] = ACTIONS(2171), [anon_sym_import] = ACTIONS(2169), @@ -90536,7 +91308,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2171), [sym_string_start] = ACTIONS(2171), }, - [650] = { + [659] = { [sym_identifier] = ACTIONS(2173), [anon_sym_SEMI] = ACTIONS(2175), [anon_sym_import] = ACTIONS(2173), @@ -90616,7 +91388,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2175), [sym_string_start] = ACTIONS(2175), }, - [651] = { + [660] = { [sym_identifier] = ACTIONS(2177), [anon_sym_SEMI] = ACTIONS(2179), [anon_sym_import] = ACTIONS(2177), @@ -90696,7 +91468,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2179), [sym_string_start] = ACTIONS(2179), }, - [652] = { + [661] = { [sym_identifier] = ACTIONS(2181), [anon_sym_SEMI] = ACTIONS(2183), [anon_sym_import] = ACTIONS(2181), @@ -90776,7 +91548,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2183), [sym_string_start] = ACTIONS(2183), }, - [653] = { + [662] = { [sym_identifier] = ACTIONS(2185), [anon_sym_SEMI] = ACTIONS(2187), [anon_sym_import] = ACTIONS(2185), @@ -90856,87 +91628,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2187), [sym_string_start] = ACTIONS(2187), }, - [654] = { - [sym_list_splat_pattern] = STATE(2432), - [sym_primary_expression] = STATE(3190), - [sym_binary_operator] = STATE(2549), - [sym_unary_operator] = STATE(2549), - [sym_attribute] = STATE(2549), - [sym_subscript] = STATE(2549), - [sym_ellipsis] = STATE(2549), - [sym_call] = STATE(2549), - [sym_list] = STATE(2549), - [sym_set] = STATE(2549), - [sym_tuple] = STATE(2549), - [sym_dictionary] = STATE(2549), - [sym_list_comprehension] = STATE(2549), - [sym_dictionary_comprehension] = STATE(2549), - [sym_set_comprehension] = STATE(2549), - [sym_generator_expression] = STATE(2549), - [sym_parenthesized_expression] = STATE(2549), - [sym_concatenated_string] = STATE(2549), - [sym_string] = STATE(2140), - [sym_none] = STATE(2549), - [sym_await] = STATE(2549), - [sym_sizeof_expression] = STATE(2549), - [sym_cast_expression] = STATE(2549), - [sym_identifier] = ACTIONS(1237), - [anon_sym_DOT] = ACTIONS(1297), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_COMMA] = ACTIONS(1295), - [anon_sym_as] = ACTIONS(1300), - [anon_sym_STAR] = ACTIONS(1302), - [anon_sym_print] = ACTIONS(1304), - [anon_sym_GT_GT] = ACTIONS(1498), - [anon_sym_if] = ACTIONS(1300), - [anon_sym_COLON] = ACTIONS(1295), - [anon_sym_match] = ACTIONS(1304), - [anon_sym_async] = ACTIONS(1304), - [anon_sym_for] = ACTIONS(1300), - [anon_sym_in] = ACTIONS(1300), - [anon_sym_STAR_STAR] = ACTIONS(1498), - [anon_sym_exec] = ACTIONS(1304), - [anon_sym_EQ] = ACTIONS(1300), - [anon_sym_LBRACK] = ACTIONS(1219), - [anon_sym_AT] = ACTIONS(1498), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_PIPE] = ACTIONS(1498), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_RBRACE] = ACTIONS(1295), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_not] = ACTIONS(1300), - [anon_sym_and] = ACTIONS(1300), - [anon_sym_or] = ACTIONS(1300), - [anon_sym_SLASH] = ACTIONS(1297), - [anon_sym_PERCENT] = ACTIONS(1498), - [anon_sym_SLASH_SLASH] = ACTIONS(1498), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_CARET] = ACTIONS(1498), - [anon_sym_LT_LT] = ACTIONS(1498), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_is] = ACTIONS(1300), - [anon_sym_LT] = ACTIONS(1310), - [anon_sym_LT_EQ] = ACTIONS(1295), - [anon_sym_EQ_EQ] = ACTIONS(1295), - [anon_sym_BANG_EQ] = ACTIONS(1295), - [anon_sym_GT_EQ] = ACTIONS(1295), - [anon_sym_GT] = ACTIONS(1300), - [anon_sym_LT_GT] = ACTIONS(1295), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), - [anon_sym_None] = ACTIONS(1235), - [sym_type_conversion] = ACTIONS(1295), - [sym_integer] = ACTIONS(1237), - [sym_float] = ACTIONS(1239), - [anon_sym_await] = ACTIONS(1312), - [anon_sym_api] = ACTIONS(1304), - [sym_true] = ACTIONS(1237), - [sym_false] = ACTIONS(1237), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(1245), - [sym_string_start] = ACTIONS(1247), - }, - [655] = { + [663] = { [sym_identifier] = ACTIONS(2189), [anon_sym_SEMI] = ACTIONS(2191), [anon_sym_import] = ACTIONS(2189), @@ -91016,7 +91708,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2191), [sym_string_start] = ACTIONS(2191), }, - [656] = { + [664] = { [sym_identifier] = ACTIONS(2193), [anon_sym_SEMI] = ACTIONS(2195), [anon_sym_import] = ACTIONS(2193), @@ -91096,7 +91788,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2195), [sym_string_start] = ACTIONS(2195), }, - [657] = { + [665] = { [sym_identifier] = ACTIONS(2197), [anon_sym_SEMI] = ACTIONS(2199), [anon_sym_import] = ACTIONS(2197), @@ -91176,7 +91868,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2199), [sym_string_start] = ACTIONS(2199), }, - [658] = { + [666] = { [sym_identifier] = ACTIONS(2201), [anon_sym_SEMI] = ACTIONS(2203), [anon_sym_import] = ACTIONS(2201), @@ -91256,7 +91948,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2203), [sym_string_start] = ACTIONS(2203), }, - [659] = { + [667] = { [sym_identifier] = ACTIONS(2205), [anon_sym_SEMI] = ACTIONS(2207), [anon_sym_import] = ACTIONS(2205), @@ -91336,7 +92028,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2207), [sym_string_start] = ACTIONS(2207), }, - [660] = { + [668] = { [sym_identifier] = ACTIONS(2209), [anon_sym_SEMI] = ACTIONS(2211), [anon_sym_import] = ACTIONS(2209), @@ -91416,7 +92108,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2211), [sym_string_start] = ACTIONS(2211), }, - [661] = { + [669] = { [sym_identifier] = ACTIONS(2213), [anon_sym_SEMI] = ACTIONS(2215), [anon_sym_import] = ACTIONS(2213), @@ -91496,7 +92188,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2215), [sym_string_start] = ACTIONS(2215), }, - [662] = { + [670] = { [sym_identifier] = ACTIONS(2217), [anon_sym_SEMI] = ACTIONS(2219), [anon_sym_import] = ACTIONS(2217), @@ -91576,7 +92268,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2219), [sym_string_start] = ACTIONS(2219), }, - [663] = { + [671] = { [sym_identifier] = ACTIONS(2221), [anon_sym_SEMI] = ACTIONS(2223), [anon_sym_import] = ACTIONS(2221), @@ -91656,7 +92348,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2223), [sym_string_start] = ACTIONS(2223), }, - [664] = { + [672] = { [sym_identifier] = ACTIONS(2225), [anon_sym_SEMI] = ACTIONS(2227), [anon_sym_import] = ACTIONS(2225), @@ -91736,7 +92428,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2227), [sym_string_start] = ACTIONS(2227), }, - [665] = { + [673] = { [sym_identifier] = ACTIONS(2229), [anon_sym_SEMI] = ACTIONS(2231), [anon_sym_import] = ACTIONS(2229), @@ -91816,7 +92508,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2231), [sym_string_start] = ACTIONS(2231), }, - [666] = { + [674] = { [sym_identifier] = ACTIONS(2233), [anon_sym_SEMI] = ACTIONS(2235), [anon_sym_import] = ACTIONS(2233), @@ -91896,7 +92588,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2235), [sym_string_start] = ACTIONS(2235), }, - [667] = { + [675] = { [sym_identifier] = ACTIONS(2237), [anon_sym_SEMI] = ACTIONS(2239), [anon_sym_import] = ACTIONS(2237), @@ -91976,167 +92668,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2239), [sym_string_start] = ACTIONS(2239), }, - [668] = { - [sym_identifier] = ACTIONS(2233), - [anon_sym_SEMI] = ACTIONS(2235), - [anon_sym_import] = ACTIONS(2233), - [anon_sym_cimport] = ACTIONS(2233), - [anon_sym_from] = ACTIONS(2233), - [anon_sym_LPAREN] = ACTIONS(2235), - [anon_sym_STAR] = ACTIONS(2235), - [anon_sym_print] = ACTIONS(2233), - [anon_sym_assert] = ACTIONS(2233), - [anon_sym_return] = ACTIONS(2233), - [anon_sym_del] = ACTIONS(2233), - [anon_sym_raise] = ACTIONS(2233), - [anon_sym_pass] = ACTIONS(2233), - [anon_sym_break] = ACTIONS(2233), - [anon_sym_continue] = ACTIONS(2233), - [anon_sym_if] = ACTIONS(2233), - [anon_sym_match] = ACTIONS(2233), - [anon_sym_async] = ACTIONS(2233), - [anon_sym_for] = ACTIONS(2233), - [anon_sym_while] = ACTIONS(2233), - [anon_sym_try] = ACTIONS(2233), - [anon_sym_with] = ACTIONS(2233), - [anon_sym_def] = ACTIONS(2233), - [anon_sym_global] = ACTIONS(2233), - [anon_sym_nonlocal] = ACTIONS(2233), - [anon_sym_exec] = ACTIONS(2233), - [anon_sym_type] = ACTIONS(2233), - [anon_sym_class] = ACTIONS(2233), - [anon_sym_LBRACK] = ACTIONS(2235), - [anon_sym_AT] = ACTIONS(2235), - [anon_sym_DASH] = ACTIONS(2235), - [anon_sym_LBRACE] = ACTIONS(2235), - [anon_sym_PLUS] = ACTIONS(2235), - [anon_sym_not] = ACTIONS(2233), - [anon_sym_AMP] = ACTIONS(2235), - [anon_sym_TILDE] = ACTIONS(2235), - [anon_sym_LT] = ACTIONS(2235), - [anon_sym_lambda] = ACTIONS(2233), - [anon_sym_yield] = ACTIONS(2233), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2235), - [anon_sym_None] = ACTIONS(2233), - [sym_integer] = ACTIONS(2233), - [sym_float] = ACTIONS(2235), - [anon_sym_await] = ACTIONS(2233), - [anon_sym_api] = ACTIONS(2233), - [sym_true] = ACTIONS(2233), - [sym_false] = ACTIONS(2233), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2233), - [anon_sym_include] = ACTIONS(2233), - [anon_sym_DEF] = ACTIONS(2233), - [anon_sym_cdef] = ACTIONS(2233), - [anon_sym_cpdef] = ACTIONS(2233), - [anon_sym_int] = ACTIONS(2233), - [anon_sym_double] = ACTIONS(2233), - [anon_sym_complex] = ACTIONS(2233), - [anon_sym_new] = ACTIONS(2233), - [anon_sym_signed] = ACTIONS(2233), - [anon_sym_unsigned] = ACTIONS(2233), - [anon_sym_char] = ACTIONS(2233), - [anon_sym_short] = ACTIONS(2233), - [anon_sym_long] = ACTIONS(2233), - [anon_sym_const] = ACTIONS(2233), - [anon_sym_volatile] = ACTIONS(2233), - [anon_sym_ctypedef] = ACTIONS(2233), - [anon_sym_struct] = ACTIONS(2233), - [anon_sym_union] = ACTIONS(2233), - [anon_sym_enum] = ACTIONS(2233), - [anon_sym_cppclass] = ACTIONS(2233), - [anon_sym_fused] = ACTIONS(2233), - [anon_sym_public] = ACTIONS(2233), - [anon_sym_packed] = ACTIONS(2233), - [anon_sym_inline] = ACTIONS(2233), - [anon_sym_readonly] = ACTIONS(2233), - [anon_sym_sizeof] = ACTIONS(2233), - [sym__dedent] = ACTIONS(2235), - [sym_string_start] = ACTIONS(2235), - }, - [669] = { - [sym_identifier] = ACTIONS(2233), - [anon_sym_SEMI] = ACTIONS(2235), - [anon_sym_import] = ACTIONS(2233), - [anon_sym_cimport] = ACTIONS(2233), - [anon_sym_from] = ACTIONS(2233), - [anon_sym_LPAREN] = ACTIONS(2235), - [anon_sym_STAR] = ACTIONS(2235), - [anon_sym_print] = ACTIONS(2233), - [anon_sym_assert] = ACTIONS(2233), - [anon_sym_return] = ACTIONS(2233), - [anon_sym_del] = ACTIONS(2233), - [anon_sym_raise] = ACTIONS(2233), - [anon_sym_pass] = ACTIONS(2233), - [anon_sym_break] = ACTIONS(2233), - [anon_sym_continue] = ACTIONS(2233), - [anon_sym_if] = ACTIONS(2233), - [anon_sym_match] = ACTIONS(2233), - [anon_sym_async] = ACTIONS(2233), - [anon_sym_for] = ACTIONS(2233), - [anon_sym_while] = ACTIONS(2233), - [anon_sym_try] = ACTIONS(2233), - [anon_sym_with] = ACTIONS(2233), - [anon_sym_def] = ACTIONS(2233), - [anon_sym_global] = ACTIONS(2233), - [anon_sym_nonlocal] = ACTIONS(2233), - [anon_sym_exec] = ACTIONS(2233), - [anon_sym_type] = ACTIONS(2233), - [anon_sym_class] = ACTIONS(2233), - [anon_sym_LBRACK] = ACTIONS(2235), - [anon_sym_AT] = ACTIONS(2235), - [anon_sym_DASH] = ACTIONS(2235), - [anon_sym_LBRACE] = ACTIONS(2235), - [anon_sym_PLUS] = ACTIONS(2235), - [anon_sym_not] = ACTIONS(2233), - [anon_sym_AMP] = ACTIONS(2235), - [anon_sym_TILDE] = ACTIONS(2235), - [anon_sym_LT] = ACTIONS(2235), - [anon_sym_lambda] = ACTIONS(2233), - [anon_sym_yield] = ACTIONS(2233), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2235), - [anon_sym_None] = ACTIONS(2233), - [sym_integer] = ACTIONS(2233), - [sym_float] = ACTIONS(2235), - [anon_sym_await] = ACTIONS(2233), - [anon_sym_api] = ACTIONS(2233), - [sym_true] = ACTIONS(2233), - [sym_false] = ACTIONS(2233), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2233), - [anon_sym_include] = ACTIONS(2233), - [anon_sym_DEF] = ACTIONS(2233), - [anon_sym_cdef] = ACTIONS(2233), - [anon_sym_cpdef] = ACTIONS(2233), - [anon_sym_int] = ACTIONS(2233), - [anon_sym_double] = ACTIONS(2233), - [anon_sym_complex] = ACTIONS(2233), - [anon_sym_new] = ACTIONS(2233), - [anon_sym_signed] = ACTIONS(2233), - [anon_sym_unsigned] = ACTIONS(2233), - [anon_sym_char] = ACTIONS(2233), - [anon_sym_short] = ACTIONS(2233), - [anon_sym_long] = ACTIONS(2233), - [anon_sym_const] = ACTIONS(2233), - [anon_sym_volatile] = ACTIONS(2233), - [anon_sym_ctypedef] = ACTIONS(2233), - [anon_sym_struct] = ACTIONS(2233), - [anon_sym_union] = ACTIONS(2233), - [anon_sym_enum] = ACTIONS(2233), - [anon_sym_cppclass] = ACTIONS(2233), - [anon_sym_fused] = ACTIONS(2233), - [anon_sym_public] = ACTIONS(2233), - [anon_sym_packed] = ACTIONS(2233), - [anon_sym_inline] = ACTIONS(2233), - [anon_sym_readonly] = ACTIONS(2233), - [anon_sym_sizeof] = ACTIONS(2233), - [sym__dedent] = ACTIONS(2235), - [sym_string_start] = ACTIONS(2235), - }, - [670] = { + [676] = { [sym_identifier] = ACTIONS(2241), [anon_sym_SEMI] = ACTIONS(2243), [anon_sym_import] = ACTIONS(2241), @@ -92216,7 +92748,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2243), [sym_string_start] = ACTIONS(2243), }, - [671] = { + [677] = { [sym_identifier] = ACTIONS(2245), [anon_sym_SEMI] = ACTIONS(2247), [anon_sym_import] = ACTIONS(2245), @@ -92296,7 +92828,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2247), [sym_string_start] = ACTIONS(2247), }, - [672] = { + [678] = { [sym_identifier] = ACTIONS(2249), [anon_sym_SEMI] = ACTIONS(2251), [anon_sym_import] = ACTIONS(2249), @@ -92376,7 +92908,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2251), [sym_string_start] = ACTIONS(2251), }, - [673] = { + [679] = { [sym_identifier] = ACTIONS(2253), [anon_sym_SEMI] = ACTIONS(2255), [anon_sym_import] = ACTIONS(2253), @@ -92456,87 +92988,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2255), [sym_string_start] = ACTIONS(2255), }, - [674] = { - [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(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), - }, - [675] = { + [680] = { [sym_identifier] = ACTIONS(2257), [anon_sym_SEMI] = ACTIONS(2259), [anon_sym_import] = ACTIONS(2257), @@ -92616,7 +93068,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2259), [sym_string_start] = ACTIONS(2259), }, - [676] = { + [681] = { [sym_identifier] = ACTIONS(2261), [anon_sym_SEMI] = ACTIONS(2263), [anon_sym_import] = ACTIONS(2261), @@ -92696,7 +93148,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2263), [sym_string_start] = ACTIONS(2263), }, - [677] = { + [682] = { [sym_identifier] = ACTIONS(2265), [anon_sym_SEMI] = ACTIONS(2267), [anon_sym_import] = ACTIONS(2265), @@ -92776,7 +93228,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2267), [sym_string_start] = ACTIONS(2267), }, - [678] = { + [683] = { [sym_identifier] = ACTIONS(2269), [anon_sym_SEMI] = ACTIONS(2271), [anon_sym_import] = ACTIONS(2269), @@ -92856,7 +93308,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2271), [sym_string_start] = ACTIONS(2271), }, - [679] = { + [684] = { [sym_identifier] = ACTIONS(2273), [anon_sym_SEMI] = ACTIONS(2275), [anon_sym_import] = ACTIONS(2273), @@ -92936,7 +93388,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2275), [sym_string_start] = ACTIONS(2275), }, - [680] = { + [685] = { [sym_identifier] = ACTIONS(2277), [anon_sym_SEMI] = ACTIONS(2279), [anon_sym_import] = ACTIONS(2277), @@ -93016,7 +93468,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2279), [sym_string_start] = ACTIONS(2279), }, - [681] = { + [686] = { [sym_identifier] = ACTIONS(2281), [anon_sym_SEMI] = ACTIONS(2283), [anon_sym_import] = ACTIONS(2281), @@ -93096,7 +93548,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2283), [sym_string_start] = ACTIONS(2283), }, - [682] = { + [687] = { [sym_identifier] = ACTIONS(2285), [anon_sym_SEMI] = ACTIONS(2287), [anon_sym_import] = ACTIONS(2285), @@ -93176,7 +93628,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2287), [sym_string_start] = ACTIONS(2287), }, - [683] = { + [688] = { [sym_identifier] = ACTIONS(2289), [anon_sym_SEMI] = ACTIONS(2291), [anon_sym_import] = ACTIONS(2289), @@ -93256,87 +93708,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2291), [sym_string_start] = ACTIONS(2291), }, - [684] = { - [sym_identifier] = ACTIONS(2185), - [anon_sym_SEMI] = ACTIONS(2187), - [anon_sym_import] = ACTIONS(2185), - [anon_sym_cimport] = ACTIONS(2185), - [anon_sym_from] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(2187), - [anon_sym_STAR] = ACTIONS(2187), - [anon_sym_print] = ACTIONS(2185), - [anon_sym_assert] = ACTIONS(2185), - [anon_sym_return] = ACTIONS(2185), - [anon_sym_del] = ACTIONS(2185), - [anon_sym_raise] = ACTIONS(2185), - [anon_sym_pass] = ACTIONS(2185), - [anon_sym_break] = ACTIONS(2185), - [anon_sym_continue] = ACTIONS(2185), - [anon_sym_if] = ACTIONS(2185), - [anon_sym_match] = ACTIONS(2185), - [anon_sym_async] = ACTIONS(2185), - [anon_sym_for] = ACTIONS(2185), - [anon_sym_while] = ACTIONS(2185), - [anon_sym_try] = ACTIONS(2185), - [anon_sym_with] = ACTIONS(2185), - [anon_sym_def] = ACTIONS(2185), - [anon_sym_global] = ACTIONS(2185), - [anon_sym_nonlocal] = ACTIONS(2185), - [anon_sym_exec] = ACTIONS(2185), - [anon_sym_type] = ACTIONS(2185), - [anon_sym_class] = ACTIONS(2185), - [anon_sym_LBRACK] = ACTIONS(2187), - [anon_sym_AT] = ACTIONS(2187), - [anon_sym_DASH] = ACTIONS(2187), - [anon_sym_LBRACE] = ACTIONS(2187), - [anon_sym_PLUS] = ACTIONS(2187), - [anon_sym_not] = ACTIONS(2185), - [anon_sym_AMP] = ACTIONS(2187), - [anon_sym_TILDE] = ACTIONS(2187), - [anon_sym_LT] = ACTIONS(2187), - [anon_sym_lambda] = ACTIONS(2185), - [anon_sym_yield] = ACTIONS(2185), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2187), - [anon_sym_None] = ACTIONS(2185), - [sym_integer] = ACTIONS(2185), - [sym_float] = ACTIONS(2187), - [anon_sym_await] = ACTIONS(2185), - [anon_sym_api] = ACTIONS(2185), - [sym_true] = ACTIONS(2185), - [sym_false] = ACTIONS(2185), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2185), - [anon_sym_include] = ACTIONS(2185), - [anon_sym_DEF] = ACTIONS(2185), - [anon_sym_cdef] = ACTIONS(2185), - [anon_sym_cpdef] = ACTIONS(2185), - [anon_sym_int] = ACTIONS(2185), - [anon_sym_double] = ACTIONS(2185), - [anon_sym_complex] = ACTIONS(2185), - [anon_sym_new] = ACTIONS(2185), - [anon_sym_signed] = ACTIONS(2185), - [anon_sym_unsigned] = ACTIONS(2185), - [anon_sym_char] = ACTIONS(2185), - [anon_sym_short] = ACTIONS(2185), - [anon_sym_long] = ACTIONS(2185), - [anon_sym_const] = ACTIONS(2185), - [anon_sym_volatile] = ACTIONS(2185), - [anon_sym_ctypedef] = ACTIONS(2185), - [anon_sym_struct] = ACTIONS(2185), - [anon_sym_union] = ACTIONS(2185), - [anon_sym_enum] = ACTIONS(2185), - [anon_sym_cppclass] = ACTIONS(2185), - [anon_sym_fused] = ACTIONS(2185), - [anon_sym_public] = ACTIONS(2185), - [anon_sym_packed] = ACTIONS(2185), - [anon_sym_inline] = ACTIONS(2185), - [anon_sym_readonly] = ACTIONS(2185), - [anon_sym_sizeof] = ACTIONS(2185), - [sym__dedent] = ACTIONS(2187), - [sym_string_start] = ACTIONS(2187), - }, - [685] = { + [689] = { [sym_identifier] = ACTIONS(2293), [anon_sym_SEMI] = ACTIONS(2295), [anon_sym_import] = ACTIONS(2293), @@ -93416,7 +93788,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2295), [sym_string_start] = ACTIONS(2295), }, - [686] = { + [690] = { [sym_identifier] = ACTIONS(2297), [anon_sym_SEMI] = ACTIONS(2299), [anon_sym_import] = ACTIONS(2297), @@ -93496,7 +93868,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2299), [sym_string_start] = ACTIONS(2299), }, - [687] = { + [691] = { [sym_identifier] = ACTIONS(2301), [anon_sym_SEMI] = ACTIONS(2303), [anon_sym_import] = ACTIONS(2301), @@ -93576,167 +93948,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2303), [sym_string_start] = ACTIONS(2303), }, - [688] = { - [sym_identifier] = ACTIONS(2229), - [anon_sym_SEMI] = ACTIONS(2231), - [anon_sym_import] = ACTIONS(2229), - [anon_sym_cimport] = ACTIONS(2229), - [anon_sym_from] = ACTIONS(2229), - [anon_sym_LPAREN] = ACTIONS(2231), - [anon_sym_STAR] = ACTIONS(2231), - [anon_sym_print] = ACTIONS(2229), - [anon_sym_assert] = ACTIONS(2229), - [anon_sym_return] = ACTIONS(2229), - [anon_sym_del] = ACTIONS(2229), - [anon_sym_raise] = ACTIONS(2229), - [anon_sym_pass] = ACTIONS(2229), - [anon_sym_break] = ACTIONS(2229), - [anon_sym_continue] = ACTIONS(2229), - [anon_sym_if] = ACTIONS(2229), - [anon_sym_match] = ACTIONS(2229), - [anon_sym_async] = ACTIONS(2229), - [anon_sym_for] = ACTIONS(2229), - [anon_sym_while] = ACTIONS(2229), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_with] = ACTIONS(2229), - [anon_sym_def] = ACTIONS(2229), - [anon_sym_global] = ACTIONS(2229), - [anon_sym_nonlocal] = ACTIONS(2229), - [anon_sym_exec] = ACTIONS(2229), - [anon_sym_type] = ACTIONS(2229), - [anon_sym_class] = ACTIONS(2229), - [anon_sym_LBRACK] = ACTIONS(2231), - [anon_sym_AT] = ACTIONS(2231), - [anon_sym_DASH] = ACTIONS(2231), - [anon_sym_LBRACE] = ACTIONS(2231), - [anon_sym_PLUS] = ACTIONS(2231), - [anon_sym_not] = ACTIONS(2229), - [anon_sym_AMP] = ACTIONS(2231), - [anon_sym_TILDE] = ACTIONS(2231), - [anon_sym_LT] = ACTIONS(2231), - [anon_sym_lambda] = ACTIONS(2229), - [anon_sym_yield] = ACTIONS(2229), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2231), - [anon_sym_None] = ACTIONS(2229), - [sym_integer] = ACTIONS(2229), - [sym_float] = ACTIONS(2231), - [anon_sym_await] = ACTIONS(2229), - [anon_sym_api] = ACTIONS(2229), - [sym_true] = ACTIONS(2229), - [sym_false] = ACTIONS(2229), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2229), - [anon_sym_include] = ACTIONS(2229), - [anon_sym_DEF] = ACTIONS(2229), - [anon_sym_cdef] = ACTIONS(2229), - [anon_sym_cpdef] = ACTIONS(2229), - [anon_sym_int] = ACTIONS(2229), - [anon_sym_double] = ACTIONS(2229), - [anon_sym_complex] = ACTIONS(2229), - [anon_sym_new] = ACTIONS(2229), - [anon_sym_signed] = ACTIONS(2229), - [anon_sym_unsigned] = ACTIONS(2229), - [anon_sym_char] = ACTIONS(2229), - [anon_sym_short] = ACTIONS(2229), - [anon_sym_long] = ACTIONS(2229), - [anon_sym_const] = ACTIONS(2229), - [anon_sym_volatile] = ACTIONS(2229), - [anon_sym_ctypedef] = ACTIONS(2229), - [anon_sym_struct] = ACTIONS(2229), - [anon_sym_union] = ACTIONS(2229), - [anon_sym_enum] = ACTIONS(2229), - [anon_sym_cppclass] = ACTIONS(2229), - [anon_sym_fused] = ACTIONS(2229), - [anon_sym_public] = ACTIONS(2229), - [anon_sym_packed] = ACTIONS(2229), - [anon_sym_inline] = ACTIONS(2229), - [anon_sym_readonly] = ACTIONS(2229), - [anon_sym_sizeof] = ACTIONS(2229), - [sym__dedent] = ACTIONS(2231), - [sym_string_start] = ACTIONS(2231), - }, - [689] = { - [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(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), - }, - [690] = { + [692] = { [sym_identifier] = ACTIONS(2305), [anon_sym_SEMI] = ACTIONS(2307), [anon_sym_import] = ACTIONS(2305), @@ -93816,87 +94028,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2307), [sym_string_start] = ACTIONS(2307), }, - [691] = { - [sym_identifier] = ACTIONS(2249), - [anon_sym_SEMI] = ACTIONS(2251), - [anon_sym_import] = ACTIONS(2249), - [anon_sym_cimport] = ACTIONS(2249), - [anon_sym_from] = ACTIONS(2249), - [anon_sym_LPAREN] = ACTIONS(2251), - [anon_sym_STAR] = ACTIONS(2251), - [anon_sym_print] = ACTIONS(2249), - [anon_sym_assert] = ACTIONS(2249), - [anon_sym_return] = ACTIONS(2249), - [anon_sym_del] = ACTIONS(2249), - [anon_sym_raise] = ACTIONS(2249), - [anon_sym_pass] = ACTIONS(2249), - [anon_sym_break] = ACTIONS(2249), - [anon_sym_continue] = ACTIONS(2249), - [anon_sym_if] = ACTIONS(2249), - [anon_sym_match] = ACTIONS(2249), - [anon_sym_async] = ACTIONS(2249), - [anon_sym_for] = ACTIONS(2249), - [anon_sym_while] = ACTIONS(2249), - [anon_sym_try] = ACTIONS(2249), - [anon_sym_with] = ACTIONS(2249), - [anon_sym_def] = ACTIONS(2249), - [anon_sym_global] = ACTIONS(2249), - [anon_sym_nonlocal] = ACTIONS(2249), - [anon_sym_exec] = ACTIONS(2249), - [anon_sym_type] = ACTIONS(2249), - [anon_sym_class] = ACTIONS(2249), - [anon_sym_LBRACK] = ACTIONS(2251), - [anon_sym_AT] = ACTIONS(2251), - [anon_sym_DASH] = ACTIONS(2251), - [anon_sym_LBRACE] = ACTIONS(2251), - [anon_sym_PLUS] = ACTIONS(2251), - [anon_sym_not] = ACTIONS(2249), - [anon_sym_AMP] = ACTIONS(2251), - [anon_sym_TILDE] = ACTIONS(2251), - [anon_sym_LT] = ACTIONS(2251), - [anon_sym_lambda] = ACTIONS(2249), - [anon_sym_yield] = ACTIONS(2249), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2251), - [anon_sym_None] = ACTIONS(2249), - [sym_integer] = ACTIONS(2249), - [sym_float] = ACTIONS(2251), - [anon_sym_await] = ACTIONS(2249), - [anon_sym_api] = ACTIONS(2249), - [sym_true] = ACTIONS(2249), - [sym_false] = ACTIONS(2249), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2249), - [anon_sym_include] = ACTIONS(2249), - [anon_sym_DEF] = ACTIONS(2249), - [anon_sym_cdef] = ACTIONS(2249), - [anon_sym_cpdef] = ACTIONS(2249), - [anon_sym_int] = ACTIONS(2249), - [anon_sym_double] = ACTIONS(2249), - [anon_sym_complex] = ACTIONS(2249), - [anon_sym_new] = ACTIONS(2249), - [anon_sym_signed] = ACTIONS(2249), - [anon_sym_unsigned] = ACTIONS(2249), - [anon_sym_char] = ACTIONS(2249), - [anon_sym_short] = ACTIONS(2249), - [anon_sym_long] = ACTIONS(2249), - [anon_sym_const] = ACTIONS(2249), - [anon_sym_volatile] = ACTIONS(2249), - [anon_sym_ctypedef] = ACTIONS(2249), - [anon_sym_struct] = ACTIONS(2249), - [anon_sym_union] = ACTIONS(2249), - [anon_sym_enum] = ACTIONS(2249), - [anon_sym_cppclass] = ACTIONS(2249), - [anon_sym_fused] = ACTIONS(2249), - [anon_sym_public] = ACTIONS(2249), - [anon_sym_packed] = ACTIONS(2249), - [anon_sym_inline] = ACTIONS(2249), - [anon_sym_readonly] = ACTIONS(2249), - [anon_sym_sizeof] = ACTIONS(2249), - [sym__dedent] = ACTIONS(2251), - [sym_string_start] = ACTIONS(2251), - }, - [692] = { + [693] = { [sym_identifier] = ACTIONS(2309), [anon_sym_SEMI] = ACTIONS(2311), [anon_sym_import] = ACTIONS(2309), @@ -93976,7 +94108,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2311), [sym_string_start] = ACTIONS(2311), }, - [693] = { + [694] = { [sym_identifier] = ACTIONS(2313), [anon_sym_SEMI] = ACTIONS(2315), [anon_sym_import] = ACTIONS(2313), @@ -94056,14 +94188,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2315), [sym_string_start] = ACTIONS(2315), }, - [694] = { + [695] = { + [sym_list_splat_pattern] = STATE(2284), + [sym_primary_expression] = STATE(2166), + [sym_binary_operator] = STATE(2257), + [sym_unary_operator] = STATE(2257), + [sym_attribute] = STATE(2257), + [sym_subscript] = STATE(2257), + [sym_ellipsis] = STATE(2257), + [sym_call] = STATE(2257), + [sym_list] = STATE(2257), + [sym_set] = STATE(2257), + [sym_tuple] = STATE(2257), + [sym_dictionary] = STATE(2257), + [sym_list_comprehension] = STATE(2257), + [sym_dictionary_comprehension] = STATE(2257), + [sym_set_comprehension] = STATE(2257), + [sym_generator_expression] = STATE(2257), + [sym_parenthesized_expression] = STATE(2257), + [sym_concatenated_string] = STATE(2257), + [sym_string] = STATE(2089), + [sym_none] = STATE(2257), + [sym_await] = STATE(2257), + [sym_sizeof_expression] = STATE(2257), + [sym_cast_expression] = STATE(2257), + [sym_identifier] = ACTIONS(1941), + [anon_sym_DOT] = ACTIONS(1005), + [anon_sym_LPAREN] = ACTIONS(1943), + [anon_sym_COMMA] = ACTIONS(1010), + [anon_sym_as] = ACTIONS(1005), + [anon_sym_STAR] = ACTIONS(1945), + [anon_sym_print] = ACTIONS(1947), + [anon_sym_GT_GT] = ACTIONS(1003), + [anon_sym_COLON_EQ] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1005), + [anon_sym_COLON] = ACTIONS(1005), + [anon_sym_match] = ACTIONS(1947), + [anon_sym_async] = ACTIONS(1947), + [anon_sym_in] = ACTIONS(1005), + [anon_sym_STAR_STAR] = ACTIONS(1003), + [anon_sym_exec] = ACTIONS(1947), + [anon_sym_EQ] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_AT] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1951), + [anon_sym_PIPE] = ACTIONS(1003), + [anon_sym_LBRACE] = ACTIONS(1953), + [anon_sym_RBRACE] = ACTIONS(1003), + [anon_sym_PLUS] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(1005), + [anon_sym_and] = ACTIONS(1005), + [anon_sym_or] = ACTIONS(1005), + [anon_sym_SLASH] = ACTIONS(1005), + [anon_sym_PERCENT] = ACTIONS(1003), + [anon_sym_SLASH_SLASH] = ACTIONS(1003), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1003), + [anon_sym_LT_LT] = ACTIONS(1003), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_is] = ACTIONS(1005), + [anon_sym_LT] = ACTIONS(1955), + [anon_sym_LT_EQ] = ACTIONS(1003), + [anon_sym_EQ_EQ] = ACTIONS(1003), + [anon_sym_BANG_EQ] = ACTIONS(1003), + [anon_sym_GT_EQ] = ACTIONS(1003), + [anon_sym_GT] = ACTIONS(1005), + [anon_sym_LT_GT] = ACTIONS(1003), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1957), + [anon_sym_None] = ACTIONS(1959), + [sym_type_conversion] = ACTIONS(1003), + [sym_integer] = ACTIONS(1941), + [sym_float] = ACTIONS(1961), + [anon_sym_await] = ACTIONS(1963), + [anon_sym_api] = ACTIONS(1947), + [sym_true] = ACTIONS(1941), + [sym_false] = ACTIONS(1941), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1965), + [sym_string_start] = ACTIONS(1967), + }, + [696] = { + [sym_list_splat_pattern] = STATE(2536), + [sym_primary_expression] = STATE(3239), + [sym_binary_operator] = STATE(2401), + [sym_unary_operator] = STATE(2401), + [sym_attribute] = STATE(2401), + [sym_subscript] = STATE(2401), + [sym_ellipsis] = STATE(2401), + [sym_call] = STATE(2401), + [sym_list] = STATE(2401), + [sym_set] = STATE(2401), + [sym_tuple] = STATE(2401), + [sym_dictionary] = STATE(2401), + [sym_list_comprehension] = STATE(2401), + [sym_dictionary_comprehension] = STATE(2401), + [sym_set_comprehension] = STATE(2401), + [sym_generator_expression] = STATE(2401), + [sym_parenthesized_expression] = STATE(2401), + [sym_concatenated_string] = STATE(2401), + [sym_string] = STATE(2161), + [sym_none] = STATE(2401), + [sym_await] = STATE(2401), + [sym_sizeof_expression] = STATE(2401), + [sym_cast_expression] = STATE(2401), + [sym_identifier] = ACTIONS(1237), + [anon_sym_DOT] = ACTIONS(1297), + [anon_sym_LPAREN] = ACTIONS(1213), + [anon_sym_COMMA] = ACTIONS(1295), + [anon_sym_as] = ACTIONS(1300), + [anon_sym_STAR] = ACTIONS(1302), + [anon_sym_print] = ACTIONS(1304), + [anon_sym_GT_GT] = ACTIONS(1498), + [anon_sym_if] = ACTIONS(1300), + [anon_sym_COLON] = ACTIONS(1295), + [anon_sym_match] = ACTIONS(1304), + [anon_sym_async] = ACTIONS(1304), + [anon_sym_for] = ACTIONS(1300), + [anon_sym_in] = ACTIONS(1300), + [anon_sym_STAR_STAR] = ACTIONS(1498), + [anon_sym_exec] = ACTIONS(1304), + [anon_sym_EQ] = ACTIONS(1300), + [anon_sym_LBRACK] = ACTIONS(1219), + [anon_sym_AT] = ACTIONS(1498), + [anon_sym_DASH] = ACTIONS(1308), + [anon_sym_PIPE] = ACTIONS(1498), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_RBRACE] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1308), + [anon_sym_not] = ACTIONS(1300), + [anon_sym_and] = ACTIONS(1300), + [anon_sym_or] = ACTIONS(1300), + [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_PERCENT] = ACTIONS(1498), + [anon_sym_SLASH_SLASH] = ACTIONS(1498), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_CARET] = ACTIONS(1498), + [anon_sym_LT_LT] = ACTIONS(1498), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_is] = ACTIONS(1300), + [anon_sym_LT] = ACTIONS(1310), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_EQ_EQ] = ACTIONS(1295), + [anon_sym_BANG_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_GT] = ACTIONS(1300), + [anon_sym_LT_GT] = ACTIONS(1295), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), + [anon_sym_None] = ACTIONS(1235), + [sym_type_conversion] = ACTIONS(1295), + [sym_integer] = ACTIONS(1237), + [sym_float] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(1312), + [anon_sym_api] = ACTIONS(1304), + [sym_true] = ACTIONS(1237), + [sym_false] = ACTIONS(1237), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1245), + [sym_string_start] = ACTIONS(1247), + }, + [697] = { [sym_identifier] = ACTIONS(2317), [anon_sym_SEMI] = ACTIONS(2319), [anon_sym_import] = ACTIONS(2317), [anon_sym_cimport] = ACTIONS(2317), [anon_sym_from] = ACTIONS(2317), - [anon_sym_LPAREN] = ACTIONS(2319), - [anon_sym_STAR] = ACTIONS(2319), + [anon_sym_LPAREN] = ACTIONS(2321), + [anon_sym_STAR] = ACTIONS(2321), [anon_sym_print] = ACTIONS(2317), [anon_sym_assert] = ACTIONS(2317), [anon_sym_return] = ACTIONS(2317), @@ -94085,21 +94377,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(2317), [anon_sym_type] = ACTIONS(2317), [anon_sym_class] = ACTIONS(2317), - [anon_sym_LBRACK] = ACTIONS(2319), - [anon_sym_AT] = ACTIONS(2319), - [anon_sym_DASH] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2319), - [anon_sym_PLUS] = ACTIONS(2319), + [anon_sym_LBRACK] = ACTIONS(2321), + [anon_sym_AT] = ACTIONS(2321), + [anon_sym_DASH] = ACTIONS(2321), + [anon_sym_LBRACE] = ACTIONS(2321), + [anon_sym_PLUS] = ACTIONS(2321), [anon_sym_not] = ACTIONS(2317), - [anon_sym_AMP] = ACTIONS(2319), - [anon_sym_TILDE] = ACTIONS(2319), - [anon_sym_LT] = ACTIONS(2319), + [anon_sym_AMP] = ACTIONS(2321), + [anon_sym_TILDE] = ACTIONS(2321), + [anon_sym_LT] = ACTIONS(2321), [anon_sym_lambda] = ACTIONS(2317), [anon_sym_yield] = ACTIONS(2317), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2319), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2321), [anon_sym_None] = ACTIONS(2317), [sym_integer] = ACTIONS(2317), - [sym_float] = ACTIONS(2319), + [sym_float] = ACTIONS(2321), [anon_sym_await] = ACTIONS(2317), [anon_sym_api] = ACTIONS(2317), [sym_true] = ACTIONS(2317), @@ -94133,410 +94425,250 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(2317), [anon_sym_readonly] = ACTIONS(2317), [anon_sym_sizeof] = ACTIONS(2317), - [sym__dedent] = ACTIONS(2319), - [sym_string_start] = ACTIONS(2319), - }, - [695] = { - [sym_identifier] = ACTIONS(2321), - [anon_sym_SEMI] = ACTIONS(2323), - [anon_sym_import] = ACTIONS(2321), - [anon_sym_cimport] = ACTIONS(2321), - [anon_sym_from] = ACTIONS(2321), - [anon_sym_LPAREN] = ACTIONS(2323), - [anon_sym_STAR] = ACTIONS(2323), - [anon_sym_print] = ACTIONS(2321), - [anon_sym_assert] = ACTIONS(2321), - [anon_sym_return] = ACTIONS(2321), - [anon_sym_del] = ACTIONS(2321), - [anon_sym_raise] = ACTIONS(2321), - [anon_sym_pass] = ACTIONS(2321), - [anon_sym_break] = ACTIONS(2321), - [anon_sym_continue] = ACTIONS(2321), - [anon_sym_if] = ACTIONS(2321), - [anon_sym_match] = ACTIONS(2321), - [anon_sym_async] = ACTIONS(2321), - [anon_sym_for] = ACTIONS(2321), - [anon_sym_while] = ACTIONS(2321), - [anon_sym_try] = ACTIONS(2321), - [anon_sym_with] = ACTIONS(2321), - [anon_sym_def] = ACTIONS(2321), - [anon_sym_global] = ACTIONS(2321), - [anon_sym_nonlocal] = ACTIONS(2321), - [anon_sym_exec] = ACTIONS(2321), - [anon_sym_type] = ACTIONS(2321), - [anon_sym_class] = ACTIONS(2321), - [anon_sym_LBRACK] = ACTIONS(2323), - [anon_sym_AT] = ACTIONS(2323), - [anon_sym_DASH] = ACTIONS(2323), - [anon_sym_LBRACE] = ACTIONS(2323), - [anon_sym_PLUS] = ACTIONS(2323), - [anon_sym_not] = ACTIONS(2321), - [anon_sym_AMP] = ACTIONS(2323), - [anon_sym_TILDE] = ACTIONS(2323), - [anon_sym_LT] = ACTIONS(2323), - [anon_sym_lambda] = ACTIONS(2321), - [anon_sym_yield] = ACTIONS(2321), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2323), - [anon_sym_None] = ACTIONS(2321), - [sym_integer] = ACTIONS(2321), - [sym_float] = ACTIONS(2323), - [anon_sym_await] = ACTIONS(2321), - [anon_sym_api] = ACTIONS(2321), - [sym_true] = ACTIONS(2321), - [sym_false] = ACTIONS(2321), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2321), - [anon_sym_include] = ACTIONS(2321), - [anon_sym_DEF] = ACTIONS(2321), - [anon_sym_cdef] = ACTIONS(2321), - [anon_sym_cpdef] = ACTIONS(2321), - [anon_sym_int] = ACTIONS(2321), - [anon_sym_double] = ACTIONS(2321), - [anon_sym_complex] = ACTIONS(2321), - [anon_sym_new] = ACTIONS(2321), - [anon_sym_signed] = ACTIONS(2321), - [anon_sym_unsigned] = ACTIONS(2321), - [anon_sym_char] = ACTIONS(2321), - [anon_sym_short] = ACTIONS(2321), - [anon_sym_long] = ACTIONS(2321), - [anon_sym_const] = ACTIONS(2321), - [anon_sym_volatile] = ACTIONS(2321), - [anon_sym_ctypedef] = ACTIONS(2321), - [anon_sym_struct] = ACTIONS(2321), - [anon_sym_union] = ACTIONS(2321), - [anon_sym_enum] = ACTIONS(2321), - [anon_sym_cppclass] = ACTIONS(2321), - [anon_sym_fused] = ACTIONS(2321), - [anon_sym_public] = ACTIONS(2321), - [anon_sym_packed] = ACTIONS(2321), - [anon_sym_inline] = ACTIONS(2321), - [anon_sym_readonly] = ACTIONS(2321), - [anon_sym_sizeof] = ACTIONS(2321), - [sym__dedent] = ACTIONS(2323), - [sym_string_start] = ACTIONS(2323), - }, - [696] = { - [sym_identifier] = ACTIONS(2325), - [anon_sym_SEMI] = ACTIONS(2327), - [anon_sym_import] = ACTIONS(2325), - [anon_sym_cimport] = ACTIONS(2325), - [anon_sym_from] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(2327), - [anon_sym_STAR] = ACTIONS(2327), - [anon_sym_print] = ACTIONS(2325), - [anon_sym_assert] = ACTIONS(2325), - [anon_sym_return] = ACTIONS(2325), - [anon_sym_del] = ACTIONS(2325), - [anon_sym_raise] = ACTIONS(2325), - [anon_sym_pass] = ACTIONS(2325), - [anon_sym_break] = ACTIONS(2325), - [anon_sym_continue] = ACTIONS(2325), - [anon_sym_if] = ACTIONS(2325), - [anon_sym_match] = ACTIONS(2325), - [anon_sym_async] = ACTIONS(2325), - [anon_sym_for] = ACTIONS(2325), - [anon_sym_while] = ACTIONS(2325), - [anon_sym_try] = ACTIONS(2325), - [anon_sym_with] = ACTIONS(2325), - [anon_sym_def] = ACTIONS(2325), - [anon_sym_global] = ACTIONS(2325), - [anon_sym_nonlocal] = ACTIONS(2325), - [anon_sym_exec] = ACTIONS(2325), - [anon_sym_type] = ACTIONS(2325), - [anon_sym_class] = ACTIONS(2325), - [anon_sym_LBRACK] = ACTIONS(2327), - [anon_sym_AT] = ACTIONS(2327), - [anon_sym_DASH] = ACTIONS(2327), - [anon_sym_LBRACE] = ACTIONS(2327), - [anon_sym_PLUS] = ACTIONS(2327), - [anon_sym_not] = ACTIONS(2325), - [anon_sym_AMP] = ACTIONS(2327), - [anon_sym_TILDE] = ACTIONS(2327), - [anon_sym_LT] = ACTIONS(2327), - [anon_sym_lambda] = ACTIONS(2325), - [anon_sym_yield] = ACTIONS(2325), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2327), - [anon_sym_None] = ACTIONS(2325), - [sym_integer] = ACTIONS(2325), - [sym_float] = ACTIONS(2327), - [anon_sym_await] = ACTIONS(2325), - [anon_sym_api] = ACTIONS(2325), - [sym_true] = ACTIONS(2325), - [sym_false] = ACTIONS(2325), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2325), - [anon_sym_include] = ACTIONS(2325), - [anon_sym_DEF] = ACTIONS(2325), - [anon_sym_cdef] = ACTIONS(2325), - [anon_sym_cpdef] = ACTIONS(2325), - [anon_sym_int] = ACTIONS(2325), - [anon_sym_double] = ACTIONS(2325), - [anon_sym_complex] = ACTIONS(2325), - [anon_sym_new] = ACTIONS(2325), - [anon_sym_signed] = ACTIONS(2325), - [anon_sym_unsigned] = ACTIONS(2325), - [anon_sym_char] = ACTIONS(2325), - [anon_sym_short] = ACTIONS(2325), - [anon_sym_long] = ACTIONS(2325), - [anon_sym_const] = ACTIONS(2325), - [anon_sym_volatile] = ACTIONS(2325), - [anon_sym_ctypedef] = ACTIONS(2325), - [anon_sym_struct] = ACTIONS(2325), - [anon_sym_union] = ACTIONS(2325), - [anon_sym_enum] = ACTIONS(2325), - [anon_sym_cppclass] = ACTIONS(2325), - [anon_sym_fused] = ACTIONS(2325), - [anon_sym_public] = ACTIONS(2325), - [anon_sym_packed] = ACTIONS(2325), - [anon_sym_inline] = ACTIONS(2325), - [anon_sym_readonly] = ACTIONS(2325), - [anon_sym_sizeof] = ACTIONS(2325), - [sym__dedent] = ACTIONS(2327), - [sym_string_start] = ACTIONS(2327), - }, - [697] = { - [sym_identifier] = ACTIONS(2329), - [anon_sym_SEMI] = ACTIONS(2331), - [anon_sym_import] = ACTIONS(2329), - [anon_sym_cimport] = ACTIONS(2329), - [anon_sym_from] = ACTIONS(2329), - [anon_sym_LPAREN] = ACTIONS(2331), - [anon_sym_STAR] = ACTIONS(2331), - [anon_sym_print] = ACTIONS(2329), - [anon_sym_assert] = ACTIONS(2329), - [anon_sym_return] = ACTIONS(2329), - [anon_sym_del] = ACTIONS(2329), - [anon_sym_raise] = ACTIONS(2329), - [anon_sym_pass] = ACTIONS(2329), - [anon_sym_break] = ACTIONS(2329), - [anon_sym_continue] = ACTIONS(2329), - [anon_sym_if] = ACTIONS(2329), - [anon_sym_match] = ACTIONS(2329), - [anon_sym_async] = ACTIONS(2329), - [anon_sym_for] = ACTIONS(2329), - [anon_sym_while] = ACTIONS(2329), - [anon_sym_try] = ACTIONS(2329), - [anon_sym_with] = ACTIONS(2329), - [anon_sym_def] = ACTIONS(2329), - [anon_sym_global] = ACTIONS(2329), - [anon_sym_nonlocal] = ACTIONS(2329), - [anon_sym_exec] = ACTIONS(2329), - [anon_sym_type] = ACTIONS(2329), - [anon_sym_class] = ACTIONS(2329), - [anon_sym_LBRACK] = ACTIONS(2331), - [anon_sym_AT] = ACTIONS(2331), - [anon_sym_DASH] = ACTIONS(2331), - [anon_sym_LBRACE] = ACTIONS(2331), - [anon_sym_PLUS] = ACTIONS(2331), - [anon_sym_not] = ACTIONS(2329), - [anon_sym_AMP] = ACTIONS(2331), - [anon_sym_TILDE] = ACTIONS(2331), - [anon_sym_LT] = ACTIONS(2331), - [anon_sym_lambda] = ACTIONS(2329), - [anon_sym_yield] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2331), - [anon_sym_None] = ACTIONS(2329), - [sym_integer] = ACTIONS(2329), - [sym_float] = ACTIONS(2331), - [anon_sym_await] = ACTIONS(2329), - [anon_sym_api] = ACTIONS(2329), - [sym_true] = ACTIONS(2329), - [sym_false] = ACTIONS(2329), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2329), - [anon_sym_include] = ACTIONS(2329), - [anon_sym_DEF] = ACTIONS(2329), - [anon_sym_cdef] = ACTIONS(2329), - [anon_sym_cpdef] = ACTIONS(2329), - [anon_sym_int] = ACTIONS(2329), - [anon_sym_double] = ACTIONS(2329), - [anon_sym_complex] = ACTIONS(2329), - [anon_sym_new] = ACTIONS(2329), - [anon_sym_signed] = ACTIONS(2329), - [anon_sym_unsigned] = ACTIONS(2329), - [anon_sym_char] = ACTIONS(2329), - [anon_sym_short] = ACTIONS(2329), - [anon_sym_long] = ACTIONS(2329), - [anon_sym_const] = ACTIONS(2329), - [anon_sym_volatile] = ACTIONS(2329), - [anon_sym_ctypedef] = ACTIONS(2329), - [anon_sym_struct] = ACTIONS(2329), - [anon_sym_union] = ACTIONS(2329), - [anon_sym_enum] = ACTIONS(2329), - [anon_sym_cppclass] = ACTIONS(2329), - [anon_sym_fused] = ACTIONS(2329), - [anon_sym_public] = ACTIONS(2329), - [anon_sym_packed] = ACTIONS(2329), - [anon_sym_inline] = ACTIONS(2329), - [anon_sym_readonly] = ACTIONS(2329), - [anon_sym_sizeof] = ACTIONS(2329), - [sym__dedent] = ACTIONS(2331), - [sym_string_start] = ACTIONS(2331), + [sym__dedent] = ACTIONS(2321), + [sym_string_start] = ACTIONS(2321), }, [698] = { - [sym_identifier] = ACTIONS(2325), - [anon_sym_SEMI] = ACTIONS(2327), - [anon_sym_import] = ACTIONS(2325), - [anon_sym_cimport] = ACTIONS(2325), - [anon_sym_from] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(2327), - [anon_sym_STAR] = ACTIONS(2327), - [anon_sym_print] = ACTIONS(2325), - [anon_sym_assert] = ACTIONS(2325), - [anon_sym_return] = ACTIONS(2325), - [anon_sym_del] = ACTIONS(2325), - [anon_sym_raise] = ACTIONS(2325), - [anon_sym_pass] = ACTIONS(2325), - [anon_sym_break] = ACTIONS(2325), - [anon_sym_continue] = ACTIONS(2325), - [anon_sym_if] = ACTIONS(2325), - [anon_sym_match] = ACTIONS(2325), - [anon_sym_async] = ACTIONS(2325), - [anon_sym_for] = ACTIONS(2325), - [anon_sym_while] = ACTIONS(2325), - [anon_sym_try] = ACTIONS(2325), - [anon_sym_with] = ACTIONS(2325), - [anon_sym_def] = ACTIONS(2325), - [anon_sym_global] = ACTIONS(2325), - [anon_sym_nonlocal] = ACTIONS(2325), - [anon_sym_exec] = ACTIONS(2325), - [anon_sym_type] = ACTIONS(2325), - [anon_sym_class] = ACTIONS(2325), - [anon_sym_LBRACK] = ACTIONS(2327), - [anon_sym_AT] = ACTIONS(2327), - [anon_sym_DASH] = ACTIONS(2327), - [anon_sym_LBRACE] = ACTIONS(2327), - [anon_sym_PLUS] = ACTIONS(2327), - [anon_sym_not] = ACTIONS(2325), - [anon_sym_AMP] = ACTIONS(2327), - [anon_sym_TILDE] = ACTIONS(2327), - [anon_sym_LT] = ACTIONS(2327), - [anon_sym_lambda] = ACTIONS(2325), - [anon_sym_yield] = ACTIONS(2325), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2327), - [anon_sym_None] = ACTIONS(2325), - [sym_integer] = ACTIONS(2325), - [sym_float] = ACTIONS(2327), - [anon_sym_await] = ACTIONS(2325), - [anon_sym_api] = ACTIONS(2325), - [sym_true] = ACTIONS(2325), - [sym_false] = ACTIONS(2325), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2325), - [anon_sym_include] = ACTIONS(2325), - [anon_sym_DEF] = ACTIONS(2325), - [anon_sym_cdef] = ACTIONS(2325), - [anon_sym_cpdef] = ACTIONS(2325), - [anon_sym_int] = ACTIONS(2325), - [anon_sym_double] = ACTIONS(2325), - [anon_sym_complex] = ACTIONS(2325), - [anon_sym_new] = ACTIONS(2325), - [anon_sym_signed] = ACTIONS(2325), - [anon_sym_unsigned] = ACTIONS(2325), - [anon_sym_char] = ACTIONS(2325), - [anon_sym_short] = ACTIONS(2325), - [anon_sym_long] = ACTIONS(2325), - [anon_sym_const] = ACTIONS(2325), - [anon_sym_volatile] = ACTIONS(2325), - [anon_sym_ctypedef] = ACTIONS(2325), - [anon_sym_struct] = ACTIONS(2325), - [anon_sym_union] = ACTIONS(2325), - [anon_sym_enum] = ACTIONS(2325), - [anon_sym_cppclass] = ACTIONS(2325), - [anon_sym_fused] = ACTIONS(2325), - [anon_sym_public] = ACTIONS(2325), - [anon_sym_packed] = ACTIONS(2325), - [anon_sym_inline] = ACTIONS(2325), - [anon_sym_readonly] = ACTIONS(2325), - [anon_sym_sizeof] = ACTIONS(2325), - [sym__dedent] = ACTIONS(2327), - [sym_string_start] = ACTIONS(2327), + [sym_identifier] = ACTIONS(2323), + [anon_sym_SEMI] = ACTIONS(2325), + [anon_sym_import] = ACTIONS(2323), + [anon_sym_cimport] = ACTIONS(2323), + [anon_sym_from] = ACTIONS(2323), + [anon_sym_LPAREN] = ACTIONS(2325), + [anon_sym_STAR] = ACTIONS(2325), + [anon_sym_print] = ACTIONS(2323), + [anon_sym_assert] = ACTIONS(2323), + [anon_sym_return] = ACTIONS(2323), + [anon_sym_del] = ACTIONS(2323), + [anon_sym_raise] = ACTIONS(2323), + [anon_sym_pass] = ACTIONS(2323), + [anon_sym_break] = ACTIONS(2323), + [anon_sym_continue] = ACTIONS(2323), + [anon_sym_if] = ACTIONS(2323), + [anon_sym_match] = ACTIONS(2323), + [anon_sym_async] = ACTIONS(2323), + [anon_sym_for] = ACTIONS(2323), + [anon_sym_while] = ACTIONS(2323), + [anon_sym_try] = ACTIONS(2323), + [anon_sym_with] = ACTIONS(2323), + [anon_sym_def] = ACTIONS(2323), + [anon_sym_global] = ACTIONS(2323), + [anon_sym_nonlocal] = ACTIONS(2323), + [anon_sym_exec] = ACTIONS(2323), + [anon_sym_type] = ACTIONS(2323), + [anon_sym_class] = ACTIONS(2323), + [anon_sym_LBRACK] = ACTIONS(2325), + [anon_sym_AT] = ACTIONS(2325), + [anon_sym_DASH] = ACTIONS(2325), + [anon_sym_LBRACE] = ACTIONS(2325), + [anon_sym_PLUS] = ACTIONS(2325), + [anon_sym_not] = ACTIONS(2323), + [anon_sym_AMP] = ACTIONS(2325), + [anon_sym_TILDE] = ACTIONS(2325), + [anon_sym_LT] = ACTIONS(2325), + [anon_sym_lambda] = ACTIONS(2323), + [anon_sym_yield] = ACTIONS(2323), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2325), + [anon_sym_None] = ACTIONS(2323), + [sym_integer] = ACTIONS(2323), + [sym_float] = ACTIONS(2325), + [anon_sym_await] = ACTIONS(2323), + [anon_sym_api] = ACTIONS(2323), + [sym_true] = ACTIONS(2323), + [sym_false] = ACTIONS(2323), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2323), + [anon_sym_include] = ACTIONS(2323), + [anon_sym_DEF] = ACTIONS(2323), + [anon_sym_cdef] = ACTIONS(2323), + [anon_sym_cpdef] = ACTIONS(2323), + [anon_sym_int] = ACTIONS(2323), + [anon_sym_double] = ACTIONS(2323), + [anon_sym_complex] = ACTIONS(2323), + [anon_sym_new] = ACTIONS(2323), + [anon_sym_signed] = ACTIONS(2323), + [anon_sym_unsigned] = ACTIONS(2323), + [anon_sym_char] = ACTIONS(2323), + [anon_sym_short] = ACTIONS(2323), + [anon_sym_long] = ACTIONS(2323), + [anon_sym_const] = ACTIONS(2323), + [anon_sym_volatile] = ACTIONS(2323), + [anon_sym_ctypedef] = ACTIONS(2323), + [anon_sym_struct] = ACTIONS(2323), + [anon_sym_union] = ACTIONS(2323), + [anon_sym_enum] = ACTIONS(2323), + [anon_sym_cppclass] = ACTIONS(2323), + [anon_sym_fused] = ACTIONS(2323), + [anon_sym_public] = ACTIONS(2323), + [anon_sym_packed] = ACTIONS(2323), + [anon_sym_inline] = ACTIONS(2323), + [anon_sym_readonly] = ACTIONS(2323), + [anon_sym_sizeof] = ACTIONS(2323), + [sym__dedent] = ACTIONS(2325), + [sym_string_start] = ACTIONS(2325), }, [699] = { - [sym_identifier] = ACTIONS(2333), - [anon_sym_SEMI] = ACTIONS(2335), - [anon_sym_import] = ACTIONS(2333), - [anon_sym_cimport] = ACTIONS(2333), - [anon_sym_from] = ACTIONS(2333), + [sym_identifier] = ACTIONS(2327), + [anon_sym_SEMI] = ACTIONS(2329), + [anon_sym_import] = ACTIONS(2327), + [anon_sym_cimport] = ACTIONS(2327), + [anon_sym_from] = ACTIONS(2327), + [anon_sym_LPAREN] = ACTIONS(2329), + [anon_sym_STAR] = ACTIONS(2329), + [anon_sym_print] = ACTIONS(2327), + [anon_sym_assert] = ACTIONS(2327), + [anon_sym_return] = ACTIONS(2327), + [anon_sym_del] = ACTIONS(2327), + [anon_sym_raise] = ACTIONS(2327), + [anon_sym_pass] = ACTIONS(2327), + [anon_sym_break] = ACTIONS(2327), + [anon_sym_continue] = ACTIONS(2327), + [anon_sym_if] = ACTIONS(2327), + [anon_sym_match] = ACTIONS(2327), + [anon_sym_async] = ACTIONS(2327), + [anon_sym_for] = ACTIONS(2327), + [anon_sym_while] = ACTIONS(2327), + [anon_sym_try] = ACTIONS(2327), + [anon_sym_with] = ACTIONS(2327), + [anon_sym_def] = ACTIONS(2327), + [anon_sym_global] = ACTIONS(2327), + [anon_sym_nonlocal] = ACTIONS(2327), + [anon_sym_exec] = ACTIONS(2327), + [anon_sym_type] = ACTIONS(2327), + [anon_sym_class] = ACTIONS(2327), + [anon_sym_LBRACK] = ACTIONS(2329), + [anon_sym_AT] = ACTIONS(2329), + [anon_sym_DASH] = ACTIONS(2329), + [anon_sym_LBRACE] = ACTIONS(2329), + [anon_sym_PLUS] = ACTIONS(2329), + [anon_sym_not] = ACTIONS(2327), + [anon_sym_AMP] = ACTIONS(2329), + [anon_sym_TILDE] = ACTIONS(2329), + [anon_sym_LT] = ACTIONS(2329), + [anon_sym_lambda] = ACTIONS(2327), + [anon_sym_yield] = ACTIONS(2327), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2329), + [anon_sym_None] = ACTIONS(2327), + [sym_integer] = ACTIONS(2327), + [sym_float] = ACTIONS(2329), + [anon_sym_await] = ACTIONS(2327), + [anon_sym_api] = ACTIONS(2327), + [sym_true] = ACTIONS(2327), + [sym_false] = ACTIONS(2327), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2327), + [anon_sym_include] = ACTIONS(2327), + [anon_sym_DEF] = ACTIONS(2327), + [anon_sym_cdef] = ACTIONS(2327), + [anon_sym_cpdef] = ACTIONS(2327), + [anon_sym_int] = ACTIONS(2327), + [anon_sym_double] = ACTIONS(2327), + [anon_sym_complex] = ACTIONS(2327), + [anon_sym_new] = ACTIONS(2327), + [anon_sym_signed] = ACTIONS(2327), + [anon_sym_unsigned] = ACTIONS(2327), + [anon_sym_char] = ACTIONS(2327), + [anon_sym_short] = ACTIONS(2327), + [anon_sym_long] = ACTIONS(2327), + [anon_sym_const] = ACTIONS(2327), + [anon_sym_volatile] = ACTIONS(2327), + [anon_sym_ctypedef] = ACTIONS(2327), + [anon_sym_struct] = ACTIONS(2327), + [anon_sym_union] = ACTIONS(2327), + [anon_sym_enum] = ACTIONS(2327), + [anon_sym_cppclass] = ACTIONS(2327), + [anon_sym_fused] = ACTIONS(2327), + [anon_sym_public] = ACTIONS(2327), + [anon_sym_packed] = ACTIONS(2327), + [anon_sym_inline] = ACTIONS(2327), + [anon_sym_readonly] = ACTIONS(2327), + [anon_sym_sizeof] = ACTIONS(2327), + [sym__dedent] = ACTIONS(2329), + [sym_string_start] = ACTIONS(2329), + }, + [700] = { + [sym_identifier] = ACTIONS(2331), + [anon_sym_SEMI] = ACTIONS(2333), + [anon_sym_import] = ACTIONS(2331), + [anon_sym_cimport] = ACTIONS(2331), + [anon_sym_from] = ACTIONS(2331), [anon_sym_LPAREN] = ACTIONS(2335), [anon_sym_STAR] = ACTIONS(2335), - [anon_sym_print] = ACTIONS(2333), - [anon_sym_assert] = ACTIONS(2333), - [anon_sym_return] = ACTIONS(2333), - [anon_sym_del] = ACTIONS(2333), - [anon_sym_raise] = ACTIONS(2333), - [anon_sym_pass] = ACTIONS(2333), - [anon_sym_break] = ACTIONS(2333), - [anon_sym_continue] = ACTIONS(2333), - [anon_sym_if] = ACTIONS(2333), - [anon_sym_match] = ACTIONS(2333), - [anon_sym_async] = ACTIONS(2333), - [anon_sym_for] = ACTIONS(2333), - [anon_sym_while] = ACTIONS(2333), - [anon_sym_try] = ACTIONS(2333), - [anon_sym_with] = ACTIONS(2333), - [anon_sym_def] = ACTIONS(2333), - [anon_sym_global] = ACTIONS(2333), - [anon_sym_nonlocal] = ACTIONS(2333), - [anon_sym_exec] = ACTIONS(2333), - [anon_sym_type] = ACTIONS(2333), - [anon_sym_class] = ACTIONS(2333), + [anon_sym_print] = ACTIONS(2331), + [anon_sym_assert] = ACTIONS(2331), + [anon_sym_return] = ACTIONS(2331), + [anon_sym_del] = ACTIONS(2331), + [anon_sym_raise] = ACTIONS(2331), + [anon_sym_pass] = ACTIONS(2331), + [anon_sym_break] = ACTIONS(2331), + [anon_sym_continue] = ACTIONS(2331), + [anon_sym_if] = ACTIONS(2331), + [anon_sym_match] = ACTIONS(2331), + [anon_sym_async] = ACTIONS(2331), + [anon_sym_for] = ACTIONS(2331), + [anon_sym_while] = ACTIONS(2331), + [anon_sym_try] = ACTIONS(2331), + [anon_sym_with] = ACTIONS(2331), + [anon_sym_def] = ACTIONS(2331), + [anon_sym_global] = ACTIONS(2331), + [anon_sym_nonlocal] = ACTIONS(2331), + [anon_sym_exec] = ACTIONS(2331), + [anon_sym_type] = ACTIONS(2331), + [anon_sym_class] = ACTIONS(2331), [anon_sym_LBRACK] = ACTIONS(2335), [anon_sym_AT] = ACTIONS(2335), [anon_sym_DASH] = ACTIONS(2335), [anon_sym_LBRACE] = ACTIONS(2335), [anon_sym_PLUS] = ACTIONS(2335), - [anon_sym_not] = ACTIONS(2333), + [anon_sym_not] = ACTIONS(2331), [anon_sym_AMP] = ACTIONS(2335), [anon_sym_TILDE] = ACTIONS(2335), [anon_sym_LT] = ACTIONS(2335), - [anon_sym_lambda] = ACTIONS(2333), - [anon_sym_yield] = ACTIONS(2333), + [anon_sym_lambda] = ACTIONS(2331), + [anon_sym_yield] = ACTIONS(2331), [anon_sym_DOT_DOT_DOT] = ACTIONS(2335), - [anon_sym_None] = ACTIONS(2333), - [sym_integer] = ACTIONS(2333), + [anon_sym_None] = ACTIONS(2331), + [sym_integer] = ACTIONS(2331), [sym_float] = ACTIONS(2335), - [anon_sym_await] = ACTIONS(2333), - [anon_sym_api] = ACTIONS(2333), - [sym_true] = ACTIONS(2333), - [sym_false] = ACTIONS(2333), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2333), - [anon_sym_include] = ACTIONS(2333), - [anon_sym_DEF] = ACTIONS(2333), - [anon_sym_cdef] = ACTIONS(2333), - [anon_sym_cpdef] = ACTIONS(2333), - [anon_sym_int] = ACTIONS(2333), - [anon_sym_double] = ACTIONS(2333), - [anon_sym_complex] = ACTIONS(2333), - [anon_sym_new] = ACTIONS(2333), - [anon_sym_signed] = ACTIONS(2333), - [anon_sym_unsigned] = ACTIONS(2333), - [anon_sym_char] = ACTIONS(2333), - [anon_sym_short] = ACTIONS(2333), - [anon_sym_long] = ACTIONS(2333), - [anon_sym_const] = ACTIONS(2333), - [anon_sym_volatile] = ACTIONS(2333), - [anon_sym_ctypedef] = ACTIONS(2333), - [anon_sym_struct] = ACTIONS(2333), - [anon_sym_union] = ACTIONS(2333), - [anon_sym_enum] = ACTIONS(2333), - [anon_sym_cppclass] = ACTIONS(2333), - [anon_sym_fused] = ACTIONS(2333), - [anon_sym_public] = ACTIONS(2333), - [anon_sym_packed] = ACTIONS(2333), - [anon_sym_inline] = ACTIONS(2333), - [anon_sym_readonly] = ACTIONS(2333), - [anon_sym_sizeof] = ACTIONS(2333), + [anon_sym_await] = ACTIONS(2331), + [anon_sym_api] = ACTIONS(2331), + [sym_true] = ACTIONS(2331), + [sym_false] = ACTIONS(2331), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2331), + [anon_sym_include] = ACTIONS(2331), + [anon_sym_DEF] = ACTIONS(2331), + [anon_sym_cdef] = ACTIONS(2331), + [anon_sym_cpdef] = ACTIONS(2331), + [anon_sym_int] = ACTIONS(2331), + [anon_sym_double] = ACTIONS(2331), + [anon_sym_complex] = ACTIONS(2331), + [anon_sym_new] = ACTIONS(2331), + [anon_sym_signed] = ACTIONS(2331), + [anon_sym_unsigned] = ACTIONS(2331), + [anon_sym_char] = ACTIONS(2331), + [anon_sym_short] = ACTIONS(2331), + [anon_sym_long] = ACTIONS(2331), + [anon_sym_const] = ACTIONS(2331), + [anon_sym_volatile] = ACTIONS(2331), + [anon_sym_ctypedef] = ACTIONS(2331), + [anon_sym_struct] = ACTIONS(2331), + [anon_sym_union] = ACTIONS(2331), + [anon_sym_enum] = ACTIONS(2331), + [anon_sym_cppclass] = ACTIONS(2331), + [anon_sym_fused] = ACTIONS(2331), + [anon_sym_public] = ACTIONS(2331), + [anon_sym_packed] = ACTIONS(2331), + [anon_sym_inline] = ACTIONS(2331), + [anon_sym_readonly] = ACTIONS(2331), + [anon_sym_sizeof] = ACTIONS(2331), [sym__dedent] = ACTIONS(2335), [sym_string_start] = ACTIONS(2335), }, - [700] = { + [701] = { [sym_identifier] = ACTIONS(2337), [anon_sym_SEMI] = ACTIONS(2339), [anon_sym_import] = ACTIONS(2337), @@ -94616,7 +94748,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2339), [sym_string_start] = ACTIONS(2339), }, - [701] = { + [702] = { [sym_identifier] = ACTIONS(2341), [anon_sym_SEMI] = ACTIONS(2343), [anon_sym_import] = ACTIONS(2341), @@ -94696,7 +94828,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2343), [sym_string_start] = ACTIONS(2343), }, - [702] = { + [703] = { [sym_identifier] = ACTIONS(2345), [anon_sym_SEMI] = ACTIONS(2347), [anon_sym_import] = ACTIONS(2345), @@ -94776,7 +94908,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2347), [sym_string_start] = ACTIONS(2347), }, - [703] = { + [704] = { [sym_identifier] = ACTIONS(2349), [anon_sym_SEMI] = ACTIONS(2351), [anon_sym_import] = ACTIONS(2349), @@ -94856,7 +94988,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2351), [sym_string_start] = ACTIONS(2351), }, - [704] = { + [705] = { [sym_identifier] = ACTIONS(2353), [anon_sym_SEMI] = ACTIONS(2355), [anon_sym_import] = ACTIONS(2353), @@ -94936,7 +95068,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2355), [sym_string_start] = ACTIONS(2355), }, - [705] = { + [706] = { [sym_identifier] = ACTIONS(2357), [anon_sym_SEMI] = ACTIONS(2359), [anon_sym_import] = ACTIONS(2357), @@ -95016,86 +95148,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2359), [sym_string_start] = ACTIONS(2359), }, - [706] = { - [sym_list_splat_pattern] = STATE(2357), - [sym_primary_expression] = STATE(2136), - [sym_binary_operator] = STATE(2255), - [sym_unary_operator] = STATE(2255), - [sym_attribute] = STATE(2255), - [sym_subscript] = STATE(2255), - [sym_ellipsis] = STATE(2255), - [sym_call] = STATE(2255), - [sym_list] = STATE(2255), - [sym_set] = STATE(2255), - [sym_tuple] = STATE(2255), - [sym_dictionary] = STATE(2255), - [sym_list_comprehension] = STATE(2255), - [sym_dictionary_comprehension] = STATE(2255), - [sym_set_comprehension] = STATE(2255), - [sym_generator_expression] = STATE(2255), - [sym_parenthesized_expression] = STATE(2255), - [sym_concatenated_string] = STATE(2255), - [sym_string] = STATE(2073), - [sym_none] = STATE(2255), - [sym_await] = STATE(2255), - [sym_sizeof_expression] = STATE(2255), - [sym_cast_expression] = STATE(2255), - [sym_identifier] = ACTIONS(1905), - [anon_sym_DOT] = ACTIONS(1297), - [anon_sym_LPAREN] = ACTIONS(1907), - [anon_sym_COMMA] = ACTIONS(1498), - [anon_sym_as] = ACTIONS(1297), - [anon_sym_STAR] = ACTIONS(1909), - [anon_sym_print] = ACTIONS(1911), - [anon_sym_GT_GT] = ACTIONS(1498), - [anon_sym_COLON_EQ] = ACTIONS(596), - [anon_sym_if] = ACTIONS(1297), - [anon_sym_COLON] = ACTIONS(1300), - [anon_sym_match] = ACTIONS(1911), - [anon_sym_async] = ACTIONS(1911), - [anon_sym_for] = ACTIONS(1300), - [anon_sym_in] = ACTIONS(1297), - [anon_sym_STAR_STAR] = ACTIONS(1498), - [anon_sym_exec] = ACTIONS(1911), - [anon_sym_LBRACK] = ACTIONS(1913), - [anon_sym_AT] = ACTIONS(1498), - [anon_sym_DASH] = ACTIONS(1915), - [anon_sym_PIPE] = ACTIONS(1498), - [anon_sym_LBRACE] = ACTIONS(1917), - [anon_sym_RBRACE] = ACTIONS(1498), - [anon_sym_PLUS] = ACTIONS(1915), - [anon_sym_not] = ACTIONS(1297), - [anon_sym_and] = ACTIONS(1297), - [anon_sym_or] = ACTIONS(1297), - [anon_sym_SLASH] = ACTIONS(1297), - [anon_sym_PERCENT] = ACTIONS(1498), - [anon_sym_SLASH_SLASH] = ACTIONS(1498), - [anon_sym_AMP] = ACTIONS(1915), - [anon_sym_CARET] = ACTIONS(1498), - [anon_sym_LT_LT] = ACTIONS(1498), - [anon_sym_TILDE] = ACTIONS(1915), - [anon_sym_is] = ACTIONS(1297), - [anon_sym_LT] = ACTIONS(1919), - [anon_sym_LT_EQ] = ACTIONS(1498), - [anon_sym_EQ_EQ] = ACTIONS(1498), - [anon_sym_BANG_EQ] = ACTIONS(1498), - [anon_sym_GT_EQ] = ACTIONS(1498), - [anon_sym_GT] = ACTIONS(1297), - [anon_sym_LT_GT] = ACTIONS(1498), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1921), - [anon_sym_None] = ACTIONS(1923), - [sym_integer] = ACTIONS(1905), - [sym_float] = ACTIONS(1925), - [anon_sym_await] = ACTIONS(1927), - [anon_sym_api] = ACTIONS(1911), - [sym_true] = ACTIONS(1905), - [sym_false] = ACTIONS(1905), + [707] = { + [sym_list_splat_pattern] = STATE(2536), + [sym_primary_expression] = STATE(3239), + [sym_binary_operator] = STATE(2401), + [sym_unary_operator] = STATE(2401), + [sym_attribute] = STATE(2401), + [sym_subscript] = STATE(2401), + [sym_ellipsis] = STATE(2401), + [sym_call] = STATE(2401), + [sym_list] = STATE(2401), + [sym_set] = STATE(2401), + [sym_tuple] = STATE(2401), + [sym_dictionary] = STATE(2401), + [sym_list_comprehension] = STATE(2401), + [sym_dictionary_comprehension] = STATE(2401), + [sym_set_comprehension] = STATE(2401), + [sym_generator_expression] = STATE(2401), + [sym_parenthesized_expression] = STATE(2401), + [sym_concatenated_string] = STATE(2401), + [sym_string] = STATE(2161), + [sym_none] = STATE(2401), + [sym_await] = STATE(2401), + [sym_sizeof_expression] = STATE(2401), + [sym_cast_expression] = STATE(2401), + [sym_identifier] = ACTIONS(1237), + [anon_sym_SEMI] = ACTIONS(1039), + [anon_sym_DOT] = ACTIONS(1005), + [anon_sym_LPAREN] = ACTIONS(1213), + [anon_sym_COMMA] = ACTIONS(1039), + [anon_sym_STAR] = ACTIONS(1302), + [anon_sym_print] = ACTIONS(1304), + [anon_sym_GT_GT] = ACTIONS(1005), + [anon_sym_COLON] = ACTIONS(1039), + [anon_sym_match] = ACTIONS(1304), + [anon_sym_async] = ACTIONS(1304), + [anon_sym_STAR_STAR] = ACTIONS(1005), + [anon_sym_exec] = ACTIONS(1304), + [anon_sym_EQ] = ACTIONS(1039), + [anon_sym_LBRACK] = ACTIONS(1219), + [anon_sym_AT] = ACTIONS(1005), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PIPE] = ACTIONS(1005), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_SLASH] = ACTIONS(1005), + [anon_sym_PERCENT] = ACTIONS(1005), + [anon_sym_SLASH_SLASH] = ACTIONS(1005), + [anon_sym_AMP] = ACTIONS(1306), + [anon_sym_CARET] = ACTIONS(1005), + [anon_sym_LT_LT] = ACTIONS(1005), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_LT] = ACTIONS(1310), + [anon_sym_PLUS_EQ] = ACTIONS(1039), + [anon_sym_DASH_EQ] = ACTIONS(1039), + [anon_sym_STAR_EQ] = ACTIONS(1039), + [anon_sym_SLASH_EQ] = ACTIONS(1039), + [anon_sym_AT_EQ] = ACTIONS(1039), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1039), + [anon_sym_PERCENT_EQ] = ACTIONS(1039), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1039), + [anon_sym_GT_GT_EQ] = ACTIONS(1039), + [anon_sym_LT_LT_EQ] = ACTIONS(1039), + [anon_sym_AMP_EQ] = ACTIONS(1039), + [anon_sym_CARET_EQ] = ACTIONS(1039), + [anon_sym_PIPE_EQ] = ACTIONS(1039), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), + [anon_sym_None] = ACTIONS(1235), + [sym_integer] = ACTIONS(1237), + [sym_float] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(1312), + [anon_sym_api] = ACTIONS(1304), + [sym_true] = ACTIONS(1237), + [sym_false] = ACTIONS(1237), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(1929), - [sym_string_start] = ACTIONS(1931), + [anon_sym_sizeof] = ACTIONS(1245), + [sym__newline] = ACTIONS(1039), + [sym_string_start] = ACTIONS(1247), }, - [707] = { + [708] = { [sym_identifier] = ACTIONS(2361), [anon_sym_import] = ACTIONS(2361), [anon_sym_cimport] = ACTIONS(2361), @@ -95174,7 +95306,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2363), [sym_string_start] = ACTIONS(2363), }, - [708] = { + [709] = { + [sym_list_splat_pattern] = STATE(2536), + [sym_primary_expression] = STATE(3239), + [sym_binary_operator] = STATE(2401), + [sym_unary_operator] = STATE(2401), + [sym_attribute] = STATE(2401), + [sym_subscript] = STATE(2401), + [sym_ellipsis] = STATE(2401), + [sym_call] = STATE(2401), + [sym_list] = STATE(2401), + [sym_set] = STATE(2401), + [sym_tuple] = STATE(2401), + [sym_dictionary] = STATE(2401), + [sym_list_comprehension] = STATE(2401), + [sym_dictionary_comprehension] = STATE(2401), + [sym_set_comprehension] = STATE(2401), + [sym_generator_expression] = STATE(2401), + [sym_parenthesized_expression] = STATE(2401), + [sym_concatenated_string] = STATE(2401), + [sym_string] = STATE(2161), + [sym_none] = STATE(2401), + [sym_await] = STATE(2401), + [sym_sizeof_expression] = STATE(2401), + [sym_cast_expression] = STATE(2401), + [sym_identifier] = ACTIONS(1237), + [anon_sym_SEMI] = ACTIONS(1295), + [anon_sym_DOT] = ACTIONS(1297), + [anon_sym_LPAREN] = ACTIONS(1213), + [anon_sym_COMMA] = ACTIONS(1295), + [anon_sym_STAR] = ACTIONS(1302), + [anon_sym_print] = ACTIONS(1304), + [anon_sym_GT_GT] = ACTIONS(1297), + [anon_sym_COLON] = ACTIONS(1295), + [anon_sym_match] = ACTIONS(1304), + [anon_sym_async] = ACTIONS(1304), + [anon_sym_STAR_STAR] = ACTIONS(1297), + [anon_sym_exec] = ACTIONS(1304), + [anon_sym_EQ] = ACTIONS(1295), + [anon_sym_LBRACK] = ACTIONS(1219), + [anon_sym_AT] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PIPE] = ACTIONS(1297), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_PERCENT] = ACTIONS(1297), + [anon_sym_SLASH_SLASH] = ACTIONS(1297), + [anon_sym_AMP] = ACTIONS(1306), + [anon_sym_CARET] = ACTIONS(1297), + [anon_sym_LT_LT] = ACTIONS(1297), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_LT] = ACTIONS(1310), + [anon_sym_PLUS_EQ] = ACTIONS(1295), + [anon_sym_DASH_EQ] = ACTIONS(1295), + [anon_sym_STAR_EQ] = ACTIONS(1295), + [anon_sym_SLASH_EQ] = ACTIONS(1295), + [anon_sym_AT_EQ] = ACTIONS(1295), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1295), + [anon_sym_PERCENT_EQ] = ACTIONS(1295), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1295), + [anon_sym_GT_GT_EQ] = ACTIONS(1295), + [anon_sym_LT_LT_EQ] = ACTIONS(1295), + [anon_sym_AMP_EQ] = ACTIONS(1295), + [anon_sym_CARET_EQ] = ACTIONS(1295), + [anon_sym_PIPE_EQ] = ACTIONS(1295), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), + [anon_sym_None] = ACTIONS(1235), + [sym_integer] = ACTIONS(1237), + [sym_float] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(1312), + [anon_sym_api] = ACTIONS(1304), + [sym_true] = ACTIONS(1237), + [sym_false] = ACTIONS(1237), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1245), + [sym__newline] = ACTIONS(1295), + [sym_string_start] = ACTIONS(1247), + }, + [710] = { [sym_identifier] = ACTIONS(2365), [anon_sym_import] = ACTIONS(2365), [anon_sym_cimport] = ACTIONS(2365), @@ -95253,86 +95464,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2367), [sym_string_start] = ACTIONS(2367), }, - [709] = { - [sym_list_splat_pattern] = STATE(2432), - [sym_primary_expression] = STATE(3190), - [sym_binary_operator] = STATE(2549), - [sym_unary_operator] = STATE(2549), - [sym_attribute] = STATE(2549), - [sym_subscript] = STATE(2549), - [sym_ellipsis] = STATE(2549), - [sym_call] = STATE(2549), - [sym_list] = STATE(2549), - [sym_set] = STATE(2549), - [sym_tuple] = STATE(2549), - [sym_dictionary] = STATE(2549), - [sym_list_comprehension] = STATE(2549), - [sym_dictionary_comprehension] = STATE(2549), - [sym_set_comprehension] = STATE(2549), - [sym_generator_expression] = STATE(2549), - [sym_parenthesized_expression] = STATE(2549), - [sym_concatenated_string] = STATE(2549), - [sym_string] = STATE(2140), - [sym_none] = STATE(2549), - [sym_await] = STATE(2549), - [sym_sizeof_expression] = STATE(2549), - [sym_cast_expression] = STATE(2549), - [sym_identifier] = ACTIONS(1237), - [anon_sym_SEMI] = ACTIONS(1295), - [anon_sym_DOT] = ACTIONS(1297), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_COMMA] = ACTIONS(1295), - [anon_sym_STAR] = ACTIONS(1302), - [anon_sym_print] = ACTIONS(1304), - [anon_sym_GT_GT] = ACTIONS(1297), - [anon_sym_COLON] = ACTIONS(1295), - [anon_sym_match] = ACTIONS(1304), - [anon_sym_async] = ACTIONS(1304), - [anon_sym_STAR_STAR] = ACTIONS(1297), - [anon_sym_exec] = ACTIONS(1304), - [anon_sym_EQ] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1219), - [anon_sym_AT] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PIPE] = ACTIONS(1297), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_SLASH] = ACTIONS(1297), - [anon_sym_PERCENT] = ACTIONS(1297), - [anon_sym_SLASH_SLASH] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1306), - [anon_sym_CARET] = ACTIONS(1297), - [anon_sym_LT_LT] = ACTIONS(1297), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_LT] = ACTIONS(1310), - [anon_sym_PLUS_EQ] = ACTIONS(1295), - [anon_sym_DASH_EQ] = ACTIONS(1295), - [anon_sym_STAR_EQ] = ACTIONS(1295), - [anon_sym_SLASH_EQ] = ACTIONS(1295), - [anon_sym_AT_EQ] = ACTIONS(1295), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1295), - [anon_sym_PERCENT_EQ] = ACTIONS(1295), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1295), - [anon_sym_GT_GT_EQ] = ACTIONS(1295), - [anon_sym_LT_LT_EQ] = ACTIONS(1295), - [anon_sym_AMP_EQ] = ACTIONS(1295), - [anon_sym_CARET_EQ] = ACTIONS(1295), - [anon_sym_PIPE_EQ] = ACTIONS(1295), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), - [anon_sym_None] = ACTIONS(1235), - [sym_integer] = ACTIONS(1237), - [sym_float] = ACTIONS(1239), - [anon_sym_await] = ACTIONS(1312), - [anon_sym_api] = ACTIONS(1304), - [sym_true] = ACTIONS(1237), - [sym_false] = ACTIONS(1237), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(1245), - [sym__newline] = ACTIONS(1295), - [sym_string_start] = ACTIONS(1247), - }, - [710] = { + [711] = { [sym_identifier] = ACTIONS(2369), [anon_sym_import] = ACTIONS(2369), [anon_sym_cimport] = ACTIONS(2369), @@ -95411,7 +95543,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2371), [sym_string_start] = ACTIONS(2371), }, - [711] = { + [712] = { [sym_identifier] = ACTIONS(2373), [anon_sym_import] = ACTIONS(2373), [anon_sym_cimport] = ACTIONS(2373), @@ -95490,242 +95622,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(2375), [sym_string_start] = ACTIONS(2375), }, - [712] = { - [sym_identifier] = ACTIONS(2377), - [anon_sym_import] = ACTIONS(2377), - [anon_sym_cimport] = ACTIONS(2377), - [anon_sym_from] = ACTIONS(2377), - [anon_sym_LPAREN] = ACTIONS(2379), - [anon_sym_STAR] = ACTIONS(2379), - [anon_sym_print] = ACTIONS(2377), - [anon_sym_assert] = ACTIONS(2377), - [anon_sym_return] = ACTIONS(2377), - [anon_sym_del] = ACTIONS(2377), - [anon_sym_raise] = ACTIONS(2377), - [anon_sym_pass] = ACTIONS(2377), - [anon_sym_break] = ACTIONS(2377), - [anon_sym_continue] = ACTIONS(2377), - [anon_sym_if] = ACTIONS(2377), - [anon_sym_match] = ACTIONS(2377), - [anon_sym_async] = ACTIONS(2377), - [anon_sym_for] = ACTIONS(2377), - [anon_sym_while] = ACTIONS(2377), - [anon_sym_try] = ACTIONS(2377), - [anon_sym_with] = ACTIONS(2377), - [anon_sym_def] = ACTIONS(2377), - [anon_sym_global] = ACTIONS(2377), - [anon_sym_nonlocal] = ACTIONS(2377), - [anon_sym_exec] = ACTIONS(2377), - [anon_sym_type] = ACTIONS(2377), - [anon_sym_class] = ACTIONS(2377), - [anon_sym_LBRACK] = ACTIONS(2379), - [anon_sym_AT] = ACTIONS(2379), - [anon_sym_DASH] = ACTIONS(2379), - [anon_sym_LBRACE] = ACTIONS(2379), - [anon_sym_PLUS] = ACTIONS(2379), - [anon_sym_not] = ACTIONS(2377), - [anon_sym_AMP] = ACTIONS(2379), - [anon_sym_TILDE] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(2379), - [anon_sym_lambda] = ACTIONS(2377), - [anon_sym_yield] = ACTIONS(2377), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2379), - [anon_sym_None] = ACTIONS(2377), - [sym_integer] = ACTIONS(2377), - [sym_float] = ACTIONS(2379), - [anon_sym_await] = ACTIONS(2377), - [anon_sym_api] = ACTIONS(2377), - [sym_true] = ACTIONS(2377), - [sym_false] = ACTIONS(2377), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2377), - [anon_sym_include] = ACTIONS(2377), - [anon_sym_DEF] = ACTIONS(2377), - [anon_sym_cdef] = ACTIONS(2377), - [anon_sym_cpdef] = ACTIONS(2377), - [anon_sym_int] = ACTIONS(2377), - [anon_sym_double] = ACTIONS(2377), - [anon_sym_complex] = ACTIONS(2377), - [anon_sym_new] = ACTIONS(2377), - [anon_sym_signed] = ACTIONS(2377), - [anon_sym_unsigned] = ACTIONS(2377), - [anon_sym_char] = ACTIONS(2377), - [anon_sym_short] = ACTIONS(2377), - [anon_sym_long] = ACTIONS(2377), - [anon_sym_const] = ACTIONS(2377), - [anon_sym_volatile] = ACTIONS(2377), - [anon_sym_ctypedef] = ACTIONS(2377), - [anon_sym_struct] = ACTIONS(2377), - [anon_sym_union] = ACTIONS(2377), - [anon_sym_enum] = ACTIONS(2377), - [anon_sym_cppclass] = ACTIONS(2377), - [anon_sym_fused] = ACTIONS(2377), - [anon_sym_public] = ACTIONS(2377), - [anon_sym_packed] = ACTIONS(2377), - [anon_sym_inline] = ACTIONS(2377), - [anon_sym_readonly] = ACTIONS(2377), - [anon_sym_sizeof] = ACTIONS(2377), - [sym__dedent] = ACTIONS(2379), - [sym_string_start] = ACTIONS(2379), - }, [713] = { - [sym_identifier] = ACTIONS(2381), - [anon_sym_import] = ACTIONS(2381), - [anon_sym_cimport] = ACTIONS(2381), - [anon_sym_from] = ACTIONS(2381), - [anon_sym_LPAREN] = ACTIONS(2383), - [anon_sym_STAR] = ACTIONS(2383), + [sym_list_splat_pattern] = STATE(2536), + [sym_primary_expression] = STATE(3239), + [sym_binary_operator] = STATE(2401), + [sym_unary_operator] = STATE(2401), + [sym_attribute] = STATE(2401), + [sym_subscript] = STATE(2401), + [sym_ellipsis] = STATE(2401), + [sym_call] = STATE(2401), + [sym_list] = STATE(2401), + [sym_set] = STATE(2401), + [sym_tuple] = STATE(2401), + [sym_dictionary] = STATE(2401), + [sym_list_comprehension] = STATE(2401), + [sym_dictionary_comprehension] = STATE(2401), + [sym_set_comprehension] = STATE(2401), + [sym_generator_expression] = STATE(2401), + [sym_parenthesized_expression] = STATE(2401), + [sym_concatenated_string] = STATE(2401), + [sym_string] = STATE(2161), + [sym_none] = STATE(2401), + [sym_await] = STATE(2401), + [sym_sizeof_expression] = STATE(2401), + [sym_cast_expression] = STATE(2401), + [sym_identifier] = ACTIONS(1237), + [anon_sym_DOT] = ACTIONS(1297), + [anon_sym_from] = ACTIONS(1300), + [anon_sym_LPAREN] = ACTIONS(1213), + [anon_sym_COMMA] = ACTIONS(1295), + [anon_sym_as] = ACTIONS(1300), + [anon_sym_STAR] = ACTIONS(1302), + [anon_sym_print] = ACTIONS(1304), + [anon_sym_GT_GT] = ACTIONS(1498), + [anon_sym_if] = ACTIONS(1300), + [anon_sym_COLON] = ACTIONS(1295), + [anon_sym_else] = ACTIONS(1300), + [anon_sym_match] = ACTIONS(1304), + [anon_sym_async] = ACTIONS(1304), + [anon_sym_in] = ACTIONS(1300), + [anon_sym_STAR_STAR] = ACTIONS(1498), + [anon_sym_exec] = ACTIONS(1304), + [anon_sym_EQ] = ACTIONS(1300), + [anon_sym_LBRACK] = ACTIONS(1219), + [anon_sym_AT] = ACTIONS(1498), + [anon_sym_DASH] = ACTIONS(1308), + [anon_sym_PIPE] = ACTIONS(1498), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_PLUS] = ACTIONS(1308), + [anon_sym_not] = ACTIONS(1300), + [anon_sym_and] = ACTIONS(1300), + [anon_sym_or] = ACTIONS(1300), + [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_PERCENT] = ACTIONS(1498), + [anon_sym_SLASH_SLASH] = ACTIONS(1498), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_CARET] = ACTIONS(1498), + [anon_sym_LT_LT] = ACTIONS(1498), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_is] = ACTIONS(1300), + [anon_sym_LT] = ACTIONS(1310), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_EQ_EQ] = ACTIONS(1295), + [anon_sym_BANG_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_GT] = ACTIONS(1300), + [anon_sym_LT_GT] = ACTIONS(1295), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), + [anon_sym_None] = ACTIONS(1235), + [sym_integer] = ACTIONS(1237), + [sym_float] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(1312), + [anon_sym_api] = ACTIONS(1304), + [sym_true] = ACTIONS(1237), + [sym_false] = ACTIONS(1237), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1245), + [sym_string_start] = ACTIONS(1247), + }, + [714] = { + [sym_list_splat_pattern] = STATE(2472), + [sym_primary_expression] = STATE(2223), + [sym_binary_operator] = STATE(2414), + [sym_unary_operator] = STATE(2414), + [sym_attribute] = STATE(2414), + [sym_subscript] = STATE(2414), + [sym_ellipsis] = STATE(2414), + [sym_call] = STATE(2414), + [sym_list] = STATE(2414), + [sym_set] = STATE(2414), + [sym_tuple] = STATE(2414), + [sym_dictionary] = STATE(2414), + [sym_list_comprehension] = STATE(2414), + [sym_dictionary_comprehension] = STATE(2414), + [sym_set_comprehension] = STATE(2414), + [sym_generator_expression] = STATE(2414), + [sym_parenthesized_expression] = STATE(2414), + [sym_concatenated_string] = STATE(2414), + [sym_string] = STATE(2147), + [sym_none] = STATE(2414), + [sym_await] = STATE(2414), + [sym_sizeof_expression] = STATE(2414), + [sym_cast_expression] = STATE(2414), + [sym_identifier] = ACTIONS(1342), + [anon_sym_DOT] = ACTIONS(1005), + [anon_sym_LPAREN] = ACTIONS(2377), + [anon_sym_RPAREN] = ACTIONS(1003), + [anon_sym_COMMA] = ACTIONS(1003), + [anon_sym_as] = ACTIONS(1005), + [anon_sym_STAR] = ACTIONS(2379), [anon_sym_print] = ACTIONS(2381), - [anon_sym_assert] = ACTIONS(2381), - [anon_sym_return] = ACTIONS(2381), - [anon_sym_del] = ACTIONS(2381), - [anon_sym_raise] = ACTIONS(2381), - [anon_sym_pass] = ACTIONS(2381), - [anon_sym_break] = ACTIONS(2381), - [anon_sym_continue] = ACTIONS(2381), - [anon_sym_if] = ACTIONS(2381), + [anon_sym_GT_GT] = ACTIONS(1003), + [anon_sym_COLON_EQ] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1005), [anon_sym_match] = ACTIONS(2381), [anon_sym_async] = ACTIONS(2381), - [anon_sym_for] = ACTIONS(2381), - [anon_sym_while] = ACTIONS(2381), - [anon_sym_try] = ACTIONS(2381), - [anon_sym_with] = ACTIONS(2381), - [anon_sym_def] = ACTIONS(2381), - [anon_sym_global] = ACTIONS(2381), - [anon_sym_nonlocal] = ACTIONS(2381), + [anon_sym_for] = ACTIONS(1005), + [anon_sym_in] = ACTIONS(1005), + [anon_sym_STAR_STAR] = ACTIONS(1003), [anon_sym_exec] = ACTIONS(2381), - [anon_sym_type] = ACTIONS(2381), - [anon_sym_class] = ACTIONS(2381), - [anon_sym_LBRACK] = ACTIONS(2383), - [anon_sym_AT] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2383), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_PLUS] = ACTIONS(2383), - [anon_sym_not] = ACTIONS(2381), - [anon_sym_AMP] = ACTIONS(2383), - [anon_sym_TILDE] = ACTIONS(2383), - [anon_sym_LT] = ACTIONS(2383), - [anon_sym_lambda] = ACTIONS(2381), - [anon_sym_yield] = ACTIONS(2381), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2383), - [anon_sym_None] = ACTIONS(2381), - [sym_integer] = ACTIONS(2381), - [sym_float] = ACTIONS(2383), - [anon_sym_await] = ACTIONS(2381), + [anon_sym_EQ] = ACTIONS(2383), + [anon_sym_LBRACK] = ACTIONS(1472), + [anon_sym_AT] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1326), + [anon_sym_PIPE] = ACTIONS(1003), + [anon_sym_LBRACE] = ACTIONS(1328), + [anon_sym_PLUS] = ACTIONS(1326), + [anon_sym_not] = ACTIONS(1005), + [anon_sym_and] = ACTIONS(1005), + [anon_sym_or] = ACTIONS(1005), + [anon_sym_SLASH] = ACTIONS(1005), + [anon_sym_PERCENT] = ACTIONS(1003), + [anon_sym_SLASH_SLASH] = ACTIONS(1003), + [anon_sym_AMP] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1003), + [anon_sym_LT_LT] = ACTIONS(1003), + [anon_sym_TILDE] = ACTIONS(1326), + [anon_sym_is] = ACTIONS(1005), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(1003), + [anon_sym_EQ_EQ] = ACTIONS(1003), + [anon_sym_BANG_EQ] = ACTIONS(1003), + [anon_sym_GT_EQ] = ACTIONS(1003), + [anon_sym_GT] = ACTIONS(1005), + [anon_sym_LT_GT] = ACTIONS(1003), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1338), + [anon_sym_None] = ACTIONS(1340), + [sym_integer] = ACTIONS(1342), + [sym_float] = ACTIONS(1344), + [anon_sym_await] = ACTIONS(2387), [anon_sym_api] = ACTIONS(2381), - [sym_true] = ACTIONS(2381), - [sym_false] = ACTIONS(2381), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2381), - [anon_sym_include] = ACTIONS(2381), - [anon_sym_DEF] = ACTIONS(2381), - [anon_sym_cdef] = ACTIONS(2381), - [anon_sym_cpdef] = ACTIONS(2381), - [anon_sym_int] = ACTIONS(2381), - [anon_sym_double] = ACTIONS(2381), - [anon_sym_complex] = ACTIONS(2381), - [anon_sym_new] = ACTIONS(2381), - [anon_sym_signed] = ACTIONS(2381), - [anon_sym_unsigned] = ACTIONS(2381), - [anon_sym_char] = ACTIONS(2381), - [anon_sym_short] = ACTIONS(2381), - [anon_sym_long] = ACTIONS(2381), - [anon_sym_const] = ACTIONS(2381), - [anon_sym_volatile] = ACTIONS(2381), - [anon_sym_ctypedef] = ACTIONS(2381), - [anon_sym_struct] = ACTIONS(2381), - [anon_sym_union] = ACTIONS(2381), - [anon_sym_enum] = ACTIONS(2381), - [anon_sym_cppclass] = ACTIONS(2381), - [anon_sym_fused] = ACTIONS(2381), - [anon_sym_public] = ACTIONS(2381), - [anon_sym_packed] = ACTIONS(2381), - [anon_sym_inline] = ACTIONS(2381), - [anon_sym_readonly] = ACTIONS(2381), - [anon_sym_sizeof] = ACTIONS(2381), - [sym__dedent] = ACTIONS(2383), - [sym_string_start] = ACTIONS(2383), - }, - [714] = { - [sym_identifier] = ACTIONS(2385), - [anon_sym_import] = ACTIONS(2385), - [anon_sym_cimport] = ACTIONS(2385), - [anon_sym_from] = ACTIONS(2385), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_STAR] = ACTIONS(2387), - [anon_sym_print] = ACTIONS(2385), - [anon_sym_assert] = ACTIONS(2385), - [anon_sym_return] = ACTIONS(2385), - [anon_sym_del] = ACTIONS(2385), - [anon_sym_raise] = ACTIONS(2385), - [anon_sym_pass] = ACTIONS(2385), - [anon_sym_break] = ACTIONS(2385), - [anon_sym_continue] = ACTIONS(2385), - [anon_sym_if] = ACTIONS(2385), - [anon_sym_match] = ACTIONS(2385), - [anon_sym_async] = ACTIONS(2385), - [anon_sym_for] = ACTIONS(2385), - [anon_sym_while] = ACTIONS(2385), - [anon_sym_try] = ACTIONS(2385), - [anon_sym_with] = ACTIONS(2385), - [anon_sym_def] = ACTIONS(2385), - [anon_sym_global] = ACTIONS(2385), - [anon_sym_nonlocal] = ACTIONS(2385), - [anon_sym_exec] = ACTIONS(2385), - [anon_sym_type] = ACTIONS(2385), - [anon_sym_class] = ACTIONS(2385), - [anon_sym_LBRACK] = ACTIONS(2387), - [anon_sym_AT] = ACTIONS(2387), - [anon_sym_DASH] = ACTIONS(2387), - [anon_sym_LBRACE] = ACTIONS(2387), - [anon_sym_PLUS] = ACTIONS(2387), - [anon_sym_not] = ACTIONS(2385), - [anon_sym_AMP] = ACTIONS(2387), - [anon_sym_TILDE] = ACTIONS(2387), - [anon_sym_LT] = ACTIONS(2387), - [anon_sym_lambda] = ACTIONS(2385), - [anon_sym_yield] = ACTIONS(2385), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2387), - [anon_sym_None] = ACTIONS(2385), - [sym_integer] = ACTIONS(2385), - [sym_float] = ACTIONS(2387), - [anon_sym_await] = ACTIONS(2385), - [anon_sym_api] = ACTIONS(2385), - [sym_true] = ACTIONS(2385), - [sym_false] = ACTIONS(2385), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2385), - [anon_sym_include] = ACTIONS(2385), - [anon_sym_DEF] = ACTIONS(2385), - [anon_sym_cdef] = ACTIONS(2385), - [anon_sym_cpdef] = ACTIONS(2385), - [anon_sym_int] = ACTIONS(2385), - [anon_sym_double] = ACTIONS(2385), - [anon_sym_complex] = ACTIONS(2385), - [anon_sym_new] = ACTIONS(2385), - [anon_sym_signed] = ACTIONS(2385), - [anon_sym_unsigned] = ACTIONS(2385), - [anon_sym_char] = ACTIONS(2385), - [anon_sym_short] = ACTIONS(2385), - [anon_sym_long] = ACTIONS(2385), - [anon_sym_const] = ACTIONS(2385), - [anon_sym_volatile] = ACTIONS(2385), - [anon_sym_ctypedef] = ACTIONS(2385), - [anon_sym_struct] = ACTIONS(2385), - [anon_sym_union] = ACTIONS(2385), - [anon_sym_enum] = ACTIONS(2385), - [anon_sym_cppclass] = ACTIONS(2385), - [anon_sym_fused] = ACTIONS(2385), - [anon_sym_public] = ACTIONS(2385), - [anon_sym_packed] = ACTIONS(2385), - [anon_sym_inline] = ACTIONS(2385), - [anon_sym_readonly] = ACTIONS(2385), - [anon_sym_sizeof] = ACTIONS(2385), - [sym__dedent] = ACTIONS(2387), - [sym_string_start] = ACTIONS(2387), + [sym_true] = ACTIONS(1342), + [sym_false] = ACTIONS(1342), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1360), + [sym_string_start] = ACTIONS(1362), }, [715] = { [sym_identifier] = ACTIONS(2389), @@ -95807,313 +95860,1418 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(2391), }, [716] = { - [sym_list_splat_pattern] = STATE(2432), - [sym_primary_expression] = STATE(3190), - [sym_binary_operator] = STATE(2549), - [sym_unary_operator] = STATE(2549), - [sym_attribute] = STATE(2549), - [sym_subscript] = STATE(2549), - [sym_ellipsis] = STATE(2549), - [sym_call] = STATE(2549), - [sym_list] = STATE(2549), - [sym_set] = STATE(2549), - [sym_tuple] = STATE(2549), - [sym_dictionary] = STATE(2549), - [sym_list_comprehension] = STATE(2549), - [sym_dictionary_comprehension] = STATE(2549), - [sym_set_comprehension] = STATE(2549), - [sym_generator_expression] = STATE(2549), - [sym_parenthesized_expression] = STATE(2549), - [sym_concatenated_string] = STATE(2549), - [sym_string] = STATE(2140), - [sym_none] = STATE(2549), - [sym_await] = STATE(2549), - [sym_sizeof_expression] = STATE(2549), - [sym_cast_expression] = STATE(2549), + [sym_list_splat_pattern] = STATE(2284), + [sym_primary_expression] = STATE(2166), + [sym_binary_operator] = STATE(2257), + [sym_unary_operator] = STATE(2257), + [sym_attribute] = STATE(2257), + [sym_subscript] = STATE(2257), + [sym_ellipsis] = STATE(2257), + [sym_call] = STATE(2257), + [sym_list] = STATE(2257), + [sym_set] = STATE(2257), + [sym_tuple] = STATE(2257), + [sym_dictionary] = STATE(2257), + [sym_list_comprehension] = STATE(2257), + [sym_dictionary_comprehension] = STATE(2257), + [sym_set_comprehension] = STATE(2257), + [sym_generator_expression] = STATE(2257), + [sym_parenthesized_expression] = STATE(2257), + [sym_concatenated_string] = STATE(2257), + [sym_string] = STATE(2089), + [sym_none] = STATE(2257), + [sym_await] = STATE(2257), + [sym_sizeof_expression] = STATE(2257), + [sym_cast_expression] = STATE(2257), + [sym_identifier] = ACTIONS(1941), + [anon_sym_DOT] = ACTIONS(1297), + [anon_sym_LPAREN] = ACTIONS(1943), + [anon_sym_COMMA] = ACTIONS(1498), + [anon_sym_as] = ACTIONS(1297), + [anon_sym_STAR] = ACTIONS(1945), + [anon_sym_print] = ACTIONS(1947), + [anon_sym_GT_GT] = ACTIONS(1498), + [anon_sym_COLON_EQ] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1297), + [anon_sym_COLON] = ACTIONS(1300), + [anon_sym_match] = ACTIONS(1947), + [anon_sym_async] = ACTIONS(1947), + [anon_sym_for] = ACTIONS(1300), + [anon_sym_in] = ACTIONS(1297), + [anon_sym_STAR_STAR] = ACTIONS(1498), + [anon_sym_exec] = ACTIONS(1947), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_AT] = ACTIONS(1498), + [anon_sym_DASH] = ACTIONS(1951), + [anon_sym_PIPE] = ACTIONS(1498), + [anon_sym_LBRACE] = ACTIONS(1953), + [anon_sym_RBRACE] = ACTIONS(1498), + [anon_sym_PLUS] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(1297), + [anon_sym_and] = ACTIONS(1297), + [anon_sym_or] = ACTIONS(1297), + [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_PERCENT] = ACTIONS(1498), + [anon_sym_SLASH_SLASH] = ACTIONS(1498), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1498), + [anon_sym_LT_LT] = ACTIONS(1498), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_is] = ACTIONS(1297), + [anon_sym_LT] = ACTIONS(1955), + [anon_sym_LT_EQ] = ACTIONS(1498), + [anon_sym_EQ_EQ] = ACTIONS(1498), + [anon_sym_BANG_EQ] = ACTIONS(1498), + [anon_sym_GT_EQ] = ACTIONS(1498), + [anon_sym_GT] = ACTIONS(1297), + [anon_sym_LT_GT] = ACTIONS(1498), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1957), + [anon_sym_None] = ACTIONS(1959), + [sym_integer] = ACTIONS(1941), + [sym_float] = ACTIONS(1961), + [anon_sym_await] = ACTIONS(1963), + [anon_sym_api] = ACTIONS(1947), + [sym_true] = ACTIONS(1941), + [sym_false] = ACTIONS(1941), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1965), + [sym_string_start] = ACTIONS(1967), + }, + [717] = { + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4432), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_int_type] = STATE(3449), + [sym__signedness] = STATE(3148), + [sym__longness] = STATE(3367), + [sym_function_pointer_type] = STATE(3449), + [sym_c_type] = STATE(5383), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(2393), + [anon_sym_LPAREN] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_print] = ACTIONS(2399), + [anon_sym_match] = ACTIONS(2399), + [anon_sym_async] = ACTIONS(2399), + [anon_sym_exec] = ACTIONS(2399), + [anon_sym_LBRACK] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_LBRACE] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(1384), + [anon_sym_not] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_TILDE] = ACTIONS(1384), + [anon_sym_LT] = ACTIONS(1390), + [anon_sym_lambda] = ACTIONS(1392), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1394), + [anon_sym_None] = ACTIONS(1396), + [sym_integer] = ACTIONS(1398), + [sym_float] = ACTIONS(1400), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_api] = ACTIONS(2399), + [sym_true] = ACTIONS(1398), + [sym_false] = ACTIONS(1398), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1348), + [anon_sym_double] = ACTIONS(1348), + [anon_sym_complex] = ACTIONS(1348), + [anon_sym_new] = ACTIONS(1404), + [anon_sym_signed] = ACTIONS(1352), + [anon_sym_unsigned] = ACTIONS(1352), + [anon_sym_char] = ACTIONS(1354), + [anon_sym_short] = ACTIONS(1354), + [anon_sym_long] = ACTIONS(1356), + [anon_sym_const] = ACTIONS(1358), + [anon_sym_volatile] = ACTIONS(1358), + [anon_sym_sizeof] = ACTIONS(1406), + [sym_string_start] = ACTIONS(1408), + }, + [718] = { + [sym_identifier] = ACTIONS(2331), + [anon_sym_import] = ACTIONS(2331), + [anon_sym_cimport] = ACTIONS(2331), + [anon_sym_from] = ACTIONS(2331), + [anon_sym_LPAREN] = ACTIONS(2335), + [anon_sym_STAR] = ACTIONS(2335), + [anon_sym_print] = ACTIONS(2331), + [anon_sym_assert] = ACTIONS(2331), + [anon_sym_return] = ACTIONS(2331), + [anon_sym_del] = ACTIONS(2331), + [anon_sym_raise] = ACTIONS(2331), + [anon_sym_pass] = ACTIONS(2331), + [anon_sym_break] = ACTIONS(2331), + [anon_sym_continue] = ACTIONS(2331), + [anon_sym_if] = ACTIONS(2331), + [anon_sym_match] = ACTIONS(2331), + [anon_sym_async] = ACTIONS(2331), + [anon_sym_for] = ACTIONS(2331), + [anon_sym_while] = ACTIONS(2331), + [anon_sym_try] = ACTIONS(2331), + [anon_sym_with] = ACTIONS(2331), + [anon_sym_def] = ACTIONS(2331), + [anon_sym_global] = ACTIONS(2331), + [anon_sym_nonlocal] = ACTIONS(2331), + [anon_sym_exec] = ACTIONS(2331), + [anon_sym_type] = ACTIONS(2331), + [anon_sym_class] = ACTIONS(2331), + [anon_sym_LBRACK] = ACTIONS(2335), + [anon_sym_AT] = ACTIONS(2335), + [anon_sym_DASH] = ACTIONS(2335), + [anon_sym_LBRACE] = ACTIONS(2335), + [anon_sym_PLUS] = ACTIONS(2335), + [anon_sym_not] = ACTIONS(2331), + [anon_sym_AMP] = ACTIONS(2335), + [anon_sym_TILDE] = ACTIONS(2335), + [anon_sym_LT] = ACTIONS(2335), + [anon_sym_lambda] = ACTIONS(2331), + [anon_sym_yield] = ACTIONS(2331), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2335), + [anon_sym_None] = ACTIONS(2331), + [sym_integer] = ACTIONS(2331), + [sym_float] = ACTIONS(2335), + [anon_sym_await] = ACTIONS(2331), + [anon_sym_api] = ACTIONS(2331), + [sym_true] = ACTIONS(2331), + [sym_false] = ACTIONS(2331), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2331), + [anon_sym_include] = ACTIONS(2331), + [anon_sym_DEF] = ACTIONS(2331), + [anon_sym_cdef] = ACTIONS(2331), + [anon_sym_cpdef] = ACTIONS(2331), + [anon_sym_int] = ACTIONS(2331), + [anon_sym_double] = ACTIONS(2331), + [anon_sym_complex] = ACTIONS(2331), + [anon_sym_new] = ACTIONS(2331), + [anon_sym_signed] = ACTIONS(2331), + [anon_sym_unsigned] = ACTIONS(2331), + [anon_sym_char] = ACTIONS(2331), + [anon_sym_short] = ACTIONS(2331), + [anon_sym_long] = ACTIONS(2331), + [anon_sym_const] = ACTIONS(2331), + [anon_sym_volatile] = ACTIONS(2331), + [anon_sym_ctypedef] = ACTIONS(2331), + [anon_sym_struct] = ACTIONS(2331), + [anon_sym_union] = ACTIONS(2331), + [anon_sym_enum] = ACTIONS(2331), + [anon_sym_cppclass] = ACTIONS(2331), + [anon_sym_fused] = ACTIONS(2331), + [anon_sym_public] = ACTIONS(2331), + [anon_sym_packed] = ACTIONS(2331), + [anon_sym_inline] = ACTIONS(2331), + [anon_sym_readonly] = ACTIONS(2331), + [anon_sym_sizeof] = ACTIONS(2331), + [sym__dedent] = ACTIONS(2335), + [sym_string_start] = ACTIONS(2335), + }, + [719] = { + [sym_identifier] = ACTIONS(2403), + [anon_sym_import] = ACTIONS(2403), + [anon_sym_cimport] = ACTIONS(2403), + [anon_sym_from] = ACTIONS(2403), + [anon_sym_LPAREN] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2405), + [anon_sym_print] = ACTIONS(2403), + [anon_sym_assert] = ACTIONS(2403), + [anon_sym_return] = ACTIONS(2403), + [anon_sym_del] = ACTIONS(2403), + [anon_sym_raise] = ACTIONS(2403), + [anon_sym_pass] = ACTIONS(2403), + [anon_sym_break] = ACTIONS(2403), + [anon_sym_continue] = ACTIONS(2403), + [anon_sym_if] = ACTIONS(2403), + [anon_sym_match] = ACTIONS(2403), + [anon_sym_async] = ACTIONS(2403), + [anon_sym_for] = ACTIONS(2403), + [anon_sym_while] = ACTIONS(2403), + [anon_sym_try] = ACTIONS(2403), + [anon_sym_with] = ACTIONS(2403), + [anon_sym_def] = ACTIONS(2403), + [anon_sym_global] = ACTIONS(2403), + [anon_sym_nonlocal] = ACTIONS(2403), + [anon_sym_exec] = ACTIONS(2403), + [anon_sym_type] = ACTIONS(2403), + [anon_sym_class] = ACTIONS(2403), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_AT] = ACTIONS(2405), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_TILDE] = ACTIONS(2405), + [anon_sym_LT] = ACTIONS(2405), + [anon_sym_lambda] = ACTIONS(2403), + [anon_sym_yield] = ACTIONS(2403), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2405), + [anon_sym_None] = ACTIONS(2403), + [sym_integer] = ACTIONS(2403), + [sym_float] = ACTIONS(2405), + [anon_sym_await] = ACTIONS(2403), + [anon_sym_api] = ACTIONS(2403), + [sym_true] = ACTIONS(2403), + [sym_false] = ACTIONS(2403), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2403), + [anon_sym_include] = ACTIONS(2403), + [anon_sym_DEF] = ACTIONS(2403), + [anon_sym_cdef] = ACTIONS(2403), + [anon_sym_cpdef] = ACTIONS(2403), + [anon_sym_int] = ACTIONS(2403), + [anon_sym_double] = ACTIONS(2403), + [anon_sym_complex] = ACTIONS(2403), + [anon_sym_new] = ACTIONS(2403), + [anon_sym_signed] = ACTIONS(2403), + [anon_sym_unsigned] = ACTIONS(2403), + [anon_sym_char] = ACTIONS(2403), + [anon_sym_short] = ACTIONS(2403), + [anon_sym_long] = ACTIONS(2403), + [anon_sym_const] = ACTIONS(2403), + [anon_sym_volatile] = ACTIONS(2403), + [anon_sym_ctypedef] = ACTIONS(2403), + [anon_sym_struct] = ACTIONS(2403), + [anon_sym_union] = ACTIONS(2403), + [anon_sym_enum] = ACTIONS(2403), + [anon_sym_cppclass] = ACTIONS(2403), + [anon_sym_fused] = ACTIONS(2403), + [anon_sym_public] = ACTIONS(2403), + [anon_sym_packed] = ACTIONS(2403), + [anon_sym_inline] = ACTIONS(2403), + [anon_sym_readonly] = ACTIONS(2403), + [anon_sym_sizeof] = ACTIONS(2403), + [sym__dedent] = ACTIONS(2405), + [sym_string_start] = ACTIONS(2405), + }, + [720] = { + [sym_identifier] = ACTIONS(2407), + [anon_sym_import] = ACTIONS(2407), + [anon_sym_cimport] = ACTIONS(2407), + [anon_sym_from] = ACTIONS(2407), + [anon_sym_LPAREN] = ACTIONS(2409), + [anon_sym_STAR] = ACTIONS(2409), + [anon_sym_print] = ACTIONS(2407), + [anon_sym_assert] = ACTIONS(2407), + [anon_sym_return] = ACTIONS(2407), + [anon_sym_del] = ACTIONS(2407), + [anon_sym_raise] = ACTIONS(2407), + [anon_sym_pass] = ACTIONS(2407), + [anon_sym_break] = ACTIONS(2407), + [anon_sym_continue] = ACTIONS(2407), + [anon_sym_if] = ACTIONS(2407), + [anon_sym_match] = ACTIONS(2407), + [anon_sym_async] = ACTIONS(2407), + [anon_sym_for] = ACTIONS(2407), + [anon_sym_while] = ACTIONS(2407), + [anon_sym_try] = ACTIONS(2407), + [anon_sym_with] = ACTIONS(2407), + [anon_sym_def] = ACTIONS(2407), + [anon_sym_global] = ACTIONS(2407), + [anon_sym_nonlocal] = ACTIONS(2407), + [anon_sym_exec] = ACTIONS(2407), + [anon_sym_type] = ACTIONS(2407), + [anon_sym_class] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2409), + [anon_sym_AT] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(2409), + [anon_sym_LBRACE] = ACTIONS(2409), + [anon_sym_PLUS] = ACTIONS(2409), + [anon_sym_not] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2409), + [anon_sym_TILDE] = ACTIONS(2409), + [anon_sym_LT] = ACTIONS(2409), + [anon_sym_lambda] = ACTIONS(2407), + [anon_sym_yield] = ACTIONS(2407), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2409), + [anon_sym_None] = ACTIONS(2407), + [sym_integer] = ACTIONS(2407), + [sym_float] = ACTIONS(2409), + [anon_sym_await] = ACTIONS(2407), + [anon_sym_api] = ACTIONS(2407), + [sym_true] = ACTIONS(2407), + [sym_false] = ACTIONS(2407), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2407), + [anon_sym_include] = ACTIONS(2407), + [anon_sym_DEF] = ACTIONS(2407), + [anon_sym_cdef] = ACTIONS(2407), + [anon_sym_cpdef] = ACTIONS(2407), + [anon_sym_int] = ACTIONS(2407), + [anon_sym_double] = ACTIONS(2407), + [anon_sym_complex] = ACTIONS(2407), + [anon_sym_new] = ACTIONS(2407), + [anon_sym_signed] = ACTIONS(2407), + [anon_sym_unsigned] = ACTIONS(2407), + [anon_sym_char] = ACTIONS(2407), + [anon_sym_short] = ACTIONS(2407), + [anon_sym_long] = ACTIONS(2407), + [anon_sym_const] = ACTIONS(2407), + [anon_sym_volatile] = ACTIONS(2407), + [anon_sym_ctypedef] = ACTIONS(2407), + [anon_sym_struct] = ACTIONS(2407), + [anon_sym_union] = ACTIONS(2407), + [anon_sym_enum] = ACTIONS(2407), + [anon_sym_cppclass] = ACTIONS(2407), + [anon_sym_fused] = ACTIONS(2407), + [anon_sym_public] = ACTIONS(2407), + [anon_sym_packed] = ACTIONS(2407), + [anon_sym_inline] = ACTIONS(2407), + [anon_sym_readonly] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2407), + [sym__dedent] = ACTIONS(2409), + [sym_string_start] = ACTIONS(2409), + }, + [721] = { + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4439), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_int_type] = STATE(3449), + [sym__signedness] = STATE(3148), + [sym__longness] = STATE(3367), + [sym_function_pointer_type] = STATE(3449), + [sym_c_type] = STATE(5239), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(2393), + [anon_sym_LPAREN] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_print] = ACTIONS(2399), + [anon_sym_match] = ACTIONS(2399), + [anon_sym_async] = ACTIONS(2399), + [anon_sym_exec] = ACTIONS(2399), + [anon_sym_LBRACK] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_LBRACE] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(1384), + [anon_sym_not] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_TILDE] = ACTIONS(1384), + [anon_sym_LT] = ACTIONS(1390), + [anon_sym_lambda] = ACTIONS(1392), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1394), + [anon_sym_None] = ACTIONS(1396), + [sym_integer] = ACTIONS(1398), + [sym_float] = ACTIONS(1400), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_api] = ACTIONS(2399), + [sym_true] = ACTIONS(1398), + [sym_false] = ACTIONS(1398), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1348), + [anon_sym_double] = ACTIONS(1348), + [anon_sym_complex] = ACTIONS(1348), + [anon_sym_new] = ACTIONS(1404), + [anon_sym_signed] = ACTIONS(1352), + [anon_sym_unsigned] = ACTIONS(1352), + [anon_sym_char] = ACTIONS(1354), + [anon_sym_short] = ACTIONS(1354), + [anon_sym_long] = ACTIONS(1356), + [anon_sym_const] = ACTIONS(1358), + [anon_sym_volatile] = ACTIONS(1358), + [anon_sym_sizeof] = ACTIONS(1406), + [sym_string_start] = ACTIONS(1408), + }, + [722] = { + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4464), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_int_type] = STATE(3449), + [sym__signedness] = STATE(3148), + [sym__longness] = STATE(3367), + [sym_function_pointer_type] = STATE(3449), + [sym_c_type] = STATE(5388), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(2393), + [anon_sym_LPAREN] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_print] = ACTIONS(2399), + [anon_sym_match] = ACTIONS(2399), + [anon_sym_async] = ACTIONS(2399), + [anon_sym_exec] = ACTIONS(2399), + [anon_sym_LBRACK] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_LBRACE] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(1384), + [anon_sym_not] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_TILDE] = ACTIONS(1384), + [anon_sym_LT] = ACTIONS(1390), + [anon_sym_lambda] = ACTIONS(1392), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1394), + [anon_sym_None] = ACTIONS(1396), + [sym_integer] = ACTIONS(1398), + [sym_float] = ACTIONS(1400), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_api] = ACTIONS(2399), + [sym_true] = ACTIONS(1398), + [sym_false] = ACTIONS(1398), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1348), + [anon_sym_double] = ACTIONS(1348), + [anon_sym_complex] = ACTIONS(1348), + [anon_sym_new] = ACTIONS(1404), + [anon_sym_signed] = ACTIONS(1352), + [anon_sym_unsigned] = ACTIONS(1352), + [anon_sym_char] = ACTIONS(1354), + [anon_sym_short] = ACTIONS(1354), + [anon_sym_long] = ACTIONS(1356), + [anon_sym_const] = ACTIONS(1358), + [anon_sym_volatile] = ACTIONS(1358), + [anon_sym_sizeof] = ACTIONS(1406), + [sym_string_start] = ACTIONS(1408), + }, + [723] = { + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4436), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_int_type] = STATE(3449), + [sym__signedness] = STATE(3148), + [sym__longness] = STATE(3367), + [sym_function_pointer_type] = STATE(3449), + [sym_c_type] = STATE(5195), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(2393), + [anon_sym_LPAREN] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_print] = ACTIONS(2399), + [anon_sym_match] = ACTIONS(2399), + [anon_sym_async] = ACTIONS(2399), + [anon_sym_exec] = ACTIONS(2399), + [anon_sym_LBRACK] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_LBRACE] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(1384), + [anon_sym_not] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_TILDE] = ACTIONS(1384), + [anon_sym_LT] = ACTIONS(1390), + [anon_sym_lambda] = ACTIONS(1392), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1394), + [anon_sym_None] = ACTIONS(1396), + [sym_integer] = ACTIONS(1398), + [sym_float] = ACTIONS(1400), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_api] = ACTIONS(2399), + [sym_true] = ACTIONS(1398), + [sym_false] = ACTIONS(1398), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1348), + [anon_sym_double] = ACTIONS(1348), + [anon_sym_complex] = ACTIONS(1348), + [anon_sym_new] = ACTIONS(1404), + [anon_sym_signed] = ACTIONS(1352), + [anon_sym_unsigned] = ACTIONS(1352), + [anon_sym_char] = ACTIONS(1354), + [anon_sym_short] = ACTIONS(1354), + [anon_sym_long] = ACTIONS(1356), + [anon_sym_const] = ACTIONS(1358), + [anon_sym_volatile] = ACTIONS(1358), + [anon_sym_sizeof] = ACTIONS(1406), + [sym_string_start] = ACTIONS(1408), + }, + [724] = { + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4315), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_int_type] = STATE(3449), + [sym__signedness] = STATE(3148), + [sym__longness] = STATE(3367), + [sym_function_pointer_type] = STATE(3449), + [sym_c_type] = STATE(5173), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(2393), + [anon_sym_LPAREN] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_print] = ACTIONS(2399), + [anon_sym_match] = ACTIONS(2399), + [anon_sym_async] = ACTIONS(2399), + [anon_sym_exec] = ACTIONS(2399), + [anon_sym_LBRACK] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_LBRACE] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(1384), + [anon_sym_not] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_TILDE] = ACTIONS(1384), + [anon_sym_LT] = ACTIONS(1390), + [anon_sym_lambda] = ACTIONS(1392), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1394), + [anon_sym_None] = ACTIONS(1396), + [sym_integer] = ACTIONS(1398), + [sym_float] = ACTIONS(1400), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_api] = ACTIONS(2399), + [sym_true] = ACTIONS(1398), + [sym_false] = ACTIONS(1398), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1348), + [anon_sym_double] = ACTIONS(1348), + [anon_sym_complex] = ACTIONS(1348), + [anon_sym_new] = ACTIONS(1404), + [anon_sym_signed] = ACTIONS(1352), + [anon_sym_unsigned] = ACTIONS(1352), + [anon_sym_char] = ACTIONS(1354), + [anon_sym_short] = ACTIONS(1354), + [anon_sym_long] = ACTIONS(1356), + [anon_sym_const] = ACTIONS(1358), + [anon_sym_volatile] = ACTIONS(1358), + [anon_sym_sizeof] = ACTIONS(1406), + [sym_string_start] = ACTIONS(1408), + }, + [725] = { + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4344), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_int_type] = STATE(3449), + [sym__signedness] = STATE(3148), + [sym__longness] = STATE(3367), + [sym_function_pointer_type] = STATE(3449), + [sym_c_type] = STATE(5214), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(2393), + [anon_sym_LPAREN] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_print] = ACTIONS(2399), + [anon_sym_match] = ACTIONS(2399), + [anon_sym_async] = ACTIONS(2399), + [anon_sym_exec] = ACTIONS(2399), + [anon_sym_LBRACK] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_LBRACE] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(1384), + [anon_sym_not] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_TILDE] = ACTIONS(1384), + [anon_sym_LT] = ACTIONS(1390), + [anon_sym_lambda] = ACTIONS(1392), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1394), + [anon_sym_None] = ACTIONS(1396), + [sym_integer] = ACTIONS(1398), + [sym_float] = ACTIONS(1400), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_api] = ACTIONS(2399), + [sym_true] = ACTIONS(1398), + [sym_false] = ACTIONS(1398), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1348), + [anon_sym_double] = ACTIONS(1348), + [anon_sym_complex] = ACTIONS(1348), + [anon_sym_new] = ACTIONS(1404), + [anon_sym_signed] = ACTIONS(1352), + [anon_sym_unsigned] = ACTIONS(1352), + [anon_sym_char] = ACTIONS(1354), + [anon_sym_short] = ACTIONS(1354), + [anon_sym_long] = ACTIONS(1356), + [anon_sym_const] = ACTIONS(1358), + [anon_sym_volatile] = ACTIONS(1358), + [anon_sym_sizeof] = ACTIONS(1406), + [sym_string_start] = ACTIONS(1408), + }, + [726] = { + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4308), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_int_type] = STATE(3449), + [sym__signedness] = STATE(3148), + [sym__longness] = STATE(3367), + [sym_function_pointer_type] = STATE(3449), + [sym_c_type] = STATE(5281), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(2393), + [anon_sym_LPAREN] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_print] = ACTIONS(2399), + [anon_sym_match] = ACTIONS(2399), + [anon_sym_async] = ACTIONS(2399), + [anon_sym_exec] = ACTIONS(2399), + [anon_sym_LBRACK] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_LBRACE] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(1384), + [anon_sym_not] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_TILDE] = ACTIONS(1384), + [anon_sym_LT] = ACTIONS(1390), + [anon_sym_lambda] = ACTIONS(1392), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1394), + [anon_sym_None] = ACTIONS(1396), + [sym_integer] = ACTIONS(1398), + [sym_float] = ACTIONS(1400), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_api] = ACTIONS(2399), + [sym_true] = ACTIONS(1398), + [sym_false] = ACTIONS(1398), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1348), + [anon_sym_double] = ACTIONS(1348), + [anon_sym_complex] = ACTIONS(1348), + [anon_sym_new] = ACTIONS(1404), + [anon_sym_signed] = ACTIONS(1352), + [anon_sym_unsigned] = ACTIONS(1352), + [anon_sym_char] = ACTIONS(1354), + [anon_sym_short] = ACTIONS(1354), + [anon_sym_long] = ACTIONS(1356), + [anon_sym_const] = ACTIONS(1358), + [anon_sym_volatile] = ACTIONS(1358), + [anon_sym_sizeof] = ACTIONS(1406), + [sym_string_start] = ACTIONS(1408), + }, + [727] = { + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4348), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_int_type] = STATE(3449), + [sym__signedness] = STATE(3148), + [sym__longness] = STATE(3367), + [sym_function_pointer_type] = STATE(3449), + [sym_c_type] = STATE(5361), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(2393), + [anon_sym_LPAREN] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_print] = ACTIONS(2399), + [anon_sym_match] = ACTIONS(2399), + [anon_sym_async] = ACTIONS(2399), + [anon_sym_exec] = ACTIONS(2399), + [anon_sym_LBRACK] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_LBRACE] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(1384), + [anon_sym_not] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_TILDE] = ACTIONS(1384), + [anon_sym_LT] = ACTIONS(1390), + [anon_sym_lambda] = ACTIONS(1392), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1394), + [anon_sym_None] = ACTIONS(1396), + [sym_integer] = ACTIONS(1398), + [sym_float] = ACTIONS(1400), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_api] = ACTIONS(2399), + [sym_true] = ACTIONS(1398), + [sym_false] = ACTIONS(1398), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1348), + [anon_sym_double] = ACTIONS(1348), + [anon_sym_complex] = ACTIONS(1348), + [anon_sym_new] = ACTIONS(1404), + [anon_sym_signed] = ACTIONS(1352), + [anon_sym_unsigned] = ACTIONS(1352), + [anon_sym_char] = ACTIONS(1354), + [anon_sym_short] = ACTIONS(1354), + [anon_sym_long] = ACTIONS(1356), + [anon_sym_const] = ACTIONS(1358), + [anon_sym_volatile] = ACTIONS(1358), + [anon_sym_sizeof] = ACTIONS(1406), + [sym_string_start] = ACTIONS(1408), + }, + [728] = { + [sym_list_splat_pattern] = STATE(2256), + [sym_primary_expression] = STATE(2172), + [sym_binary_operator] = STATE(2298), + [sym_unary_operator] = STATE(2298), + [sym_attribute] = STATE(2298), + [sym_subscript] = STATE(2298), + [sym_ellipsis] = STATE(2298), + [sym_call] = STATE(2298), + [sym_list] = STATE(2298), + [sym_set] = STATE(2298), + [sym_tuple] = STATE(2298), + [sym_dictionary] = STATE(2298), + [sym_list_comprehension] = STATE(2298), + [sym_dictionary_comprehension] = STATE(2298), + [sym_set_comprehension] = STATE(2298), + [sym_generator_expression] = STATE(2298), + [sym_parenthesized_expression] = STATE(2298), + [sym_concatenated_string] = STATE(2298), + [sym_string] = STATE(2099), + [sym_none] = STATE(2298), + [sym_await] = STATE(2298), + [sym_sizeof_expression] = STATE(2298), + [sym_cast_expression] = STATE(2298), + [sym_identifier] = ACTIONS(2411), + [anon_sym_DOT] = ACTIONS(1005), + [anon_sym_LPAREN] = ACTIONS(2413), + [anon_sym_COMMA] = ACTIONS(1003), + [anon_sym_as] = ACTIONS(1005), + [anon_sym_STAR] = ACTIONS(2415), + [anon_sym_print] = ACTIONS(2417), + [anon_sym_GT_GT] = ACTIONS(1003), + [anon_sym_COLON_EQ] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1005), + [anon_sym_COLON] = ACTIONS(1005), + [anon_sym_match] = ACTIONS(2417), + [anon_sym_async] = ACTIONS(2417), + [anon_sym_for] = ACTIONS(1005), + [anon_sym_in] = ACTIONS(1005), + [anon_sym_STAR_STAR] = ACTIONS(1003), + [anon_sym_exec] = ACTIONS(2417), + [anon_sym_LBRACK] = ACTIONS(2419), + [anon_sym_AT] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(2421), + [anon_sym_PIPE] = ACTIONS(1003), + [anon_sym_LBRACE] = ACTIONS(2423), + [anon_sym_RBRACE] = ACTIONS(1003), + [anon_sym_PLUS] = ACTIONS(2421), + [anon_sym_not] = ACTIONS(1005), + [anon_sym_and] = ACTIONS(1005), + [anon_sym_or] = ACTIONS(1005), + [anon_sym_SLASH] = ACTIONS(1005), + [anon_sym_PERCENT] = ACTIONS(1003), + [anon_sym_SLASH_SLASH] = ACTIONS(1003), + [anon_sym_AMP] = ACTIONS(2421), + [anon_sym_CARET] = ACTIONS(1003), + [anon_sym_LT_LT] = ACTIONS(1003), + [anon_sym_TILDE] = ACTIONS(2421), + [anon_sym_is] = ACTIONS(1005), + [anon_sym_LT] = ACTIONS(2425), + [anon_sym_LT_EQ] = ACTIONS(1003), + [anon_sym_EQ_EQ] = ACTIONS(1003), + [anon_sym_BANG_EQ] = ACTIONS(1003), + [anon_sym_GT_EQ] = ACTIONS(1003), + [anon_sym_GT] = ACTIONS(1005), + [anon_sym_LT_GT] = ACTIONS(1003), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2427), + [anon_sym_None] = ACTIONS(2429), + [sym_integer] = ACTIONS(2411), + [sym_float] = ACTIONS(2431), + [anon_sym_await] = ACTIONS(2433), + [anon_sym_api] = ACTIONS(2417), + [sym_true] = ACTIONS(2411), + [sym_false] = ACTIONS(2411), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(2435), + [sym_string_start] = ACTIONS(2437), + }, + [729] = { + [sym_identifier] = ACTIONS(2439), + [anon_sym_import] = ACTIONS(2439), + [anon_sym_cimport] = ACTIONS(2439), + [anon_sym_from] = ACTIONS(2439), + [anon_sym_LPAREN] = ACTIONS(2441), + [anon_sym_STAR] = ACTIONS(2441), + [anon_sym_print] = ACTIONS(2439), + [anon_sym_assert] = ACTIONS(2439), + [anon_sym_return] = ACTIONS(2439), + [anon_sym_del] = ACTIONS(2439), + [anon_sym_raise] = ACTIONS(2439), + [anon_sym_pass] = ACTIONS(2439), + [anon_sym_break] = ACTIONS(2439), + [anon_sym_continue] = ACTIONS(2439), + [anon_sym_if] = ACTIONS(2439), + [anon_sym_match] = ACTIONS(2439), + [anon_sym_async] = ACTIONS(2439), + [anon_sym_for] = ACTIONS(2439), + [anon_sym_while] = ACTIONS(2439), + [anon_sym_try] = ACTIONS(2439), + [anon_sym_with] = ACTIONS(2439), + [anon_sym_def] = ACTIONS(2439), + [anon_sym_global] = ACTIONS(2439), + [anon_sym_nonlocal] = ACTIONS(2439), + [anon_sym_exec] = ACTIONS(2439), + [anon_sym_type] = ACTIONS(2439), + [anon_sym_class] = ACTIONS(2439), + [anon_sym_LBRACK] = ACTIONS(2441), + [anon_sym_AT] = ACTIONS(2441), + [anon_sym_DASH] = ACTIONS(2441), + [anon_sym_LBRACE] = ACTIONS(2441), + [anon_sym_PLUS] = ACTIONS(2441), + [anon_sym_not] = ACTIONS(2439), + [anon_sym_AMP] = ACTIONS(2441), + [anon_sym_TILDE] = ACTIONS(2441), + [anon_sym_LT] = ACTIONS(2441), + [anon_sym_lambda] = ACTIONS(2439), + [anon_sym_yield] = ACTIONS(2439), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2441), + [anon_sym_None] = ACTIONS(2439), + [sym_integer] = ACTIONS(2439), + [sym_float] = ACTIONS(2441), + [anon_sym_await] = ACTIONS(2439), + [anon_sym_api] = ACTIONS(2439), + [sym_true] = ACTIONS(2439), + [sym_false] = ACTIONS(2439), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2439), + [anon_sym_include] = ACTIONS(2439), + [anon_sym_DEF] = ACTIONS(2439), + [anon_sym_cdef] = ACTIONS(2439), + [anon_sym_cpdef] = ACTIONS(2439), + [anon_sym_int] = ACTIONS(2439), + [anon_sym_double] = ACTIONS(2439), + [anon_sym_complex] = ACTIONS(2439), + [anon_sym_new] = ACTIONS(2439), + [anon_sym_signed] = ACTIONS(2439), + [anon_sym_unsigned] = ACTIONS(2439), + [anon_sym_char] = ACTIONS(2439), + [anon_sym_short] = ACTIONS(2439), + [anon_sym_long] = ACTIONS(2439), + [anon_sym_const] = ACTIONS(2439), + [anon_sym_volatile] = ACTIONS(2439), + [anon_sym_ctypedef] = ACTIONS(2439), + [anon_sym_struct] = ACTIONS(2439), + [anon_sym_union] = ACTIONS(2439), + [anon_sym_enum] = ACTIONS(2439), + [anon_sym_cppclass] = ACTIONS(2439), + [anon_sym_fused] = ACTIONS(2439), + [anon_sym_public] = ACTIONS(2439), + [anon_sym_packed] = ACTIONS(2439), + [anon_sym_inline] = ACTIONS(2439), + [anon_sym_readonly] = ACTIONS(2439), + [anon_sym_sizeof] = ACTIONS(2439), + [sym__dedent] = ACTIONS(2441), + [sym_string_start] = ACTIONS(2441), + }, + [730] = { + [sym_identifier] = ACTIONS(2443), + [anon_sym_import] = ACTIONS(2443), + [anon_sym_cimport] = ACTIONS(2443), + [anon_sym_from] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(2445), + [anon_sym_STAR] = ACTIONS(2445), + [anon_sym_print] = ACTIONS(2443), + [anon_sym_assert] = ACTIONS(2443), + [anon_sym_return] = ACTIONS(2443), + [anon_sym_del] = ACTIONS(2443), + [anon_sym_raise] = ACTIONS(2443), + [anon_sym_pass] = ACTIONS(2443), + [anon_sym_break] = ACTIONS(2443), + [anon_sym_continue] = ACTIONS(2443), + [anon_sym_if] = ACTIONS(2443), + [anon_sym_match] = ACTIONS(2443), + [anon_sym_async] = ACTIONS(2443), + [anon_sym_for] = ACTIONS(2443), + [anon_sym_while] = ACTIONS(2443), + [anon_sym_try] = ACTIONS(2443), + [anon_sym_with] = ACTIONS(2443), + [anon_sym_def] = ACTIONS(2443), + [anon_sym_global] = ACTIONS(2443), + [anon_sym_nonlocal] = ACTIONS(2443), + [anon_sym_exec] = ACTIONS(2443), + [anon_sym_type] = ACTIONS(2443), + [anon_sym_class] = ACTIONS(2443), + [anon_sym_LBRACK] = ACTIONS(2445), + [anon_sym_AT] = ACTIONS(2445), + [anon_sym_DASH] = ACTIONS(2445), + [anon_sym_LBRACE] = ACTIONS(2445), + [anon_sym_PLUS] = ACTIONS(2445), + [anon_sym_not] = ACTIONS(2443), + [anon_sym_AMP] = ACTIONS(2445), + [anon_sym_TILDE] = ACTIONS(2445), + [anon_sym_LT] = ACTIONS(2445), + [anon_sym_lambda] = ACTIONS(2443), + [anon_sym_yield] = ACTIONS(2443), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2445), + [anon_sym_None] = ACTIONS(2443), + [sym_integer] = ACTIONS(2443), + [sym_float] = ACTIONS(2445), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_api] = ACTIONS(2443), + [sym_true] = ACTIONS(2443), + [sym_false] = ACTIONS(2443), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2443), + [anon_sym_include] = ACTIONS(2443), + [anon_sym_DEF] = ACTIONS(2443), + [anon_sym_cdef] = ACTIONS(2443), + [anon_sym_cpdef] = ACTIONS(2443), + [anon_sym_int] = ACTIONS(2443), + [anon_sym_double] = ACTIONS(2443), + [anon_sym_complex] = ACTIONS(2443), + [anon_sym_new] = ACTIONS(2443), + [anon_sym_signed] = ACTIONS(2443), + [anon_sym_unsigned] = ACTIONS(2443), + [anon_sym_char] = ACTIONS(2443), + [anon_sym_short] = ACTIONS(2443), + [anon_sym_long] = ACTIONS(2443), + [anon_sym_const] = ACTIONS(2443), + [anon_sym_volatile] = ACTIONS(2443), + [anon_sym_ctypedef] = ACTIONS(2443), + [anon_sym_struct] = ACTIONS(2443), + [anon_sym_union] = ACTIONS(2443), + [anon_sym_enum] = ACTIONS(2443), + [anon_sym_cppclass] = ACTIONS(2443), + [anon_sym_fused] = ACTIONS(2443), + [anon_sym_public] = ACTIONS(2443), + [anon_sym_packed] = ACTIONS(2443), + [anon_sym_inline] = ACTIONS(2443), + [anon_sym_readonly] = ACTIONS(2443), + [anon_sym_sizeof] = ACTIONS(2443), + [sym__dedent] = ACTIONS(2445), + [sym_string_start] = ACTIONS(2445), + }, + [731] = { + [sym_list_splat_pattern] = STATE(2284), + [sym_primary_expression] = STATE(2166), + [sym_binary_operator] = STATE(2257), + [sym_unary_operator] = STATE(2257), + [sym_attribute] = STATE(2257), + [sym_subscript] = STATE(2257), + [sym_ellipsis] = STATE(2257), + [sym_call] = STATE(2257), + [sym_list] = STATE(2257), + [sym_set] = STATE(2257), + [sym_tuple] = STATE(2257), + [sym_dictionary] = STATE(2257), + [sym_list_comprehension] = STATE(2257), + [sym_dictionary_comprehension] = STATE(2257), + [sym_set_comprehension] = STATE(2257), + [sym_generator_expression] = STATE(2257), + [sym_parenthesized_expression] = STATE(2257), + [sym_concatenated_string] = STATE(2257), + [sym_string] = STATE(2089), + [sym_none] = STATE(2257), + [sym_await] = STATE(2257), + [sym_sizeof_expression] = STATE(2257), + [sym_cast_expression] = STATE(2257), + [sym_identifier] = ACTIONS(1941), + [anon_sym_DOT] = ACTIONS(1005), + [anon_sym_LPAREN] = ACTIONS(1943), + [anon_sym_COMMA] = ACTIONS(1003), + [anon_sym_as] = ACTIONS(1005), + [anon_sym_STAR] = ACTIONS(1945), + [anon_sym_print] = ACTIONS(1947), + [anon_sym_GT_GT] = ACTIONS(1003), + [anon_sym_if] = ACTIONS(1005), + [anon_sym_COLON] = ACTIONS(1003), + [anon_sym_match] = ACTIONS(1947), + [anon_sym_async] = ACTIONS(1947), + [anon_sym_in] = ACTIONS(1005), + [anon_sym_STAR_STAR] = ACTIONS(1003), + [anon_sym_exec] = ACTIONS(1947), + [anon_sym_EQ] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_AT] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1951), + [anon_sym_PIPE] = ACTIONS(1003), + [anon_sym_LBRACE] = ACTIONS(1953), + [anon_sym_RBRACE] = ACTIONS(1003), + [anon_sym_PLUS] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(1005), + [anon_sym_and] = ACTIONS(1005), + [anon_sym_or] = ACTIONS(1005), + [anon_sym_SLASH] = ACTIONS(1005), + [anon_sym_PERCENT] = ACTIONS(1003), + [anon_sym_SLASH_SLASH] = ACTIONS(1003), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1003), + [anon_sym_LT_LT] = ACTIONS(1003), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_is] = ACTIONS(1005), + [anon_sym_LT] = ACTIONS(1955), + [anon_sym_LT_EQ] = ACTIONS(1003), + [anon_sym_EQ_EQ] = ACTIONS(1003), + [anon_sym_BANG_EQ] = ACTIONS(1003), + [anon_sym_GT_EQ] = ACTIONS(1003), + [anon_sym_GT] = ACTIONS(1005), + [anon_sym_LT_GT] = ACTIONS(1003), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1957), + [anon_sym_None] = ACTIONS(1959), + [sym_type_conversion] = ACTIONS(1003), + [sym_integer] = ACTIONS(1941), + [sym_float] = ACTIONS(1961), + [anon_sym_await] = ACTIONS(1963), + [anon_sym_api] = ACTIONS(1947), + [sym_true] = ACTIONS(1941), + [sym_false] = ACTIONS(1941), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1965), + [sym_string_start] = ACTIONS(1967), + }, + [732] = { + [sym_list_splat_pattern] = STATE(2536), + [sym_primary_expression] = STATE(2217), + [sym_binary_operator] = STATE(2401), + [sym_unary_operator] = STATE(2401), + [sym_attribute] = STATE(2401), + [sym_subscript] = STATE(2401), + [sym_ellipsis] = STATE(2401), + [sym_call] = STATE(2401), + [sym_list] = STATE(2401), + [sym_set] = STATE(2401), + [sym_tuple] = STATE(2401), + [sym_dictionary] = STATE(2401), + [sym_list_comprehension] = STATE(2401), + [sym_dictionary_comprehension] = STATE(2401), + [sym_set_comprehension] = STATE(2401), + [sym_generator_expression] = STATE(2401), + [sym_parenthesized_expression] = STATE(2401), + [sym_concatenated_string] = STATE(2401), + [sym_string] = STATE(2161), + [sym_none] = STATE(2401), + [sym_await] = STATE(2401), + [sym_sizeof_expression] = STATE(2401), + [sym_cast_expression] = STATE(2401), [sym_identifier] = ACTIONS(1237), - [anon_sym_SEMI] = ACTIONS(612), - [anon_sym_DOT] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(1005), [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_COMMA] = ACTIONS(612), - [anon_sym_STAR] = ACTIONS(1302), + [anon_sym_COMMA] = ACTIONS(1003), + [anon_sym_as] = ACTIONS(1005), + [anon_sym_STAR] = ACTIONS(1215), [anon_sym_print] = ACTIONS(1304), - [anon_sym_GT_GT] = ACTIONS(581), - [anon_sym_COLON] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1003), + [anon_sym_COLON_EQ] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1005), + [anon_sym_COLON] = ACTIONS(1005), + [anon_sym_else] = ACTIONS(1005), [anon_sym_match] = ACTIONS(1304), [anon_sym_async] = ACTIONS(1304), - [anon_sym_STAR_STAR] = ACTIONS(581), + [anon_sym_in] = ACTIONS(1005), + [anon_sym_STAR_STAR] = ACTIONS(1003), [anon_sym_exec] = ACTIONS(1304), - [anon_sym_EQ] = ACTIONS(612), + [anon_sym_EQ] = ACTIONS(1005), [anon_sym_LBRACK] = ACTIONS(1219), - [anon_sym_AT] = ACTIONS(581), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_AT] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1227), + [anon_sym_PIPE] = ACTIONS(1003), [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_SLASH] = ACTIONS(581), - [anon_sym_PERCENT] = ACTIONS(581), - [anon_sym_SLASH_SLASH] = ACTIONS(581), - [anon_sym_AMP] = ACTIONS(1306), - [anon_sym_CARET] = ACTIONS(581), - [anon_sym_LT_LT] = ACTIONS(581), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_LT] = ACTIONS(1310), - [anon_sym_PLUS_EQ] = ACTIONS(612), - [anon_sym_DASH_EQ] = ACTIONS(612), - [anon_sym_STAR_EQ] = ACTIONS(612), - [anon_sym_SLASH_EQ] = ACTIONS(612), - [anon_sym_AT_EQ] = ACTIONS(612), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(612), - [anon_sym_PERCENT_EQ] = ACTIONS(612), - [anon_sym_STAR_STAR_EQ] = ACTIONS(612), - [anon_sym_GT_GT_EQ] = ACTIONS(612), - [anon_sym_LT_LT_EQ] = ACTIONS(612), - [anon_sym_AMP_EQ] = ACTIONS(612), - [anon_sym_CARET_EQ] = ACTIONS(612), - [anon_sym_PIPE_EQ] = ACTIONS(612), + [anon_sym_PLUS] = ACTIONS(1227), + [anon_sym_not] = ACTIONS(1005), + [anon_sym_and] = ACTIONS(1005), + [anon_sym_or] = ACTIONS(1005), + [anon_sym_SLASH] = ACTIONS(1005), + [anon_sym_PERCENT] = ACTIONS(1003), + [anon_sym_SLASH_SLASH] = ACTIONS(1003), + [anon_sym_AMP] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(1003), + [anon_sym_LT_LT] = ACTIONS(1003), + [anon_sym_TILDE] = ACTIONS(1227), + [anon_sym_is] = ACTIONS(1005), + [anon_sym_LT] = ACTIONS(1229), + [anon_sym_LT_EQ] = ACTIONS(1003), + [anon_sym_EQ_EQ] = ACTIONS(1003), + [anon_sym_BANG_EQ] = ACTIONS(1003), + [anon_sym_GT_EQ] = ACTIONS(1003), + [anon_sym_GT] = ACTIONS(1005), + [anon_sym_LT_GT] = ACTIONS(1003), [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), [anon_sym_None] = ACTIONS(1235), [sym_integer] = ACTIONS(1237), [sym_float] = ACTIONS(1239), - [anon_sym_await] = ACTIONS(1312), + [anon_sym_await] = ACTIONS(2447), [anon_sym_api] = ACTIONS(1304), [sym_true] = ACTIONS(1237), [sym_false] = ACTIONS(1237), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [anon_sym_sizeof] = ACTIONS(1245), - [sym__newline] = ACTIONS(612), [sym_string_start] = ACTIONS(1247), }, - [717] = { - [sym_identifier] = ACTIONS(2393), - [anon_sym_import] = ACTIONS(2393), - [anon_sym_cimport] = ACTIONS(2393), - [anon_sym_from] = ACTIONS(2393), - [anon_sym_LPAREN] = ACTIONS(2395), - [anon_sym_STAR] = ACTIONS(2395), - [anon_sym_print] = ACTIONS(2393), - [anon_sym_assert] = ACTIONS(2393), - [anon_sym_return] = ACTIONS(2393), - [anon_sym_del] = ACTIONS(2393), - [anon_sym_raise] = ACTIONS(2393), - [anon_sym_pass] = ACTIONS(2393), - [anon_sym_break] = ACTIONS(2393), - [anon_sym_continue] = ACTIONS(2393), - [anon_sym_if] = ACTIONS(2393), - [anon_sym_match] = ACTIONS(2393), - [anon_sym_async] = ACTIONS(2393), - [anon_sym_for] = ACTIONS(2393), - [anon_sym_while] = ACTIONS(2393), - [anon_sym_try] = ACTIONS(2393), - [anon_sym_with] = ACTIONS(2393), - [anon_sym_def] = ACTIONS(2393), - [anon_sym_global] = ACTIONS(2393), - [anon_sym_nonlocal] = ACTIONS(2393), - [anon_sym_exec] = ACTIONS(2393), - [anon_sym_type] = ACTIONS(2393), - [anon_sym_class] = ACTIONS(2393), - [anon_sym_LBRACK] = ACTIONS(2395), - [anon_sym_AT] = ACTIONS(2395), - [anon_sym_DASH] = ACTIONS(2395), - [anon_sym_LBRACE] = ACTIONS(2395), - [anon_sym_PLUS] = ACTIONS(2395), - [anon_sym_not] = ACTIONS(2393), - [anon_sym_AMP] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2395), - [anon_sym_LT] = ACTIONS(2395), - [anon_sym_lambda] = ACTIONS(2393), - [anon_sym_yield] = ACTIONS(2393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2395), - [anon_sym_None] = ACTIONS(2393), - [sym_integer] = ACTIONS(2393), - [sym_float] = ACTIONS(2395), - [anon_sym_await] = ACTIONS(2393), - [anon_sym_api] = ACTIONS(2393), - [sym_true] = ACTIONS(2393), - [sym_false] = ACTIONS(2393), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2393), - [anon_sym_include] = ACTIONS(2393), - [anon_sym_DEF] = ACTIONS(2393), - [anon_sym_cdef] = ACTIONS(2393), - [anon_sym_cpdef] = ACTIONS(2393), - [anon_sym_int] = ACTIONS(2393), - [anon_sym_double] = ACTIONS(2393), - [anon_sym_complex] = ACTIONS(2393), - [anon_sym_new] = ACTIONS(2393), - [anon_sym_signed] = ACTIONS(2393), - [anon_sym_unsigned] = ACTIONS(2393), - [anon_sym_char] = ACTIONS(2393), - [anon_sym_short] = ACTIONS(2393), - [anon_sym_long] = ACTIONS(2393), - [anon_sym_const] = ACTIONS(2393), - [anon_sym_volatile] = ACTIONS(2393), - [anon_sym_ctypedef] = ACTIONS(2393), - [anon_sym_struct] = ACTIONS(2393), - [anon_sym_union] = ACTIONS(2393), - [anon_sym_enum] = ACTIONS(2393), - [anon_sym_cppclass] = ACTIONS(2393), - [anon_sym_fused] = ACTIONS(2393), - [anon_sym_public] = ACTIONS(2393), - [anon_sym_packed] = ACTIONS(2393), - [anon_sym_inline] = ACTIONS(2393), - [anon_sym_readonly] = ACTIONS(2393), - [anon_sym_sizeof] = ACTIONS(2393), - [sym__dedent] = ACTIONS(2395), - [sym_string_start] = ACTIONS(2395), - }, - [718] = { - [sym_identifier] = ACTIONS(2079), - [anon_sym_import] = ACTIONS(2079), - [anon_sym_cimport] = ACTIONS(2079), - [anon_sym_from] = ACTIONS(2079), - [anon_sym_LPAREN] = ACTIONS(2083), - [anon_sym_STAR] = ACTIONS(2083), - [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(2083), - [anon_sym_AT] = ACTIONS(2083), - [anon_sym_DASH] = ACTIONS(2083), - [anon_sym_LBRACE] = ACTIONS(2083), - [anon_sym_PLUS] = ACTIONS(2083), - [anon_sym_not] = ACTIONS(2079), - [anon_sym_AMP] = ACTIONS(2083), - [anon_sym_TILDE] = ACTIONS(2083), - [anon_sym_LT] = ACTIONS(2083), - [anon_sym_lambda] = ACTIONS(2079), - [anon_sym_yield] = ACTIONS(2079), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2083), - [anon_sym_None] = ACTIONS(2079), - [sym_integer] = ACTIONS(2079), - [sym_float] = ACTIONS(2083), - [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(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(2083), - [sym_string_start] = ACTIONS(2083), - }, - [719] = { - [sym_list_splat_pattern] = STATE(2432), - [sym_primary_expression] = STATE(2188), - [sym_binary_operator] = STATE(2549), - [sym_unary_operator] = STATE(2549), - [sym_attribute] = STATE(2549), - [sym_subscript] = STATE(2549), - [sym_ellipsis] = STATE(2549), - [sym_call] = STATE(2549), - [sym_list] = STATE(2549), - [sym_set] = STATE(2549), - [sym_tuple] = STATE(2549), - [sym_dictionary] = STATE(2549), - [sym_list_comprehension] = STATE(2549), - [sym_dictionary_comprehension] = STATE(2549), - [sym_set_comprehension] = STATE(2549), - [sym_generator_expression] = STATE(2549), - [sym_parenthesized_expression] = STATE(2549), - [sym_concatenated_string] = STATE(2549), - [sym_string] = STATE(2140), - [sym_none] = STATE(2549), - [sym_await] = STATE(2549), - [sym_sizeof_expression] = STATE(2549), - [sym_cast_expression] = STATE(2549), + [733] = { + [sym_list_splat_pattern] = STATE(2536), + [sym_primary_expression] = STATE(2217), + [sym_binary_operator] = STATE(2401), + [sym_unary_operator] = STATE(2401), + [sym_attribute] = STATE(2401), + [sym_subscript] = STATE(2401), + [sym_ellipsis] = STATE(2401), + [sym_call] = STATE(2401), + [sym_list] = STATE(2401), + [sym_set] = STATE(2401), + [sym_tuple] = STATE(2401), + [sym_dictionary] = STATE(2401), + [sym_list_comprehension] = STATE(2401), + [sym_dictionary_comprehension] = STATE(2401), + [sym_set_comprehension] = STATE(2401), + [sym_generator_expression] = STATE(2401), + [sym_parenthesized_expression] = STATE(2401), + [sym_concatenated_string] = STATE(2401), + [sym_string] = STATE(2161), + [sym_none] = STATE(2401), + [sym_await] = STATE(2401), + [sym_sizeof_expression] = STATE(2401), + [sym_cast_expression] = STATE(2401), [sym_identifier] = ACTIONS(1237), - [anon_sym_DOT] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(1005), + [anon_sym_from] = ACTIONS(1025), [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_COMMA] = ACTIONS(579), - [anon_sym_as] = ACTIONS(581), + [anon_sym_COMMA] = ACTIONS(1010), + [anon_sym_as] = ACTIONS(1005), [anon_sym_STAR] = ACTIONS(1215), [anon_sym_print] = ACTIONS(1304), - [anon_sym_GT_GT] = ACTIONS(579), - [anon_sym_COLON_EQ] = ACTIONS(596), - [anon_sym_if] = ACTIONS(581), - [anon_sym_COLON] = ACTIONS(581), - [anon_sym_else] = ACTIONS(581), + [anon_sym_GT_GT] = ACTIONS(1003), + [anon_sym_COLON_EQ] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1005), + [anon_sym_COLON] = ACTIONS(1005), [anon_sym_match] = ACTIONS(1304), [anon_sym_async] = ACTIONS(1304), - [anon_sym_in] = ACTIONS(581), - [anon_sym_STAR_STAR] = ACTIONS(579), + [anon_sym_in] = ACTIONS(1022), + [anon_sym_STAR_STAR] = ACTIONS(1003), [anon_sym_exec] = ACTIONS(1304), - [anon_sym_EQ] = ACTIONS(581), [anon_sym_LBRACK] = ACTIONS(1219), - [anon_sym_AT] = ACTIONS(579), + [anon_sym_AT] = ACTIONS(1003), [anon_sym_DASH] = ACTIONS(1227), - [anon_sym_PIPE] = ACTIONS(579), + [anon_sym_PIPE] = ACTIONS(1003), [anon_sym_LBRACE] = ACTIONS(1223), [anon_sym_PLUS] = ACTIONS(1227), - [anon_sym_not] = ACTIONS(581), - [anon_sym_and] = ACTIONS(581), - [anon_sym_or] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(581), - [anon_sym_PERCENT] = ACTIONS(579), - [anon_sym_SLASH_SLASH] = ACTIONS(579), + [anon_sym_not] = ACTIONS(1005), + [anon_sym_and] = ACTIONS(1005), + [anon_sym_or] = ACTIONS(1005), + [anon_sym_SLASH] = ACTIONS(1005), + [anon_sym_PERCENT] = ACTIONS(1003), + [anon_sym_SLASH_SLASH] = ACTIONS(1003), [anon_sym_AMP] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(579), - [anon_sym_LT_LT] = ACTIONS(579), + [anon_sym_CARET] = ACTIONS(1003), + [anon_sym_LT_LT] = ACTIONS(1003), [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_is] = ACTIONS(581), + [anon_sym_is] = ACTIONS(1005), [anon_sym_LT] = ACTIONS(1229), - [anon_sym_LT_EQ] = ACTIONS(579), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_GT_EQ] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_GT] = ACTIONS(579), + [anon_sym_LT_EQ] = ACTIONS(1003), + [anon_sym_EQ_EQ] = ACTIONS(1003), + [anon_sym_BANG_EQ] = ACTIONS(1003), + [anon_sym_GT_EQ] = ACTIONS(1003), + [anon_sym_GT] = ACTIONS(1005), + [anon_sym_LT_GT] = ACTIONS(1003), [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), [anon_sym_None] = ACTIONS(1235), [sym_integer] = ACTIONS(1237), [sym_float] = ACTIONS(1239), - [anon_sym_await] = ACTIONS(2397), + [anon_sym_await] = ACTIONS(2447), [anon_sym_api] = ACTIONS(1304), [sym_true] = ACTIONS(1237), [sym_false] = ACTIONS(1237), @@ -96122,33 +97280,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1245), [sym_string_start] = ACTIONS(1247), }, - [720] = { - [sym_list_splat_pattern] = STATE(2432), - [sym_primary_expression] = STATE(3190), - [sym_binary_operator] = STATE(2549), - [sym_unary_operator] = STATE(2549), - [sym_attribute] = STATE(2549), - [sym_subscript] = STATE(2549), - [sym_ellipsis] = STATE(2549), - [sym_call] = STATE(2549), - [sym_list] = STATE(2549), - [sym_set] = STATE(2549), - [sym_tuple] = STATE(2549), - [sym_dictionary] = STATE(2549), - [sym_list_comprehension] = STATE(2549), - [sym_dictionary_comprehension] = STATE(2549), - [sym_set_comprehension] = STATE(2549), - [sym_generator_expression] = STATE(2549), - [sym_parenthesized_expression] = STATE(2549), - [sym_concatenated_string] = STATE(2549), - [sym_string] = STATE(2140), - [sym_none] = STATE(2549), - [sym_await] = STATE(2549), - [sym_sizeof_expression] = STATE(2549), - [sym_cast_expression] = STATE(2549), + [734] = { + [sym_list_splat_pattern] = STATE(2536), + [sym_primary_expression] = STATE(3239), + [sym_binary_operator] = STATE(2401), + [sym_unary_operator] = STATE(2401), + [sym_attribute] = STATE(2401), + [sym_subscript] = STATE(2401), + [sym_ellipsis] = STATE(2401), + [sym_call] = STATE(2401), + [sym_list] = STATE(2401), + [sym_set] = STATE(2401), + [sym_tuple] = STATE(2401), + [sym_dictionary] = STATE(2401), + [sym_list_comprehension] = STATE(2401), + [sym_dictionary_comprehension] = STATE(2401), + [sym_set_comprehension] = STATE(2401), + [sym_generator_expression] = STATE(2401), + [sym_parenthesized_expression] = STATE(2401), + [sym_concatenated_string] = STATE(2401), + [sym_string] = STATE(2161), + [sym_none] = STATE(2401), + [sym_await] = STATE(2401), + [sym_sizeof_expression] = STATE(2401), + [sym_cast_expression] = STATE(2401), [sym_identifier] = ACTIONS(1237), [anon_sym_DOT] = ACTIONS(1297), - [anon_sym_from] = ACTIONS(1300), [anon_sym_LPAREN] = ACTIONS(1213), [anon_sym_COMMA] = ACTIONS(1295), [anon_sym_as] = ACTIONS(1300), @@ -96157,14 +97314,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(1498), [anon_sym_if] = ACTIONS(1300), [anon_sym_COLON] = ACTIONS(1295), - [anon_sym_else] = ACTIONS(1300), [anon_sym_match] = ACTIONS(1304), [anon_sym_async] = ACTIONS(1304), + [anon_sym_for] = ACTIONS(1300), [anon_sym_in] = ACTIONS(1300), [anon_sym_STAR_STAR] = ACTIONS(1498), [anon_sym_exec] = ACTIONS(1304), - [anon_sym_EQ] = ACTIONS(1300), [anon_sym_LBRACK] = ACTIONS(1219), + [anon_sym_RBRACK] = ACTIONS(1295), [anon_sym_AT] = ACTIONS(1498), [anon_sym_DASH] = ACTIONS(1308), [anon_sym_PIPE] = ACTIONS(1498), @@ -96201,392 +97358,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1245), [sym_string_start] = ACTIONS(1247), }, - [721] = { - [sym_list_splat_pattern] = STATE(2309), - [sym_primary_expression] = STATE(2153), - [sym_binary_operator] = STATE(2377), - [sym_unary_operator] = STATE(2377), - [sym_attribute] = STATE(2377), - [sym_subscript] = STATE(2377), - [sym_ellipsis] = STATE(2377), - [sym_call] = STATE(2377), - [sym_list] = STATE(2377), - [sym_set] = STATE(2377), - [sym_tuple] = STATE(2377), - [sym_dictionary] = STATE(2377), - [sym_list_comprehension] = STATE(2377), - [sym_dictionary_comprehension] = STATE(2377), - [sym_set_comprehension] = STATE(2377), - [sym_generator_expression] = STATE(2377), - [sym_parenthesized_expression] = STATE(2377), - [sym_concatenated_string] = STATE(2377), - [sym_string] = STATE(2103), - [sym_none] = STATE(2377), - [sym_await] = STATE(2377), - [sym_sizeof_expression] = STATE(2377), - [sym_cast_expression] = STATE(2377), - [sym_identifier] = ACTIONS(2399), - [anon_sym_DOT] = ACTIONS(581), - [anon_sym_LPAREN] = ACTIONS(2401), - [anon_sym_COMMA] = ACTIONS(579), - [anon_sym_as] = ACTIONS(581), - [anon_sym_STAR] = ACTIONS(2403), - [anon_sym_print] = ACTIONS(2405), - [anon_sym_GT_GT] = ACTIONS(579), - [anon_sym_COLON_EQ] = ACTIONS(596), - [anon_sym_if] = ACTIONS(581), - [anon_sym_COLON] = ACTIONS(581), - [anon_sym_match] = ACTIONS(2405), - [anon_sym_async] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(581), - [anon_sym_in] = ACTIONS(581), - [anon_sym_STAR_STAR] = ACTIONS(579), - [anon_sym_exec] = ACTIONS(2405), - [anon_sym_LBRACK] = ACTIONS(2407), - [anon_sym_AT] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(2409), - [anon_sym_PIPE] = ACTIONS(579), - [anon_sym_LBRACE] = ACTIONS(2411), - [anon_sym_RBRACE] = ACTIONS(579), - [anon_sym_PLUS] = ACTIONS(2409), - [anon_sym_not] = ACTIONS(581), - [anon_sym_and] = ACTIONS(581), - [anon_sym_or] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(581), - [anon_sym_PERCENT] = ACTIONS(579), - [anon_sym_SLASH_SLASH] = ACTIONS(579), - [anon_sym_AMP] = ACTIONS(2409), - [anon_sym_CARET] = ACTIONS(579), - [anon_sym_LT_LT] = ACTIONS(579), - [anon_sym_TILDE] = ACTIONS(2409), - [anon_sym_is] = ACTIONS(581), - [anon_sym_LT] = ACTIONS(2413), - [anon_sym_LT_EQ] = ACTIONS(579), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_GT_EQ] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_GT] = ACTIONS(579), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2415), - [anon_sym_None] = ACTIONS(2417), - [sym_integer] = ACTIONS(2399), - [sym_float] = ACTIONS(2419), - [anon_sym_await] = ACTIONS(2421), - [anon_sym_api] = ACTIONS(2405), - [sym_true] = ACTIONS(2399), - [sym_false] = ACTIONS(2399), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(2423), - [sym_string_start] = ACTIONS(2425), - }, - [722] = { - [sym_list_splat_pattern] = STATE(2357), - [sym_primary_expression] = STATE(2136), - [sym_binary_operator] = STATE(2255), - [sym_unary_operator] = STATE(2255), - [sym_attribute] = STATE(2255), - [sym_subscript] = STATE(2255), - [sym_ellipsis] = STATE(2255), - [sym_call] = STATE(2255), - [sym_list] = STATE(2255), - [sym_set] = STATE(2255), - [sym_tuple] = STATE(2255), - [sym_dictionary] = STATE(2255), - [sym_list_comprehension] = STATE(2255), - [sym_dictionary_comprehension] = STATE(2255), - [sym_set_comprehension] = STATE(2255), - [sym_generator_expression] = STATE(2255), - [sym_parenthesized_expression] = STATE(2255), - [sym_concatenated_string] = STATE(2255), - [sym_string] = STATE(2073), - [sym_none] = STATE(2255), - [sym_await] = STATE(2255), - [sym_sizeof_expression] = STATE(2255), - [sym_cast_expression] = STATE(2255), - [sym_identifier] = ACTIONS(1905), - [anon_sym_DOT] = ACTIONS(581), - [anon_sym_LPAREN] = ACTIONS(1907), - [anon_sym_COMMA] = ACTIONS(579), - [anon_sym_as] = ACTIONS(581), - [anon_sym_STAR] = ACTIONS(1909), - [anon_sym_print] = ACTIONS(1911), - [anon_sym_GT_GT] = ACTIONS(579), - [anon_sym_if] = ACTIONS(581), - [anon_sym_COLON] = ACTIONS(579), - [anon_sym_match] = ACTIONS(1911), - [anon_sym_async] = ACTIONS(1911), - [anon_sym_in] = ACTIONS(581), - [anon_sym_STAR_STAR] = ACTIONS(579), - [anon_sym_exec] = ACTIONS(1911), - [anon_sym_EQ] = ACTIONS(581), - [anon_sym_LBRACK] = ACTIONS(1913), - [anon_sym_AT] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(1915), - [anon_sym_PIPE] = ACTIONS(579), - [anon_sym_LBRACE] = ACTIONS(1917), - [anon_sym_RBRACE] = ACTIONS(579), - [anon_sym_PLUS] = ACTIONS(1915), - [anon_sym_not] = ACTIONS(581), - [anon_sym_and] = ACTIONS(581), - [anon_sym_or] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(581), - [anon_sym_PERCENT] = ACTIONS(579), - [anon_sym_SLASH_SLASH] = ACTIONS(579), - [anon_sym_AMP] = ACTIONS(1915), - [anon_sym_CARET] = ACTIONS(579), - [anon_sym_LT_LT] = ACTIONS(579), - [anon_sym_TILDE] = ACTIONS(1915), - [anon_sym_is] = ACTIONS(581), - [anon_sym_LT] = ACTIONS(1919), - [anon_sym_LT_EQ] = ACTIONS(579), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_GT_EQ] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_GT] = ACTIONS(579), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1921), - [anon_sym_None] = ACTIONS(1923), - [sym_type_conversion] = ACTIONS(579), - [sym_integer] = ACTIONS(1905), - [sym_float] = ACTIONS(1925), - [anon_sym_await] = ACTIONS(1927), - [anon_sym_api] = ACTIONS(1911), - [sym_true] = ACTIONS(1905), - [sym_false] = ACTIONS(1905), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(1929), - [sym_string_start] = ACTIONS(1931), - }, - [723] = { - [sym_list_splat_pattern] = STATE(2477), - [sym_primary_expression] = STATE(2212), - [sym_binary_operator] = STATE(2457), - [sym_unary_operator] = STATE(2457), - [sym_attribute] = STATE(2457), - [sym_subscript] = STATE(2457), - [sym_ellipsis] = STATE(2457), - [sym_call] = STATE(2457), - [sym_list] = STATE(2457), - [sym_set] = STATE(2457), - [sym_tuple] = STATE(2457), - [sym_dictionary] = STATE(2457), - [sym_list_comprehension] = STATE(2457), - [sym_dictionary_comprehension] = STATE(2457), - [sym_set_comprehension] = STATE(2457), - [sym_generator_expression] = STATE(2457), - [sym_parenthesized_expression] = STATE(2457), - [sym_concatenated_string] = STATE(2457), - [sym_string] = STATE(2170), - [sym_none] = STATE(2457), - [sym_await] = STATE(2457), - [sym_sizeof_expression] = STATE(2457), - [sym_cast_expression] = STATE(2457), - [sym_identifier] = ACTIONS(1342), - [anon_sym_DOT] = ACTIONS(581), - [anon_sym_LPAREN] = ACTIONS(2427), - [anon_sym_RPAREN] = ACTIONS(579), - [anon_sym_COMMA] = ACTIONS(579), - [anon_sym_as] = ACTIONS(581), - [anon_sym_STAR] = ACTIONS(2429), - [anon_sym_print] = ACTIONS(2431), - [anon_sym_GT_GT] = ACTIONS(579), - [anon_sym_COLON_EQ] = ACTIONS(596), - [anon_sym_if] = ACTIONS(581), - [anon_sym_match] = ACTIONS(2431), - [anon_sym_async] = ACTIONS(2431), - [anon_sym_for] = ACTIONS(581), - [anon_sym_in] = ACTIONS(581), - [anon_sym_STAR_STAR] = ACTIONS(579), - [anon_sym_exec] = ACTIONS(2431), - [anon_sym_EQ] = ACTIONS(2433), - [anon_sym_LBRACK] = ACTIONS(1472), - [anon_sym_AT] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_PIPE] = ACTIONS(579), - [anon_sym_LBRACE] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1326), - [anon_sym_not] = ACTIONS(581), - [anon_sym_and] = ACTIONS(581), - [anon_sym_or] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(581), - [anon_sym_PERCENT] = ACTIONS(579), - [anon_sym_SLASH_SLASH] = ACTIONS(579), - [anon_sym_AMP] = ACTIONS(1326), - [anon_sym_CARET] = ACTIONS(579), - [anon_sym_LT_LT] = ACTIONS(579), - [anon_sym_TILDE] = ACTIONS(1326), - [anon_sym_is] = ACTIONS(581), - [anon_sym_LT] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(579), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_GT_EQ] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_GT] = ACTIONS(579), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1338), - [anon_sym_None] = ACTIONS(1340), - [sym_integer] = ACTIONS(1342), - [sym_float] = ACTIONS(1344), - [anon_sym_await] = ACTIONS(2437), - [anon_sym_api] = ACTIONS(2431), - [sym_true] = ACTIONS(1342), - [sym_false] = ACTIONS(1342), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(1360), - [sym_string_start] = ACTIONS(1362), - }, - [724] = { - [sym_list_splat_pattern] = STATE(2309), - [sym_primary_expression] = STATE(2153), - [sym_binary_operator] = STATE(2377), - [sym_unary_operator] = STATE(2377), - [sym_attribute] = STATE(2377), - [sym_subscript] = STATE(2377), - [sym_ellipsis] = STATE(2377), - [sym_call] = STATE(2377), - [sym_list] = STATE(2377), - [sym_set] = STATE(2377), - [sym_tuple] = STATE(2377), - [sym_dictionary] = STATE(2377), - [sym_list_comprehension] = STATE(2377), - [sym_dictionary_comprehension] = STATE(2377), - [sym_set_comprehension] = STATE(2377), - [sym_generator_expression] = STATE(2377), - [sym_parenthesized_expression] = STATE(2377), - [sym_concatenated_string] = STATE(2377), - [sym_string] = STATE(2103), - [sym_none] = STATE(2377), - [sym_await] = STATE(2377), - [sym_sizeof_expression] = STATE(2377), - [sym_cast_expression] = STATE(2377), - [sym_identifier] = ACTIONS(2399), - [anon_sym_DOT] = ACTIONS(581), - [anon_sym_LPAREN] = ACTIONS(2401), - [anon_sym_COMMA] = ACTIONS(579), - [anon_sym_as] = ACTIONS(581), - [anon_sym_STAR] = ACTIONS(2403), - [anon_sym_print] = ACTIONS(2405), - [anon_sym_GT_GT] = ACTIONS(579), - [anon_sym_if] = ACTIONS(581), - [anon_sym_COLON] = ACTIONS(579), - [anon_sym_match] = ACTIONS(2405), - [anon_sym_async] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(581), - [anon_sym_in] = ACTIONS(581), - [anon_sym_STAR_STAR] = ACTIONS(579), - [anon_sym_exec] = ACTIONS(2405), - [anon_sym_LBRACK] = ACTIONS(2407), - [anon_sym_AT] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(2409), - [anon_sym_PIPE] = ACTIONS(579), - [anon_sym_LBRACE] = ACTIONS(2411), - [anon_sym_RBRACE] = ACTIONS(579), - [anon_sym_PLUS] = ACTIONS(2409), - [anon_sym_not] = ACTIONS(581), - [anon_sym_and] = ACTIONS(581), - [anon_sym_or] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(581), - [anon_sym_PERCENT] = ACTIONS(579), - [anon_sym_SLASH_SLASH] = ACTIONS(579), - [anon_sym_AMP] = ACTIONS(2409), - [anon_sym_CARET] = ACTIONS(579), - [anon_sym_LT_LT] = ACTIONS(579), - [anon_sym_TILDE] = ACTIONS(2409), - [anon_sym_is] = ACTIONS(581), - [anon_sym_LT] = ACTIONS(2413), - [anon_sym_LT_EQ] = ACTIONS(579), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_GT_EQ] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_GT] = ACTIONS(579), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2415), - [anon_sym_None] = ACTIONS(2417), - [sym_integer] = ACTIONS(2399), - [sym_float] = ACTIONS(2419), - [anon_sym_await] = ACTIONS(2421), - [anon_sym_api] = ACTIONS(2405), - [sym_true] = ACTIONS(2399), - [sym_false] = ACTIONS(2399), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(2423), - [sym_string_start] = ACTIONS(2425), - }, - [725] = { - [sym_list_splat_pattern] = STATE(2477), - [sym_primary_expression] = STATE(2212), - [sym_binary_operator] = STATE(2457), - [sym_unary_operator] = STATE(2457), - [sym_attribute] = STATE(2457), - [sym_subscript] = STATE(2457), - [sym_ellipsis] = STATE(2457), - [sym_call] = STATE(2457), - [sym_list] = STATE(2457), - [sym_set] = STATE(2457), - [sym_tuple] = STATE(2457), - [sym_dictionary] = STATE(2457), - [sym_list_comprehension] = STATE(2457), - [sym_dictionary_comprehension] = STATE(2457), - [sym_set_comprehension] = STATE(2457), - [sym_generator_expression] = STATE(2457), - [sym_parenthesized_expression] = STATE(2457), - [sym_concatenated_string] = STATE(2457), - [sym_string] = STATE(2170), - [sym_none] = STATE(2457), - [sym_await] = STATE(2457), - [sym_sizeof_expression] = STATE(2457), - [sym_cast_expression] = STATE(2457), + [735] = { + [sym_list_splat_pattern] = STATE(2472), + [sym_primary_expression] = STATE(2223), + [sym_binary_operator] = STATE(2414), + [sym_unary_operator] = STATE(2414), + [sym_attribute] = STATE(2414), + [sym_subscript] = STATE(2414), + [sym_ellipsis] = STATE(2414), + [sym_call] = STATE(2414), + [sym_list] = STATE(2414), + [sym_set] = STATE(2414), + [sym_tuple] = STATE(2414), + [sym_dictionary] = STATE(2414), + [sym_list_comprehension] = STATE(2414), + [sym_dictionary_comprehension] = STATE(2414), + [sym_set_comprehension] = STATE(2414), + [sym_generator_expression] = STATE(2414), + [sym_parenthesized_expression] = STATE(2414), + [sym_concatenated_string] = STATE(2414), + [sym_string] = STATE(2147), + [sym_none] = STATE(2414), + [sym_await] = STATE(2414), + [sym_sizeof_expression] = STATE(2414), + [sym_cast_expression] = STATE(2414), [sym_identifier] = ACTIONS(1342), - [anon_sym_DOT] = ACTIONS(581), - [anon_sym_LPAREN] = ACTIONS(2427), - [anon_sym_RPAREN] = ACTIONS(586), - [anon_sym_COMMA] = ACTIONS(586), - [anon_sym_as] = ACTIONS(581), - [anon_sym_STAR] = ACTIONS(2429), - [anon_sym_print] = ACTIONS(2431), - [anon_sym_GT_GT] = ACTIONS(579), - [anon_sym_COLON_EQ] = ACTIONS(596), - [anon_sym_if] = ACTIONS(581), - [anon_sym_match] = ACTIONS(2431), - [anon_sym_async] = ACTIONS(2431), - [anon_sym_for] = ACTIONS(581), - [anon_sym_in] = ACTIONS(581), - [anon_sym_STAR_STAR] = ACTIONS(579), - [anon_sym_exec] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(1005), + [anon_sym_LPAREN] = ACTIONS(2377), + [anon_sym_RPAREN] = ACTIONS(1003), + [anon_sym_COMMA] = ACTIONS(1003), + [anon_sym_as] = ACTIONS(1005), + [anon_sym_STAR] = ACTIONS(2379), + [anon_sym_print] = ACTIONS(2381), + [anon_sym_GT_GT] = ACTIONS(1003), + [anon_sym_COLON_EQ] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1005), + [anon_sym_match] = ACTIONS(2381), + [anon_sym_async] = ACTIONS(2381), + [anon_sym_for] = ACTIONS(1005), + [anon_sym_in] = ACTIONS(1005), + [anon_sym_STAR_STAR] = ACTIONS(1003), + [anon_sym_exec] = ACTIONS(2381), [anon_sym_LBRACK] = ACTIONS(1472), - [anon_sym_AT] = ACTIONS(579), + [anon_sym_AT] = ACTIONS(1003), [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_PIPE] = ACTIONS(579), + [anon_sym_PIPE] = ACTIONS(1003), [anon_sym_LBRACE] = ACTIONS(1328), [anon_sym_PLUS] = ACTIONS(1326), - [anon_sym_not] = ACTIONS(581), - [anon_sym_and] = ACTIONS(581), - [anon_sym_or] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(581), - [anon_sym_PERCENT] = ACTIONS(579), - [anon_sym_SLASH_SLASH] = ACTIONS(579), + [anon_sym_not] = ACTIONS(1005), + [anon_sym_and] = ACTIONS(1005), + [anon_sym_or] = ACTIONS(1005), + [anon_sym_SLASH] = ACTIONS(1005), + [anon_sym_PERCENT] = ACTIONS(1003), + [anon_sym_SLASH_SLASH] = ACTIONS(1003), [anon_sym_AMP] = ACTIONS(1326), - [anon_sym_CARET] = ACTIONS(579), - [anon_sym_LT_LT] = ACTIONS(579), + [anon_sym_CARET] = ACTIONS(1003), + [anon_sym_LT_LT] = ACTIONS(1003), [anon_sym_TILDE] = ACTIONS(1326), - [anon_sym_is] = ACTIONS(581), - [anon_sym_LT] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(579), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_GT_EQ] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_GT] = ACTIONS(579), + [anon_sym_is] = ACTIONS(1005), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(1003), + [anon_sym_EQ_EQ] = ACTIONS(1003), + [anon_sym_BANG_EQ] = ACTIONS(1003), + [anon_sym_GT_EQ] = ACTIONS(1003), + [anon_sym_GT] = ACTIONS(1005), + [anon_sym_LT_GT] = ACTIONS(1003), [anon_sym_DOT_DOT_DOT] = ACTIONS(1338), [anon_sym_None] = ACTIONS(1340), [sym_integer] = ACTIONS(1342), [sym_float] = ACTIONS(1344), - [anon_sym_await] = ACTIONS(2437), - [anon_sym_api] = ACTIONS(2431), + [anon_sym_await] = ACTIONS(2387), + [anon_sym_api] = ACTIONS(2381), [sym_true] = ACTIONS(1342), [sym_false] = ACTIONS(1342), [sym_comment] = ACTIONS(3), @@ -96594,77 +97436,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1360), [sym_string_start] = ACTIONS(1362), }, - [726] = { - [sym_list_splat_pattern] = STATE(2671), - [sym_primary_expression] = STATE(2555), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), + [736] = { + [sym_list_splat_pattern] = STATE(2644), + [sym_primary_expression] = STATE(2482), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), [sym_identifier] = ACTIONS(1398), - [anon_sym_DOT] = ACTIONS(581), - [anon_sym_LPAREN] = ACTIONS(2439), - [anon_sym_RPAREN] = ACTIONS(579), - [anon_sym_COMMA] = ACTIONS(579), - [anon_sym_as] = ACTIONS(581), - [anon_sym_STAR] = ACTIONS(2441), - [anon_sym_print] = ACTIONS(2443), - [anon_sym_GT_GT] = ACTIONS(579), - [anon_sym_COLON_EQ] = ACTIONS(596), - [anon_sym_if] = ACTIONS(581), - [anon_sym_match] = ACTIONS(2443), - [anon_sym_async] = ACTIONS(2443), - [anon_sym_in] = ACTIONS(581), - [anon_sym_STAR_STAR] = ACTIONS(579), - [anon_sym_exec] = ACTIONS(2443), - [anon_sym_EQ] = ACTIONS(2433), + [anon_sym_DOT] = ACTIONS(1005), + [anon_sym_LPAREN] = ACTIONS(2449), + [anon_sym_RPAREN] = ACTIONS(1003), + [anon_sym_COMMA] = ACTIONS(1003), + [anon_sym_as] = ACTIONS(1005), + [anon_sym_STAR] = ACTIONS(2451), + [anon_sym_print] = ACTIONS(2453), + [anon_sym_GT_GT] = ACTIONS(1003), + [anon_sym_COLON_EQ] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1005), + [anon_sym_match] = ACTIONS(2453), + [anon_sym_async] = ACTIONS(2453), + [anon_sym_in] = ACTIONS(1005), + [anon_sym_STAR_STAR] = ACTIONS(1003), + [anon_sym_exec] = ACTIONS(2453), + [anon_sym_EQ] = ACTIONS(2383), [anon_sym_LBRACK] = ACTIONS(1382), - [anon_sym_AT] = ACTIONS(579), + [anon_sym_AT] = ACTIONS(1003), [anon_sym_DASH] = ACTIONS(1384), - [anon_sym_PIPE] = ACTIONS(579), + [anon_sym_PIPE] = ACTIONS(1003), [anon_sym_LBRACE] = ACTIONS(1386), [anon_sym_PLUS] = ACTIONS(1384), - [anon_sym_not] = ACTIONS(581), - [anon_sym_and] = ACTIONS(581), - [anon_sym_or] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(581), - [anon_sym_PERCENT] = ACTIONS(579), - [anon_sym_SLASH_SLASH] = ACTIONS(579), + [anon_sym_not] = ACTIONS(1005), + [anon_sym_and] = ACTIONS(1005), + [anon_sym_or] = ACTIONS(1005), + [anon_sym_SLASH] = ACTIONS(1005), + [anon_sym_PERCENT] = ACTIONS(1003), + [anon_sym_SLASH_SLASH] = ACTIONS(1003), [anon_sym_AMP] = ACTIONS(1384), - [anon_sym_CARET] = ACTIONS(579), - [anon_sym_LT_LT] = ACTIONS(579), + [anon_sym_CARET] = ACTIONS(1003), + [anon_sym_LT_LT] = ACTIONS(1003), [anon_sym_TILDE] = ACTIONS(1384), - [anon_sym_is] = ACTIONS(581), - [anon_sym_LT] = ACTIONS(2445), - [anon_sym_LT_EQ] = ACTIONS(579), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_GT_EQ] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_GT] = ACTIONS(579), + [anon_sym_is] = ACTIONS(1005), + [anon_sym_LT] = ACTIONS(2455), + [anon_sym_LT_EQ] = ACTIONS(1003), + [anon_sym_EQ_EQ] = ACTIONS(1003), + [anon_sym_BANG_EQ] = ACTIONS(1003), + [anon_sym_GT_EQ] = ACTIONS(1003), + [anon_sym_GT] = ACTIONS(1005), + [anon_sym_LT_GT] = ACTIONS(1003), [anon_sym_DOT_DOT_DOT] = ACTIONS(1394), [anon_sym_None] = ACTIONS(1396), [sym_integer] = ACTIONS(1398), [sym_float] = ACTIONS(1400), - [anon_sym_await] = ACTIONS(2447), - [anon_sym_api] = ACTIONS(2443), + [anon_sym_await] = ACTIONS(2457), + [anon_sym_api] = ACTIONS(2453), [sym_true] = ACTIONS(1398), [sym_false] = ACTIONS(1398), [sym_comment] = ACTIONS(3), @@ -96672,310 +97514,154 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1406), [sym_string_start] = ACTIONS(1408), }, - [727] = { - [sym_list_splat_pattern] = STATE(2591), - [sym_primary_expression] = STATE(2363), - [sym_binary_operator] = STATE(2631), - [sym_unary_operator] = STATE(2631), - [sym_attribute] = STATE(2631), - [sym_subscript] = STATE(2631), - [sym_ellipsis] = STATE(2631), - [sym_call] = STATE(2631), - [sym_list] = STATE(2631), - [sym_set] = STATE(2631), - [sym_tuple] = STATE(2631), - [sym_dictionary] = STATE(2631), - [sym_list_comprehension] = STATE(2631), - [sym_dictionary_comprehension] = STATE(2631), - [sym_set_comprehension] = STATE(2631), - [sym_generator_expression] = STATE(2631), - [sym_parenthesized_expression] = STATE(2631), - [sym_concatenated_string] = STATE(2631), - [sym_string] = STATE(2218), - [sym_none] = STATE(2631), - [sym_await] = STATE(2631), - [sym_sizeof_expression] = STATE(2631), - [sym_cast_expression] = STATE(2631), - [sym_identifier] = ACTIONS(2449), + [737] = { + [sym_list_splat_pattern] = STATE(2589), + [sym_primary_expression] = STATE(2294), + [sym_binary_operator] = STATE(2630), + [sym_unary_operator] = STATE(2630), + [sym_attribute] = STATE(2630), + [sym_subscript] = STATE(2630), + [sym_ellipsis] = STATE(2630), + [sym_call] = STATE(2630), + [sym_list] = STATE(2630), + [sym_set] = STATE(2630), + [sym_tuple] = STATE(2630), + [sym_dictionary] = STATE(2630), + [sym_list_comprehension] = STATE(2630), + [sym_dictionary_comprehension] = STATE(2630), + [sym_set_comprehension] = STATE(2630), + [sym_generator_expression] = STATE(2630), + [sym_parenthesized_expression] = STATE(2630), + [sym_concatenated_string] = STATE(2630), + [sym_string] = STATE(2200), + [sym_none] = STATE(2630), + [sym_await] = STATE(2630), + [sym_sizeof_expression] = STATE(2630), + [sym_cast_expression] = STATE(2630), + [sym_identifier] = ACTIONS(2459), [anon_sym_DOT] = ACTIONS(1297), - [anon_sym_LPAREN] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(2461), [anon_sym_COMMA] = ACTIONS(1498), [anon_sym_as] = ACTIONS(1297), - [anon_sym_STAR] = ACTIONS(2453), - [anon_sym_print] = ACTIONS(2455), + [anon_sym_STAR] = ACTIONS(2463), + [anon_sym_print] = ACTIONS(2465), [anon_sym_GT_GT] = ACTIONS(1498), - [anon_sym_COLON_EQ] = ACTIONS(596), + [anon_sym_COLON_EQ] = ACTIONS(1020), [anon_sym_if] = ACTIONS(1297), - [anon_sym_match] = ACTIONS(2455), - [anon_sym_async] = ACTIONS(2455), + [anon_sym_match] = ACTIONS(2465), + [anon_sym_async] = ACTIONS(2465), [anon_sym_for] = ACTIONS(1300), [anon_sym_in] = ACTIONS(1297), [anon_sym_STAR_STAR] = ACTIONS(1498), - [anon_sym_exec] = ACTIONS(2455), - [anon_sym_LBRACK] = ACTIONS(2457), + [anon_sym_exec] = ACTIONS(2465), + [anon_sym_LBRACK] = ACTIONS(2467), [anon_sym_RBRACK] = ACTIONS(1498), [anon_sym_AT] = ACTIONS(1498), - [anon_sym_DASH] = ACTIONS(2459), + [anon_sym_DASH] = ACTIONS(2469), [anon_sym_PIPE] = ACTIONS(1498), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2469), [anon_sym_not] = ACTIONS(1297), [anon_sym_and] = ACTIONS(1297), [anon_sym_or] = ACTIONS(1297), [anon_sym_SLASH] = ACTIONS(1297), [anon_sym_PERCENT] = ACTIONS(1498), [anon_sym_SLASH_SLASH] = ACTIONS(1498), - [anon_sym_AMP] = ACTIONS(2459), + [anon_sym_AMP] = ACTIONS(2469), [anon_sym_CARET] = ACTIONS(1498), [anon_sym_LT_LT] = ACTIONS(1498), - [anon_sym_TILDE] = ACTIONS(2459), + [anon_sym_TILDE] = ACTIONS(2469), [anon_sym_is] = ACTIONS(1297), - [anon_sym_LT] = ACTIONS(2463), + [anon_sym_LT] = ACTIONS(2473), [anon_sym_LT_EQ] = ACTIONS(1498), [anon_sym_EQ_EQ] = ACTIONS(1498), [anon_sym_BANG_EQ] = ACTIONS(1498), [anon_sym_GT_EQ] = ACTIONS(1498), [anon_sym_GT] = ACTIONS(1297), [anon_sym_LT_GT] = ACTIONS(1498), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2471), - [anon_sym_api] = ACTIONS(2455), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2475), + [anon_sym_None] = ACTIONS(2477), + [sym_integer] = ACTIONS(2459), + [sym_float] = ACTIONS(2479), + [anon_sym_await] = ACTIONS(2481), + [anon_sym_api] = ACTIONS(2465), + [sym_true] = ACTIONS(2459), + [sym_false] = ACTIONS(2459), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), - }, - [728] = { - [sym_list_splat_pattern] = STATE(2523), - [sym_primary_expression] = STATE(2216), - [sym_binary_operator] = STATE(2418), - [sym_unary_operator] = STATE(2418), - [sym_attribute] = STATE(2418), - [sym_subscript] = STATE(2418), - [sym_ellipsis] = STATE(2418), - [sym_call] = STATE(2418), - [sym_list] = STATE(2418), - [sym_set] = STATE(2418), - [sym_tuple] = STATE(2418), - [sym_dictionary] = STATE(2418), - [sym_list_comprehension] = STATE(2418), - [sym_dictionary_comprehension] = STATE(2418), - [sym_set_comprehension] = STATE(2418), - [sym_generator_expression] = STATE(2418), - [sym_parenthesized_expression] = STATE(2418), - [sym_concatenated_string] = STATE(2418), - [sym_string] = STATE(2157), - [sym_none] = STATE(2418), - [sym_await] = STATE(2418), - [sym_sizeof_expression] = STATE(2418), - [sym_cast_expression] = STATE(2418), - [sym_identifier] = ACTIONS(2477), - [anon_sym_DOT] = ACTIONS(581), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_COMMA] = ACTIONS(586), - [anon_sym_as] = ACTIONS(581), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_print] = ACTIONS(2483), - [anon_sym_GT_GT] = ACTIONS(579), - [anon_sym_COLON_EQ] = ACTIONS(596), - [anon_sym_if] = ACTIONS(581), - [anon_sym_match] = ACTIONS(2483), - [anon_sym_async] = ACTIONS(2483), - [anon_sym_for] = ACTIONS(581), - [anon_sym_in] = ACTIONS(581), - [anon_sym_STAR_STAR] = ACTIONS(579), - [anon_sym_exec] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2485), - [anon_sym_RBRACK] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_PIPE] = ACTIONS(579), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(581), - [anon_sym_and] = ACTIONS(581), - [anon_sym_or] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(581), - [anon_sym_PERCENT] = ACTIONS(579), - [anon_sym_SLASH_SLASH] = ACTIONS(579), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_CARET] = ACTIONS(579), - [anon_sym_LT_LT] = ACTIONS(579), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_is] = ACTIONS(581), - [anon_sym_LT] = ACTIONS(2491), - [anon_sym_LT_EQ] = ACTIONS(579), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_GT_EQ] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_GT] = ACTIONS(579), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2499), - [anon_sym_api] = ACTIONS(2483), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), + [anon_sym_sizeof] = ACTIONS(2483), + [sym_string_start] = ACTIONS(2485), }, - [729] = { - [sym_list_splat_pattern] = STATE(2432), - [sym_primary_expression] = STATE(2188), - [sym_binary_operator] = STATE(2549), - [sym_unary_operator] = STATE(2549), - [sym_attribute] = STATE(2549), - [sym_subscript] = STATE(2549), - [sym_ellipsis] = STATE(2549), - [sym_call] = STATE(2549), - [sym_list] = STATE(2549), - [sym_set] = STATE(2549), - [sym_tuple] = STATE(2549), - [sym_dictionary] = STATE(2549), - [sym_list_comprehension] = STATE(2549), - [sym_dictionary_comprehension] = STATE(2549), - [sym_set_comprehension] = STATE(2549), - [sym_generator_expression] = STATE(2549), - [sym_parenthesized_expression] = STATE(2549), - [sym_concatenated_string] = STATE(2549), - [sym_string] = STATE(2140), - [sym_none] = STATE(2549), - [sym_await] = STATE(2549), - [sym_sizeof_expression] = STATE(2549), - [sym_cast_expression] = STATE(2549), + [738] = { + [sym_list_splat_pattern] = STATE(2536), + [sym_primary_expression] = STATE(2217), + [sym_binary_operator] = STATE(2401), + [sym_unary_operator] = STATE(2401), + [sym_attribute] = STATE(2401), + [sym_subscript] = STATE(2401), + [sym_ellipsis] = STATE(2401), + [sym_call] = STATE(2401), + [sym_list] = STATE(2401), + [sym_set] = STATE(2401), + [sym_tuple] = STATE(2401), + [sym_dictionary] = STATE(2401), + [sym_list_comprehension] = STATE(2401), + [sym_dictionary_comprehension] = STATE(2401), + [sym_set_comprehension] = STATE(2401), + [sym_generator_expression] = STATE(2401), + [sym_parenthesized_expression] = STATE(2401), + [sym_concatenated_string] = STATE(2401), + [sym_string] = STATE(2161), + [sym_none] = STATE(2401), + [sym_await] = STATE(2401), + [sym_sizeof_expression] = STATE(2401), + [sym_cast_expression] = STATE(2401), [sym_identifier] = ACTIONS(1237), - [anon_sym_DOT] = ACTIONS(581), - [anon_sym_from] = ACTIONS(598), + [anon_sym_DOT] = ACTIONS(1005), [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_COMMA] = ACTIONS(586), - [anon_sym_as] = ACTIONS(581), + [anon_sym_COMMA] = ACTIONS(1003), + [anon_sym_as] = ACTIONS(1005), [anon_sym_STAR] = ACTIONS(1215), [anon_sym_print] = ACTIONS(1304), - [anon_sym_GT_GT] = ACTIONS(579), - [anon_sym_COLON_EQ] = ACTIONS(596), - [anon_sym_if] = ACTIONS(581), - [anon_sym_COLON] = ACTIONS(581), + [anon_sym_GT_GT] = ACTIONS(1003), + [anon_sym_if] = ACTIONS(1005), + [anon_sym_COLON] = ACTIONS(1003), + [anon_sym_else] = ACTIONS(1005), [anon_sym_match] = ACTIONS(1304), [anon_sym_async] = ACTIONS(1304), - [anon_sym_in] = ACTIONS(1080), - [anon_sym_STAR_STAR] = ACTIONS(579), + [anon_sym_in] = ACTIONS(1005), + [anon_sym_STAR_STAR] = ACTIONS(1003), [anon_sym_exec] = ACTIONS(1304), + [anon_sym_EQ] = ACTIONS(1005), [anon_sym_LBRACK] = ACTIONS(1219), - [anon_sym_AT] = ACTIONS(579), + [anon_sym_AT] = ACTIONS(1003), [anon_sym_DASH] = ACTIONS(1227), - [anon_sym_PIPE] = ACTIONS(579), + [anon_sym_PIPE] = ACTIONS(1003), [anon_sym_LBRACE] = ACTIONS(1223), [anon_sym_PLUS] = ACTIONS(1227), - [anon_sym_not] = ACTIONS(581), - [anon_sym_and] = ACTIONS(581), - [anon_sym_or] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(581), - [anon_sym_PERCENT] = ACTIONS(579), - [anon_sym_SLASH_SLASH] = ACTIONS(579), + [anon_sym_not] = ACTIONS(1005), + [anon_sym_and] = ACTIONS(1005), + [anon_sym_or] = ACTIONS(1005), + [anon_sym_SLASH] = ACTIONS(1005), + [anon_sym_PERCENT] = ACTIONS(1003), + [anon_sym_SLASH_SLASH] = ACTIONS(1003), [anon_sym_AMP] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(579), - [anon_sym_LT_LT] = ACTIONS(579), + [anon_sym_CARET] = ACTIONS(1003), + [anon_sym_LT_LT] = ACTIONS(1003), [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_is] = ACTIONS(581), + [anon_sym_is] = ACTIONS(1005), [anon_sym_LT] = ACTIONS(1229), - [anon_sym_LT_EQ] = ACTIONS(579), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_GT_EQ] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_GT] = ACTIONS(579), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), - [anon_sym_None] = ACTIONS(1235), - [sym_integer] = ACTIONS(1237), - [sym_float] = ACTIONS(1239), - [anon_sym_await] = ACTIONS(2397), - [anon_sym_api] = ACTIONS(1304), - [sym_true] = ACTIONS(1237), - [sym_false] = ACTIONS(1237), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(1245), - [sym_string_start] = ACTIONS(1247), - }, - [730] = { - [sym_list_splat_pattern] = STATE(2432), - [sym_primary_expression] = STATE(3190), - [sym_binary_operator] = STATE(2549), - [sym_unary_operator] = STATE(2549), - [sym_attribute] = STATE(2549), - [sym_subscript] = STATE(2549), - [sym_ellipsis] = STATE(2549), - [sym_call] = STATE(2549), - [sym_list] = STATE(2549), - [sym_set] = STATE(2549), - [sym_tuple] = STATE(2549), - [sym_dictionary] = STATE(2549), - [sym_list_comprehension] = STATE(2549), - [sym_dictionary_comprehension] = STATE(2549), - [sym_set_comprehension] = STATE(2549), - [sym_generator_expression] = STATE(2549), - [sym_parenthesized_expression] = STATE(2549), - [sym_concatenated_string] = STATE(2549), - [sym_string] = STATE(2140), - [sym_none] = STATE(2549), - [sym_await] = STATE(2549), - [sym_sizeof_expression] = STATE(2549), - [sym_cast_expression] = STATE(2549), - [sym_identifier] = ACTIONS(1237), - [anon_sym_DOT] = ACTIONS(1297), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_COMMA] = ACTIONS(1295), - [anon_sym_as] = ACTIONS(1300), - [anon_sym_STAR] = ACTIONS(1302), - [anon_sym_print] = ACTIONS(1304), - [anon_sym_GT_GT] = ACTIONS(1498), - [anon_sym_if] = ACTIONS(1300), - [anon_sym_COLON] = ACTIONS(1295), - [anon_sym_match] = ACTIONS(1304), - [anon_sym_async] = ACTIONS(1304), - [anon_sym_for] = ACTIONS(1300), - [anon_sym_in] = ACTIONS(1300), - [anon_sym_STAR_STAR] = ACTIONS(1498), - [anon_sym_exec] = ACTIONS(1304), - [anon_sym_LBRACK] = ACTIONS(1219), - [anon_sym_RBRACK] = ACTIONS(1295), - [anon_sym_AT] = ACTIONS(1498), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_PIPE] = ACTIONS(1498), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_not] = ACTIONS(1300), - [anon_sym_and] = ACTIONS(1300), - [anon_sym_or] = ACTIONS(1300), - [anon_sym_SLASH] = ACTIONS(1297), - [anon_sym_PERCENT] = ACTIONS(1498), - [anon_sym_SLASH_SLASH] = ACTIONS(1498), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_CARET] = ACTIONS(1498), - [anon_sym_LT_LT] = ACTIONS(1498), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_is] = ACTIONS(1300), - [anon_sym_LT] = ACTIONS(1310), - [anon_sym_LT_EQ] = ACTIONS(1295), - [anon_sym_EQ_EQ] = ACTIONS(1295), - [anon_sym_BANG_EQ] = ACTIONS(1295), - [anon_sym_GT_EQ] = ACTIONS(1295), - [anon_sym_GT] = ACTIONS(1300), - [anon_sym_LT_GT] = ACTIONS(1295), + [anon_sym_LT_EQ] = ACTIONS(1003), + [anon_sym_EQ_EQ] = ACTIONS(1003), + [anon_sym_BANG_EQ] = ACTIONS(1003), + [anon_sym_GT_EQ] = ACTIONS(1003), + [anon_sym_GT] = ACTIONS(1005), + [anon_sym_LT_GT] = ACTIONS(1003), [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), [anon_sym_None] = ACTIONS(1235), [sym_integer] = ACTIONS(1237), [sym_float] = ACTIONS(1239), - [anon_sym_await] = ACTIONS(1312), + [anon_sym_await] = ACTIONS(2447), [anon_sym_api] = ACTIONS(1304), [sym_true] = ACTIONS(1237), [sym_false] = ACTIONS(1237), @@ -96984,203 +97670,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1245), [sym_string_start] = ACTIONS(1247), }, - [731] = { - [sym_list_splat_pattern] = STATE(2477), - [sym_primary_expression] = STATE(2212), - [sym_binary_operator] = STATE(2457), - [sym_unary_operator] = STATE(2457), - [sym_attribute] = STATE(2457), - [sym_subscript] = STATE(2457), - [sym_ellipsis] = STATE(2457), - [sym_call] = STATE(2457), - [sym_list] = STATE(2457), - [sym_set] = STATE(2457), - [sym_tuple] = STATE(2457), - [sym_dictionary] = STATE(2457), - [sym_list_comprehension] = STATE(2457), - [sym_dictionary_comprehension] = STATE(2457), - [sym_set_comprehension] = STATE(2457), - [sym_generator_expression] = STATE(2457), - [sym_parenthesized_expression] = STATE(2457), - [sym_concatenated_string] = STATE(2457), - [sym_string] = STATE(2170), - [sym_none] = STATE(2457), - [sym_await] = STATE(2457), - [sym_sizeof_expression] = STATE(2457), - [sym_cast_expression] = STATE(2457), - [sym_identifier] = ACTIONS(1342), - [anon_sym_DOT] = ACTIONS(581), - [anon_sym_LPAREN] = ACTIONS(2427), - [anon_sym_RPAREN] = ACTIONS(579), - [anon_sym_COMMA] = ACTIONS(579), - [anon_sym_as] = ACTIONS(581), - [anon_sym_STAR] = ACTIONS(2429), - [anon_sym_print] = ACTIONS(2431), - [anon_sym_GT_GT] = ACTIONS(579), - [anon_sym_COLON_EQ] = ACTIONS(596), - [anon_sym_if] = ACTIONS(581), - [anon_sym_match] = ACTIONS(2431), - [anon_sym_async] = ACTIONS(2431), - [anon_sym_for] = ACTIONS(581), - [anon_sym_in] = ACTIONS(581), - [anon_sym_STAR_STAR] = ACTIONS(579), - [anon_sym_exec] = ACTIONS(2431), - [anon_sym_LBRACK] = ACTIONS(1472), - [anon_sym_AT] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_PIPE] = ACTIONS(579), - [anon_sym_LBRACE] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1326), - [anon_sym_not] = ACTIONS(581), - [anon_sym_and] = ACTIONS(581), - [anon_sym_or] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(581), - [anon_sym_PERCENT] = ACTIONS(579), - [anon_sym_SLASH_SLASH] = ACTIONS(579), - [anon_sym_AMP] = ACTIONS(1326), - [anon_sym_CARET] = ACTIONS(579), - [anon_sym_LT_LT] = ACTIONS(579), - [anon_sym_TILDE] = ACTIONS(1326), - [anon_sym_is] = ACTIONS(581), - [anon_sym_LT] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(579), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_GT_EQ] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_GT] = ACTIONS(579), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1338), - [anon_sym_None] = ACTIONS(1340), - [sym_integer] = ACTIONS(1342), - [sym_float] = ACTIONS(1344), - [anon_sym_await] = ACTIONS(2437), - [anon_sym_api] = ACTIONS(2431), - [sym_true] = ACTIONS(1342), - [sym_false] = ACTIONS(1342), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(1360), - [sym_string_start] = ACTIONS(1362), - }, - [732] = { - [sym_list_splat_pattern] = STATE(2591), - [sym_primary_expression] = STATE(2363), - [sym_binary_operator] = STATE(2631), - [sym_unary_operator] = STATE(2631), - [sym_attribute] = STATE(2631), - [sym_subscript] = STATE(2631), - [sym_ellipsis] = STATE(2631), - [sym_call] = STATE(2631), - [sym_list] = STATE(2631), - [sym_set] = STATE(2631), - [sym_tuple] = STATE(2631), - [sym_dictionary] = STATE(2631), - [sym_list_comprehension] = STATE(2631), - [sym_dictionary_comprehension] = STATE(2631), - [sym_set_comprehension] = STATE(2631), - [sym_generator_expression] = STATE(2631), - [sym_parenthesized_expression] = STATE(2631), - [sym_concatenated_string] = STATE(2631), - [sym_string] = STATE(2218), - [sym_none] = STATE(2631), - [sym_await] = STATE(2631), - [sym_sizeof_expression] = STATE(2631), - [sym_cast_expression] = STATE(2631), - [sym_identifier] = ACTIONS(2449), - [anon_sym_DOT] = ACTIONS(581), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_COMMA] = ACTIONS(579), - [anon_sym_as] = ACTIONS(581), - [anon_sym_STAR] = ACTIONS(2453), - [anon_sym_print] = ACTIONS(2455), - [anon_sym_GT_GT] = ACTIONS(579), - [anon_sym_COLON_EQ] = ACTIONS(596), - [anon_sym_if] = ACTIONS(581), - [anon_sym_COLON] = ACTIONS(581), - [anon_sym_match] = ACTIONS(2455), - [anon_sym_async] = ACTIONS(2455), - [anon_sym_in] = ACTIONS(581), - [anon_sym_STAR_STAR] = ACTIONS(579), - [anon_sym_exec] = ACTIONS(2455), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_RBRACK] = ACTIONS(579), - [anon_sym_AT] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PIPE] = ACTIONS(579), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(581), - [anon_sym_and] = ACTIONS(581), - [anon_sym_or] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(581), - [anon_sym_PERCENT] = ACTIONS(579), - [anon_sym_SLASH_SLASH] = ACTIONS(579), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_CARET] = ACTIONS(579), - [anon_sym_LT_LT] = ACTIONS(579), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_is] = ACTIONS(581), - [anon_sym_LT] = ACTIONS(2463), - [anon_sym_LT_EQ] = ACTIONS(579), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_GT_EQ] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_GT] = ACTIONS(579), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2471), - [anon_sym_api] = ACTIONS(2455), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), - }, - [733] = { - [sym_list_splat_pattern] = STATE(2671), - [sym_primary_expression] = STATE(2555), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), + [739] = { + [sym_list_splat_pattern] = STATE(2644), + [sym_primary_expression] = STATE(2482), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), [sym_identifier] = ACTIONS(1398), [anon_sym_DOT] = ACTIONS(1297), - [anon_sym_LPAREN] = ACTIONS(2439), + [anon_sym_LPAREN] = ACTIONS(2449), [anon_sym_RPAREN] = ACTIONS(1498), [anon_sym_COMMA] = ACTIONS(1498), [anon_sym_as] = ACTIONS(1297), - [anon_sym_STAR] = ACTIONS(2441), - [anon_sym_print] = ACTIONS(2443), + [anon_sym_STAR] = ACTIONS(2451), + [anon_sym_print] = ACTIONS(2453), [anon_sym_GT_GT] = ACTIONS(1498), - [anon_sym_COLON_EQ] = ACTIONS(596), + [anon_sym_COLON_EQ] = ACTIONS(1020), [anon_sym_if] = ACTIONS(1297), - [anon_sym_match] = ACTIONS(2443), - [anon_sym_async] = ACTIONS(2443), + [anon_sym_match] = ACTIONS(2453), + [anon_sym_async] = ACTIONS(2453), [anon_sym_for] = ACTIONS(1300), [anon_sym_in] = ACTIONS(1297), [anon_sym_STAR_STAR] = ACTIONS(1498), - [anon_sym_exec] = ACTIONS(2443), + [anon_sym_exec] = ACTIONS(2453), [anon_sym_LBRACK] = ACTIONS(1382), [anon_sym_AT] = ACTIONS(1498), [anon_sym_DASH] = ACTIONS(1384), @@ -97198,7 +97728,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1498), [anon_sym_TILDE] = ACTIONS(1384), [anon_sym_is] = ACTIONS(1297), - [anon_sym_LT] = ACTIONS(2445), + [anon_sym_LT] = ACTIONS(2455), [anon_sym_LT_EQ] = ACTIONS(1498), [anon_sym_EQ_EQ] = ACTIONS(1498), [anon_sym_BANG_EQ] = ACTIONS(1498), @@ -97209,8 +97739,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_None] = ACTIONS(1396), [sym_integer] = ACTIONS(1398), [sym_float] = ACTIONS(1400), - [anon_sym_await] = ACTIONS(2447), - [anon_sym_api] = ACTIONS(2443), + [anon_sym_await] = ACTIONS(2457), + [anon_sym_api] = ACTIONS(2453), [sym_true] = ACTIONS(1398), [sym_false] = ACTIONS(1398), [sym_comment] = ACTIONS(3), @@ -97218,186 +97748,651 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1406), [sym_string_start] = ACTIONS(1408), }, - [734] = { - [sym_list_splat_pattern] = STATE(2432), - [sym_primary_expression] = STATE(2188), - [sym_binary_operator] = STATE(2549), - [sym_unary_operator] = STATE(2549), - [sym_attribute] = STATE(2549), - [sym_subscript] = STATE(2549), - [sym_ellipsis] = STATE(2549), - [sym_call] = STATE(2549), - [sym_list] = STATE(2549), - [sym_set] = STATE(2549), - [sym_tuple] = STATE(2549), - [sym_dictionary] = STATE(2549), - [sym_list_comprehension] = STATE(2549), - [sym_dictionary_comprehension] = STATE(2549), - [sym_set_comprehension] = STATE(2549), - [sym_generator_expression] = STATE(2549), - [sym_parenthesized_expression] = STATE(2549), - [sym_concatenated_string] = STATE(2549), - [sym_string] = STATE(2140), - [sym_none] = STATE(2549), - [sym_await] = STATE(2549), - [sym_sizeof_expression] = STATE(2549), - [sym_cast_expression] = STATE(2549), - [sym_identifier] = ACTIONS(1237), - [anon_sym_DOT] = ACTIONS(581), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_COMMA] = ACTIONS(579), - [anon_sym_as] = ACTIONS(581), - [anon_sym_STAR] = ACTIONS(1215), - [anon_sym_print] = ACTIONS(1304), - [anon_sym_GT_GT] = ACTIONS(579), - [anon_sym_if] = ACTIONS(581), - [anon_sym_COLON] = ACTIONS(579), - [anon_sym_else] = ACTIONS(581), - [anon_sym_match] = ACTIONS(1304), - [anon_sym_async] = ACTIONS(1304), - [anon_sym_in] = ACTIONS(581), - [anon_sym_STAR_STAR] = ACTIONS(579), - [anon_sym_exec] = ACTIONS(1304), - [anon_sym_EQ] = ACTIONS(581), - [anon_sym_LBRACK] = ACTIONS(1219), - [anon_sym_AT] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(1227), - [anon_sym_PIPE] = ACTIONS(579), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_PLUS] = ACTIONS(1227), - [anon_sym_not] = ACTIONS(581), - [anon_sym_and] = ACTIONS(581), - [anon_sym_or] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(581), - [anon_sym_PERCENT] = ACTIONS(579), - [anon_sym_SLASH_SLASH] = ACTIONS(579), - [anon_sym_AMP] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(579), - [anon_sym_LT_LT] = ACTIONS(579), - [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_is] = ACTIONS(581), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_LT_EQ] = ACTIONS(579), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_GT_EQ] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_GT] = ACTIONS(579), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), - [anon_sym_None] = ACTIONS(1235), - [sym_integer] = ACTIONS(1237), - [sym_float] = ACTIONS(1239), - [anon_sym_await] = ACTIONS(2397), - [anon_sym_api] = ACTIONS(1304), - [sym_true] = ACTIONS(1237), - [sym_false] = ACTIONS(1237), + [740] = { + [sym_list_splat_pattern] = STATE(2589), + [sym_primary_expression] = STATE(2294), + [sym_binary_operator] = STATE(2630), + [sym_unary_operator] = STATE(2630), + [sym_attribute] = STATE(2630), + [sym_subscript] = STATE(2630), + [sym_ellipsis] = STATE(2630), + [sym_call] = STATE(2630), + [sym_list] = STATE(2630), + [sym_set] = STATE(2630), + [sym_tuple] = STATE(2630), + [sym_dictionary] = STATE(2630), + [sym_list_comprehension] = STATE(2630), + [sym_dictionary_comprehension] = STATE(2630), + [sym_set_comprehension] = STATE(2630), + [sym_generator_expression] = STATE(2630), + [sym_parenthesized_expression] = STATE(2630), + [sym_concatenated_string] = STATE(2630), + [sym_string] = STATE(2200), + [sym_none] = STATE(2630), + [sym_await] = STATE(2630), + [sym_sizeof_expression] = STATE(2630), + [sym_cast_expression] = STATE(2630), + [sym_identifier] = ACTIONS(2459), + [anon_sym_DOT] = ACTIONS(1005), + [anon_sym_LPAREN] = ACTIONS(2461), + [anon_sym_COMMA] = ACTIONS(1003), + [anon_sym_as] = ACTIONS(1005), + [anon_sym_STAR] = ACTIONS(2463), + [anon_sym_print] = ACTIONS(2465), + [anon_sym_GT_GT] = ACTIONS(1003), + [anon_sym_COLON_EQ] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1005), + [anon_sym_COLON] = ACTIONS(1005), + [anon_sym_match] = ACTIONS(2465), + [anon_sym_async] = ACTIONS(2465), + [anon_sym_in] = ACTIONS(1005), + [anon_sym_STAR_STAR] = ACTIONS(1003), + [anon_sym_exec] = ACTIONS(2465), + [anon_sym_LBRACK] = ACTIONS(2467), + [anon_sym_RBRACK] = ACTIONS(1003), + [anon_sym_AT] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_PIPE] = ACTIONS(1003), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_not] = ACTIONS(1005), + [anon_sym_and] = ACTIONS(1005), + [anon_sym_or] = ACTIONS(1005), + [anon_sym_SLASH] = ACTIONS(1005), + [anon_sym_PERCENT] = ACTIONS(1003), + [anon_sym_SLASH_SLASH] = ACTIONS(1003), + [anon_sym_AMP] = ACTIONS(2469), + [anon_sym_CARET] = ACTIONS(1003), + [anon_sym_LT_LT] = ACTIONS(1003), + [anon_sym_TILDE] = ACTIONS(2469), + [anon_sym_is] = ACTIONS(1005), + [anon_sym_LT] = ACTIONS(2473), + [anon_sym_LT_EQ] = ACTIONS(1003), + [anon_sym_EQ_EQ] = ACTIONS(1003), + [anon_sym_BANG_EQ] = ACTIONS(1003), + [anon_sym_GT_EQ] = ACTIONS(1003), + [anon_sym_GT] = ACTIONS(1005), + [anon_sym_LT_GT] = ACTIONS(1003), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2475), + [anon_sym_None] = ACTIONS(2477), + [sym_integer] = ACTIONS(2459), + [sym_float] = ACTIONS(2479), + [anon_sym_await] = ACTIONS(2481), + [anon_sym_api] = ACTIONS(2465), + [sym_true] = ACTIONS(2459), + [sym_false] = ACTIONS(2459), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(2483), + [sym_string_start] = ACTIONS(2485), + }, + [741] = { + [sym_list_splat_pattern] = STATE(2415), + [sym_primary_expression] = STATE(2229), + [sym_binary_operator] = STATE(2470), + [sym_unary_operator] = STATE(2470), + [sym_attribute] = STATE(2470), + [sym_subscript] = STATE(2470), + [sym_ellipsis] = STATE(2470), + [sym_call] = STATE(2470), + [sym_list] = STATE(2470), + [sym_set] = STATE(2470), + [sym_tuple] = STATE(2470), + [sym_dictionary] = STATE(2470), + [sym_list_comprehension] = STATE(2470), + [sym_dictionary_comprehension] = STATE(2470), + [sym_set_comprehension] = STATE(2470), + [sym_generator_expression] = STATE(2470), + [sym_parenthesized_expression] = STATE(2470), + [sym_concatenated_string] = STATE(2470), + [sym_string] = STATE(2177), + [sym_none] = STATE(2470), + [sym_await] = STATE(2470), + [sym_sizeof_expression] = STATE(2470), + [sym_cast_expression] = STATE(2470), + [sym_identifier] = ACTIONS(2487), + [anon_sym_DOT] = ACTIONS(1005), + [anon_sym_LPAREN] = ACTIONS(2489), + [anon_sym_COMMA] = ACTIONS(1010), + [anon_sym_as] = ACTIONS(1005), + [anon_sym_STAR] = ACTIONS(2491), + [anon_sym_print] = ACTIONS(2493), + [anon_sym_GT_GT] = ACTIONS(1003), + [anon_sym_COLON_EQ] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1005), + [anon_sym_match] = ACTIONS(2493), + [anon_sym_async] = ACTIONS(2493), + [anon_sym_for] = ACTIONS(1005), + [anon_sym_in] = ACTIONS(1005), + [anon_sym_STAR_STAR] = ACTIONS(1003), + [anon_sym_exec] = ACTIONS(2493), + [anon_sym_LBRACK] = ACTIONS(2495), + [anon_sym_RBRACK] = ACTIONS(1010), + [anon_sym_AT] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_PIPE] = ACTIONS(1003), + [anon_sym_LBRACE] = ACTIONS(2499), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_not] = ACTIONS(1005), + [anon_sym_and] = ACTIONS(1005), + [anon_sym_or] = ACTIONS(1005), + [anon_sym_SLASH] = ACTIONS(1005), + [anon_sym_PERCENT] = ACTIONS(1003), + [anon_sym_SLASH_SLASH] = ACTIONS(1003), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_CARET] = ACTIONS(1003), + [anon_sym_LT_LT] = ACTIONS(1003), + [anon_sym_TILDE] = ACTIONS(2497), + [anon_sym_is] = ACTIONS(1005), + [anon_sym_LT] = ACTIONS(2501), + [anon_sym_LT_EQ] = ACTIONS(1003), + [anon_sym_EQ_EQ] = ACTIONS(1003), + [anon_sym_BANG_EQ] = ACTIONS(1003), + [anon_sym_GT_EQ] = ACTIONS(1003), + [anon_sym_GT] = ACTIONS(1005), + [anon_sym_LT_GT] = ACTIONS(1003), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2503), + [anon_sym_None] = ACTIONS(2505), + [sym_integer] = ACTIONS(2487), + [sym_float] = ACTIONS(2507), + [anon_sym_await] = ACTIONS(2509), + [anon_sym_api] = ACTIONS(2493), + [sym_true] = ACTIONS(2487), + [sym_false] = ACTIONS(2487), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_string_start] = ACTIONS(2513), + }, + [742] = { + [sym_list_splat_pattern] = STATE(2415), + [sym_primary_expression] = STATE(2229), + [sym_binary_operator] = STATE(2470), + [sym_unary_operator] = STATE(2470), + [sym_attribute] = STATE(2470), + [sym_subscript] = STATE(2470), + [sym_ellipsis] = STATE(2470), + [sym_call] = STATE(2470), + [sym_list] = STATE(2470), + [sym_set] = STATE(2470), + [sym_tuple] = STATE(2470), + [sym_dictionary] = STATE(2470), + [sym_list_comprehension] = STATE(2470), + [sym_dictionary_comprehension] = STATE(2470), + [sym_set_comprehension] = STATE(2470), + [sym_generator_expression] = STATE(2470), + [sym_parenthesized_expression] = STATE(2470), + [sym_concatenated_string] = STATE(2470), + [sym_string] = STATE(2177), + [sym_none] = STATE(2470), + [sym_await] = STATE(2470), + [sym_sizeof_expression] = STATE(2470), + [sym_cast_expression] = STATE(2470), + [sym_identifier] = ACTIONS(2487), + [anon_sym_DOT] = ACTIONS(1005), + [anon_sym_LPAREN] = ACTIONS(2489), + [anon_sym_COMMA] = ACTIONS(1003), + [anon_sym_as] = ACTIONS(1005), + [anon_sym_STAR] = ACTIONS(2491), + [anon_sym_print] = ACTIONS(2493), + [anon_sym_GT_GT] = ACTIONS(1003), + [anon_sym_COLON_EQ] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1005), + [anon_sym_match] = ACTIONS(2493), + [anon_sym_async] = ACTIONS(2493), + [anon_sym_for] = ACTIONS(1005), + [anon_sym_in] = ACTIONS(1005), + [anon_sym_STAR_STAR] = ACTIONS(1003), + [anon_sym_exec] = ACTIONS(2493), + [anon_sym_LBRACK] = ACTIONS(2495), + [anon_sym_RBRACK] = ACTIONS(1003), + [anon_sym_AT] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_PIPE] = ACTIONS(1003), + [anon_sym_LBRACE] = ACTIONS(2499), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_not] = ACTIONS(1005), + [anon_sym_and] = ACTIONS(1005), + [anon_sym_or] = ACTIONS(1005), + [anon_sym_SLASH] = ACTIONS(1005), + [anon_sym_PERCENT] = ACTIONS(1003), + [anon_sym_SLASH_SLASH] = ACTIONS(1003), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_CARET] = ACTIONS(1003), + [anon_sym_LT_LT] = ACTIONS(1003), + [anon_sym_TILDE] = ACTIONS(2497), + [anon_sym_is] = ACTIONS(1005), + [anon_sym_LT] = ACTIONS(2501), + [anon_sym_LT_EQ] = ACTIONS(1003), + [anon_sym_EQ_EQ] = ACTIONS(1003), + [anon_sym_BANG_EQ] = ACTIONS(1003), + [anon_sym_GT_EQ] = ACTIONS(1003), + [anon_sym_GT] = ACTIONS(1005), + [anon_sym_LT_GT] = ACTIONS(1003), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2503), + [anon_sym_None] = ACTIONS(2505), + [sym_integer] = ACTIONS(2487), + [sym_float] = ACTIONS(2507), + [anon_sym_await] = ACTIONS(2509), + [anon_sym_api] = ACTIONS(2493), + [sym_true] = ACTIONS(2487), + [sym_false] = ACTIONS(2487), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_string_start] = ACTIONS(2513), + }, + [743] = { + [sym_list_splat_pattern] = STATE(2256), + [sym_primary_expression] = STATE(2172), + [sym_binary_operator] = STATE(2298), + [sym_unary_operator] = STATE(2298), + [sym_attribute] = STATE(2298), + [sym_subscript] = STATE(2298), + [sym_ellipsis] = STATE(2298), + [sym_call] = STATE(2298), + [sym_list] = STATE(2298), + [sym_set] = STATE(2298), + [sym_tuple] = STATE(2298), + [sym_dictionary] = STATE(2298), + [sym_list_comprehension] = STATE(2298), + [sym_dictionary_comprehension] = STATE(2298), + [sym_set_comprehension] = STATE(2298), + [sym_generator_expression] = STATE(2298), + [sym_parenthesized_expression] = STATE(2298), + [sym_concatenated_string] = STATE(2298), + [sym_string] = STATE(2099), + [sym_none] = STATE(2298), + [sym_await] = STATE(2298), + [sym_sizeof_expression] = STATE(2298), + [sym_cast_expression] = STATE(2298), + [sym_identifier] = ACTIONS(2411), + [anon_sym_DOT] = ACTIONS(1005), + [anon_sym_LPAREN] = ACTIONS(2413), + [anon_sym_COMMA] = ACTIONS(1003), + [anon_sym_as] = ACTIONS(1005), + [anon_sym_STAR] = ACTIONS(2415), + [anon_sym_print] = ACTIONS(2417), + [anon_sym_GT_GT] = ACTIONS(1003), + [anon_sym_if] = ACTIONS(1005), + [anon_sym_COLON] = ACTIONS(1003), + [anon_sym_match] = ACTIONS(2417), + [anon_sym_async] = ACTIONS(2417), + [anon_sym_for] = ACTIONS(1005), + [anon_sym_in] = ACTIONS(1005), + [anon_sym_STAR_STAR] = ACTIONS(1003), + [anon_sym_exec] = ACTIONS(2417), + [anon_sym_LBRACK] = ACTIONS(2419), + [anon_sym_AT] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(2421), + [anon_sym_PIPE] = ACTIONS(1003), + [anon_sym_LBRACE] = ACTIONS(2423), + [anon_sym_RBRACE] = ACTIONS(1003), + [anon_sym_PLUS] = ACTIONS(2421), + [anon_sym_not] = ACTIONS(1005), + [anon_sym_and] = ACTIONS(1005), + [anon_sym_or] = ACTIONS(1005), + [anon_sym_SLASH] = ACTIONS(1005), + [anon_sym_PERCENT] = ACTIONS(1003), + [anon_sym_SLASH_SLASH] = ACTIONS(1003), + [anon_sym_AMP] = ACTIONS(2421), + [anon_sym_CARET] = ACTIONS(1003), + [anon_sym_LT_LT] = ACTIONS(1003), + [anon_sym_TILDE] = ACTIONS(2421), + [anon_sym_is] = ACTIONS(1005), + [anon_sym_LT] = ACTIONS(2425), + [anon_sym_LT_EQ] = ACTIONS(1003), + [anon_sym_EQ_EQ] = ACTIONS(1003), + [anon_sym_BANG_EQ] = ACTIONS(1003), + [anon_sym_GT_EQ] = ACTIONS(1003), + [anon_sym_GT] = ACTIONS(1005), + [anon_sym_LT_GT] = ACTIONS(1003), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2427), + [anon_sym_None] = ACTIONS(2429), + [sym_integer] = ACTIONS(2411), + [sym_float] = ACTIONS(2431), + [anon_sym_await] = ACTIONS(2433), + [anon_sym_api] = ACTIONS(2417), + [sym_true] = ACTIONS(2411), + [sym_false] = ACTIONS(2411), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(2435), + [sym_string_start] = ACTIONS(2437), + }, + [744] = { + [sym_list_splat_pattern] = STATE(2472), + [sym_primary_expression] = STATE(2223), + [sym_binary_operator] = STATE(2414), + [sym_unary_operator] = STATE(2414), + [sym_attribute] = STATE(2414), + [sym_subscript] = STATE(2414), + [sym_ellipsis] = STATE(2414), + [sym_call] = STATE(2414), + [sym_list] = STATE(2414), + [sym_set] = STATE(2414), + [sym_tuple] = STATE(2414), + [sym_dictionary] = STATE(2414), + [sym_list_comprehension] = STATE(2414), + [sym_dictionary_comprehension] = STATE(2414), + [sym_set_comprehension] = STATE(2414), + [sym_generator_expression] = STATE(2414), + [sym_parenthesized_expression] = STATE(2414), + [sym_concatenated_string] = STATE(2414), + [sym_string] = STATE(2147), + [sym_none] = STATE(2414), + [sym_await] = STATE(2414), + [sym_sizeof_expression] = STATE(2414), + [sym_cast_expression] = STATE(2414), + [sym_identifier] = ACTIONS(1342), + [anon_sym_DOT] = ACTIONS(1005), + [anon_sym_LPAREN] = ACTIONS(2377), + [anon_sym_RPAREN] = ACTIONS(1010), + [anon_sym_COMMA] = ACTIONS(1010), + [anon_sym_as] = ACTIONS(1005), + [anon_sym_STAR] = ACTIONS(2379), + [anon_sym_print] = ACTIONS(2381), + [anon_sym_GT_GT] = ACTIONS(1003), + [anon_sym_COLON_EQ] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1005), + [anon_sym_match] = ACTIONS(2381), + [anon_sym_async] = ACTIONS(2381), + [anon_sym_for] = ACTIONS(1005), + [anon_sym_in] = ACTIONS(1005), + [anon_sym_STAR_STAR] = ACTIONS(1003), + [anon_sym_exec] = ACTIONS(2381), + [anon_sym_LBRACK] = ACTIONS(1472), + [anon_sym_AT] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1326), + [anon_sym_PIPE] = ACTIONS(1003), + [anon_sym_LBRACE] = ACTIONS(1328), + [anon_sym_PLUS] = ACTIONS(1326), + [anon_sym_not] = ACTIONS(1005), + [anon_sym_and] = ACTIONS(1005), + [anon_sym_or] = ACTIONS(1005), + [anon_sym_SLASH] = ACTIONS(1005), + [anon_sym_PERCENT] = ACTIONS(1003), + [anon_sym_SLASH_SLASH] = ACTIONS(1003), + [anon_sym_AMP] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1003), + [anon_sym_LT_LT] = ACTIONS(1003), + [anon_sym_TILDE] = ACTIONS(1326), + [anon_sym_is] = ACTIONS(1005), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(1003), + [anon_sym_EQ_EQ] = ACTIONS(1003), + [anon_sym_BANG_EQ] = ACTIONS(1003), + [anon_sym_GT_EQ] = ACTIONS(1003), + [anon_sym_GT] = ACTIONS(1005), + [anon_sym_LT_GT] = ACTIONS(1003), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1338), + [anon_sym_None] = ACTIONS(1340), + [sym_integer] = ACTIONS(1342), + [sym_float] = ACTIONS(1344), + [anon_sym_await] = ACTIONS(2387), + [anon_sym_api] = ACTIONS(2381), + [sym_true] = ACTIONS(1342), + [sym_false] = ACTIONS(1342), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(1245), - [sym_string_start] = ACTIONS(1247), + [anon_sym_sizeof] = ACTIONS(1360), + [sym_string_start] = ACTIONS(1362), }, - [735] = { - [sym_list_splat_pattern] = STATE(2523), - [sym_primary_expression] = STATE(2216), - [sym_binary_operator] = STATE(2418), - [sym_unary_operator] = STATE(2418), - [sym_attribute] = STATE(2418), - [sym_subscript] = STATE(2418), - [sym_ellipsis] = STATE(2418), - [sym_call] = STATE(2418), - [sym_list] = STATE(2418), - [sym_set] = STATE(2418), - [sym_tuple] = STATE(2418), - [sym_dictionary] = STATE(2418), - [sym_list_comprehension] = STATE(2418), - [sym_dictionary_comprehension] = STATE(2418), - [sym_set_comprehension] = STATE(2418), - [sym_generator_expression] = STATE(2418), - [sym_parenthesized_expression] = STATE(2418), - [sym_concatenated_string] = STATE(2418), - [sym_string] = STATE(2157), - [sym_none] = STATE(2418), - [sym_await] = STATE(2418), - [sym_sizeof_expression] = STATE(2418), - [sym_cast_expression] = STATE(2418), - [sym_identifier] = ACTIONS(2477), - [anon_sym_DOT] = ACTIONS(581), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_COMMA] = ACTIONS(579), - [anon_sym_as] = ACTIONS(581), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_print] = ACTIONS(2483), - [anon_sym_GT_GT] = ACTIONS(579), - [anon_sym_COLON_EQ] = ACTIONS(596), - [anon_sym_if] = ACTIONS(581), - [anon_sym_match] = ACTIONS(2483), - [anon_sym_async] = ACTIONS(2483), - [anon_sym_for] = ACTIONS(581), - [anon_sym_in] = ACTIONS(581), - [anon_sym_STAR_STAR] = ACTIONS(579), - [anon_sym_exec] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2485), - [anon_sym_RBRACK] = ACTIONS(579), - [anon_sym_AT] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_PIPE] = ACTIONS(579), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(581), - [anon_sym_and] = ACTIONS(581), - [anon_sym_or] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(581), - [anon_sym_PERCENT] = ACTIONS(579), - [anon_sym_SLASH_SLASH] = ACTIONS(579), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_CARET] = ACTIONS(579), - [anon_sym_LT_LT] = ACTIONS(579), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_is] = ACTIONS(581), - [anon_sym_LT] = ACTIONS(2491), - [anon_sym_LT_EQ] = ACTIONS(579), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_GT_EQ] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_GT] = ACTIONS(579), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2499), - [anon_sym_api] = ACTIONS(2483), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), + [745] = { + [sym_list_splat_pattern] = STATE(2589), + [sym_primary_expression] = STATE(2294), + [sym_binary_operator] = STATE(2630), + [sym_unary_operator] = STATE(2630), + [sym_attribute] = STATE(2630), + [sym_subscript] = STATE(2630), + [sym_ellipsis] = STATE(2630), + [sym_call] = STATE(2630), + [sym_list] = STATE(2630), + [sym_set] = STATE(2630), + [sym_tuple] = STATE(2630), + [sym_dictionary] = STATE(2630), + [sym_list_comprehension] = STATE(2630), + [sym_dictionary_comprehension] = STATE(2630), + [sym_set_comprehension] = STATE(2630), + [sym_generator_expression] = STATE(2630), + [sym_parenthesized_expression] = STATE(2630), + [sym_concatenated_string] = STATE(2630), + [sym_string] = STATE(2200), + [sym_none] = STATE(2630), + [sym_await] = STATE(2630), + [sym_sizeof_expression] = STATE(2630), + [sym_cast_expression] = STATE(2630), + [sym_identifier] = ACTIONS(2459), + [anon_sym_DOT] = ACTIONS(1005), + [anon_sym_LPAREN] = ACTIONS(2461), + [anon_sym_COMMA] = ACTIONS(1003), + [anon_sym_as] = ACTIONS(1005), + [anon_sym_STAR] = ACTIONS(2463), + [anon_sym_print] = ACTIONS(2465), + [anon_sym_GT_GT] = ACTIONS(1003), + [anon_sym_if] = ACTIONS(1005), + [anon_sym_COLON] = ACTIONS(1003), + [anon_sym_match] = ACTIONS(2465), + [anon_sym_async] = ACTIONS(2465), + [anon_sym_in] = ACTIONS(1005), + [anon_sym_STAR_STAR] = ACTIONS(1003), + [anon_sym_exec] = ACTIONS(2465), + [anon_sym_LBRACK] = ACTIONS(2467), + [anon_sym_RBRACK] = ACTIONS(1003), + [anon_sym_AT] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_PIPE] = ACTIONS(1003), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_not] = ACTIONS(1005), + [anon_sym_and] = ACTIONS(1005), + [anon_sym_or] = ACTIONS(1005), + [anon_sym_SLASH] = ACTIONS(1005), + [anon_sym_PERCENT] = ACTIONS(1003), + [anon_sym_SLASH_SLASH] = ACTIONS(1003), + [anon_sym_AMP] = ACTIONS(2469), + [anon_sym_CARET] = ACTIONS(1003), + [anon_sym_LT_LT] = ACTIONS(1003), + [anon_sym_TILDE] = ACTIONS(2469), + [anon_sym_is] = ACTIONS(1005), + [anon_sym_LT] = ACTIONS(2473), + [anon_sym_LT_EQ] = ACTIONS(1003), + [anon_sym_EQ_EQ] = ACTIONS(1003), + [anon_sym_BANG_EQ] = ACTIONS(1003), + [anon_sym_GT_EQ] = ACTIONS(1003), + [anon_sym_GT] = ACTIONS(1005), + [anon_sym_LT_GT] = ACTIONS(1003), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2475), + [anon_sym_None] = ACTIONS(2477), + [sym_integer] = ACTIONS(2459), + [sym_float] = ACTIONS(2479), + [anon_sym_await] = ACTIONS(2481), + [anon_sym_api] = ACTIONS(2465), + [sym_true] = ACTIONS(2459), + [sym_false] = ACTIONS(2459), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(2483), + [sym_string_start] = ACTIONS(2485), }, - [736] = { - [sym_list_splat_pattern] = STATE(2432), - [sym_primary_expression] = STATE(3190), - [sym_binary_operator] = STATE(2549), - [sym_unary_operator] = STATE(2549), - [sym_attribute] = STATE(2549), - [sym_subscript] = STATE(2549), - [sym_ellipsis] = STATE(2549), - [sym_call] = STATE(2549), - [sym_list] = STATE(2549), - [sym_set] = STATE(2549), - [sym_tuple] = STATE(2549), - [sym_dictionary] = STATE(2549), - [sym_list_comprehension] = STATE(2549), - [sym_dictionary_comprehension] = STATE(2549), - [sym_set_comprehension] = STATE(2549), - [sym_generator_expression] = STATE(2549), - [sym_parenthesized_expression] = STATE(2549), - [sym_concatenated_string] = STATE(2549), - [sym_string] = STATE(2140), - [sym_none] = STATE(2549), - [sym_await] = STATE(2549), - [sym_sizeof_expression] = STATE(2549), - [sym_cast_expression] = STATE(2549), + [746] = { + [sym_list_splat_pattern] = STATE(2415), + [sym_primary_expression] = STATE(2229), + [sym_binary_operator] = STATE(2470), + [sym_unary_operator] = STATE(2470), + [sym_attribute] = STATE(2470), + [sym_subscript] = STATE(2470), + [sym_ellipsis] = STATE(2470), + [sym_call] = STATE(2470), + [sym_list] = STATE(2470), + [sym_set] = STATE(2470), + [sym_tuple] = STATE(2470), + [sym_dictionary] = STATE(2470), + [sym_list_comprehension] = STATE(2470), + [sym_dictionary_comprehension] = STATE(2470), + [sym_set_comprehension] = STATE(2470), + [sym_generator_expression] = STATE(2470), + [sym_parenthesized_expression] = STATE(2470), + [sym_concatenated_string] = STATE(2470), + [sym_string] = STATE(2177), + [sym_none] = STATE(2470), + [sym_await] = STATE(2470), + [sym_sizeof_expression] = STATE(2470), + [sym_cast_expression] = STATE(2470), + [sym_identifier] = ACTIONS(2487), + [anon_sym_DOT] = ACTIONS(1005), + [anon_sym_LPAREN] = ACTIONS(2489), + [anon_sym_COMMA] = ACTIONS(1003), + [anon_sym_as] = ACTIONS(1005), + [anon_sym_STAR] = ACTIONS(2491), + [anon_sym_print] = ACTIONS(2493), + [anon_sym_GT_GT] = ACTIONS(1003), + [anon_sym_if] = ACTIONS(1005), + [anon_sym_match] = ACTIONS(2493), + [anon_sym_async] = ACTIONS(2493), + [anon_sym_for] = ACTIONS(1005), + [anon_sym_in] = ACTIONS(1005), + [anon_sym_STAR_STAR] = ACTIONS(1003), + [anon_sym_exec] = ACTIONS(2493), + [anon_sym_LBRACK] = ACTIONS(2495), + [anon_sym_RBRACK] = ACTIONS(1003), + [anon_sym_AT] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_PIPE] = ACTIONS(1003), + [anon_sym_LBRACE] = ACTIONS(2499), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_not] = ACTIONS(1005), + [anon_sym_and] = ACTIONS(1005), + [anon_sym_or] = ACTIONS(1005), + [anon_sym_SLASH] = ACTIONS(1005), + [anon_sym_PERCENT] = ACTIONS(1003), + [anon_sym_SLASH_SLASH] = ACTIONS(1003), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_CARET] = ACTIONS(1003), + [anon_sym_LT_LT] = ACTIONS(1003), + [anon_sym_TILDE] = ACTIONS(2497), + [anon_sym_is] = ACTIONS(1005), + [anon_sym_LT] = ACTIONS(2501), + [anon_sym_LT_EQ] = ACTIONS(1003), + [anon_sym_EQ_EQ] = ACTIONS(1003), + [anon_sym_BANG_EQ] = ACTIONS(1003), + [anon_sym_GT_EQ] = ACTIONS(1003), + [anon_sym_GT] = ACTIONS(1005), + [anon_sym_LT_GT] = ACTIONS(1003), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2503), + [anon_sym_None] = ACTIONS(2505), + [sym_integer] = ACTIONS(2487), + [sym_float] = ACTIONS(2507), + [anon_sym_await] = ACTIONS(2509), + [anon_sym_api] = ACTIONS(2493), + [sym_true] = ACTIONS(2487), + [sym_false] = ACTIONS(2487), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_string_start] = ACTIONS(2513), + }, + [747] = { + [sym_list_splat_pattern] = STATE(2472), + [sym_primary_expression] = STATE(2223), + [sym_binary_operator] = STATE(2414), + [sym_unary_operator] = STATE(2414), + [sym_attribute] = STATE(2414), + [sym_subscript] = STATE(2414), + [sym_ellipsis] = STATE(2414), + [sym_call] = STATE(2414), + [sym_list] = STATE(2414), + [sym_set] = STATE(2414), + [sym_tuple] = STATE(2414), + [sym_dictionary] = STATE(2414), + [sym_list_comprehension] = STATE(2414), + [sym_dictionary_comprehension] = STATE(2414), + [sym_set_comprehension] = STATE(2414), + [sym_generator_expression] = STATE(2414), + [sym_parenthesized_expression] = STATE(2414), + [sym_concatenated_string] = STATE(2414), + [sym_string] = STATE(2147), + [sym_none] = STATE(2414), + [sym_await] = STATE(2414), + [sym_sizeof_expression] = STATE(2414), + [sym_cast_expression] = STATE(2414), + [sym_identifier] = ACTIONS(1342), + [anon_sym_DOT] = ACTIONS(1005), + [anon_sym_LPAREN] = ACTIONS(2377), + [anon_sym_RPAREN] = ACTIONS(1003), + [anon_sym_COMMA] = ACTIONS(1003), + [anon_sym_as] = ACTIONS(1005), + [anon_sym_STAR] = ACTIONS(2379), + [anon_sym_print] = ACTIONS(2381), + [anon_sym_GT_GT] = ACTIONS(1003), + [anon_sym_if] = ACTIONS(1005), + [anon_sym_match] = ACTIONS(2381), + [anon_sym_async] = ACTIONS(2381), + [anon_sym_for] = ACTIONS(1005), + [anon_sym_in] = ACTIONS(1005), + [anon_sym_STAR_STAR] = ACTIONS(1003), + [anon_sym_exec] = ACTIONS(2381), + [anon_sym_LBRACK] = ACTIONS(1472), + [anon_sym_AT] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1326), + [anon_sym_PIPE] = ACTIONS(1003), + [anon_sym_LBRACE] = ACTIONS(1328), + [anon_sym_PLUS] = ACTIONS(1326), + [anon_sym_not] = ACTIONS(1005), + [anon_sym_and] = ACTIONS(1005), + [anon_sym_or] = ACTIONS(1005), + [anon_sym_SLASH] = ACTIONS(1005), + [anon_sym_PERCENT] = ACTIONS(1003), + [anon_sym_SLASH_SLASH] = ACTIONS(1003), + [anon_sym_AMP] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1003), + [anon_sym_LT_LT] = ACTIONS(1003), + [anon_sym_TILDE] = ACTIONS(1326), + [anon_sym_is] = ACTIONS(1005), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(1003), + [anon_sym_EQ_EQ] = ACTIONS(1003), + [anon_sym_BANG_EQ] = ACTIONS(1003), + [anon_sym_GT_EQ] = ACTIONS(1003), + [anon_sym_GT] = ACTIONS(1005), + [anon_sym_LT_GT] = ACTIONS(1003), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1338), + [anon_sym_None] = ACTIONS(1340), + [sym_integer] = ACTIONS(1342), + [sym_float] = ACTIONS(1344), + [anon_sym_await] = ACTIONS(2387), + [anon_sym_api] = ACTIONS(2381), + [sym_true] = ACTIONS(1342), + [sym_false] = ACTIONS(1342), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1360), + [sym_string_start] = ACTIONS(1362), + }, + [748] = { + [sym_list_splat_pattern] = STATE(2536), + [sym_primary_expression] = STATE(3239), + [sym_binary_operator] = STATE(2401), + [sym_unary_operator] = STATE(2401), + [sym_attribute] = STATE(2401), + [sym_subscript] = STATE(2401), + [sym_ellipsis] = STATE(2401), + [sym_call] = STATE(2401), + [sym_list] = STATE(2401), + [sym_set] = STATE(2401), + [sym_tuple] = STATE(2401), + [sym_dictionary] = STATE(2401), + [sym_list_comprehension] = STATE(2401), + [sym_dictionary_comprehension] = STATE(2401), + [sym_set_comprehension] = STATE(2401), + [sym_generator_expression] = STATE(2401), + [sym_parenthesized_expression] = STATE(2401), + [sym_concatenated_string] = STATE(2401), + [sym_string] = STATE(2161), + [sym_none] = STATE(2401), + [sym_await] = STATE(2401), + [sym_sizeof_expression] = STATE(2401), + [sym_cast_expression] = STATE(2401), [sym_identifier] = ACTIONS(1237), [anon_sym_DOT] = ACTIONS(1297), [anon_sym_LPAREN] = ACTIONS(1213), @@ -97451,147 +98446,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1245), [sym_string_start] = ACTIONS(1247), }, - [737] = { - [sym_list_splat_pattern] = STATE(2591), - [sym_primary_expression] = STATE(2363), - [sym_binary_operator] = STATE(2631), - [sym_unary_operator] = STATE(2631), - [sym_attribute] = STATE(2631), - [sym_subscript] = STATE(2631), - [sym_ellipsis] = STATE(2631), - [sym_call] = STATE(2631), - [sym_list] = STATE(2631), - [sym_set] = STATE(2631), - [sym_tuple] = STATE(2631), - [sym_dictionary] = STATE(2631), - [sym_list_comprehension] = STATE(2631), - [sym_dictionary_comprehension] = STATE(2631), - [sym_set_comprehension] = STATE(2631), - [sym_generator_expression] = STATE(2631), - [sym_parenthesized_expression] = STATE(2631), - [sym_concatenated_string] = STATE(2631), - [sym_string] = STATE(2218), - [sym_none] = STATE(2631), - [sym_await] = STATE(2631), - [sym_sizeof_expression] = STATE(2631), - [sym_cast_expression] = STATE(2631), - [sym_identifier] = ACTIONS(2449), - [anon_sym_DOT] = ACTIONS(581), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_COMMA] = ACTIONS(579), - [anon_sym_as] = ACTIONS(581), - [anon_sym_STAR] = ACTIONS(2453), - [anon_sym_print] = ACTIONS(2455), - [anon_sym_GT_GT] = ACTIONS(579), - [anon_sym_if] = ACTIONS(581), - [anon_sym_COLON] = ACTIONS(579), - [anon_sym_match] = ACTIONS(2455), - [anon_sym_async] = ACTIONS(2455), - [anon_sym_in] = ACTIONS(581), - [anon_sym_STAR_STAR] = ACTIONS(579), - [anon_sym_exec] = ACTIONS(2455), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_RBRACK] = ACTIONS(579), - [anon_sym_AT] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PIPE] = ACTIONS(579), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(581), - [anon_sym_and] = ACTIONS(581), - [anon_sym_or] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(581), - [anon_sym_PERCENT] = ACTIONS(579), - [anon_sym_SLASH_SLASH] = ACTIONS(579), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_CARET] = ACTIONS(579), - [anon_sym_LT_LT] = ACTIONS(579), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_is] = ACTIONS(581), - [anon_sym_LT] = ACTIONS(2463), - [anon_sym_LT_EQ] = ACTIONS(579), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_GT_EQ] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_GT] = ACTIONS(579), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2471), - [anon_sym_api] = ACTIONS(2455), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), - }, - [738] = { - [sym_list_splat_pattern] = STATE(2432), - [sym_primary_expression] = STATE(3190), - [sym_binary_operator] = STATE(2549), - [sym_unary_operator] = STATE(2549), - [sym_attribute] = STATE(2549), - [sym_subscript] = STATE(2549), - [sym_ellipsis] = STATE(2549), - [sym_call] = STATE(2549), - [sym_list] = STATE(2549), - [sym_set] = STATE(2549), - [sym_tuple] = STATE(2549), - [sym_dictionary] = STATE(2549), - [sym_list_comprehension] = STATE(2549), - [sym_dictionary_comprehension] = STATE(2549), - [sym_set_comprehension] = STATE(2549), - [sym_generator_expression] = STATE(2549), - [sym_parenthesized_expression] = STATE(2549), - [sym_concatenated_string] = STATE(2549), - [sym_string] = STATE(2140), - [sym_none] = STATE(2549), - [sym_await] = STATE(2549), - [sym_sizeof_expression] = STATE(2549), - [sym_cast_expression] = STATE(2549), + [749] = { + [sym_list_splat_pattern] = STATE(2536), + [sym_primary_expression] = STATE(3239), + [sym_binary_operator] = STATE(2401), + [sym_unary_operator] = STATE(2401), + [sym_attribute] = STATE(2401), + [sym_subscript] = STATE(2401), + [sym_ellipsis] = STATE(2401), + [sym_call] = STATE(2401), + [sym_list] = STATE(2401), + [sym_set] = STATE(2401), + [sym_tuple] = STATE(2401), + [sym_dictionary] = STATE(2401), + [sym_list_comprehension] = STATE(2401), + [sym_dictionary_comprehension] = STATE(2401), + [sym_set_comprehension] = STATE(2401), + [sym_generator_expression] = STATE(2401), + [sym_parenthesized_expression] = STATE(2401), + [sym_concatenated_string] = STATE(2401), + [sym_string] = STATE(2161), + [sym_none] = STATE(2401), + [sym_await] = STATE(2401), + [sym_sizeof_expression] = STATE(2401), + [sym_cast_expression] = STATE(2401), [sym_identifier] = ACTIONS(1237), - [anon_sym_DOT] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(1005), [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_COMMA] = ACTIONS(612), + [anon_sym_COMMA] = ACTIONS(1039), [anon_sym_STAR] = ACTIONS(1302), [anon_sym_print] = ACTIONS(1304), - [anon_sym_GT_GT] = ACTIONS(581), - [anon_sym_COLON] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(1005), + [anon_sym_COLON] = ACTIONS(1039), [anon_sym_match] = ACTIONS(1304), [anon_sym_async] = ACTIONS(1304), - [anon_sym_STAR_STAR] = ACTIONS(581), + [anon_sym_STAR_STAR] = ACTIONS(1005), [anon_sym_exec] = ACTIONS(1304), - [anon_sym_EQ] = ACTIONS(612), + [anon_sym_EQ] = ACTIONS(1039), [anon_sym_LBRACK] = ACTIONS(1219), - [anon_sym_AT] = ACTIONS(581), + [anon_sym_AT] = ACTIONS(1005), [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(1005), [anon_sym_LBRACE] = ACTIONS(1223), [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_SLASH] = ACTIONS(581), - [anon_sym_PERCENT] = ACTIONS(581), - [anon_sym_SLASH_SLASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(1005), + [anon_sym_PERCENT] = ACTIONS(1005), + [anon_sym_SLASH_SLASH] = ACTIONS(1005), [anon_sym_AMP] = ACTIONS(1306), - [anon_sym_CARET] = ACTIONS(581), - [anon_sym_LT_LT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(1005), + [anon_sym_LT_LT] = ACTIONS(1005), [anon_sym_TILDE] = ACTIONS(1308), [anon_sym_LT] = ACTIONS(1310), - [anon_sym_PLUS_EQ] = ACTIONS(612), - [anon_sym_DASH_EQ] = ACTIONS(612), - [anon_sym_STAR_EQ] = ACTIONS(612), - [anon_sym_SLASH_EQ] = ACTIONS(612), - [anon_sym_AT_EQ] = ACTIONS(612), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(612), - [anon_sym_PERCENT_EQ] = ACTIONS(612), - [anon_sym_STAR_STAR_EQ] = ACTIONS(612), - [anon_sym_GT_GT_EQ] = ACTIONS(612), - [anon_sym_LT_LT_EQ] = ACTIONS(612), - [anon_sym_AMP_EQ] = ACTIONS(612), - [anon_sym_CARET_EQ] = ACTIONS(612), - [anon_sym_PIPE_EQ] = ACTIONS(612), + [anon_sym_PLUS_EQ] = ACTIONS(1039), + [anon_sym_DASH_EQ] = ACTIONS(1039), + [anon_sym_STAR_EQ] = ACTIONS(1039), + [anon_sym_SLASH_EQ] = ACTIONS(1039), + [anon_sym_AT_EQ] = ACTIONS(1039), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1039), + [anon_sym_PERCENT_EQ] = ACTIONS(1039), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1039), + [anon_sym_GT_GT_EQ] = ACTIONS(1039), + [anon_sym_LT_LT_EQ] = ACTIONS(1039), + [anon_sym_AMP_EQ] = ACTIONS(1039), + [anon_sym_CARET_EQ] = ACTIONS(1039), + [anon_sym_PIPE_EQ] = ACTIONS(1039), [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), [anon_sym_None] = ACTIONS(1235), [sym_integer] = ACTIONS(1237), @@ -97605,107 +98523,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1245), [sym_string_start] = ACTIONS(1247), }, - [739] = { - [sym_list_splat_pattern] = STATE(2671), - [sym_primary_expression] = STATE(2555), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), - [sym_identifier] = ACTIONS(1398), - [anon_sym_DOT] = ACTIONS(581), - [anon_sym_LPAREN] = ACTIONS(2439), - [anon_sym_RPAREN] = ACTIONS(579), - [anon_sym_COMMA] = ACTIONS(579), - [anon_sym_as] = ACTIONS(581), - [anon_sym_STAR] = ACTIONS(2441), - [anon_sym_print] = ACTIONS(2443), - [anon_sym_GT_GT] = ACTIONS(579), - [anon_sym_COLON_EQ] = ACTIONS(596), - [anon_sym_if] = ACTIONS(581), - [anon_sym_match] = ACTIONS(2443), - [anon_sym_async] = ACTIONS(2443), - [anon_sym_in] = ACTIONS(581), - [anon_sym_STAR_STAR] = ACTIONS(579), - [anon_sym_exec] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(1382), - [anon_sym_AT] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(1384), - [anon_sym_PIPE] = ACTIONS(579), - [anon_sym_LBRACE] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1384), - [anon_sym_not] = ACTIONS(581), - [anon_sym_and] = ACTIONS(581), - [anon_sym_or] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(581), - [anon_sym_PERCENT] = ACTIONS(579), - [anon_sym_SLASH_SLASH] = ACTIONS(579), - [anon_sym_AMP] = ACTIONS(1384), - [anon_sym_CARET] = ACTIONS(579), - [anon_sym_LT_LT] = ACTIONS(579), - [anon_sym_TILDE] = ACTIONS(1384), - [anon_sym_is] = ACTIONS(581), - [anon_sym_LT] = ACTIONS(2445), - [anon_sym_LT_EQ] = ACTIONS(579), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_GT_EQ] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_GT] = ACTIONS(579), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1394), - [anon_sym_None] = ACTIONS(1396), - [sym_integer] = ACTIONS(1398), - [sym_float] = ACTIONS(1400), - [anon_sym_await] = ACTIONS(2447), - [anon_sym_api] = ACTIONS(2443), - [sym_true] = ACTIONS(1398), - [sym_false] = ACTIONS(1398), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(1406), - [sym_string_start] = ACTIONS(1408), - }, - [740] = { - [sym_list_splat_pattern] = STATE(2432), - [sym_primary_expression] = STATE(3190), - [sym_binary_operator] = STATE(2549), - [sym_unary_operator] = STATE(2549), - [sym_attribute] = STATE(2549), - [sym_subscript] = STATE(2549), - [sym_ellipsis] = STATE(2549), - [sym_call] = STATE(2549), - [sym_list] = STATE(2549), - [sym_set] = STATE(2549), - [sym_tuple] = STATE(2549), - [sym_dictionary] = STATE(2549), - [sym_list_comprehension] = STATE(2549), - [sym_dictionary_comprehension] = STATE(2549), - [sym_set_comprehension] = STATE(2549), - [sym_generator_expression] = STATE(2549), - [sym_parenthesized_expression] = STATE(2549), - [sym_concatenated_string] = STATE(2549), - [sym_string] = STATE(2140), - [sym_none] = STATE(2549), - [sym_await] = STATE(2549), - [sym_sizeof_expression] = STATE(2549), - [sym_cast_expression] = STATE(2549), + [750] = { + [sym_list_splat_pattern] = STATE(2536), + [sym_primary_expression] = STATE(3239), + [sym_binary_operator] = STATE(2401), + [sym_unary_operator] = STATE(2401), + [sym_attribute] = STATE(2401), + [sym_subscript] = STATE(2401), + [sym_ellipsis] = STATE(2401), + [sym_call] = STATE(2401), + [sym_list] = STATE(2401), + [sym_set] = STATE(2401), + [sym_tuple] = STATE(2401), + [sym_dictionary] = STATE(2401), + [sym_list_comprehension] = STATE(2401), + [sym_dictionary_comprehension] = STATE(2401), + [sym_set_comprehension] = STATE(2401), + [sym_generator_expression] = STATE(2401), + [sym_parenthesized_expression] = STATE(2401), + [sym_concatenated_string] = STATE(2401), + [sym_string] = STATE(2161), + [sym_none] = STATE(2401), + [sym_await] = STATE(2401), + [sym_sizeof_expression] = STATE(2401), + [sym_cast_expression] = STATE(2401), [sym_identifier] = ACTIONS(1237), [anon_sym_DOT] = ACTIONS(1297), [anon_sym_LPAREN] = ACTIONS(1213), @@ -97759,229 +98600,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1245), [sym_string_start] = ACTIONS(1247), }, - [741] = { - [sym_list_splat_pattern] = STATE(2477), - [sym_primary_expression] = STATE(2212), - [sym_binary_operator] = STATE(2457), - [sym_unary_operator] = STATE(2457), - [sym_attribute] = STATE(2457), - [sym_subscript] = STATE(2457), - [sym_ellipsis] = STATE(2457), - [sym_call] = STATE(2457), - [sym_list] = STATE(2457), - [sym_set] = STATE(2457), - [sym_tuple] = STATE(2457), - [sym_dictionary] = STATE(2457), - [sym_list_comprehension] = STATE(2457), - [sym_dictionary_comprehension] = STATE(2457), - [sym_set_comprehension] = STATE(2457), - [sym_generator_expression] = STATE(2457), - [sym_parenthesized_expression] = STATE(2457), - [sym_concatenated_string] = STATE(2457), - [sym_string] = STATE(2170), - [sym_none] = STATE(2457), - [sym_await] = STATE(2457), - [sym_sizeof_expression] = STATE(2457), - [sym_cast_expression] = STATE(2457), - [sym_identifier] = ACTIONS(1342), - [anon_sym_DOT] = ACTIONS(581), - [anon_sym_LPAREN] = ACTIONS(2427), - [anon_sym_RPAREN] = ACTIONS(579), - [anon_sym_COMMA] = ACTIONS(579), - [anon_sym_as] = ACTIONS(581), - [anon_sym_STAR] = ACTIONS(2429), - [anon_sym_print] = ACTIONS(2431), - [anon_sym_GT_GT] = ACTIONS(579), - [anon_sym_if] = ACTIONS(581), - [anon_sym_match] = ACTIONS(2431), - [anon_sym_async] = ACTIONS(2431), - [anon_sym_for] = ACTIONS(581), - [anon_sym_in] = ACTIONS(581), - [anon_sym_STAR_STAR] = ACTIONS(579), - [anon_sym_exec] = ACTIONS(2431), - [anon_sym_LBRACK] = ACTIONS(1472), - [anon_sym_AT] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_PIPE] = ACTIONS(579), - [anon_sym_LBRACE] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1326), - [anon_sym_not] = ACTIONS(581), - [anon_sym_and] = ACTIONS(581), - [anon_sym_or] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(581), - [anon_sym_PERCENT] = ACTIONS(579), - [anon_sym_SLASH_SLASH] = ACTIONS(579), - [anon_sym_AMP] = ACTIONS(1326), - [anon_sym_CARET] = ACTIONS(579), - [anon_sym_LT_LT] = ACTIONS(579), - [anon_sym_TILDE] = ACTIONS(1326), - [anon_sym_is] = ACTIONS(581), - [anon_sym_LT] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(579), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_GT_EQ] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_GT] = ACTIONS(579), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1338), - [anon_sym_None] = ACTIONS(1340), - [sym_integer] = ACTIONS(1342), - [sym_float] = ACTIONS(1344), - [anon_sym_await] = ACTIONS(2437), - [anon_sym_api] = ACTIONS(2431), - [sym_true] = ACTIONS(1342), - [sym_false] = ACTIONS(1342), + [751] = { + [sym_list_splat_pattern] = STATE(2644), + [sym_primary_expression] = STATE(2482), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(1398), + [anon_sym_DOT] = ACTIONS(1005), + [anon_sym_LPAREN] = ACTIONS(2449), + [anon_sym_RPAREN] = ACTIONS(1003), + [anon_sym_COMMA] = ACTIONS(1003), + [anon_sym_as] = ACTIONS(1005), + [anon_sym_STAR] = ACTIONS(2451), + [anon_sym_print] = ACTIONS(2453), + [anon_sym_GT_GT] = ACTIONS(1003), + [anon_sym_COLON_EQ] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1005), + [anon_sym_match] = ACTIONS(2453), + [anon_sym_async] = ACTIONS(2453), + [anon_sym_in] = ACTIONS(1005), + [anon_sym_STAR_STAR] = ACTIONS(1003), + [anon_sym_exec] = ACTIONS(2453), + [anon_sym_LBRACK] = ACTIONS(1382), + [anon_sym_AT] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_PIPE] = ACTIONS(1003), + [anon_sym_LBRACE] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(1384), + [anon_sym_not] = ACTIONS(1005), + [anon_sym_and] = ACTIONS(1005), + [anon_sym_or] = ACTIONS(1005), + [anon_sym_SLASH] = ACTIONS(1005), + [anon_sym_PERCENT] = ACTIONS(1003), + [anon_sym_SLASH_SLASH] = ACTIONS(1003), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_CARET] = ACTIONS(1003), + [anon_sym_LT_LT] = ACTIONS(1003), + [anon_sym_TILDE] = ACTIONS(1384), + [anon_sym_is] = ACTIONS(1005), + [anon_sym_LT] = ACTIONS(2455), + [anon_sym_LT_EQ] = ACTIONS(1003), + [anon_sym_EQ_EQ] = ACTIONS(1003), + [anon_sym_BANG_EQ] = ACTIONS(1003), + [anon_sym_GT_EQ] = ACTIONS(1003), + [anon_sym_GT] = ACTIONS(1005), + [anon_sym_LT_GT] = ACTIONS(1003), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1394), + [anon_sym_None] = ACTIONS(1396), + [sym_integer] = ACTIONS(1398), + [sym_float] = ACTIONS(1400), + [anon_sym_await] = ACTIONS(2457), + [anon_sym_api] = ACTIONS(2453), + [sym_true] = ACTIONS(1398), + [sym_false] = ACTIONS(1398), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(1360), - [sym_string_start] = ACTIONS(1362), - }, - [742] = { - [sym_list_splat_pattern] = STATE(2523), - [sym_primary_expression] = STATE(2216), - [sym_binary_operator] = STATE(2418), - [sym_unary_operator] = STATE(2418), - [sym_attribute] = STATE(2418), - [sym_subscript] = STATE(2418), - [sym_ellipsis] = STATE(2418), - [sym_call] = STATE(2418), - [sym_list] = STATE(2418), - [sym_set] = STATE(2418), - [sym_tuple] = STATE(2418), - [sym_dictionary] = STATE(2418), - [sym_list_comprehension] = STATE(2418), - [sym_dictionary_comprehension] = STATE(2418), - [sym_set_comprehension] = STATE(2418), - [sym_generator_expression] = STATE(2418), - [sym_parenthesized_expression] = STATE(2418), - [sym_concatenated_string] = STATE(2418), - [sym_string] = STATE(2157), - [sym_none] = STATE(2418), - [sym_await] = STATE(2418), - [sym_sizeof_expression] = STATE(2418), - [sym_cast_expression] = STATE(2418), - [sym_identifier] = ACTIONS(2477), - [anon_sym_DOT] = ACTIONS(581), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_COMMA] = ACTIONS(579), - [anon_sym_as] = ACTIONS(581), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_print] = ACTIONS(2483), - [anon_sym_GT_GT] = ACTIONS(579), - [anon_sym_if] = ACTIONS(581), - [anon_sym_match] = ACTIONS(2483), - [anon_sym_async] = ACTIONS(2483), - [anon_sym_for] = ACTIONS(581), - [anon_sym_in] = ACTIONS(581), - [anon_sym_STAR_STAR] = ACTIONS(579), - [anon_sym_exec] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2485), - [anon_sym_RBRACK] = ACTIONS(579), - [anon_sym_AT] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_PIPE] = ACTIONS(579), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(581), - [anon_sym_and] = ACTIONS(581), - [anon_sym_or] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(581), - [anon_sym_PERCENT] = ACTIONS(579), - [anon_sym_SLASH_SLASH] = ACTIONS(579), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_CARET] = ACTIONS(579), - [anon_sym_LT_LT] = ACTIONS(579), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_is] = ACTIONS(581), - [anon_sym_LT] = ACTIONS(2491), - [anon_sym_LT_EQ] = ACTIONS(579), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_GT_EQ] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_GT] = ACTIONS(579), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2499), - [anon_sym_api] = ACTIONS(2483), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), + [anon_sym_sizeof] = ACTIONS(1406), + [sym_string_start] = ACTIONS(1408), }, - [743] = { - [sym_list_splat_pattern] = STATE(2671), - [sym_primary_expression] = STATE(2555), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), + [752] = { + [sym_list_splat_pattern] = STATE(2644), + [sym_primary_expression] = STATE(2482), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), [sym_identifier] = ACTIONS(1398), - [anon_sym_DOT] = ACTIONS(581), - [anon_sym_LPAREN] = ACTIONS(2439), - [anon_sym_RPAREN] = ACTIONS(579), - [anon_sym_COMMA] = ACTIONS(579), - [anon_sym_as] = ACTIONS(581), - [anon_sym_STAR] = ACTIONS(2441), - [anon_sym_print] = ACTIONS(2443), - [anon_sym_GT_GT] = ACTIONS(579), - [anon_sym_if] = ACTIONS(581), - [anon_sym_match] = ACTIONS(2443), - [anon_sym_async] = ACTIONS(2443), - [anon_sym_in] = ACTIONS(581), - [anon_sym_STAR_STAR] = ACTIONS(579), - [anon_sym_exec] = ACTIONS(2443), + [anon_sym_DOT] = ACTIONS(1005), + [anon_sym_LPAREN] = ACTIONS(2449), + [anon_sym_RPAREN] = ACTIONS(1003), + [anon_sym_COMMA] = ACTIONS(1003), + [anon_sym_as] = ACTIONS(1005), + [anon_sym_STAR] = ACTIONS(2451), + [anon_sym_print] = ACTIONS(2453), + [anon_sym_GT_GT] = ACTIONS(1003), + [anon_sym_if] = ACTIONS(1005), + [anon_sym_match] = ACTIONS(2453), + [anon_sym_async] = ACTIONS(2453), + [anon_sym_in] = ACTIONS(1005), + [anon_sym_STAR_STAR] = ACTIONS(1003), + [anon_sym_exec] = ACTIONS(2453), [anon_sym_LBRACK] = ACTIONS(1382), - [anon_sym_AT] = ACTIONS(579), + [anon_sym_AT] = ACTIONS(1003), [anon_sym_DASH] = ACTIONS(1384), - [anon_sym_PIPE] = ACTIONS(579), + [anon_sym_PIPE] = ACTIONS(1003), [anon_sym_LBRACE] = ACTIONS(1386), [anon_sym_PLUS] = ACTIONS(1384), - [anon_sym_not] = ACTIONS(581), - [anon_sym_and] = ACTIONS(581), - [anon_sym_or] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(581), - [anon_sym_PERCENT] = ACTIONS(579), - [anon_sym_SLASH_SLASH] = ACTIONS(579), + [anon_sym_not] = ACTIONS(1005), + [anon_sym_and] = ACTIONS(1005), + [anon_sym_or] = ACTIONS(1005), + [anon_sym_SLASH] = ACTIONS(1005), + [anon_sym_PERCENT] = ACTIONS(1003), + [anon_sym_SLASH_SLASH] = ACTIONS(1003), [anon_sym_AMP] = ACTIONS(1384), - [anon_sym_CARET] = ACTIONS(579), - [anon_sym_LT_LT] = ACTIONS(579), + [anon_sym_CARET] = ACTIONS(1003), + [anon_sym_LT_LT] = ACTIONS(1003), [anon_sym_TILDE] = ACTIONS(1384), - [anon_sym_is] = ACTIONS(581), - [anon_sym_LT] = ACTIONS(2445), - [anon_sym_LT_EQ] = ACTIONS(579), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_GT_EQ] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(581), - [anon_sym_LT_GT] = ACTIONS(579), + [anon_sym_is] = ACTIONS(1005), + [anon_sym_LT] = ACTIONS(2455), + [anon_sym_LT_EQ] = ACTIONS(1003), + [anon_sym_EQ_EQ] = ACTIONS(1003), + [anon_sym_BANG_EQ] = ACTIONS(1003), + [anon_sym_GT_EQ] = ACTIONS(1003), + [anon_sym_GT] = ACTIONS(1005), + [anon_sym_LT_GT] = ACTIONS(1003), [anon_sym_DOT_DOT_DOT] = ACTIONS(1394), [anon_sym_None] = ACTIONS(1396), [sym_integer] = ACTIONS(1398), [sym_float] = ACTIONS(1400), - [anon_sym_await] = ACTIONS(2447), - [anon_sym_api] = ACTIONS(2443), + [anon_sym_await] = ACTIONS(2457), + [anon_sym_api] = ACTIONS(2453), [sym_true] = ACTIONS(1398), [sym_false] = ACTIONS(1398), [sym_comment] = ACTIONS(3), @@ -97989,51 +98753,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1406), [sym_string_start] = ACTIONS(1408), }, - [744] = { - [sym_named_expression] = STATE(2459), - [sym__named_expression_lhs] = STATE(5688), - [sym_list_splat] = STATE(4756), - [sym_parenthesized_list_splat] = STATE(4756), - [sym__patterns] = STATE(5694), - [sym_pattern] = STATE(5006), - [sym_tuple_pattern] = STATE(5295), - [sym_list_pattern] = STATE(5295), - [sym_list_splat_pattern] = STATE(2460), - [sym_as_pattern] = STATE(2459), - [sym_expression] = STATE(3664), - [sym_primary_expression] = STATE(2060), - [sym_not_operator] = STATE(2459), - [sym_boolean_operator] = STATE(2459), - [sym_binary_operator] = STATE(2457), - [sym_unary_operator] = STATE(2457), - [sym_comparison_operator] = STATE(2459), - [sym_lambda] = STATE(2459), - [sym_yield] = STATE(4816), - [sym_attribute] = STATE(2462), - [sym_subscript] = STATE(2462), - [sym_ellipsis] = STATE(2457), - [sym_call] = STATE(2457), - [sym_list] = STATE(2457), - [sym_set] = STATE(2457), - [sym_tuple] = STATE(2457), - [sym_dictionary] = STATE(2457), - [sym_list_comprehension] = STATE(2457), - [sym_dictionary_comprehension] = STATE(2457), - [sym_set_comprehension] = STATE(2457), - [sym_generator_expression] = STATE(2457), - [sym_parenthesized_expression] = STATE(2457), - [sym__collection_elements] = STATE(5415), - [sym_conditional_expression] = STATE(2459), - [sym_concatenated_string] = STATE(2457), - [sym_string] = STATE(2170), - [sym_none] = STATE(2457), - [sym_await] = STATE(2457), - [sym_new_expression] = STATE(2459), - [sym_sizeof_expression] = STATE(2457), - [sym_cast_expression] = STATE(2457), - [sym_identifier] = ACTIONS(2505), - [anon_sym_LPAREN] = ACTIONS(2507), - [anon_sym_RPAREN] = ACTIONS(1366), + [753] = { + [sym_named_expression] = STATE(2421), + [sym__named_expression_lhs] = STATE(5522), + [sym_list_splat] = STATE(4708), + [sym_parenthesized_list_splat] = STATE(4708), + [sym__patterns] = STATE(5592), + [sym_pattern] = STATE(4748), + [sym_tuple_pattern] = STATE(5264), + [sym_list_pattern] = STATE(5264), + [sym_list_splat_pattern] = STATE(2422), + [sym_as_pattern] = STATE(2421), + [sym_expression] = STATE(3709), + [sym_primary_expression] = STATE(2066), + [sym_not_operator] = STATE(2421), + [sym_boolean_operator] = STATE(2421), + [sym_binary_operator] = STATE(2414), + [sym_unary_operator] = STATE(2414), + [sym_comparison_operator] = STATE(2421), + [sym_lambda] = STATE(2421), + [sym_yield] = STATE(5116), + [sym_attribute] = STATE(2425), + [sym_subscript] = STATE(2425), + [sym_ellipsis] = STATE(2414), + [sym_call] = STATE(2414), + [sym_list] = STATE(2414), + [sym_set] = STATE(2414), + [sym_tuple] = STATE(2414), + [sym_dictionary] = STATE(2414), + [sym_list_comprehension] = STATE(2414), + [sym_dictionary_comprehension] = STATE(2414), + [sym_set_comprehension] = STATE(2414), + [sym_generator_expression] = STATE(2414), + [sym_parenthesized_expression] = STATE(2414), + [sym__collection_elements] = STATE(5598), + [sym_conditional_expression] = STATE(2421), + [sym_concatenated_string] = STATE(2414), + [sym_string] = STATE(2147), + [sym_none] = STATE(2414), + [sym_await] = STATE(2414), + [sym_new_expression] = STATE(2421), + [sym_sizeof_expression] = STATE(2414), + [sym_cast_expression] = STATE(2414), + [sym_identifier] = ACTIONS(2515), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_RPAREN] = ACTIONS(2519), [anon_sym_STAR] = ACTIONS(1320), [anon_sym_print] = ACTIONS(1322), [anon_sym_match] = ACTIONS(1322), @@ -98063,125 +98827,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1360), [sym_string_start] = ACTIONS(1362), }, - [745] = { - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_expression_list] = STATE(5317), - [sym_pattern] = STATE(3235), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3935), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5317), - [sym_augmented_assignment] = STATE(5317), - [sym_pattern_list] = STATE(3299), - [sym__right_hand_side] = STATE(5317), - [sym_yield] = STATE(5317), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [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(99), - [anon_sym_sizeof] = ACTIONS(105), - [sym_string_start] = ACTIONS(107), + [754] = { + [sym_named_expression] = STATE(2326), + [sym__named_expression_lhs] = STATE(5687), + [sym_list_splat] = STATE(4993), + [sym_dictionary_splat] = STATE(5121), + [sym_parenthesized_list_splat] = STATE(4993), + [sym_list_splat_pattern] = STATE(2256), + [sym_as_pattern] = STATE(2326), + [sym_expression] = STATE(3511), + [sym_primary_expression] = STATE(2061), + [sym_not_operator] = STATE(2326), + [sym_boolean_operator] = STATE(2326), + [sym_binary_operator] = STATE(2298), + [sym_unary_operator] = STATE(2298), + [sym_comparison_operator] = STATE(2326), + [sym_lambda] = STATE(2326), + [sym_yield] = STATE(4993), + [sym_attribute] = STATE(2298), + [sym_subscript] = STATE(2298), + [sym_ellipsis] = STATE(2298), + [sym_call] = STATE(2298), + [sym_list] = STATE(2298), + [sym_set] = STATE(2298), + [sym_tuple] = STATE(2298), + [sym_dictionary] = STATE(2298), + [sym_pair] = STATE(4132), + [sym_list_comprehension] = STATE(2298), + [sym_dictionary_comprehension] = STATE(2298), + [sym_set_comprehension] = STATE(2298), + [sym_generator_expression] = STATE(2298), + [sym_parenthesized_expression] = STATE(2298), + [sym__collection_elements] = STATE(5634), + [sym_conditional_expression] = STATE(2326), + [sym_concatenated_string] = STATE(2298), + [sym_string] = STATE(2099), + [sym_none] = STATE(2298), + [sym_await] = STATE(2298), + [sym_new_expression] = STATE(2326), + [sym_sizeof_expression] = STATE(2298), + [sym_cast_expression] = STATE(2298), + [sym_identifier] = ACTIONS(2521), + [anon_sym_LPAREN] = ACTIONS(2523), + [anon_sym_COMMA] = ACTIONS(2525), + [anon_sym_STAR] = ACTIONS(2527), + [anon_sym_print] = ACTIONS(2529), + [anon_sym_match] = ACTIONS(2529), + [anon_sym_async] = ACTIONS(2529), + [anon_sym_STAR_STAR] = ACTIONS(2531), + [anon_sym_exec] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2419), + [anon_sym_DASH] = ACTIONS(2421), + [anon_sym_LBRACE] = ACTIONS(2423), + [anon_sym_RBRACE] = ACTIONS(2533), + [anon_sym_PLUS] = ACTIONS(2421), + [anon_sym_not] = ACTIONS(2535), + [anon_sym_AMP] = ACTIONS(2421), + [anon_sym_TILDE] = ACTIONS(2421), + [anon_sym_LT] = ACTIONS(2537), + [anon_sym_lambda] = ACTIONS(2539), + [anon_sym_yield] = ACTIONS(2541), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2427), + [anon_sym_None] = ACTIONS(2429), + [sym_integer] = ACTIONS(2411), + [sym_float] = ACTIONS(2431), + [anon_sym_await] = ACTIONS(2543), + [anon_sym_api] = ACTIONS(2529), + [sym_true] = ACTIONS(2411), + [sym_false] = ACTIONS(2411), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2545), + [anon_sym_sizeof] = ACTIONS(2435), + [sym_string_start] = ACTIONS(2437), }, - [746] = { - [sym_named_expression] = STATE(2459), - [sym__named_expression_lhs] = STATE(5688), - [sym_list_splat] = STATE(4970), - [sym_parenthesized_list_splat] = STATE(4977), - [sym__patterns] = STATE(5637), - [sym_pattern] = STATE(5006), - [sym_tuple_pattern] = STATE(5295), - [sym_list_pattern] = STATE(5295), - [sym_list_splat_pattern] = STATE(2460), - [sym_as_pattern] = STATE(2459), - [sym_expression] = STATE(3680), - [sym_primary_expression] = STATE(2060), - [sym_not_operator] = STATE(2459), - [sym_boolean_operator] = STATE(2459), - [sym_binary_operator] = STATE(2457), - [sym_unary_operator] = STATE(2457), - [sym_comparison_operator] = STATE(2459), - [sym_lambda] = STATE(2459), - [sym_yield] = STATE(4851), - [sym_attribute] = STATE(2462), - [sym_subscript] = STATE(2462), - [sym_ellipsis] = STATE(2457), - [sym_call] = STATE(2457), - [sym_list] = STATE(2457), - [sym_set] = STATE(2457), - [sym_tuple] = STATE(2457), - [sym_dictionary] = STATE(2457), - [sym_list_comprehension] = STATE(2457), - [sym_dictionary_comprehension] = STATE(2457), - [sym_set_comprehension] = STATE(2457), - [sym_generator_expression] = STATE(2457), - [sym_parenthesized_expression] = STATE(2457), - [sym__collection_elements] = STATE(5681), - [sym_conditional_expression] = STATE(2459), - [sym_concatenated_string] = STATE(2457), - [sym_string] = STATE(2170), - [sym_none] = STATE(2457), - [sym_await] = STATE(2457), - [sym_new_expression] = STATE(2459), - [sym_sizeof_expression] = STATE(2457), - [sym_cast_expression] = STATE(2457), - [sym_identifier] = ACTIONS(2505), - [anon_sym_LPAREN] = ACTIONS(2507), - [anon_sym_RPAREN] = ACTIONS(1318), + [755] = { + [sym_named_expression] = STATE(2421), + [sym__named_expression_lhs] = STATE(5522), + [sym_list_splat] = STATE(4708), + [sym_parenthesized_list_splat] = STATE(4708), + [sym__patterns] = STATE(5592), + [sym_pattern] = STATE(4748), + [sym_tuple_pattern] = STATE(5264), + [sym_list_pattern] = STATE(5264), + [sym_list_splat_pattern] = STATE(2422), + [sym_as_pattern] = STATE(2421), + [sym_expression] = STATE(3709), + [sym_primary_expression] = STATE(2066), + [sym_not_operator] = STATE(2421), + [sym_boolean_operator] = STATE(2421), + [sym_binary_operator] = STATE(2414), + [sym_unary_operator] = STATE(2414), + [sym_comparison_operator] = STATE(2421), + [sym_lambda] = STATE(2421), + [sym_yield] = STATE(5116), + [sym_attribute] = STATE(2425), + [sym_subscript] = STATE(2425), + [sym_ellipsis] = STATE(2414), + [sym_call] = STATE(2414), + [sym_list] = STATE(2414), + [sym_set] = STATE(2414), + [sym_tuple] = STATE(2414), + [sym_dictionary] = STATE(2414), + [sym_list_comprehension] = STATE(2414), + [sym_dictionary_comprehension] = STATE(2414), + [sym_set_comprehension] = STATE(2414), + [sym_generator_expression] = STATE(2414), + [sym_parenthesized_expression] = STATE(2414), + [sym__collection_elements] = STATE(5598), + [sym_conditional_expression] = STATE(2421), + [sym_concatenated_string] = STATE(2414), + [sym_string] = STATE(2147), + [sym_none] = STATE(2414), + [sym_await] = STATE(2414), + [sym_new_expression] = STATE(2421), + [sym_sizeof_expression] = STATE(2414), + [sym_cast_expression] = STATE(2414), + [sym_identifier] = ACTIONS(2515), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_RPAREN] = ACTIONS(2547), [anon_sym_STAR] = ACTIONS(1320), [anon_sym_print] = ACTIONS(1322), [anon_sym_match] = ACTIONS(1322), @@ -98211,273 +98975,199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1360), [sym_string_start] = ACTIONS(1362), }, - [747] = { - [sym_named_expression] = STATE(2459), - [sym__named_expression_lhs] = STATE(5688), - [sym_list_splat] = STATE(4756), - [sym_parenthesized_list_splat] = STATE(4756), - [sym__patterns] = STATE(5694), - [sym_pattern] = STATE(5006), - [sym_tuple_pattern] = STATE(5295), - [sym_list_pattern] = STATE(5295), - [sym_list_splat_pattern] = STATE(2460), - [sym_as_pattern] = STATE(2459), - [sym_expression] = STATE(3667), - [sym_primary_expression] = STATE(2060), - [sym_not_operator] = STATE(2459), - [sym_boolean_operator] = STATE(2459), - [sym_binary_operator] = STATE(2457), - [sym_unary_operator] = STATE(2457), - [sym_comparison_operator] = STATE(2459), - [sym_lambda] = STATE(2459), - [sym_yield] = STATE(4647), - [sym_attribute] = STATE(2462), - [sym_subscript] = STATE(2462), - [sym_ellipsis] = STATE(2457), - [sym_call] = STATE(2457), - [sym_list] = STATE(2457), - [sym_set] = STATE(2457), - [sym_tuple] = STATE(2457), - [sym_dictionary] = STATE(2457), - [sym_list_comprehension] = STATE(2457), - [sym_dictionary_comprehension] = STATE(2457), - [sym_set_comprehension] = STATE(2457), - [sym_generator_expression] = STATE(2457), - [sym_parenthesized_expression] = STATE(2457), - [sym__collection_elements] = STATE(5455), - [sym_conditional_expression] = STATE(2459), - [sym_concatenated_string] = STATE(2457), - [sym_string] = STATE(2170), - [sym_none] = STATE(2457), - [sym_await] = STATE(2457), - [sym_new_expression] = STATE(2459), - [sym_sizeof_expression] = STATE(2457), - [sym_cast_expression] = STATE(2457), - [sym_identifier] = ACTIONS(2505), - [anon_sym_LPAREN] = ACTIONS(2507), - [anon_sym_RPAREN] = ACTIONS(2509), - [anon_sym_STAR] = ACTIONS(1320), - [anon_sym_print] = ACTIONS(1322), - [anon_sym_match] = ACTIONS(1322), - [anon_sym_async] = ACTIONS(1322), - [anon_sym_exec] = ACTIONS(1322), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1326), - [anon_sym_not] = ACTIONS(1330), - [anon_sym_AMP] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1326), - [anon_sym_LT] = ACTIONS(1332), - [anon_sym_lambda] = ACTIONS(1334), - [anon_sym_yield] = ACTIONS(1336), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1338), - [anon_sym_None] = ACTIONS(1340), - [sym_integer] = ACTIONS(1342), - [sym_float] = ACTIONS(1344), - [anon_sym_await] = ACTIONS(1346), - [anon_sym_api] = ACTIONS(1322), - [sym_true] = ACTIONS(1342), - [sym_false] = ACTIONS(1342), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1350), - [anon_sym_sizeof] = ACTIONS(1360), - [sym_string_start] = ACTIONS(1362), + [756] = { + [sym_named_expression] = STATE(2493), + [sym__named_expression_lhs] = STATE(5681), + [sym_list_splat] = STATE(4860), + [sym_parenthesized_list_splat] = STATE(4860), + [sym__patterns] = STATE(5619), + [sym_pattern] = STATE(4870), + [sym_tuple_pattern] = STATE(5189), + [sym_list_pattern] = STATE(5189), + [sym_list_splat_pattern] = STATE(2494), + [sym_as_pattern] = STATE(2493), + [sym_expression] = STATE(3689), + [sym_primary_expression] = STATE(2070), + [sym_not_operator] = STATE(2493), + [sym_boolean_operator] = STATE(2493), + [sym_binary_operator] = STATE(2470), + [sym_unary_operator] = STATE(2470), + [sym_comparison_operator] = STATE(2493), + [sym_lambda] = STATE(2493), + [sym_yield] = STATE(4860), + [sym_attribute] = STATE(2508), + [sym_subscript] = STATE(2508), + [sym_ellipsis] = STATE(2470), + [sym_call] = STATE(2470), + [sym_list] = STATE(2470), + [sym_set] = STATE(2470), + [sym_tuple] = STATE(2470), + [sym_dictionary] = STATE(2470), + [sym_list_comprehension] = STATE(2470), + [sym_dictionary_comprehension] = STATE(2470), + [sym_set_comprehension] = STATE(2470), + [sym_generator_expression] = STATE(2470), + [sym_parenthesized_expression] = STATE(2470), + [sym__collection_elements] = STATE(5435), + [sym_conditional_expression] = STATE(2493), + [sym_concatenated_string] = STATE(2470), + [sym_string] = STATE(2177), + [sym_none] = STATE(2470), + [sym_await] = STATE(2470), + [sym_new_expression] = STATE(2493), + [sym_sizeof_expression] = STATE(2470), + [sym_cast_expression] = STATE(2470), + [sym_identifier] = ACTIONS(2549), + [anon_sym_LPAREN] = 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_RBRACK] = ACTIONS(2559), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2499), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_not] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_TILDE] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2563), + [anon_sym_lambda] = ACTIONS(2565), + [anon_sym_yield] = ACTIONS(2567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2503), + [anon_sym_None] = ACTIONS(2505), + [sym_integer] = ACTIONS(2487), + [sym_float] = ACTIONS(2507), + [anon_sym_await] = ACTIONS(2569), + [anon_sym_api] = ACTIONS(2555), + [sym_true] = ACTIONS(2487), + [sym_false] = ACTIONS(2487), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2571), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_string_start] = ACTIONS(2513), }, - [748] = { + [757] = { + [sym_named_expression] = STATE(2326), + [sym__named_expression_lhs] = STATE(5687), + [sym_list_splat] = STATE(4993), + [sym_dictionary_splat] = STATE(4754), + [sym_parenthesized_list_splat] = STATE(4993), + [sym_list_splat_pattern] = STATE(2256), + [sym_as_pattern] = STATE(2326), + [sym_expression] = STATE(3609), + [sym_primary_expression] = STATE(2061), + [sym_not_operator] = STATE(2326), + [sym_boolean_operator] = STATE(2326), + [sym_binary_operator] = STATE(2298), + [sym_unary_operator] = STATE(2298), + [sym_comparison_operator] = STATE(2326), + [sym_lambda] = STATE(2326), + [sym_yield] = STATE(4993), + [sym_attribute] = STATE(2298), + [sym_subscript] = STATE(2298), + [sym_ellipsis] = STATE(2298), + [sym_call] = STATE(2298), + [sym_list] = STATE(2298), + [sym_set] = STATE(2298), + [sym_tuple] = STATE(2298), + [sym_dictionary] = STATE(2298), + [sym_pair] = STATE(4042), + [sym_list_comprehension] = STATE(2298), + [sym_dictionary_comprehension] = STATE(2298), + [sym_set_comprehension] = STATE(2298), + [sym_generator_expression] = STATE(2298), + [sym_parenthesized_expression] = STATE(2298), + [sym__collection_elements] = STATE(5529), + [sym_conditional_expression] = STATE(2326), + [sym_concatenated_string] = STATE(2298), + [sym_string] = STATE(2099), + [sym_none] = STATE(2298), + [sym_await] = STATE(2298), + [sym_new_expression] = STATE(2326), + [sym_sizeof_expression] = STATE(2298), + [sym_cast_expression] = STATE(2298), + [sym_identifier] = ACTIONS(2521), + [anon_sym_LPAREN] = ACTIONS(2523), + [anon_sym_COMMA] = ACTIONS(2573), + [anon_sym_STAR] = ACTIONS(2527), + [anon_sym_print] = ACTIONS(2529), + [anon_sym_match] = ACTIONS(2529), + [anon_sym_async] = ACTIONS(2529), + [anon_sym_STAR_STAR] = ACTIONS(2531), + [anon_sym_exec] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2419), + [anon_sym_DASH] = ACTIONS(2421), + [anon_sym_LBRACE] = ACTIONS(2423), + [anon_sym_RBRACE] = ACTIONS(2575), + [anon_sym_PLUS] = ACTIONS(2421), + [anon_sym_not] = ACTIONS(2535), + [anon_sym_AMP] = ACTIONS(2421), + [anon_sym_TILDE] = ACTIONS(2421), + [anon_sym_LT] = ACTIONS(2537), + [anon_sym_lambda] = ACTIONS(2539), + [anon_sym_yield] = ACTIONS(2541), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2427), + [anon_sym_None] = ACTIONS(2429), + [sym_integer] = ACTIONS(2411), + [sym_float] = ACTIONS(2431), + [anon_sym_await] = ACTIONS(2543), + [anon_sym_api] = ACTIONS(2529), + [sym_true] = ACTIONS(2411), + [sym_false] = ACTIONS(2411), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2545), + [anon_sym_sizeof] = ACTIONS(2435), + [sym_string_start] = ACTIONS(2437), + }, + [758] = { [sym_named_expression] = STATE(2421), - [sym__named_expression_lhs] = STATE(5414), - [sym_list_splat] = STATE(5086), - [sym_parenthesized_list_splat] = STATE(5086), - [sym__patterns] = STATE(5489), - [sym_pattern] = STATE(5088), - [sym_tuple_pattern] = STATE(5363), - [sym_list_pattern] = STATE(5363), + [sym__named_expression_lhs] = STATE(5522), + [sym_list_splat] = STATE(4708), + [sym_parenthesized_list_splat] = STATE(4708), + [sym__patterns] = STATE(5691), + [sym_pattern] = STATE(4748), + [sym_tuple_pattern] = STATE(5264), + [sym_list_pattern] = STATE(5264), [sym_list_splat_pattern] = STATE(2422), [sym_as_pattern] = STATE(2421), - [sym_expression] = STATE(3671), - [sym_primary_expression] = STATE(2063), + [sym_expression] = STATE(3709), + [sym_primary_expression] = STATE(2066), [sym_not_operator] = STATE(2421), [sym_boolean_operator] = STATE(2421), - [sym_binary_operator] = STATE(2418), - [sym_unary_operator] = STATE(2418), + [sym_binary_operator] = STATE(2414), + [sym_unary_operator] = STATE(2414), [sym_comparison_operator] = STATE(2421), [sym_lambda] = STATE(2421), - [sym_yield] = STATE(5086), - [sym_attribute] = STATE(2423), - [sym_subscript] = STATE(2423), - [sym_ellipsis] = STATE(2418), - [sym_call] = STATE(2418), - [sym_list] = STATE(2418), - [sym_set] = STATE(2418), - [sym_tuple] = STATE(2418), - [sym_dictionary] = STATE(2418), - [sym_list_comprehension] = STATE(2418), - [sym_dictionary_comprehension] = STATE(2418), - [sym_set_comprehension] = STATE(2418), - [sym_generator_expression] = STATE(2418), - [sym_parenthesized_expression] = STATE(2418), - [sym__collection_elements] = STATE(5515), + [sym_yield] = STATE(5116), + [sym_attribute] = STATE(2425), + [sym_subscript] = STATE(2425), + [sym_ellipsis] = STATE(2414), + [sym_call] = STATE(2414), + [sym_list] = STATE(2414), + [sym_set] = STATE(2414), + [sym_tuple] = STATE(2414), + [sym_dictionary] = STATE(2414), + [sym_list_comprehension] = STATE(2414), + [sym_dictionary_comprehension] = STATE(2414), + [sym_set_comprehension] = STATE(2414), + [sym_generator_expression] = STATE(2414), + [sym_parenthesized_expression] = STATE(2414), + [sym__collection_elements] = STATE(5598), [sym_conditional_expression] = STATE(2421), - [sym_concatenated_string] = STATE(2418), - [sym_string] = STATE(2157), - [sym_none] = STATE(2418), - [sym_await] = STATE(2418), + [sym_concatenated_string] = STATE(2414), + [sym_string] = STATE(2147), + [sym_none] = STATE(2414), + [sym_await] = STATE(2414), [sym_new_expression] = STATE(2421), - [sym_sizeof_expression] = STATE(2418), - [sym_cast_expression] = STATE(2418), - [sym_identifier] = ACTIONS(2511), - [anon_sym_LPAREN] = ACTIONS(2513), - [anon_sym_STAR] = ACTIONS(2515), - [anon_sym_print] = ACTIONS(2517), - [anon_sym_match] = ACTIONS(2517), - [anon_sym_async] = ACTIONS(2517), - [anon_sym_exec] = ACTIONS(2517), - [anon_sym_LBRACK] = ACTIONS(2519), - [anon_sym_RBRACK] = ACTIONS(2521), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2523), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2525), - [anon_sym_lambda] = ACTIONS(2527), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2531), - [anon_sym_api] = ACTIONS(2517), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2533), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), - }, - [749] = { - [sym_named_expression] = STATE(2236), - [sym__named_expression_lhs] = STATE(5519), - [sym_list_splat] = STATE(4744), - [sym_dictionary_splat] = STATE(5094), - [sym_parenthesized_list_splat] = STATE(4744), - [sym_list_splat_pattern] = STATE(2309), - [sym_as_pattern] = STATE(2236), - [sym_expression] = STATE(3592), - [sym_primary_expression] = STATE(2054), - [sym_not_operator] = STATE(2236), - [sym_boolean_operator] = STATE(2236), - [sym_binary_operator] = STATE(2377), - [sym_unary_operator] = STATE(2377), - [sym_comparison_operator] = STATE(2236), - [sym_lambda] = STATE(2236), - [sym_yield] = STATE(4744), - [sym_attribute] = STATE(2377), - [sym_subscript] = STATE(2377), - [sym_ellipsis] = STATE(2377), - [sym_call] = STATE(2377), - [sym_list] = STATE(2377), - [sym_set] = STATE(2377), - [sym_tuple] = STATE(2377), - [sym_dictionary] = STATE(2377), - [sym_pair] = STATE(3972), - [sym_list_comprehension] = STATE(2377), - [sym_dictionary_comprehension] = STATE(2377), - [sym_set_comprehension] = STATE(2377), - [sym_generator_expression] = STATE(2377), - [sym_parenthesized_expression] = STATE(2377), - [sym__collection_elements] = STATE(5438), - [sym_conditional_expression] = STATE(2236), - [sym_concatenated_string] = STATE(2377), - [sym_string] = STATE(2103), - [sym_none] = STATE(2377), - [sym_await] = STATE(2377), - [sym_new_expression] = STATE(2236), - [sym_sizeof_expression] = STATE(2377), - [sym_cast_expression] = STATE(2377), - [sym_identifier] = ACTIONS(2535), - [anon_sym_LPAREN] = ACTIONS(2537), - [anon_sym_COMMA] = ACTIONS(2539), - [anon_sym_STAR] = ACTIONS(2541), - [anon_sym_print] = ACTIONS(2543), - [anon_sym_match] = ACTIONS(2543), - [anon_sym_async] = ACTIONS(2543), - [anon_sym_STAR_STAR] = ACTIONS(2545), - [anon_sym_exec] = ACTIONS(2543), - [anon_sym_LBRACK] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2409), - [anon_sym_LBRACE] = ACTIONS(2411), - [anon_sym_RBRACE] = ACTIONS(2547), - [anon_sym_PLUS] = ACTIONS(2409), - [anon_sym_not] = ACTIONS(2549), - [anon_sym_AMP] = ACTIONS(2409), - [anon_sym_TILDE] = ACTIONS(2409), - [anon_sym_LT] = ACTIONS(2551), - [anon_sym_lambda] = ACTIONS(2553), - [anon_sym_yield] = ACTIONS(2555), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2415), - [anon_sym_None] = ACTIONS(2417), - [sym_integer] = ACTIONS(2399), - [sym_float] = ACTIONS(2419), - [anon_sym_await] = ACTIONS(2557), - [anon_sym_api] = ACTIONS(2543), - [sym_true] = ACTIONS(2399), - [sym_false] = ACTIONS(2399), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2559), - [anon_sym_sizeof] = ACTIONS(2423), - [sym_string_start] = ACTIONS(2425), - }, - [750] = { - [sym_named_expression] = STATE(2459), - [sym__named_expression_lhs] = STATE(5688), - [sym_list_splat] = STATE(4810), - [sym_parenthesized_list_splat] = STATE(4817), - [sym__patterns] = STATE(5412), - [sym_pattern] = STATE(5006), - [sym_tuple_pattern] = STATE(5295), - [sym_list_pattern] = STATE(5295), - [sym_list_splat_pattern] = STATE(2460), - [sym_as_pattern] = STATE(2459), - [sym_expression] = STATE(3631), - [sym_primary_expression] = STATE(2060), - [sym_not_operator] = STATE(2459), - [sym_boolean_operator] = STATE(2459), - [sym_binary_operator] = STATE(2457), - [sym_unary_operator] = STATE(2457), - [sym_comparison_operator] = STATE(2459), - [sym_lambda] = STATE(2459), - [sym_yield] = STATE(4728), - [sym_attribute] = STATE(2462), - [sym_subscript] = STATE(2462), - [sym_ellipsis] = STATE(2457), - [sym_call] = STATE(2457), - [sym_list] = STATE(2457), - [sym_set] = STATE(2457), - [sym_tuple] = STATE(2457), - [sym_dictionary] = STATE(2457), - [sym_list_comprehension] = STATE(2457), - [sym_dictionary_comprehension] = STATE(2457), - [sym_set_comprehension] = STATE(2457), - [sym_generator_expression] = STATE(2457), - [sym_parenthesized_expression] = STATE(2457), - [sym__collection_elements] = STATE(5450), - [sym_conditional_expression] = STATE(2459), - [sym_concatenated_string] = STATE(2457), - [sym_string] = STATE(2170), - [sym_none] = STATE(2457), - [sym_await] = STATE(2457), - [sym_new_expression] = STATE(2459), - [sym_sizeof_expression] = STATE(2457), - [sym_cast_expression] = STATE(2457), - [sym_identifier] = ACTIONS(2505), - [anon_sym_LPAREN] = ACTIONS(2507), - [anon_sym_RPAREN] = ACTIONS(2561), + [sym_sizeof_expression] = STATE(2414), + [sym_cast_expression] = STATE(2414), + [sym_identifier] = ACTIONS(2515), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_RPAREN] = ACTIONS(2577), [anon_sym_STAR] = ACTIONS(1320), [anon_sym_print] = ACTIONS(1322), [anon_sym_match] = ACTIONS(1322), @@ -98507,125 +99197,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1360), [sym_string_start] = ACTIONS(1362), }, - [751] = { + [759] = { + [sym_named_expression] = STATE(2493), + [sym__named_expression_lhs] = STATE(5681), + [sym_list_splat] = STATE(4860), + [sym_parenthesized_list_splat] = STATE(4860), + [sym__patterns] = STATE(5619), + [sym_pattern] = STATE(4870), + [sym_tuple_pattern] = STATE(5189), + [sym_list_pattern] = STATE(5189), + [sym_list_splat_pattern] = STATE(2494), + [sym_as_pattern] = STATE(2493), + [sym_expression] = STATE(3686), + [sym_primary_expression] = STATE(2070), + [sym_not_operator] = STATE(2493), + [sym_boolean_operator] = STATE(2493), + [sym_binary_operator] = STATE(2470), + [sym_unary_operator] = STATE(2470), + [sym_comparison_operator] = STATE(2493), + [sym_lambda] = STATE(2493), + [sym_yield] = STATE(4860), + [sym_attribute] = STATE(2508), + [sym_subscript] = STATE(2508), + [sym_ellipsis] = STATE(2470), + [sym_call] = STATE(2470), + [sym_list] = STATE(2470), + [sym_set] = STATE(2470), + [sym_tuple] = STATE(2470), + [sym_dictionary] = STATE(2470), + [sym_list_comprehension] = STATE(2470), + [sym_dictionary_comprehension] = STATE(2470), + [sym_set_comprehension] = STATE(2470), + [sym_generator_expression] = STATE(2470), + [sym_parenthesized_expression] = STATE(2470), + [sym__collection_elements] = STATE(5623), + [sym_conditional_expression] = STATE(2493), + [sym_concatenated_string] = STATE(2470), + [sym_string] = STATE(2177), + [sym_none] = STATE(2470), + [sym_await] = STATE(2470), + [sym_new_expression] = STATE(2493), + [sym_sizeof_expression] = STATE(2470), + [sym_cast_expression] = STATE(2470), + [sym_identifier] = ACTIONS(2549), + [anon_sym_LPAREN] = 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_RBRACK] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2499), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_not] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_TILDE] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2563), + [anon_sym_lambda] = ACTIONS(2565), + [anon_sym_yield] = ACTIONS(2567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2503), + [anon_sym_None] = ACTIONS(2505), + [sym_integer] = ACTIONS(2487), + [sym_float] = ACTIONS(2507), + [anon_sym_await] = ACTIONS(2569), + [anon_sym_api] = ACTIONS(2555), + [sym_true] = ACTIONS(2487), + [sym_false] = ACTIONS(2487), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2571), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_string_start] = ACTIONS(2513), + }, + [760] = { [sym_named_expression] = STATE(2421), - [sym__named_expression_lhs] = STATE(5414), - [sym_list_splat] = STATE(5086), - [sym_parenthesized_list_splat] = STATE(5086), - [sym__patterns] = STATE(5393), - [sym_pattern] = STATE(5088), - [sym_tuple_pattern] = STATE(5363), - [sym_list_pattern] = STATE(5363), + [sym__named_expression_lhs] = STATE(5522), + [sym_list_splat] = STATE(4708), + [sym_parenthesized_list_splat] = STATE(4708), + [sym__patterns] = STATE(5592), + [sym_pattern] = STATE(4748), + [sym_tuple_pattern] = STATE(5264), + [sym_list_pattern] = STATE(5264), [sym_list_splat_pattern] = STATE(2422), [sym_as_pattern] = STATE(2421), - [sym_expression] = STATE(3659), - [sym_primary_expression] = STATE(2063), + [sym_expression] = STATE(3660), + [sym_primary_expression] = STATE(2066), [sym_not_operator] = STATE(2421), [sym_boolean_operator] = STATE(2421), - [sym_binary_operator] = STATE(2418), - [sym_unary_operator] = STATE(2418), + [sym_binary_operator] = STATE(2414), + [sym_unary_operator] = STATE(2414), [sym_comparison_operator] = STATE(2421), [sym_lambda] = STATE(2421), - [sym_yield] = STATE(5086), - [sym_attribute] = STATE(2423), - [sym_subscript] = STATE(2423), - [sym_ellipsis] = STATE(2418), - [sym_call] = STATE(2418), - [sym_list] = STATE(2418), - [sym_set] = STATE(2418), - [sym_tuple] = STATE(2418), - [sym_dictionary] = STATE(2418), - [sym_list_comprehension] = STATE(2418), - [sym_dictionary_comprehension] = STATE(2418), - [sym_set_comprehension] = STATE(2418), - [sym_generator_expression] = STATE(2418), - [sym_parenthesized_expression] = STATE(2418), - [sym__collection_elements] = STATE(5481), + [sym_yield] = STATE(4837), + [sym_attribute] = STATE(2425), + [sym_subscript] = STATE(2425), + [sym_ellipsis] = STATE(2414), + [sym_call] = STATE(2414), + [sym_list] = STATE(2414), + [sym_set] = STATE(2414), + [sym_tuple] = STATE(2414), + [sym_dictionary] = STATE(2414), + [sym_list_comprehension] = STATE(2414), + [sym_dictionary_comprehension] = STATE(2414), + [sym_set_comprehension] = STATE(2414), + [sym_generator_expression] = STATE(2414), + [sym_parenthesized_expression] = STATE(2414), + [sym__collection_elements] = STATE(5713), [sym_conditional_expression] = STATE(2421), - [sym_concatenated_string] = STATE(2418), - [sym_string] = STATE(2157), - [sym_none] = STATE(2418), - [sym_await] = STATE(2418), + [sym_concatenated_string] = STATE(2414), + [sym_string] = STATE(2147), + [sym_none] = STATE(2414), + [sym_await] = STATE(2414), [sym_new_expression] = STATE(2421), - [sym_sizeof_expression] = STATE(2418), - [sym_cast_expression] = STATE(2418), - [sym_identifier] = ACTIONS(2511), - [anon_sym_LPAREN] = ACTIONS(2513), - [anon_sym_STAR] = ACTIONS(2515), - [anon_sym_print] = ACTIONS(2517), - [anon_sym_match] = ACTIONS(2517), - [anon_sym_async] = ACTIONS(2517), - [anon_sym_exec] = ACTIONS(2517), - [anon_sym_LBRACK] = ACTIONS(2519), - [anon_sym_RBRACK] = ACTIONS(2563), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2523), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2525), - [anon_sym_lambda] = ACTIONS(2527), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2531), - [anon_sym_api] = ACTIONS(2517), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2533), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), - }, - [752] = { - [sym_named_expression] = STATE(2459), - [sym__named_expression_lhs] = STATE(5688), - [sym_list_splat] = STATE(4756), - [sym_parenthesized_list_splat] = STATE(4756), - [sym__patterns] = STATE(5694), - [sym_pattern] = STATE(5006), - [sym_tuple_pattern] = STATE(5295), - [sym_list_pattern] = STATE(5295), - [sym_list_splat_pattern] = STATE(2460), - [sym_as_pattern] = STATE(2459), - [sym_expression] = STATE(3643), - [sym_primary_expression] = STATE(2060), - [sym_not_operator] = STATE(2459), - [sym_boolean_operator] = STATE(2459), - [sym_binary_operator] = STATE(2457), - [sym_unary_operator] = STATE(2457), - [sym_comparison_operator] = STATE(2459), - [sym_lambda] = STATE(2459), - [sym_yield] = STATE(4815), - [sym_attribute] = STATE(2462), - [sym_subscript] = STATE(2462), - [sym_ellipsis] = STATE(2457), - [sym_call] = STATE(2457), - [sym_list] = STATE(2457), - [sym_set] = STATE(2457), - [sym_tuple] = STATE(2457), - [sym_dictionary] = STATE(2457), - [sym_list_comprehension] = STATE(2457), - [sym_dictionary_comprehension] = STATE(2457), - [sym_set_comprehension] = STATE(2457), - [sym_generator_expression] = STATE(2457), - [sym_parenthesized_expression] = STATE(2457), - [sym__collection_elements] = STATE(5584), - [sym_conditional_expression] = STATE(2459), - [sym_concatenated_string] = STATE(2457), - [sym_string] = STATE(2170), - [sym_none] = STATE(2457), - [sym_await] = STATE(2457), - [sym_new_expression] = STATE(2459), - [sym_sizeof_expression] = STATE(2457), - [sym_cast_expression] = STATE(2457), - [sym_identifier] = ACTIONS(2505), - [anon_sym_LPAREN] = ACTIONS(2507), - [anon_sym_RPAREN] = ACTIONS(2565), + [sym_sizeof_expression] = STATE(2414), + [sym_cast_expression] = STATE(2414), + [sym_identifier] = ACTIONS(2515), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_RPAREN] = ACTIONS(2581), [anon_sym_STAR] = ACTIONS(1320), [anon_sym_print] = ACTIONS(1322), [anon_sym_match] = ACTIONS(1322), @@ -98655,271 +99345,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1360), [sym_string_start] = ACTIONS(1362), }, - [753] = { - [sym_named_expression] = STATE(2421), - [sym__named_expression_lhs] = STATE(5414), - [sym_list_splat] = STATE(5086), - [sym_parenthesized_list_splat] = STATE(5086), - [sym__patterns] = STATE(5393), - [sym_pattern] = STATE(5088), - [sym_tuple_pattern] = STATE(5363), - [sym_list_pattern] = STATE(5363), - [sym_list_splat_pattern] = STATE(2422), - [sym_as_pattern] = STATE(2421), - [sym_expression] = STATE(3679), - [sym_primary_expression] = STATE(2063), - [sym_not_operator] = STATE(2421), - [sym_boolean_operator] = STATE(2421), - [sym_binary_operator] = STATE(2418), - [sym_unary_operator] = STATE(2418), - [sym_comparison_operator] = STATE(2421), - [sym_lambda] = STATE(2421), - [sym_yield] = STATE(5086), - [sym_attribute] = STATE(2423), - [sym_subscript] = STATE(2423), - [sym_ellipsis] = STATE(2418), - [sym_call] = STATE(2418), - [sym_list] = STATE(2418), - [sym_set] = STATE(2418), - [sym_tuple] = STATE(2418), - [sym_dictionary] = STATE(2418), - [sym_list_comprehension] = STATE(2418), - [sym_dictionary_comprehension] = STATE(2418), - [sym_set_comprehension] = STATE(2418), - [sym_generator_expression] = STATE(2418), - [sym_parenthesized_expression] = STATE(2418), - [sym__collection_elements] = STATE(5611), - [sym_conditional_expression] = STATE(2421), - [sym_concatenated_string] = STATE(2418), - [sym_string] = STATE(2157), - [sym_none] = STATE(2418), - [sym_await] = STATE(2418), - [sym_new_expression] = STATE(2421), - [sym_sizeof_expression] = STATE(2418), - [sym_cast_expression] = STATE(2418), - [sym_identifier] = ACTIONS(2511), - [anon_sym_LPAREN] = ACTIONS(2513), - [anon_sym_STAR] = ACTIONS(2515), - [anon_sym_print] = ACTIONS(2517), - [anon_sym_match] = ACTIONS(2517), - [anon_sym_async] = ACTIONS(2517), - [anon_sym_exec] = ACTIONS(2517), - [anon_sym_LBRACK] = ACTIONS(2519), - [anon_sym_RBRACK] = ACTIONS(2567), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2523), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2525), - [anon_sym_lambda] = ACTIONS(2527), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2531), - [anon_sym_api] = ACTIONS(2517), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2533), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), - }, - [754] = { - [sym_named_expression] = STATE(2236), - [sym__named_expression_lhs] = STATE(5519), - [sym_list_splat] = STATE(4744), - [sym_dictionary_splat] = STATE(4676), - [sym_parenthesized_list_splat] = STATE(4744), - [sym_list_splat_pattern] = STATE(2309), - [sym_as_pattern] = STATE(2236), - [sym_expression] = STATE(3598), - [sym_primary_expression] = STATE(2054), - [sym_not_operator] = STATE(2236), - [sym_boolean_operator] = STATE(2236), - [sym_binary_operator] = STATE(2377), - [sym_unary_operator] = STATE(2377), - [sym_comparison_operator] = STATE(2236), - [sym_lambda] = STATE(2236), - [sym_yield] = STATE(4744), - [sym_attribute] = STATE(2377), - [sym_subscript] = STATE(2377), - [sym_ellipsis] = STATE(2377), - [sym_call] = STATE(2377), - [sym_list] = STATE(2377), - [sym_set] = STATE(2377), - [sym_tuple] = STATE(2377), - [sym_dictionary] = STATE(2377), - [sym_pair] = STATE(3996), - [sym_list_comprehension] = STATE(2377), - [sym_dictionary_comprehension] = STATE(2377), - [sym_set_comprehension] = STATE(2377), - [sym_generator_expression] = STATE(2377), - [sym_parenthesized_expression] = STATE(2377), - [sym__collection_elements] = STATE(5516), - [sym_conditional_expression] = STATE(2236), - [sym_concatenated_string] = STATE(2377), - [sym_string] = STATE(2103), - [sym_none] = STATE(2377), - [sym_await] = STATE(2377), - [sym_new_expression] = STATE(2236), - [sym_sizeof_expression] = STATE(2377), - [sym_cast_expression] = STATE(2377), - [sym_identifier] = ACTIONS(2535), - [anon_sym_LPAREN] = ACTIONS(2537), - [anon_sym_COMMA] = ACTIONS(2569), - [anon_sym_STAR] = ACTIONS(2541), - [anon_sym_print] = ACTIONS(2543), - [anon_sym_match] = ACTIONS(2543), - [anon_sym_async] = ACTIONS(2543), - [anon_sym_STAR_STAR] = ACTIONS(2545), - [anon_sym_exec] = ACTIONS(2543), - [anon_sym_LBRACK] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2409), - [anon_sym_LBRACE] = ACTIONS(2411), - [anon_sym_RBRACE] = ACTIONS(2571), - [anon_sym_PLUS] = ACTIONS(2409), - [anon_sym_not] = ACTIONS(2549), - [anon_sym_AMP] = ACTIONS(2409), - [anon_sym_TILDE] = ACTIONS(2409), - [anon_sym_LT] = ACTIONS(2551), - [anon_sym_lambda] = ACTIONS(2553), - [anon_sym_yield] = ACTIONS(2555), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2415), - [anon_sym_None] = ACTIONS(2417), - [sym_integer] = ACTIONS(2399), - [sym_float] = ACTIONS(2419), - [anon_sym_await] = ACTIONS(2557), - [anon_sym_api] = ACTIONS(2543), - [sym_true] = ACTIONS(2399), - [sym_false] = ACTIONS(2399), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2559), - [anon_sym_sizeof] = ACTIONS(2423), - [sym_string_start] = ACTIONS(2425), - }, - [755] = { - [sym_named_expression] = STATE(2236), - [sym__named_expression_lhs] = STATE(5519), - [sym_list_splat] = STATE(4744), - [sym_dictionary_splat] = STATE(4961), - [sym_parenthesized_list_splat] = STATE(4744), - [sym_list_splat_pattern] = STATE(2309), - [sym_as_pattern] = STATE(2236), - [sym_expression] = STATE(3525), - [sym_primary_expression] = STATE(2054), - [sym_not_operator] = STATE(2236), - [sym_boolean_operator] = STATE(2236), - [sym_binary_operator] = STATE(2377), - [sym_unary_operator] = STATE(2377), - [sym_comparison_operator] = STATE(2236), - [sym_lambda] = STATE(2236), - [sym_yield] = STATE(4744), - [sym_attribute] = STATE(2377), - [sym_subscript] = STATE(2377), - [sym_ellipsis] = STATE(2377), - [sym_call] = STATE(2377), - [sym_list] = STATE(2377), - [sym_set] = STATE(2377), - [sym_tuple] = STATE(2377), - [sym_dictionary] = STATE(2377), - [sym_pair] = STATE(4107), - [sym_list_comprehension] = STATE(2377), - [sym_dictionary_comprehension] = STATE(2377), - [sym_set_comprehension] = STATE(2377), - [sym_generator_expression] = STATE(2377), - [sym_parenthesized_expression] = STATE(2377), - [sym__collection_elements] = STATE(5484), - [sym_conditional_expression] = STATE(2236), - [sym_concatenated_string] = STATE(2377), - [sym_string] = STATE(2103), - [sym_none] = STATE(2377), - [sym_await] = STATE(2377), - [sym_new_expression] = STATE(2236), - [sym_sizeof_expression] = STATE(2377), - [sym_cast_expression] = STATE(2377), - [sym_identifier] = ACTIONS(2535), - [anon_sym_LPAREN] = ACTIONS(2537), - [anon_sym_COMMA] = ACTIONS(2573), - [anon_sym_STAR] = ACTIONS(2541), - [anon_sym_print] = ACTIONS(2543), - [anon_sym_match] = ACTIONS(2543), - [anon_sym_async] = ACTIONS(2543), - [anon_sym_STAR_STAR] = ACTIONS(2545), - [anon_sym_exec] = ACTIONS(2543), - [anon_sym_LBRACK] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2409), - [anon_sym_LBRACE] = ACTIONS(2411), - [anon_sym_RBRACE] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2409), - [anon_sym_not] = ACTIONS(2549), - [anon_sym_AMP] = ACTIONS(2409), - [anon_sym_TILDE] = ACTIONS(2409), - [anon_sym_LT] = ACTIONS(2551), - [anon_sym_lambda] = ACTIONS(2553), - [anon_sym_yield] = ACTIONS(2555), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2415), - [anon_sym_None] = ACTIONS(2417), - [sym_integer] = ACTIONS(2399), - [sym_float] = ACTIONS(2419), - [anon_sym_await] = ACTIONS(2557), - [anon_sym_api] = ACTIONS(2543), - [sym_true] = ACTIONS(2399), - [sym_false] = ACTIONS(2399), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2559), - [anon_sym_sizeof] = ACTIONS(2423), - [sym_string_start] = ACTIONS(2425), + [761] = { + [sym_named_expression] = STATE(2493), + [sym__named_expression_lhs] = STATE(5681), + [sym_list_splat] = STATE(4860), + [sym_parenthesized_list_splat] = STATE(4860), + [sym__patterns] = STATE(5430), + [sym_pattern] = STATE(4870), + [sym_tuple_pattern] = STATE(5189), + [sym_list_pattern] = STATE(5189), + [sym_list_splat_pattern] = STATE(2494), + [sym_as_pattern] = STATE(2493), + [sym_expression] = STATE(3686), + [sym_primary_expression] = STATE(2070), + [sym_not_operator] = STATE(2493), + [sym_boolean_operator] = STATE(2493), + [sym_binary_operator] = STATE(2470), + [sym_unary_operator] = STATE(2470), + [sym_comparison_operator] = STATE(2493), + [sym_lambda] = STATE(2493), + [sym_yield] = STATE(4860), + [sym_attribute] = STATE(2508), + [sym_subscript] = STATE(2508), + [sym_ellipsis] = STATE(2470), + [sym_call] = STATE(2470), + [sym_list] = STATE(2470), + [sym_set] = STATE(2470), + [sym_tuple] = STATE(2470), + [sym_dictionary] = STATE(2470), + [sym_list_comprehension] = STATE(2470), + [sym_dictionary_comprehension] = STATE(2470), + [sym_set_comprehension] = STATE(2470), + [sym_generator_expression] = STATE(2470), + [sym_parenthesized_expression] = STATE(2470), + [sym__collection_elements] = STATE(5623), + [sym_conditional_expression] = STATE(2493), + [sym_concatenated_string] = STATE(2470), + [sym_string] = STATE(2177), + [sym_none] = STATE(2470), + [sym_await] = STATE(2470), + [sym_new_expression] = STATE(2493), + [sym_sizeof_expression] = STATE(2470), + [sym_cast_expression] = STATE(2470), + [sym_identifier] = ACTIONS(2549), + [anon_sym_LPAREN] = 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_RBRACK] = ACTIONS(2583), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2499), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_not] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_TILDE] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2563), + [anon_sym_lambda] = ACTIONS(2565), + [anon_sym_yield] = ACTIONS(2567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2503), + [anon_sym_None] = ACTIONS(2505), + [sym_integer] = ACTIONS(2487), + [sym_float] = ACTIONS(2507), + [anon_sym_await] = ACTIONS(2569), + [anon_sym_api] = ACTIONS(2555), + [sym_true] = ACTIONS(2487), + [sym_false] = ACTIONS(2487), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2571), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_string_start] = ACTIONS(2513), }, - [756] = { - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_expression_list] = STATE(5211), - [sym_pattern] = STATE(3235), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3935), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5211), - [sym_augmented_assignment] = STATE(5211), - [sym_pattern_list] = STATE(3299), - [sym__right_hand_side] = STATE(5211), - [sym_yield] = STATE(5211), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), + [762] = { + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_expression_list] = STATE(5298), + [sym_pattern] = STATE(3255), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3909), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5298), + [sym_augmented_assignment] = STATE(5298), + [sym_pattern_list] = STATE(3256), + [sym__right_hand_side] = STATE(5298), + [sym_yield] = STATE(5298), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), [sym_identifier] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_STAR] = ACTIONS(17), @@ -98951,51 +99493,347 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(105), [sym_string_start] = ACTIONS(107), }, - [757] = { - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_expression_list] = STATE(5229), - [sym_pattern] = STATE(3235), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(1887), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3935), - [sym_primary_expression] = STATE(2057), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_assignment] = STATE(5229), - [sym_augmented_assignment] = STATE(5229), - [sym_pattern_list] = STATE(3299), - [sym__right_hand_side] = STATE(5229), - [sym_yield] = STATE(5229), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [sym_identifier] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(15), + [763] = { + [sym_named_expression] = STATE(2493), + [sym__named_expression_lhs] = STATE(5681), + [sym_list_splat] = STATE(4860), + [sym_parenthesized_list_splat] = STATE(4860), + [sym__patterns] = STATE(5730), + [sym_pattern] = STATE(4870), + [sym_tuple_pattern] = STATE(5189), + [sym_list_pattern] = STATE(5189), + [sym_list_splat_pattern] = STATE(2494), + [sym_as_pattern] = STATE(2493), + [sym_expression] = STATE(3686), + [sym_primary_expression] = STATE(2070), + [sym_not_operator] = STATE(2493), + [sym_boolean_operator] = STATE(2493), + [sym_binary_operator] = STATE(2470), + [sym_unary_operator] = STATE(2470), + [sym_comparison_operator] = STATE(2493), + [sym_lambda] = STATE(2493), + [sym_yield] = STATE(4860), + [sym_attribute] = STATE(2508), + [sym_subscript] = STATE(2508), + [sym_ellipsis] = STATE(2470), + [sym_call] = STATE(2470), + [sym_list] = STATE(2470), + [sym_set] = STATE(2470), + [sym_tuple] = STATE(2470), + [sym_dictionary] = STATE(2470), + [sym_list_comprehension] = STATE(2470), + [sym_dictionary_comprehension] = STATE(2470), + [sym_set_comprehension] = STATE(2470), + [sym_generator_expression] = STATE(2470), + [sym_parenthesized_expression] = STATE(2470), + [sym__collection_elements] = STATE(5623), + [sym_conditional_expression] = STATE(2493), + [sym_concatenated_string] = STATE(2470), + [sym_string] = STATE(2177), + [sym_none] = STATE(2470), + [sym_await] = STATE(2470), + [sym_new_expression] = STATE(2493), + [sym_sizeof_expression] = STATE(2470), + [sym_cast_expression] = STATE(2470), + [sym_identifier] = ACTIONS(2549), + [anon_sym_LPAREN] = 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_RBRACK] = ACTIONS(2585), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2499), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_not] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_TILDE] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2563), + [anon_sym_lambda] = ACTIONS(2565), + [anon_sym_yield] = ACTIONS(2567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2503), + [anon_sym_None] = ACTIONS(2505), + [sym_integer] = ACTIONS(2487), + [sym_float] = ACTIONS(2507), + [anon_sym_await] = ACTIONS(2569), + [anon_sym_api] = ACTIONS(2555), + [sym_true] = ACTIONS(2487), + [sym_false] = ACTIONS(2487), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2571), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_string_start] = ACTIONS(2513), + }, + [764] = { + [sym_named_expression] = STATE(2421), + [sym__named_expression_lhs] = STATE(5522), + [sym_list_splat] = STATE(4708), + [sym_parenthesized_list_splat] = STATE(4708), + [sym__patterns] = STATE(5592), + [sym_pattern] = STATE(4748), + [sym_tuple_pattern] = STATE(5264), + [sym_list_pattern] = STATE(5264), + [sym_list_splat_pattern] = STATE(2422), + [sym_as_pattern] = STATE(2421), + [sym_expression] = STATE(3659), + [sym_primary_expression] = STATE(2066), + [sym_not_operator] = STATE(2421), + [sym_boolean_operator] = STATE(2421), + [sym_binary_operator] = STATE(2414), + [sym_unary_operator] = STATE(2414), + [sym_comparison_operator] = STATE(2421), + [sym_lambda] = STATE(2421), + [sym_yield] = STATE(4842), + [sym_attribute] = STATE(2425), + [sym_subscript] = STATE(2425), + [sym_ellipsis] = STATE(2414), + [sym_call] = STATE(2414), + [sym_list] = STATE(2414), + [sym_set] = STATE(2414), + [sym_tuple] = STATE(2414), + [sym_dictionary] = STATE(2414), + [sym_list_comprehension] = STATE(2414), + [sym_dictionary_comprehension] = STATE(2414), + [sym_set_comprehension] = STATE(2414), + [sym_generator_expression] = STATE(2414), + [sym_parenthesized_expression] = STATE(2414), + [sym__collection_elements] = STATE(5434), + [sym_conditional_expression] = STATE(2421), + [sym_concatenated_string] = STATE(2414), + [sym_string] = STATE(2147), + [sym_none] = STATE(2414), + [sym_await] = STATE(2414), + [sym_new_expression] = STATE(2421), + [sym_sizeof_expression] = STATE(2414), + [sym_cast_expression] = STATE(2414), + [sym_identifier] = ACTIONS(2515), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_RPAREN] = ACTIONS(2587), + [anon_sym_STAR] = ACTIONS(1320), + [anon_sym_print] = ACTIONS(1322), + [anon_sym_match] = ACTIONS(1322), + [anon_sym_async] = ACTIONS(1322), + [anon_sym_exec] = ACTIONS(1322), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_DASH] = ACTIONS(1326), + [anon_sym_LBRACE] = ACTIONS(1328), + [anon_sym_PLUS] = ACTIONS(1326), + [anon_sym_not] = ACTIONS(1330), + [anon_sym_AMP] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1326), + [anon_sym_LT] = ACTIONS(1332), + [anon_sym_lambda] = ACTIONS(1334), + [anon_sym_yield] = ACTIONS(1336), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1338), + [anon_sym_None] = ACTIONS(1340), + [sym_integer] = ACTIONS(1342), + [sym_float] = ACTIONS(1344), + [anon_sym_await] = ACTIONS(1346), + [anon_sym_api] = ACTIONS(1322), + [sym_true] = ACTIONS(1342), + [sym_false] = ACTIONS(1342), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1350), + [anon_sym_sizeof] = ACTIONS(1360), + [sym_string_start] = ACTIONS(1362), + }, + [765] = { + [sym_named_expression] = STATE(2493), + [sym__named_expression_lhs] = STATE(5681), + [sym_list_splat] = STATE(4860), + [sym_parenthesized_list_splat] = STATE(4860), + [sym__patterns] = STATE(5557), + [sym_pattern] = STATE(4870), + [sym_tuple_pattern] = STATE(5189), + [sym_list_pattern] = STATE(5189), + [sym_list_splat_pattern] = STATE(2494), + [sym_as_pattern] = STATE(2493), + [sym_expression] = STATE(3636), + [sym_primary_expression] = STATE(2070), + [sym_not_operator] = STATE(2493), + [sym_boolean_operator] = STATE(2493), + [sym_binary_operator] = STATE(2470), + [sym_unary_operator] = STATE(2470), + [sym_comparison_operator] = STATE(2493), + [sym_lambda] = STATE(2493), + [sym_yield] = STATE(4860), + [sym_attribute] = STATE(2508), + [sym_subscript] = STATE(2508), + [sym_ellipsis] = STATE(2470), + [sym_call] = STATE(2470), + [sym_list] = STATE(2470), + [sym_set] = STATE(2470), + [sym_tuple] = STATE(2470), + [sym_dictionary] = STATE(2470), + [sym_list_comprehension] = STATE(2470), + [sym_dictionary_comprehension] = STATE(2470), + [sym_set_comprehension] = STATE(2470), + [sym_generator_expression] = STATE(2470), + [sym_parenthesized_expression] = STATE(2470), + [sym__collection_elements] = STATE(5602), + [sym_conditional_expression] = STATE(2493), + [sym_concatenated_string] = STATE(2470), + [sym_string] = STATE(2177), + [sym_none] = STATE(2470), + [sym_await] = STATE(2470), + [sym_new_expression] = STATE(2493), + [sym_sizeof_expression] = STATE(2470), + [sym_cast_expression] = STATE(2470), + [sym_identifier] = ACTIONS(2549), + [anon_sym_LPAREN] = 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_RBRACK] = ACTIONS(2589), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2499), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_not] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_TILDE] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2563), + [anon_sym_lambda] = ACTIONS(2565), + [anon_sym_yield] = ACTIONS(2567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2503), + [anon_sym_None] = ACTIONS(2505), + [sym_integer] = ACTIONS(2487), + [sym_float] = ACTIONS(2507), + [anon_sym_await] = ACTIONS(2569), + [anon_sym_api] = ACTIONS(2555), + [sym_true] = ACTIONS(2487), + [sym_false] = ACTIONS(2487), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2571), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_string_start] = ACTIONS(2513), + }, + [766] = { + [sym_named_expression] = STATE(2493), + [sym__named_expression_lhs] = STATE(5681), + [sym_list_splat] = STATE(4860), + [sym_parenthesized_list_splat] = STATE(4860), + [sym__patterns] = STATE(5557), + [sym_pattern] = STATE(4870), + [sym_tuple_pattern] = STATE(5189), + [sym_list_pattern] = STATE(5189), + [sym_list_splat_pattern] = STATE(2494), + [sym_as_pattern] = STATE(2493), + [sym_expression] = STATE(3636), + [sym_primary_expression] = STATE(2070), + [sym_not_operator] = STATE(2493), + [sym_boolean_operator] = STATE(2493), + [sym_binary_operator] = STATE(2470), + [sym_unary_operator] = STATE(2470), + [sym_comparison_operator] = STATE(2493), + [sym_lambda] = STATE(2493), + [sym_yield] = STATE(4860), + [sym_attribute] = STATE(2508), + [sym_subscript] = STATE(2508), + [sym_ellipsis] = STATE(2470), + [sym_call] = STATE(2470), + [sym_list] = STATE(2470), + [sym_set] = STATE(2470), + [sym_tuple] = STATE(2470), + [sym_dictionary] = STATE(2470), + [sym_list_comprehension] = STATE(2470), + [sym_dictionary_comprehension] = STATE(2470), + [sym_set_comprehension] = STATE(2470), + [sym_generator_expression] = STATE(2470), + [sym_parenthesized_expression] = STATE(2470), + [sym__collection_elements] = STATE(5602), + [sym_conditional_expression] = STATE(2493), + [sym_concatenated_string] = STATE(2470), + [sym_string] = STATE(2177), + [sym_none] = STATE(2470), + [sym_await] = STATE(2470), + [sym_new_expression] = STATE(2493), + [sym_sizeof_expression] = STATE(2470), + [sym_cast_expression] = STATE(2470), + [sym_identifier] = ACTIONS(2549), + [anon_sym_LPAREN] = 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_RBRACK] = ACTIONS(2591), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2499), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_not] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_TILDE] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2563), + [anon_sym_lambda] = ACTIONS(2565), + [anon_sym_yield] = ACTIONS(2567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2503), + [anon_sym_None] = ACTIONS(2505), + [sym_integer] = ACTIONS(2487), + [sym_float] = ACTIONS(2507), + [anon_sym_await] = ACTIONS(2569), + [anon_sym_api] = ACTIONS(2555), + [sym_true] = ACTIONS(2487), + [sym_false] = ACTIONS(2487), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2571), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_string_start] = ACTIONS(2513), + }, + [767] = { + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_expression_list] = STATE(5308), + [sym_pattern] = STATE(3255), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3909), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5308), + [sym_augmented_assignment] = STATE(5308), + [sym_pattern_list] = STATE(3256), + [sym__right_hand_side] = STATE(5308), + [sym_yield] = STATE(5308), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(363), [anon_sym_match] = ACTIONS(363), @@ -99025,199 +99863,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(105), [sym_string_start] = ACTIONS(107), }, - [758] = { + [768] = { + [sym_named_expression] = STATE(2326), + [sym__named_expression_lhs] = STATE(5687), + [sym_list_splat] = STATE(4993), + [sym_dictionary_splat] = STATE(4879), + [sym_parenthesized_list_splat] = STATE(4993), + [sym_list_splat_pattern] = STATE(2256), + [sym_as_pattern] = STATE(2326), + [sym_expression] = STATE(3614), + [sym_primary_expression] = STATE(2061), + [sym_not_operator] = STATE(2326), + [sym_boolean_operator] = STATE(2326), + [sym_binary_operator] = STATE(2298), + [sym_unary_operator] = STATE(2298), + [sym_comparison_operator] = STATE(2326), + [sym_lambda] = STATE(2326), + [sym_yield] = STATE(4993), + [sym_attribute] = STATE(2298), + [sym_subscript] = STATE(2298), + [sym_ellipsis] = STATE(2298), + [sym_call] = STATE(2298), + [sym_list] = STATE(2298), + [sym_set] = STATE(2298), + [sym_tuple] = STATE(2298), + [sym_dictionary] = STATE(2298), + [sym_pair] = STATE(4074), + [sym_list_comprehension] = STATE(2298), + [sym_dictionary_comprehension] = STATE(2298), + [sym_set_comprehension] = STATE(2298), + [sym_generator_expression] = STATE(2298), + [sym_parenthesized_expression] = STATE(2298), + [sym__collection_elements] = STATE(5424), + [sym_conditional_expression] = STATE(2326), + [sym_concatenated_string] = STATE(2298), + [sym_string] = STATE(2099), + [sym_none] = STATE(2298), + [sym_await] = STATE(2298), + [sym_new_expression] = STATE(2326), + [sym_sizeof_expression] = STATE(2298), + [sym_cast_expression] = STATE(2298), + [sym_identifier] = ACTIONS(2521), + [anon_sym_LPAREN] = ACTIONS(2523), + [anon_sym_COMMA] = ACTIONS(2593), + [anon_sym_STAR] = ACTIONS(2527), + [anon_sym_print] = ACTIONS(2529), + [anon_sym_match] = ACTIONS(2529), + [anon_sym_async] = ACTIONS(2529), + [anon_sym_STAR_STAR] = ACTIONS(2531), + [anon_sym_exec] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2419), + [anon_sym_DASH] = ACTIONS(2421), + [anon_sym_LBRACE] = ACTIONS(2423), + [anon_sym_RBRACE] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2421), + [anon_sym_not] = ACTIONS(2535), + [anon_sym_AMP] = ACTIONS(2421), + [anon_sym_TILDE] = ACTIONS(2421), + [anon_sym_LT] = ACTIONS(2537), + [anon_sym_lambda] = ACTIONS(2539), + [anon_sym_yield] = ACTIONS(2541), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2427), + [anon_sym_None] = ACTIONS(2429), + [sym_integer] = ACTIONS(2411), + [sym_float] = ACTIONS(2431), + [anon_sym_await] = ACTIONS(2543), + [anon_sym_api] = ACTIONS(2529), + [sym_true] = ACTIONS(2411), + [sym_false] = ACTIONS(2411), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2545), + [anon_sym_sizeof] = ACTIONS(2435), + [sym_string_start] = ACTIONS(2437), + }, + [769] = { [sym_named_expression] = STATE(2421), - [sym__named_expression_lhs] = STATE(5414), - [sym_list_splat] = STATE(5086), - [sym_parenthesized_list_splat] = STATE(5086), - [sym__patterns] = STATE(5525), - [sym_pattern] = STATE(5088), - [sym_tuple_pattern] = STATE(5363), - [sym_list_pattern] = STATE(5363), + [sym__named_expression_lhs] = STATE(5522), + [sym_list_splat] = STATE(5162), + [sym_parenthesized_list_splat] = STATE(4940), + [sym__patterns] = STATE(5587), + [sym_pattern] = STATE(4748), + [sym_tuple_pattern] = STATE(5264), + [sym_list_pattern] = STATE(5264), [sym_list_splat_pattern] = STATE(2422), [sym_as_pattern] = STATE(2421), - [sym_expression] = STATE(3685), - [sym_primary_expression] = STATE(2063), + [sym_expression] = STATE(3645), + [sym_primary_expression] = STATE(2066), [sym_not_operator] = STATE(2421), [sym_boolean_operator] = STATE(2421), - [sym_binary_operator] = STATE(2418), - [sym_unary_operator] = STATE(2418), + [sym_binary_operator] = STATE(2414), + [sym_unary_operator] = STATE(2414), [sym_comparison_operator] = STATE(2421), [sym_lambda] = STATE(2421), - [sym_yield] = STATE(5086), - [sym_attribute] = STATE(2423), - [sym_subscript] = STATE(2423), - [sym_ellipsis] = STATE(2418), - [sym_call] = STATE(2418), - [sym_list] = STATE(2418), - [sym_set] = STATE(2418), - [sym_tuple] = STATE(2418), - [sym_dictionary] = STATE(2418), - [sym_list_comprehension] = STATE(2418), - [sym_dictionary_comprehension] = STATE(2418), - [sym_set_comprehension] = STATE(2418), - [sym_generator_expression] = STATE(2418), - [sym_parenthesized_expression] = STATE(2418), - [sym__collection_elements] = STATE(5500), + [sym_yield] = STATE(4750), + [sym_attribute] = STATE(2425), + [sym_subscript] = STATE(2425), + [sym_ellipsis] = STATE(2414), + [sym_call] = STATE(2414), + [sym_list] = STATE(2414), + [sym_set] = STATE(2414), + [sym_tuple] = STATE(2414), + [sym_dictionary] = STATE(2414), + [sym_list_comprehension] = STATE(2414), + [sym_dictionary_comprehension] = STATE(2414), + [sym_set_comprehension] = STATE(2414), + [sym_generator_expression] = STATE(2414), + [sym_parenthesized_expression] = STATE(2414), + [sym__collection_elements] = STATE(5537), [sym_conditional_expression] = STATE(2421), - [sym_concatenated_string] = STATE(2418), - [sym_string] = STATE(2157), - [sym_none] = STATE(2418), - [sym_await] = STATE(2418), + [sym_concatenated_string] = STATE(2414), + [sym_string] = STATE(2147), + [sym_none] = STATE(2414), + [sym_await] = STATE(2414), [sym_new_expression] = STATE(2421), - [sym_sizeof_expression] = STATE(2418), - [sym_cast_expression] = STATE(2418), - [sym_identifier] = ACTIONS(2511), - [anon_sym_LPAREN] = ACTIONS(2513), - [anon_sym_STAR] = ACTIONS(2515), - [anon_sym_print] = ACTIONS(2517), - [anon_sym_match] = ACTIONS(2517), - [anon_sym_async] = ACTIONS(2517), - [anon_sym_exec] = ACTIONS(2517), - [anon_sym_LBRACK] = ACTIONS(2519), - [anon_sym_RBRACK] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2523), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2525), - [anon_sym_lambda] = ACTIONS(2527), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2531), - [anon_sym_api] = ACTIONS(2517), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2533), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), - }, - [759] = { - [sym_named_expression] = STATE(2236), - [sym__named_expression_lhs] = STATE(5519), - [sym_list_splat] = STATE(4744), - [sym_dictionary_splat] = STATE(4730), - [sym_parenthesized_list_splat] = STATE(4744), - [sym_list_splat_pattern] = STATE(2309), - [sym_as_pattern] = STATE(2236), - [sym_expression] = STATE(3605), - [sym_primary_expression] = STATE(2054), - [sym_not_operator] = STATE(2236), - [sym_boolean_operator] = STATE(2236), - [sym_binary_operator] = STATE(2377), - [sym_unary_operator] = STATE(2377), - [sym_comparison_operator] = STATE(2236), - [sym_lambda] = STATE(2236), - [sym_yield] = STATE(4744), - [sym_attribute] = STATE(2377), - [sym_subscript] = STATE(2377), - [sym_ellipsis] = STATE(2377), - [sym_call] = STATE(2377), - [sym_list] = STATE(2377), - [sym_set] = STATE(2377), - [sym_tuple] = STATE(2377), - [sym_dictionary] = STATE(2377), - [sym_pair] = STATE(3984), - [sym_list_comprehension] = STATE(2377), - [sym_dictionary_comprehension] = STATE(2377), - [sym_set_comprehension] = STATE(2377), - [sym_generator_expression] = STATE(2377), - [sym_parenthesized_expression] = STATE(2377), - [sym__collection_elements] = STATE(5552), - [sym_conditional_expression] = STATE(2236), - [sym_concatenated_string] = STATE(2377), - [sym_string] = STATE(2103), - [sym_none] = STATE(2377), - [sym_await] = STATE(2377), - [sym_new_expression] = STATE(2236), - [sym_sizeof_expression] = STATE(2377), - [sym_cast_expression] = STATE(2377), - [sym_identifier] = ACTIONS(2535), - [anon_sym_LPAREN] = ACTIONS(2537), - [anon_sym_COMMA] = ACTIONS(2579), - [anon_sym_STAR] = ACTIONS(2541), - [anon_sym_print] = ACTIONS(2543), - [anon_sym_match] = ACTIONS(2543), - [anon_sym_async] = ACTIONS(2543), - [anon_sym_STAR_STAR] = ACTIONS(2545), - [anon_sym_exec] = ACTIONS(2543), - [anon_sym_LBRACK] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2409), - [anon_sym_LBRACE] = ACTIONS(2411), - [anon_sym_RBRACE] = ACTIONS(2581), - [anon_sym_PLUS] = ACTIONS(2409), - [anon_sym_not] = ACTIONS(2549), - [anon_sym_AMP] = ACTIONS(2409), - [anon_sym_TILDE] = ACTIONS(2409), - [anon_sym_LT] = ACTIONS(2551), - [anon_sym_lambda] = ACTIONS(2553), - [anon_sym_yield] = ACTIONS(2555), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2415), - [anon_sym_None] = ACTIONS(2417), - [sym_integer] = ACTIONS(2399), - [sym_float] = ACTIONS(2419), - [anon_sym_await] = ACTIONS(2557), - [anon_sym_api] = ACTIONS(2543), - [sym_true] = ACTIONS(2399), - [sym_false] = ACTIONS(2399), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2559), - [anon_sym_sizeof] = ACTIONS(2423), - [sym_string_start] = ACTIONS(2425), - }, - [760] = { - [sym_named_expression] = STATE(2459), - [sym__named_expression_lhs] = STATE(5688), - [sym_list_splat] = STATE(4756), - [sym_parenthesized_list_splat] = STATE(4756), - [sym__patterns] = STATE(5637), - [sym_pattern] = STATE(5006), - [sym_tuple_pattern] = STATE(5295), - [sym_list_pattern] = STATE(5295), - [sym_list_splat_pattern] = STATE(2460), - [sym_as_pattern] = STATE(2459), - [sym_expression] = STATE(3667), - [sym_primary_expression] = STATE(2060), - [sym_not_operator] = STATE(2459), - [sym_boolean_operator] = STATE(2459), - [sym_binary_operator] = STATE(2457), - [sym_unary_operator] = STATE(2457), - [sym_comparison_operator] = STATE(2459), - [sym_lambda] = STATE(2459), - [sym_yield] = STATE(4647), - [sym_attribute] = STATE(2462), - [sym_subscript] = STATE(2462), - [sym_ellipsis] = STATE(2457), - [sym_call] = STATE(2457), - [sym_list] = STATE(2457), - [sym_set] = STATE(2457), - [sym_tuple] = STATE(2457), - [sym_dictionary] = STATE(2457), - [sym_list_comprehension] = STATE(2457), - [sym_dictionary_comprehension] = STATE(2457), - [sym_set_comprehension] = STATE(2457), - [sym_generator_expression] = STATE(2457), - [sym_parenthesized_expression] = STATE(2457), - [sym__collection_elements] = STATE(5455), - [sym_conditional_expression] = STATE(2459), - [sym_concatenated_string] = STATE(2457), - [sym_string] = STATE(2170), - [sym_none] = STATE(2457), - [sym_await] = STATE(2457), - [sym_new_expression] = STATE(2459), - [sym_sizeof_expression] = STATE(2457), - [sym_cast_expression] = STATE(2457), - [sym_identifier] = ACTIONS(2505), - [anon_sym_LPAREN] = ACTIONS(2507), - [anon_sym_RPAREN] = ACTIONS(1364), + [sym_sizeof_expression] = STATE(2414), + [sym_cast_expression] = STATE(2414), + [sym_identifier] = ACTIONS(2515), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_RPAREN] = ACTIONS(2597), [anon_sym_STAR] = ACTIONS(1320), [anon_sym_print] = ACTIONS(1322), [anon_sym_match] = ACTIONS(1322), @@ -99247,199 +100011,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1360), [sym_string_start] = ACTIONS(1362), }, - [761] = { + [770] = { + [sym_named_expression] = STATE(2326), + [sym__named_expression_lhs] = STATE(5687), + [sym_list_splat] = STATE(4993), + [sym_dictionary_splat] = STATE(4977), + [sym_parenthesized_list_splat] = STATE(4993), + [sym_list_splat_pattern] = STATE(2256), + [sym_as_pattern] = STATE(2326), + [sym_expression] = STATE(3551), + [sym_primary_expression] = STATE(2061), + [sym_not_operator] = STATE(2326), + [sym_boolean_operator] = STATE(2326), + [sym_binary_operator] = STATE(2298), + [sym_unary_operator] = STATE(2298), + [sym_comparison_operator] = STATE(2326), + [sym_lambda] = STATE(2326), + [sym_yield] = STATE(4993), + [sym_attribute] = STATE(2298), + [sym_subscript] = STATE(2298), + [sym_ellipsis] = STATE(2298), + [sym_call] = STATE(2298), + [sym_list] = STATE(2298), + [sym_set] = STATE(2298), + [sym_tuple] = STATE(2298), + [sym_dictionary] = STATE(2298), + [sym_pair] = STATE(4122), + [sym_list_comprehension] = STATE(2298), + [sym_dictionary_comprehension] = STATE(2298), + [sym_set_comprehension] = STATE(2298), + [sym_generator_expression] = STATE(2298), + [sym_parenthesized_expression] = STATE(2298), + [sym__collection_elements] = STATE(5520), + [sym_conditional_expression] = STATE(2326), + [sym_concatenated_string] = STATE(2298), + [sym_string] = STATE(2099), + [sym_none] = STATE(2298), + [sym_await] = STATE(2298), + [sym_new_expression] = STATE(2326), + [sym_sizeof_expression] = STATE(2298), + [sym_cast_expression] = STATE(2298), + [sym_identifier] = ACTIONS(2521), + [anon_sym_LPAREN] = ACTIONS(2523), + [anon_sym_COMMA] = ACTIONS(2599), + [anon_sym_STAR] = ACTIONS(2527), + [anon_sym_print] = ACTIONS(2529), + [anon_sym_match] = ACTIONS(2529), + [anon_sym_async] = ACTIONS(2529), + [anon_sym_STAR_STAR] = ACTIONS(2531), + [anon_sym_exec] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2419), + [anon_sym_DASH] = ACTIONS(2421), + [anon_sym_LBRACE] = ACTIONS(2423), + [anon_sym_RBRACE] = ACTIONS(2601), + [anon_sym_PLUS] = ACTIONS(2421), + [anon_sym_not] = ACTIONS(2535), + [anon_sym_AMP] = ACTIONS(2421), + [anon_sym_TILDE] = ACTIONS(2421), + [anon_sym_LT] = ACTIONS(2537), + [anon_sym_lambda] = ACTIONS(2539), + [anon_sym_yield] = ACTIONS(2541), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2427), + [anon_sym_None] = ACTIONS(2429), + [sym_integer] = ACTIONS(2411), + [sym_float] = ACTIONS(2431), + [anon_sym_await] = ACTIONS(2543), + [anon_sym_api] = ACTIONS(2529), + [sym_true] = ACTIONS(2411), + [sym_false] = ACTIONS(2411), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2545), + [anon_sym_sizeof] = ACTIONS(2435), + [sym_string_start] = ACTIONS(2437), + }, + [771] = { [sym_named_expression] = STATE(2421), - [sym__named_expression_lhs] = STATE(5414), - [sym_list_splat] = STATE(5086), - [sym_parenthesized_list_splat] = STATE(5086), - [sym__patterns] = STATE(5393), - [sym_pattern] = STATE(5088), - [sym_tuple_pattern] = STATE(5363), - [sym_list_pattern] = STATE(5363), + [sym__named_expression_lhs] = STATE(5522), + [sym_list_splat] = STATE(4708), + [sym_parenthesized_list_splat] = STATE(4708), + [sym__patterns] = STATE(5580), + [sym_pattern] = STATE(4748), + [sym_tuple_pattern] = STATE(5264), + [sym_list_pattern] = STATE(5264), [sym_list_splat_pattern] = STATE(2422), [sym_as_pattern] = STATE(2421), - [sym_expression] = STATE(3691), - [sym_primary_expression] = STATE(2063), + [sym_expression] = STATE(3709), + [sym_primary_expression] = STATE(2066), [sym_not_operator] = STATE(2421), [sym_boolean_operator] = STATE(2421), - [sym_binary_operator] = STATE(2418), - [sym_unary_operator] = STATE(2418), + [sym_binary_operator] = STATE(2414), + [sym_unary_operator] = STATE(2414), [sym_comparison_operator] = STATE(2421), [sym_lambda] = STATE(2421), - [sym_yield] = STATE(5086), - [sym_attribute] = STATE(2423), - [sym_subscript] = STATE(2423), - [sym_ellipsis] = STATE(2418), - [sym_call] = STATE(2418), - [sym_list] = STATE(2418), - [sym_set] = STATE(2418), - [sym_tuple] = STATE(2418), - [sym_dictionary] = STATE(2418), - [sym_list_comprehension] = STATE(2418), - [sym_dictionary_comprehension] = STATE(2418), - [sym_set_comprehension] = STATE(2418), - [sym_generator_expression] = STATE(2418), - [sym_parenthesized_expression] = STATE(2418), - [sym__collection_elements] = STATE(5601), + [sym_yield] = STATE(5116), + [sym_attribute] = STATE(2425), + [sym_subscript] = STATE(2425), + [sym_ellipsis] = STATE(2414), + [sym_call] = STATE(2414), + [sym_list] = STATE(2414), + [sym_set] = STATE(2414), + [sym_tuple] = STATE(2414), + [sym_dictionary] = STATE(2414), + [sym_list_comprehension] = STATE(2414), + [sym_dictionary_comprehension] = STATE(2414), + [sym_set_comprehension] = STATE(2414), + [sym_generator_expression] = STATE(2414), + [sym_parenthesized_expression] = STATE(2414), + [sym__collection_elements] = STATE(5598), [sym_conditional_expression] = STATE(2421), - [sym_concatenated_string] = STATE(2418), - [sym_string] = STATE(2157), - [sym_none] = STATE(2418), - [sym_await] = STATE(2418), + [sym_concatenated_string] = STATE(2414), + [sym_string] = STATE(2147), + [sym_none] = STATE(2414), + [sym_await] = STATE(2414), [sym_new_expression] = STATE(2421), - [sym_sizeof_expression] = STATE(2418), - [sym_cast_expression] = STATE(2418), - [sym_identifier] = ACTIONS(2511), - [anon_sym_LPAREN] = ACTIONS(2513), - [anon_sym_STAR] = ACTIONS(2515), - [anon_sym_print] = ACTIONS(2517), - [anon_sym_match] = ACTIONS(2517), - [anon_sym_async] = ACTIONS(2517), - [anon_sym_exec] = ACTIONS(2517), - [anon_sym_LBRACK] = ACTIONS(2519), - [anon_sym_RBRACK] = ACTIONS(2583), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2523), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2525), - [anon_sym_lambda] = ACTIONS(2527), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2531), - [anon_sym_api] = ACTIONS(2517), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2533), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), - }, - [762] = { - [sym_named_expression] = STATE(2236), - [sym__named_expression_lhs] = STATE(5519), - [sym_list_splat] = STATE(4744), - [sym_dictionary_splat] = STATE(4788), - [sym_parenthesized_list_splat] = STATE(4744), - [sym_list_splat_pattern] = STATE(2309), - [sym_as_pattern] = STATE(2236), - [sym_expression] = STATE(3608), - [sym_primary_expression] = STATE(2054), - [sym_not_operator] = STATE(2236), - [sym_boolean_operator] = STATE(2236), - [sym_binary_operator] = STATE(2377), - [sym_unary_operator] = STATE(2377), - [sym_comparison_operator] = STATE(2236), - [sym_lambda] = STATE(2236), - [sym_yield] = STATE(4744), - [sym_attribute] = STATE(2377), - [sym_subscript] = STATE(2377), - [sym_ellipsis] = STATE(2377), - [sym_call] = STATE(2377), - [sym_list] = STATE(2377), - [sym_set] = STATE(2377), - [sym_tuple] = STATE(2377), - [sym_dictionary] = STATE(2377), - [sym_pair] = STATE(4009), - [sym_list_comprehension] = STATE(2377), - [sym_dictionary_comprehension] = STATE(2377), - [sym_set_comprehension] = STATE(2377), - [sym_generator_expression] = STATE(2377), - [sym_parenthesized_expression] = STATE(2377), - [sym__collection_elements] = STATE(5544), - [sym_conditional_expression] = STATE(2236), - [sym_concatenated_string] = STATE(2377), - [sym_string] = STATE(2103), - [sym_none] = STATE(2377), - [sym_await] = STATE(2377), - [sym_new_expression] = STATE(2236), - [sym_sizeof_expression] = STATE(2377), - [sym_cast_expression] = STATE(2377), - [sym_identifier] = ACTIONS(2535), - [anon_sym_LPAREN] = ACTIONS(2537), - [anon_sym_COMMA] = ACTIONS(2585), - [anon_sym_STAR] = ACTIONS(2541), - [anon_sym_print] = ACTIONS(2543), - [anon_sym_match] = ACTIONS(2543), - [anon_sym_async] = ACTIONS(2543), - [anon_sym_STAR_STAR] = ACTIONS(2545), - [anon_sym_exec] = ACTIONS(2543), - [anon_sym_LBRACK] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2409), - [anon_sym_LBRACE] = ACTIONS(2411), - [anon_sym_RBRACE] = ACTIONS(2587), - [anon_sym_PLUS] = ACTIONS(2409), - [anon_sym_not] = ACTIONS(2549), - [anon_sym_AMP] = ACTIONS(2409), - [anon_sym_TILDE] = ACTIONS(2409), - [anon_sym_LT] = ACTIONS(2551), - [anon_sym_lambda] = ACTIONS(2553), - [anon_sym_yield] = ACTIONS(2555), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2415), - [anon_sym_None] = ACTIONS(2417), - [sym_integer] = ACTIONS(2399), - [sym_float] = ACTIONS(2419), - [anon_sym_await] = ACTIONS(2557), - [anon_sym_api] = ACTIONS(2543), - [sym_true] = ACTIONS(2399), - [sym_false] = ACTIONS(2399), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2559), - [anon_sym_sizeof] = ACTIONS(2423), - [sym_string_start] = ACTIONS(2425), - }, - [763] = { - [sym_named_expression] = STATE(2459), - [sym__named_expression_lhs] = STATE(5688), - [sym_list_splat] = STATE(4756), - [sym_parenthesized_list_splat] = STATE(4756), - [sym__patterns] = STATE(5694), - [sym_pattern] = STATE(5006), - [sym_tuple_pattern] = STATE(5295), - [sym_list_pattern] = STATE(5295), - [sym_list_splat_pattern] = STATE(2460), - [sym_as_pattern] = STATE(2459), - [sym_expression] = STATE(3667), - [sym_primary_expression] = STATE(2060), - [sym_not_operator] = STATE(2459), - [sym_boolean_operator] = STATE(2459), - [sym_binary_operator] = STATE(2457), - [sym_unary_operator] = STATE(2457), - [sym_comparison_operator] = STATE(2459), - [sym_lambda] = STATE(2459), - [sym_yield] = STATE(4647), - [sym_attribute] = STATE(2462), - [sym_subscript] = STATE(2462), - [sym_ellipsis] = STATE(2457), - [sym_call] = STATE(2457), - [sym_list] = STATE(2457), - [sym_set] = STATE(2457), - [sym_tuple] = STATE(2457), - [sym_dictionary] = STATE(2457), - [sym_list_comprehension] = STATE(2457), - [sym_dictionary_comprehension] = STATE(2457), - [sym_set_comprehension] = STATE(2457), - [sym_generator_expression] = STATE(2457), - [sym_parenthesized_expression] = STATE(2457), - [sym__collection_elements] = STATE(5455), - [sym_conditional_expression] = STATE(2459), - [sym_concatenated_string] = STATE(2457), - [sym_string] = STATE(2170), - [sym_none] = STATE(2457), - [sym_await] = STATE(2457), - [sym_new_expression] = STATE(2459), - [sym_sizeof_expression] = STATE(2457), - [sym_cast_expression] = STATE(2457), - [sym_identifier] = ACTIONS(2505), - [anon_sym_LPAREN] = ACTIONS(2507), - [anon_sym_RPAREN] = ACTIONS(2589), + [sym_sizeof_expression] = STATE(2414), + [sym_cast_expression] = STATE(2414), + [sym_identifier] = ACTIONS(2515), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_RPAREN] = ACTIONS(1366), [anon_sym_STAR] = ACTIONS(1320), [anon_sym_print] = ACTIONS(1322), [anon_sym_match] = ACTIONS(1322), @@ -99469,199 +100159,199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1360), [sym_string_start] = ACTIONS(1362), }, - [764] = { + [772] = { + [sym_named_expression] = STATE(2493), + [sym__named_expression_lhs] = STATE(5681), + [sym_list_splat] = STATE(4860), + [sym_parenthesized_list_splat] = STATE(4860), + [sym__patterns] = STATE(5557), + [sym_pattern] = STATE(4870), + [sym_tuple_pattern] = STATE(5189), + [sym_list_pattern] = STATE(5189), + [sym_list_splat_pattern] = STATE(2494), + [sym_as_pattern] = STATE(2493), + [sym_expression] = STATE(3692), + [sym_primary_expression] = STATE(2070), + [sym_not_operator] = STATE(2493), + [sym_boolean_operator] = STATE(2493), + [sym_binary_operator] = STATE(2470), + [sym_unary_operator] = STATE(2470), + [sym_comparison_operator] = STATE(2493), + [sym_lambda] = STATE(2493), + [sym_yield] = STATE(4860), + [sym_attribute] = STATE(2508), + [sym_subscript] = STATE(2508), + [sym_ellipsis] = STATE(2470), + [sym_call] = STATE(2470), + [sym_list] = STATE(2470), + [sym_set] = STATE(2470), + [sym_tuple] = STATE(2470), + [sym_dictionary] = STATE(2470), + [sym_list_comprehension] = STATE(2470), + [sym_dictionary_comprehension] = STATE(2470), + [sym_set_comprehension] = STATE(2470), + [sym_generator_expression] = STATE(2470), + [sym_parenthesized_expression] = STATE(2470), + [sym__collection_elements] = STATE(5442), + [sym_conditional_expression] = STATE(2493), + [sym_concatenated_string] = STATE(2470), + [sym_string] = STATE(2177), + [sym_none] = STATE(2470), + [sym_await] = STATE(2470), + [sym_new_expression] = STATE(2493), + [sym_sizeof_expression] = STATE(2470), + [sym_cast_expression] = STATE(2470), + [sym_identifier] = ACTIONS(2549), + [anon_sym_LPAREN] = 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_RBRACK] = ACTIONS(2603), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2499), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_not] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_TILDE] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2563), + [anon_sym_lambda] = ACTIONS(2565), + [anon_sym_yield] = ACTIONS(2567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2503), + [anon_sym_None] = ACTIONS(2505), + [sym_integer] = ACTIONS(2487), + [sym_float] = ACTIONS(2507), + [anon_sym_await] = ACTIONS(2569), + [anon_sym_api] = ACTIONS(2555), + [sym_true] = ACTIONS(2487), + [sym_false] = ACTIONS(2487), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2571), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_string_start] = ACTIONS(2513), + }, + [773] = { + [sym_named_expression] = STATE(2326), + [sym__named_expression_lhs] = STATE(5687), + [sym_list_splat] = STATE(4993), + [sym_dictionary_splat] = STATE(4810), + [sym_parenthesized_list_splat] = STATE(4993), + [sym_list_splat_pattern] = STATE(2256), + [sym_as_pattern] = STATE(2326), + [sym_expression] = STATE(3611), + [sym_primary_expression] = STATE(2061), + [sym_not_operator] = STATE(2326), + [sym_boolean_operator] = STATE(2326), + [sym_binary_operator] = STATE(2298), + [sym_unary_operator] = STATE(2298), + [sym_comparison_operator] = STATE(2326), + [sym_lambda] = STATE(2326), + [sym_yield] = STATE(4993), + [sym_attribute] = STATE(2298), + [sym_subscript] = STATE(2298), + [sym_ellipsis] = STATE(2298), + [sym_call] = STATE(2298), + [sym_list] = STATE(2298), + [sym_set] = STATE(2298), + [sym_tuple] = STATE(2298), + [sym_dictionary] = STATE(2298), + [sym_pair] = STATE(4049), + [sym_list_comprehension] = STATE(2298), + [sym_dictionary_comprehension] = STATE(2298), + [sym_set_comprehension] = STATE(2298), + [sym_generator_expression] = STATE(2298), + [sym_parenthesized_expression] = STATE(2298), + [sym__collection_elements] = STATE(5473), + [sym_conditional_expression] = STATE(2326), + [sym_concatenated_string] = STATE(2298), + [sym_string] = STATE(2099), + [sym_none] = STATE(2298), + [sym_await] = STATE(2298), + [sym_new_expression] = STATE(2326), + [sym_sizeof_expression] = STATE(2298), + [sym_cast_expression] = STATE(2298), + [sym_identifier] = ACTIONS(2521), + [anon_sym_LPAREN] = ACTIONS(2523), + [anon_sym_COMMA] = ACTIONS(2605), + [anon_sym_STAR] = ACTIONS(2527), + [anon_sym_print] = ACTIONS(2529), + [anon_sym_match] = ACTIONS(2529), + [anon_sym_async] = ACTIONS(2529), + [anon_sym_STAR_STAR] = ACTIONS(2531), + [anon_sym_exec] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2419), + [anon_sym_DASH] = ACTIONS(2421), + [anon_sym_LBRACE] = ACTIONS(2423), + [anon_sym_RBRACE] = ACTIONS(2607), + [anon_sym_PLUS] = ACTIONS(2421), + [anon_sym_not] = ACTIONS(2535), + [anon_sym_AMP] = ACTIONS(2421), + [anon_sym_TILDE] = ACTIONS(2421), + [anon_sym_LT] = ACTIONS(2537), + [anon_sym_lambda] = ACTIONS(2539), + [anon_sym_yield] = ACTIONS(2541), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2427), + [anon_sym_None] = ACTIONS(2429), + [sym_integer] = ACTIONS(2411), + [sym_float] = ACTIONS(2431), + [anon_sym_await] = ACTIONS(2543), + [anon_sym_api] = ACTIONS(2529), + [sym_true] = ACTIONS(2411), + [sym_false] = ACTIONS(2411), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2545), + [anon_sym_sizeof] = ACTIONS(2435), + [sym_string_start] = ACTIONS(2437), + }, + [774] = { [sym_named_expression] = STATE(2421), - [sym__named_expression_lhs] = STATE(5414), - [sym_list_splat] = STATE(5086), - [sym_parenthesized_list_splat] = STATE(5086), - [sym__patterns] = STATE(5489), - [sym_pattern] = STATE(5088), - [sym_tuple_pattern] = STATE(5363), - [sym_list_pattern] = STATE(5363), + [sym__named_expression_lhs] = STATE(5522), + [sym_list_splat] = STATE(4708), + [sym_parenthesized_list_splat] = STATE(4708), + [sym__patterns] = STATE(5592), + [sym_pattern] = STATE(4748), + [sym_tuple_pattern] = STATE(5264), + [sym_list_pattern] = STATE(5264), [sym_list_splat_pattern] = STATE(2422), [sym_as_pattern] = STATE(2421), - [sym_expression] = STATE(3679), - [sym_primary_expression] = STATE(2063), + [sym_expression] = STATE(3660), + [sym_primary_expression] = STATE(2066), [sym_not_operator] = STATE(2421), [sym_boolean_operator] = STATE(2421), - [sym_binary_operator] = STATE(2418), - [sym_unary_operator] = STATE(2418), + [sym_binary_operator] = STATE(2414), + [sym_unary_operator] = STATE(2414), [sym_comparison_operator] = STATE(2421), [sym_lambda] = STATE(2421), - [sym_yield] = STATE(5086), - [sym_attribute] = STATE(2423), - [sym_subscript] = STATE(2423), - [sym_ellipsis] = STATE(2418), - [sym_call] = STATE(2418), - [sym_list] = STATE(2418), - [sym_set] = STATE(2418), - [sym_tuple] = STATE(2418), - [sym_dictionary] = STATE(2418), - [sym_list_comprehension] = STATE(2418), - [sym_dictionary_comprehension] = STATE(2418), - [sym_set_comprehension] = STATE(2418), - [sym_generator_expression] = STATE(2418), - [sym_parenthesized_expression] = STATE(2418), - [sym__collection_elements] = STATE(5611), + [sym_yield] = STATE(4837), + [sym_attribute] = STATE(2425), + [sym_subscript] = STATE(2425), + [sym_ellipsis] = STATE(2414), + [sym_call] = STATE(2414), + [sym_list] = STATE(2414), + [sym_set] = STATE(2414), + [sym_tuple] = STATE(2414), + [sym_dictionary] = STATE(2414), + [sym_list_comprehension] = STATE(2414), + [sym_dictionary_comprehension] = STATE(2414), + [sym_set_comprehension] = STATE(2414), + [sym_generator_expression] = STATE(2414), + [sym_parenthesized_expression] = STATE(2414), + [sym__collection_elements] = STATE(5713), [sym_conditional_expression] = STATE(2421), - [sym_concatenated_string] = STATE(2418), - [sym_string] = STATE(2157), - [sym_none] = STATE(2418), - [sym_await] = STATE(2418), + [sym_concatenated_string] = STATE(2414), + [sym_string] = STATE(2147), + [sym_none] = STATE(2414), + [sym_await] = STATE(2414), [sym_new_expression] = STATE(2421), - [sym_sizeof_expression] = STATE(2418), - [sym_cast_expression] = STATE(2418), - [sym_identifier] = ACTIONS(2511), - [anon_sym_LPAREN] = ACTIONS(2513), - [anon_sym_STAR] = ACTIONS(2515), - [anon_sym_print] = ACTIONS(2517), - [anon_sym_match] = ACTIONS(2517), - [anon_sym_async] = ACTIONS(2517), - [anon_sym_exec] = ACTIONS(2517), - [anon_sym_LBRACK] = ACTIONS(2519), - [anon_sym_RBRACK] = ACTIONS(2591), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2523), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2525), - [anon_sym_lambda] = ACTIONS(2527), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2531), - [anon_sym_api] = ACTIONS(2517), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2533), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), - }, - [765] = { - [sym_named_expression] = STATE(2236), - [sym__named_expression_lhs] = STATE(5519), - [sym_list_splat] = STATE(4744), - [sym_dictionary_splat] = STATE(4818), - [sym_parenthesized_list_splat] = STATE(4744), - [sym_list_splat_pattern] = STATE(2309), - [sym_as_pattern] = STATE(2236), - [sym_expression] = STATE(3609), - [sym_primary_expression] = STATE(2054), - [sym_not_operator] = STATE(2236), - [sym_boolean_operator] = STATE(2236), - [sym_binary_operator] = STATE(2377), - [sym_unary_operator] = STATE(2377), - [sym_comparison_operator] = STATE(2236), - [sym_lambda] = STATE(2236), - [sym_yield] = STATE(4744), - [sym_attribute] = STATE(2377), - [sym_subscript] = STATE(2377), - [sym_ellipsis] = STATE(2377), - [sym_call] = STATE(2377), - [sym_list] = STATE(2377), - [sym_set] = STATE(2377), - [sym_tuple] = STATE(2377), - [sym_dictionary] = STATE(2377), - [sym_pair] = STATE(4017), - [sym_list_comprehension] = STATE(2377), - [sym_dictionary_comprehension] = STATE(2377), - [sym_set_comprehension] = STATE(2377), - [sym_generator_expression] = STATE(2377), - [sym_parenthesized_expression] = STATE(2377), - [sym__collection_elements] = STATE(5648), - [sym_conditional_expression] = STATE(2236), - [sym_concatenated_string] = STATE(2377), - [sym_string] = STATE(2103), - [sym_none] = STATE(2377), - [sym_await] = STATE(2377), - [sym_new_expression] = STATE(2236), - [sym_sizeof_expression] = STATE(2377), - [sym_cast_expression] = STATE(2377), - [sym_identifier] = ACTIONS(2535), - [anon_sym_LPAREN] = ACTIONS(2537), - [anon_sym_COMMA] = ACTIONS(2593), - [anon_sym_STAR] = ACTIONS(2541), - [anon_sym_print] = ACTIONS(2543), - [anon_sym_match] = ACTIONS(2543), - [anon_sym_async] = ACTIONS(2543), - [anon_sym_STAR_STAR] = ACTIONS(2545), - [anon_sym_exec] = ACTIONS(2543), - [anon_sym_LBRACK] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2409), - [anon_sym_LBRACE] = ACTIONS(2411), - [anon_sym_RBRACE] = ACTIONS(2595), - [anon_sym_PLUS] = ACTIONS(2409), - [anon_sym_not] = ACTIONS(2549), - [anon_sym_AMP] = ACTIONS(2409), - [anon_sym_TILDE] = ACTIONS(2409), - [anon_sym_LT] = ACTIONS(2551), - [anon_sym_lambda] = ACTIONS(2553), - [anon_sym_yield] = ACTIONS(2555), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2415), - [anon_sym_None] = ACTIONS(2417), - [sym_integer] = ACTIONS(2399), - [sym_float] = ACTIONS(2419), - [anon_sym_await] = ACTIONS(2557), - [anon_sym_api] = ACTIONS(2543), - [sym_true] = ACTIONS(2399), - [sym_false] = ACTIONS(2399), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2559), - [anon_sym_sizeof] = ACTIONS(2423), - [sym_string_start] = ACTIONS(2425), - }, - [766] = { - [sym_named_expression] = STATE(2459), - [sym__named_expression_lhs] = STATE(5688), - [sym_list_splat] = STATE(4756), - [sym_parenthesized_list_splat] = STATE(4756), - [sym__patterns] = STATE(5412), - [sym_pattern] = STATE(5006), - [sym_tuple_pattern] = STATE(5295), - [sym_list_pattern] = STATE(5295), - [sym_list_splat_pattern] = STATE(2460), - [sym_as_pattern] = STATE(2459), - [sym_expression] = STATE(3667), - [sym_primary_expression] = STATE(2060), - [sym_not_operator] = STATE(2459), - [sym_boolean_operator] = STATE(2459), - [sym_binary_operator] = STATE(2457), - [sym_unary_operator] = STATE(2457), - [sym_comparison_operator] = STATE(2459), - [sym_lambda] = STATE(2459), - [sym_yield] = STATE(4647), - [sym_attribute] = STATE(2462), - [sym_subscript] = STATE(2462), - [sym_ellipsis] = STATE(2457), - [sym_call] = STATE(2457), - [sym_list] = STATE(2457), - [sym_set] = STATE(2457), - [sym_tuple] = STATE(2457), - [sym_dictionary] = STATE(2457), - [sym_list_comprehension] = STATE(2457), - [sym_dictionary_comprehension] = STATE(2457), - [sym_set_comprehension] = STATE(2457), - [sym_generator_expression] = STATE(2457), - [sym_parenthesized_expression] = STATE(2457), - [sym__collection_elements] = STATE(5455), - [sym_conditional_expression] = STATE(2459), - [sym_concatenated_string] = STATE(2457), - [sym_string] = STATE(2170), - [sym_none] = STATE(2457), - [sym_await] = STATE(2457), - [sym_new_expression] = STATE(2459), - [sym_sizeof_expression] = STATE(2457), - [sym_cast_expression] = STATE(2457), - [sym_identifier] = ACTIONS(2505), - [anon_sym_LPAREN] = ACTIONS(2507), - [anon_sym_RPAREN] = ACTIONS(2597), + [sym_sizeof_expression] = STATE(2414), + [sym_cast_expression] = STATE(2414), + [sym_identifier] = ACTIONS(2515), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_RPAREN] = ACTIONS(1318), [anon_sym_STAR] = ACTIONS(1320), [anon_sym_print] = ACTIONS(1322), [anon_sym_match] = ACTIONS(1322), @@ -99691,199 +100381,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1360), [sym_string_start] = ACTIONS(1362), }, - [767] = { + [775] = { [sym_named_expression] = STATE(2421), - [sym__named_expression_lhs] = STATE(5414), - [sym_list_splat] = STATE(5086), - [sym_parenthesized_list_splat] = STATE(5086), - [sym__patterns] = STATE(5393), - [sym_pattern] = STATE(5088), - [sym_tuple_pattern] = STATE(5363), - [sym_list_pattern] = STATE(5363), + [sym__named_expression_lhs] = STATE(5522), + [sym_list_splat] = STATE(4708), + [sym_parenthesized_list_splat] = STATE(4708), + [sym__patterns] = STATE(5717), + [sym_pattern] = STATE(4748), + [sym_tuple_pattern] = STATE(5264), + [sym_list_pattern] = STATE(5264), [sym_list_splat_pattern] = STATE(2422), [sym_as_pattern] = STATE(2421), - [sym_expression] = STATE(3679), - [sym_primary_expression] = STATE(2063), + [sym_expression] = STATE(3709), + [sym_primary_expression] = STATE(2066), [sym_not_operator] = STATE(2421), [sym_boolean_operator] = STATE(2421), - [sym_binary_operator] = STATE(2418), - [sym_unary_operator] = STATE(2418), + [sym_binary_operator] = STATE(2414), + [sym_unary_operator] = STATE(2414), [sym_comparison_operator] = STATE(2421), [sym_lambda] = STATE(2421), - [sym_yield] = STATE(5086), - [sym_attribute] = STATE(2423), - [sym_subscript] = STATE(2423), - [sym_ellipsis] = STATE(2418), - [sym_call] = STATE(2418), - [sym_list] = STATE(2418), - [sym_set] = STATE(2418), - [sym_tuple] = STATE(2418), - [sym_dictionary] = STATE(2418), - [sym_list_comprehension] = STATE(2418), - [sym_dictionary_comprehension] = STATE(2418), - [sym_set_comprehension] = STATE(2418), - [sym_generator_expression] = STATE(2418), - [sym_parenthesized_expression] = STATE(2418), - [sym__collection_elements] = STATE(5611), + [sym_yield] = STATE(5116), + [sym_attribute] = STATE(2425), + [sym_subscript] = STATE(2425), + [sym_ellipsis] = STATE(2414), + [sym_call] = STATE(2414), + [sym_list] = STATE(2414), + [sym_set] = STATE(2414), + [sym_tuple] = STATE(2414), + [sym_dictionary] = STATE(2414), + [sym_list_comprehension] = STATE(2414), + [sym_dictionary_comprehension] = STATE(2414), + [sym_set_comprehension] = STATE(2414), + [sym_generator_expression] = STATE(2414), + [sym_parenthesized_expression] = STATE(2414), + [sym__collection_elements] = STATE(5598), [sym_conditional_expression] = STATE(2421), - [sym_concatenated_string] = STATE(2418), - [sym_string] = STATE(2157), - [sym_none] = STATE(2418), - [sym_await] = STATE(2418), + [sym_concatenated_string] = STATE(2414), + [sym_string] = STATE(2147), + [sym_none] = STATE(2414), + [sym_await] = STATE(2414), [sym_new_expression] = STATE(2421), - [sym_sizeof_expression] = STATE(2418), - [sym_cast_expression] = STATE(2418), - [sym_identifier] = ACTIONS(2511), - [anon_sym_LPAREN] = ACTIONS(2513), - [anon_sym_STAR] = ACTIONS(2515), - [anon_sym_print] = ACTIONS(2517), - [anon_sym_match] = ACTIONS(2517), - [anon_sym_async] = ACTIONS(2517), - [anon_sym_exec] = ACTIONS(2517), - [anon_sym_LBRACK] = ACTIONS(2519), - [anon_sym_RBRACK] = ACTIONS(2599), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2523), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2525), - [anon_sym_lambda] = ACTIONS(2527), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2531), - [anon_sym_api] = ACTIONS(2517), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2533), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), - }, - [768] = { - [sym_named_expression] = STATE(2236), - [sym__named_expression_lhs] = STATE(5519), - [sym_list_splat] = STATE(4744), - [sym_dictionary_splat] = STATE(4850), - [sym_parenthesized_list_splat] = STATE(4744), - [sym_list_splat_pattern] = STATE(2309), - [sym_as_pattern] = STATE(2236), - [sym_expression] = STATE(3611), - [sym_primary_expression] = STATE(2054), - [sym_not_operator] = STATE(2236), - [sym_boolean_operator] = STATE(2236), - [sym_binary_operator] = STATE(2377), - [sym_unary_operator] = STATE(2377), - [sym_comparison_operator] = STATE(2236), - [sym_lambda] = STATE(2236), - [sym_yield] = STATE(4744), - [sym_attribute] = STATE(2377), - [sym_subscript] = STATE(2377), - [sym_ellipsis] = STATE(2377), - [sym_call] = STATE(2377), - [sym_list] = STATE(2377), - [sym_set] = STATE(2377), - [sym_tuple] = STATE(2377), - [sym_dictionary] = STATE(2377), - [sym_pair] = STATE(4028), - [sym_list_comprehension] = STATE(2377), - [sym_dictionary_comprehension] = STATE(2377), - [sym_set_comprehension] = STATE(2377), - [sym_generator_expression] = STATE(2377), - [sym_parenthesized_expression] = STATE(2377), - [sym__collection_elements] = STATE(5493), - [sym_conditional_expression] = STATE(2236), - [sym_concatenated_string] = STATE(2377), - [sym_string] = STATE(2103), - [sym_none] = STATE(2377), - [sym_await] = STATE(2377), - [sym_new_expression] = STATE(2236), - [sym_sizeof_expression] = STATE(2377), - [sym_cast_expression] = STATE(2377), - [sym_identifier] = ACTIONS(2535), - [anon_sym_LPAREN] = ACTIONS(2537), - [anon_sym_COMMA] = ACTIONS(2601), - [anon_sym_STAR] = ACTIONS(2541), - [anon_sym_print] = ACTIONS(2543), - [anon_sym_match] = ACTIONS(2543), - [anon_sym_async] = ACTIONS(2543), - [anon_sym_STAR_STAR] = ACTIONS(2545), - [anon_sym_exec] = ACTIONS(2543), - [anon_sym_LBRACK] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2409), - [anon_sym_LBRACE] = ACTIONS(2411), - [anon_sym_RBRACE] = ACTIONS(2603), - [anon_sym_PLUS] = ACTIONS(2409), - [anon_sym_not] = ACTIONS(2549), - [anon_sym_AMP] = ACTIONS(2409), - [anon_sym_TILDE] = ACTIONS(2409), - [anon_sym_LT] = ACTIONS(2551), - [anon_sym_lambda] = ACTIONS(2553), - [anon_sym_yield] = ACTIONS(2555), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2415), - [anon_sym_None] = ACTIONS(2417), - [sym_integer] = ACTIONS(2399), - [sym_float] = ACTIONS(2419), - [anon_sym_await] = ACTIONS(2557), - [anon_sym_api] = ACTIONS(2543), - [sym_true] = ACTIONS(2399), - [sym_false] = ACTIONS(2399), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2559), - [anon_sym_sizeof] = ACTIONS(2423), - [sym_string_start] = ACTIONS(2425), - }, - [769] = { - [sym_named_expression] = STATE(2459), - [sym__named_expression_lhs] = STATE(5688), - [sym_list_splat] = STATE(4756), - [sym_parenthesized_list_splat] = STATE(4756), - [sym__patterns] = STATE(5433), - [sym_pattern] = STATE(5006), - [sym_tuple_pattern] = STATE(5295), - [sym_list_pattern] = STATE(5295), - [sym_list_splat_pattern] = STATE(2460), - [sym_as_pattern] = STATE(2459), - [sym_expression] = STATE(3667), - [sym_primary_expression] = STATE(2060), - [sym_not_operator] = STATE(2459), - [sym_boolean_operator] = STATE(2459), - [sym_binary_operator] = STATE(2457), - [sym_unary_operator] = STATE(2457), - [sym_comparison_operator] = STATE(2459), - [sym_lambda] = STATE(2459), - [sym_yield] = STATE(4647), - [sym_attribute] = STATE(2462), - [sym_subscript] = STATE(2462), - [sym_ellipsis] = STATE(2457), - [sym_call] = STATE(2457), - [sym_list] = STATE(2457), - [sym_set] = STATE(2457), - [sym_tuple] = STATE(2457), - [sym_dictionary] = STATE(2457), - [sym_list_comprehension] = STATE(2457), - [sym_dictionary_comprehension] = STATE(2457), - [sym_set_comprehension] = STATE(2457), - [sym_generator_expression] = STATE(2457), - [sym_parenthesized_expression] = STATE(2457), - [sym__collection_elements] = STATE(5455), - [sym_conditional_expression] = STATE(2459), - [sym_concatenated_string] = STATE(2457), - [sym_string] = STATE(2170), - [sym_none] = STATE(2457), - [sym_await] = STATE(2457), - [sym_new_expression] = STATE(2459), - [sym_sizeof_expression] = STATE(2457), - [sym_cast_expression] = STATE(2457), - [sym_identifier] = ACTIONS(2505), - [anon_sym_LPAREN] = ACTIONS(2507), - [anon_sym_RPAREN] = ACTIONS(2605), + [sym_sizeof_expression] = STATE(2414), + [sym_cast_expression] = STATE(2414), + [sym_identifier] = ACTIONS(2515), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_RPAREN] = ACTIONS(2609), [anon_sym_STAR] = ACTIONS(1320), [anon_sym_print] = ACTIONS(1322), [anon_sym_match] = ACTIONS(1322), @@ -99913,198 +100455,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1360), [sym_string_start] = ACTIONS(1362), }, - [770] = { + [776] = { + [sym_named_expression] = STATE(2493), + [sym__named_expression_lhs] = STATE(5681), + [sym_list_splat] = STATE(4860), + [sym_parenthesized_list_splat] = STATE(4860), + [sym__patterns] = STATE(5557), + [sym_pattern] = STATE(4870), + [sym_tuple_pattern] = STATE(5189), + [sym_list_pattern] = STATE(5189), + [sym_list_splat_pattern] = STATE(2494), + [sym_as_pattern] = STATE(2493), + [sym_expression] = STATE(3686), + [sym_primary_expression] = STATE(2070), + [sym_not_operator] = STATE(2493), + [sym_boolean_operator] = STATE(2493), + [sym_binary_operator] = STATE(2470), + [sym_unary_operator] = STATE(2470), + [sym_comparison_operator] = STATE(2493), + [sym_lambda] = STATE(2493), + [sym_yield] = STATE(4860), + [sym_attribute] = STATE(2508), + [sym_subscript] = STATE(2508), + [sym_ellipsis] = STATE(2470), + [sym_call] = STATE(2470), + [sym_list] = STATE(2470), + [sym_set] = STATE(2470), + [sym_tuple] = STATE(2470), + [sym_dictionary] = STATE(2470), + [sym_list_comprehension] = STATE(2470), + [sym_dictionary_comprehension] = STATE(2470), + [sym_set_comprehension] = STATE(2470), + [sym_generator_expression] = STATE(2470), + [sym_parenthesized_expression] = STATE(2470), + [sym__collection_elements] = STATE(5623), + [sym_conditional_expression] = STATE(2493), + [sym_concatenated_string] = STATE(2470), + [sym_string] = STATE(2177), + [sym_none] = STATE(2470), + [sym_await] = STATE(2470), + [sym_new_expression] = STATE(2493), + [sym_sizeof_expression] = STATE(2470), + [sym_cast_expression] = STATE(2470), + [sym_identifier] = ACTIONS(2549), + [anon_sym_LPAREN] = 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_RBRACK] = ACTIONS(2611), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2499), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_not] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_TILDE] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2563), + [anon_sym_lambda] = ACTIONS(2565), + [anon_sym_yield] = ACTIONS(2567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2503), + [anon_sym_None] = ACTIONS(2505), + [sym_integer] = ACTIONS(2487), + [sym_float] = ACTIONS(2507), + [anon_sym_await] = ACTIONS(2569), + [anon_sym_api] = ACTIONS(2555), + [sym_true] = ACTIONS(2487), + [sym_false] = ACTIONS(2487), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2571), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_string_start] = ACTIONS(2513), + }, + [777] = { [sym_named_expression] = STATE(2421), - [sym__named_expression_lhs] = STATE(5414), - [sym_list_splat] = STATE(5086), - [sym_parenthesized_list_splat] = STATE(5086), - [sym__patterns] = STATE(5393), - [sym_pattern] = STATE(5088), - [sym_tuple_pattern] = STATE(5363), - [sym_list_pattern] = STATE(5363), + [sym__named_expression_lhs] = STATE(5522), + [sym_list_splat] = STATE(4708), + [sym_parenthesized_list_splat] = STATE(4708), + [sym__patterns] = STATE(5592), + [sym_pattern] = STATE(4748), + [sym_tuple_pattern] = STATE(5264), + [sym_list_pattern] = STATE(5264), [sym_list_splat_pattern] = STATE(2422), [sym_as_pattern] = STATE(2421), - [sym_expression] = STATE(3679), - [sym_primary_expression] = STATE(2063), + [sym_expression] = STATE(3709), + [sym_primary_expression] = STATE(2066), [sym_not_operator] = STATE(2421), [sym_boolean_operator] = STATE(2421), - [sym_binary_operator] = STATE(2418), - [sym_unary_operator] = STATE(2418), + [sym_binary_operator] = STATE(2414), + [sym_unary_operator] = STATE(2414), [sym_comparison_operator] = STATE(2421), [sym_lambda] = STATE(2421), - [sym_yield] = STATE(5086), - [sym_attribute] = STATE(2423), - [sym_subscript] = STATE(2423), - [sym_ellipsis] = STATE(2418), - [sym_call] = STATE(2418), - [sym_list] = STATE(2418), - [sym_set] = STATE(2418), - [sym_tuple] = STATE(2418), - [sym_dictionary] = STATE(2418), - [sym_list_comprehension] = STATE(2418), - [sym_dictionary_comprehension] = STATE(2418), - [sym_set_comprehension] = STATE(2418), - [sym_generator_expression] = STATE(2418), - [sym_parenthesized_expression] = STATE(2418), - [sym__collection_elements] = STATE(5611), + [sym_yield] = STATE(5116), + [sym_attribute] = STATE(2425), + [sym_subscript] = STATE(2425), + [sym_ellipsis] = STATE(2414), + [sym_call] = STATE(2414), + [sym_list] = STATE(2414), + [sym_set] = STATE(2414), + [sym_tuple] = STATE(2414), + [sym_dictionary] = STATE(2414), + [sym_list_comprehension] = STATE(2414), + [sym_dictionary_comprehension] = STATE(2414), + [sym_set_comprehension] = STATE(2414), + [sym_generator_expression] = STATE(2414), + [sym_parenthesized_expression] = STATE(2414), + [sym__collection_elements] = STATE(5598), [sym_conditional_expression] = STATE(2421), - [sym_concatenated_string] = STATE(2418), - [sym_string] = STATE(2157), - [sym_none] = STATE(2418), - [sym_await] = STATE(2418), + [sym_concatenated_string] = STATE(2414), + [sym_string] = STATE(2147), + [sym_none] = STATE(2414), + [sym_await] = STATE(2414), [sym_new_expression] = STATE(2421), - [sym_sizeof_expression] = STATE(2418), - [sym_cast_expression] = STATE(2418), - [sym_identifier] = ACTIONS(2511), - [anon_sym_LPAREN] = ACTIONS(2513), - [anon_sym_STAR] = ACTIONS(2515), - [anon_sym_print] = ACTIONS(2517), - [anon_sym_match] = ACTIONS(2517), - [anon_sym_async] = ACTIONS(2517), - [anon_sym_exec] = ACTIONS(2517), - [anon_sym_LBRACK] = ACTIONS(2519), - [anon_sym_RBRACK] = ACTIONS(2607), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2523), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2525), - [anon_sym_lambda] = ACTIONS(2527), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2531), - [anon_sym_api] = ACTIONS(2517), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2533), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), - }, - [771] = { - [sym_named_expression] = STATE(2236), - [sym__named_expression_lhs] = STATE(5519), - [sym_list_splat] = STATE(4744), - [sym_dictionary_splat] = STATE(4877), - [sym_parenthesized_list_splat] = STATE(4744), - [sym_list_splat_pattern] = STATE(2309), - [sym_as_pattern] = STATE(2236), - [sym_expression] = STATE(3612), - [sym_primary_expression] = STATE(2054), - [sym_not_operator] = STATE(2236), - [sym_boolean_operator] = STATE(2236), - [sym_binary_operator] = STATE(2377), - [sym_unary_operator] = STATE(2377), - [sym_comparison_operator] = STATE(2236), - [sym_lambda] = STATE(2236), - [sym_yield] = STATE(4744), - [sym_attribute] = STATE(2377), - [sym_subscript] = STATE(2377), - [sym_ellipsis] = STATE(2377), - [sym_call] = STATE(2377), - [sym_list] = STATE(2377), - [sym_set] = STATE(2377), - [sym_tuple] = STATE(2377), - [sym_dictionary] = STATE(2377), - [sym_pair] = STATE(4035), - [sym_list_comprehension] = STATE(2377), - [sym_dictionary_comprehension] = STATE(2377), - [sym_set_comprehension] = STATE(2377), - [sym_generator_expression] = STATE(2377), - [sym_parenthesized_expression] = STATE(2377), - [sym__collection_elements] = STATE(5628), - [sym_conditional_expression] = STATE(2236), - [sym_concatenated_string] = STATE(2377), - [sym_string] = STATE(2103), - [sym_none] = STATE(2377), - [sym_await] = STATE(2377), - [sym_new_expression] = STATE(2236), - [sym_sizeof_expression] = STATE(2377), - [sym_cast_expression] = STATE(2377), - [sym_identifier] = ACTIONS(2535), - [anon_sym_LPAREN] = ACTIONS(2537), - [anon_sym_COMMA] = ACTIONS(2609), - [anon_sym_STAR] = ACTIONS(2541), - [anon_sym_print] = ACTIONS(2543), - [anon_sym_match] = ACTIONS(2543), - [anon_sym_async] = ACTIONS(2543), - [anon_sym_STAR_STAR] = ACTIONS(2545), - [anon_sym_exec] = ACTIONS(2543), - [anon_sym_LBRACK] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2409), - [anon_sym_LBRACE] = ACTIONS(2411), - [anon_sym_RBRACE] = ACTIONS(2611), - [anon_sym_PLUS] = ACTIONS(2409), - [anon_sym_not] = ACTIONS(2549), - [anon_sym_AMP] = ACTIONS(2409), - [anon_sym_TILDE] = ACTIONS(2409), - [anon_sym_LT] = ACTIONS(2551), - [anon_sym_lambda] = ACTIONS(2553), - [anon_sym_yield] = ACTIONS(2555), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2415), - [anon_sym_None] = ACTIONS(2417), - [sym_integer] = ACTIONS(2399), - [sym_float] = ACTIONS(2419), - [anon_sym_await] = ACTIONS(2557), - [anon_sym_api] = ACTIONS(2543), - [sym_true] = ACTIONS(2399), - [sym_false] = ACTIONS(2399), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2559), - [anon_sym_sizeof] = ACTIONS(2423), - [sym_string_start] = ACTIONS(2425), - }, - [772] = { - [sym_named_expression] = STATE(2459), - [sym__named_expression_lhs] = STATE(5688), - [sym_list_splat] = STATE(4756), - [sym_parenthesized_list_splat] = STATE(4756), - [sym__patterns] = STATE(5391), - [sym_pattern] = STATE(5006), - [sym_tuple_pattern] = STATE(5295), - [sym_list_pattern] = STATE(5295), - [sym_list_splat_pattern] = STATE(2460), - [sym_as_pattern] = STATE(2459), - [sym_expression] = STATE(3667), - [sym_primary_expression] = STATE(2060), - [sym_not_operator] = STATE(2459), - [sym_boolean_operator] = STATE(2459), - [sym_binary_operator] = STATE(2457), - [sym_unary_operator] = STATE(2457), - [sym_comparison_operator] = STATE(2459), - [sym_lambda] = STATE(2459), - [sym_yield] = STATE(4647), - [sym_attribute] = STATE(2462), - [sym_subscript] = STATE(2462), - [sym_ellipsis] = STATE(2457), - [sym_call] = STATE(2457), - [sym_list] = STATE(2457), - [sym_set] = STATE(2457), - [sym_tuple] = STATE(2457), - [sym_dictionary] = STATE(2457), - [sym_list_comprehension] = STATE(2457), - [sym_dictionary_comprehension] = STATE(2457), - [sym_set_comprehension] = STATE(2457), - [sym_generator_expression] = STATE(2457), - [sym_parenthesized_expression] = STATE(2457), - [sym__collection_elements] = STATE(5455), - [sym_conditional_expression] = STATE(2459), - [sym_concatenated_string] = STATE(2457), - [sym_string] = STATE(2170), - [sym_none] = STATE(2457), - [sym_await] = STATE(2457), - [sym_new_expression] = STATE(2459), - [sym_sizeof_expression] = STATE(2457), - [sym_cast_expression] = STATE(2457), - [sym_identifier] = ACTIONS(2505), - [anon_sym_LPAREN] = ACTIONS(2507), + [sym_sizeof_expression] = STATE(2414), + [sym_cast_expression] = STATE(2414), + [sym_identifier] = ACTIONS(2515), + [anon_sym_LPAREN] = ACTIONS(2517), [anon_sym_RPAREN] = ACTIONS(2613), [anon_sym_STAR] = ACTIONS(1320), [anon_sym_print] = ACTIONS(1322), @@ -100135,125 +100603,199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1360), [sym_string_start] = ACTIONS(1362), }, - [773] = { + [778] = { + [sym_named_expression] = STATE(2493), + [sym__named_expression_lhs] = STATE(5681), + [sym_list_splat] = STATE(4860), + [sym_parenthesized_list_splat] = STATE(4860), + [sym__patterns] = STATE(5555), + [sym_pattern] = STATE(4870), + [sym_tuple_pattern] = STATE(5189), + [sym_list_pattern] = STATE(5189), + [sym_list_splat_pattern] = STATE(2494), + [sym_as_pattern] = STATE(2493), + [sym_expression] = STATE(3686), + [sym_primary_expression] = STATE(2070), + [sym_not_operator] = STATE(2493), + [sym_boolean_operator] = STATE(2493), + [sym_binary_operator] = STATE(2470), + [sym_unary_operator] = STATE(2470), + [sym_comparison_operator] = STATE(2493), + [sym_lambda] = STATE(2493), + [sym_yield] = STATE(4860), + [sym_attribute] = STATE(2508), + [sym_subscript] = STATE(2508), + [sym_ellipsis] = STATE(2470), + [sym_call] = STATE(2470), + [sym_list] = STATE(2470), + [sym_set] = STATE(2470), + [sym_tuple] = STATE(2470), + [sym_dictionary] = STATE(2470), + [sym_list_comprehension] = STATE(2470), + [sym_dictionary_comprehension] = STATE(2470), + [sym_set_comprehension] = STATE(2470), + [sym_generator_expression] = STATE(2470), + [sym_parenthesized_expression] = STATE(2470), + [sym__collection_elements] = STATE(5623), + [sym_conditional_expression] = STATE(2493), + [sym_concatenated_string] = STATE(2470), + [sym_string] = STATE(2177), + [sym_none] = STATE(2470), + [sym_await] = STATE(2470), + [sym_new_expression] = STATE(2493), + [sym_sizeof_expression] = STATE(2470), + [sym_cast_expression] = STATE(2470), + [sym_identifier] = ACTIONS(2549), + [anon_sym_LPAREN] = 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_RBRACK] = ACTIONS(2615), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2499), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_not] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_TILDE] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2563), + [anon_sym_lambda] = ACTIONS(2565), + [anon_sym_yield] = ACTIONS(2567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2503), + [anon_sym_None] = ACTIONS(2505), + [sym_integer] = ACTIONS(2487), + [sym_float] = ACTIONS(2507), + [anon_sym_await] = ACTIONS(2569), + [anon_sym_api] = ACTIONS(2555), + [sym_true] = ACTIONS(2487), + [sym_false] = ACTIONS(2487), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2571), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_string_start] = ACTIONS(2513), + }, + [779] = { + [sym_named_expression] = STATE(2326), + [sym__named_expression_lhs] = STATE(5687), + [sym_list_splat] = STATE(4993), + [sym_dictionary_splat] = STATE(4844), + [sym_parenthesized_list_splat] = STATE(4993), + [sym_list_splat_pattern] = STATE(2256), + [sym_as_pattern] = STATE(2326), + [sym_expression] = STATE(3613), + [sym_primary_expression] = STATE(2061), + [sym_not_operator] = STATE(2326), + [sym_boolean_operator] = STATE(2326), + [sym_binary_operator] = STATE(2298), + [sym_unary_operator] = STATE(2298), + [sym_comparison_operator] = STATE(2326), + [sym_lambda] = STATE(2326), + [sym_yield] = STATE(4993), + [sym_attribute] = STATE(2298), + [sym_subscript] = STATE(2298), + [sym_ellipsis] = STATE(2298), + [sym_call] = STATE(2298), + [sym_list] = STATE(2298), + [sym_set] = STATE(2298), + [sym_tuple] = STATE(2298), + [sym_dictionary] = STATE(2298), + [sym_pair] = STATE(4061), + [sym_list_comprehension] = STATE(2298), + [sym_dictionary_comprehension] = STATE(2298), + [sym_set_comprehension] = STATE(2298), + [sym_generator_expression] = STATE(2298), + [sym_parenthesized_expression] = STATE(2298), + [sym__collection_elements] = STATE(5472), + [sym_conditional_expression] = STATE(2326), + [sym_concatenated_string] = STATE(2298), + [sym_string] = STATE(2099), + [sym_none] = STATE(2298), + [sym_await] = STATE(2298), + [sym_new_expression] = STATE(2326), + [sym_sizeof_expression] = STATE(2298), + [sym_cast_expression] = STATE(2298), + [sym_identifier] = ACTIONS(2521), + [anon_sym_LPAREN] = ACTIONS(2523), + [anon_sym_COMMA] = ACTIONS(2617), + [anon_sym_STAR] = ACTIONS(2527), + [anon_sym_print] = ACTIONS(2529), + [anon_sym_match] = ACTIONS(2529), + [anon_sym_async] = ACTIONS(2529), + [anon_sym_STAR_STAR] = ACTIONS(2531), + [anon_sym_exec] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2419), + [anon_sym_DASH] = ACTIONS(2421), + [anon_sym_LBRACE] = ACTIONS(2423), + [anon_sym_RBRACE] = ACTIONS(2619), + [anon_sym_PLUS] = ACTIONS(2421), + [anon_sym_not] = ACTIONS(2535), + [anon_sym_AMP] = ACTIONS(2421), + [anon_sym_TILDE] = ACTIONS(2421), + [anon_sym_LT] = ACTIONS(2537), + [anon_sym_lambda] = ACTIONS(2539), + [anon_sym_yield] = ACTIONS(2541), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2427), + [anon_sym_None] = ACTIONS(2429), + [sym_integer] = ACTIONS(2411), + [sym_float] = ACTIONS(2431), + [anon_sym_await] = ACTIONS(2543), + [anon_sym_api] = ACTIONS(2529), + [sym_true] = ACTIONS(2411), + [sym_false] = ACTIONS(2411), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2545), + [anon_sym_sizeof] = ACTIONS(2435), + [sym_string_start] = ACTIONS(2437), + }, + [780] = { [sym_named_expression] = STATE(2421), - [sym__named_expression_lhs] = STATE(5414), - [sym_list_splat] = STATE(5086), - [sym_parenthesized_list_splat] = STATE(5086), - [sym__patterns] = STATE(5525), - [sym_pattern] = STATE(5088), - [sym_tuple_pattern] = STATE(5363), - [sym_list_pattern] = STATE(5363), + [sym__named_expression_lhs] = STATE(5522), + [sym_list_splat] = STATE(5063), + [sym_parenthesized_list_splat] = STATE(4789), + [sym__patterns] = STATE(5580), + [sym_pattern] = STATE(4748), + [sym_tuple_pattern] = STATE(5264), + [sym_list_pattern] = STATE(5264), [sym_list_splat_pattern] = STATE(2422), [sym_as_pattern] = STATE(2421), - [sym_expression] = STATE(3679), - [sym_primary_expression] = STATE(2063), + [sym_expression] = STATE(3640), + [sym_primary_expression] = STATE(2066), [sym_not_operator] = STATE(2421), [sym_boolean_operator] = STATE(2421), - [sym_binary_operator] = STATE(2418), - [sym_unary_operator] = STATE(2418), + [sym_binary_operator] = STATE(2414), + [sym_unary_operator] = STATE(2414), [sym_comparison_operator] = STATE(2421), [sym_lambda] = STATE(2421), - [sym_yield] = STATE(5086), - [sym_attribute] = STATE(2423), - [sym_subscript] = STATE(2423), - [sym_ellipsis] = STATE(2418), - [sym_call] = STATE(2418), - [sym_list] = STATE(2418), - [sym_set] = STATE(2418), - [sym_tuple] = STATE(2418), - [sym_dictionary] = STATE(2418), - [sym_list_comprehension] = STATE(2418), - [sym_dictionary_comprehension] = STATE(2418), - [sym_set_comprehension] = STATE(2418), - [sym_generator_expression] = STATE(2418), - [sym_parenthesized_expression] = STATE(2418), - [sym__collection_elements] = STATE(5611), + [sym_yield] = STATE(4804), + [sym_attribute] = STATE(2425), + [sym_subscript] = STATE(2425), + [sym_ellipsis] = STATE(2414), + [sym_call] = STATE(2414), + [sym_list] = STATE(2414), + [sym_set] = STATE(2414), + [sym_tuple] = STATE(2414), + [sym_dictionary] = STATE(2414), + [sym_list_comprehension] = STATE(2414), + [sym_dictionary_comprehension] = STATE(2414), + [sym_set_comprehension] = STATE(2414), + [sym_generator_expression] = STATE(2414), + [sym_parenthesized_expression] = STATE(2414), + [sym__collection_elements] = STATE(5702), [sym_conditional_expression] = STATE(2421), - [sym_concatenated_string] = STATE(2418), - [sym_string] = STATE(2157), - [sym_none] = STATE(2418), - [sym_await] = STATE(2418), + [sym_concatenated_string] = STATE(2414), + [sym_string] = STATE(2147), + [sym_none] = STATE(2414), + [sym_await] = STATE(2414), [sym_new_expression] = STATE(2421), - [sym_sizeof_expression] = STATE(2418), - [sym_cast_expression] = STATE(2418), - [sym_identifier] = ACTIONS(2511), - [anon_sym_LPAREN] = ACTIONS(2513), - [anon_sym_STAR] = ACTIONS(2515), - [anon_sym_print] = ACTIONS(2517), - [anon_sym_match] = ACTIONS(2517), - [anon_sym_async] = ACTIONS(2517), - [anon_sym_exec] = ACTIONS(2517), - [anon_sym_LBRACK] = ACTIONS(2519), - [anon_sym_RBRACK] = ACTIONS(2615), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2523), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2525), - [anon_sym_lambda] = ACTIONS(2527), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2531), - [anon_sym_api] = ACTIONS(2517), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2533), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), - }, - [774] = { - [sym_named_expression] = STATE(2459), - [sym__named_expression_lhs] = STATE(5688), - [sym_list_splat] = STATE(4756), - [sym_parenthesized_list_splat] = STATE(4756), - [sym__patterns] = STATE(5694), - [sym_pattern] = STATE(5006), - [sym_tuple_pattern] = STATE(5295), - [sym_list_pattern] = STATE(5295), - [sym_list_splat_pattern] = STATE(2460), - [sym_as_pattern] = STATE(2459), - [sym_expression] = STATE(3664), - [sym_primary_expression] = STATE(2060), - [sym_not_operator] = STATE(2459), - [sym_boolean_operator] = STATE(2459), - [sym_binary_operator] = STATE(2457), - [sym_unary_operator] = STATE(2457), - [sym_comparison_operator] = STATE(2459), - [sym_lambda] = STATE(2459), - [sym_yield] = STATE(4816), - [sym_attribute] = STATE(2462), - [sym_subscript] = STATE(2462), - [sym_ellipsis] = STATE(2457), - [sym_call] = STATE(2457), - [sym_list] = STATE(2457), - [sym_set] = STATE(2457), - [sym_tuple] = STATE(2457), - [sym_dictionary] = STATE(2457), - [sym_list_comprehension] = STATE(2457), - [sym_dictionary_comprehension] = STATE(2457), - [sym_set_comprehension] = STATE(2457), - [sym_generator_expression] = STATE(2457), - [sym_parenthesized_expression] = STATE(2457), - [sym__collection_elements] = STATE(5415), - [sym_conditional_expression] = STATE(2459), - [sym_concatenated_string] = STATE(2457), - [sym_string] = STATE(2170), - [sym_none] = STATE(2457), - [sym_await] = STATE(2457), - [sym_new_expression] = STATE(2459), - [sym_sizeof_expression] = STATE(2457), - [sym_cast_expression] = STATE(2457), - [sym_identifier] = ACTIONS(2505), - [anon_sym_LPAREN] = ACTIONS(2507), - [anon_sym_RPAREN] = ACTIONS(2617), + [sym_sizeof_expression] = STATE(2414), + [sym_cast_expression] = STATE(2414), + [sym_identifier] = ACTIONS(2515), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_RPAREN] = ACTIONS(1364), [anon_sym_STAR] = ACTIONS(1320), [anon_sym_print] = ACTIONS(1322), [anon_sym_match] = ACTIONS(1322), @@ -100283,273 +100825,347 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1360), [sym_string_start] = ACTIONS(1362), }, - [775] = { - [sym_named_expression] = STATE(2421), - [sym__named_expression_lhs] = STATE(5414), - [sym_list_splat] = STATE(5086), - [sym_parenthesized_list_splat] = STATE(5086), - [sym__patterns] = STATE(5463), - [sym_pattern] = STATE(5088), - [sym_tuple_pattern] = STATE(5363), - [sym_list_pattern] = STATE(5363), - [sym_list_splat_pattern] = STATE(2422), - [sym_as_pattern] = STATE(2421), - [sym_expression] = STATE(3679), - [sym_primary_expression] = STATE(2063), - [sym_not_operator] = STATE(2421), - [sym_boolean_operator] = STATE(2421), - [sym_binary_operator] = STATE(2418), - [sym_unary_operator] = STATE(2418), - [sym_comparison_operator] = STATE(2421), - [sym_lambda] = STATE(2421), - [sym_yield] = STATE(5086), - [sym_attribute] = STATE(2423), - [sym_subscript] = STATE(2423), - [sym_ellipsis] = STATE(2418), - [sym_call] = STATE(2418), - [sym_list] = STATE(2418), - [sym_set] = STATE(2418), - [sym_tuple] = STATE(2418), - [sym_dictionary] = STATE(2418), - [sym_list_comprehension] = STATE(2418), - [sym_dictionary_comprehension] = STATE(2418), - [sym_set_comprehension] = STATE(2418), - [sym_generator_expression] = STATE(2418), - [sym_parenthesized_expression] = STATE(2418), - [sym__collection_elements] = STATE(5611), - [sym_conditional_expression] = STATE(2421), - [sym_concatenated_string] = STATE(2418), - [sym_string] = STATE(2157), - [sym_none] = STATE(2418), - [sym_await] = STATE(2418), - [sym_new_expression] = STATE(2421), - [sym_sizeof_expression] = STATE(2418), - [sym_cast_expression] = STATE(2418), - [sym_identifier] = ACTIONS(2511), - [anon_sym_LPAREN] = ACTIONS(2513), - [anon_sym_STAR] = ACTIONS(2515), - [anon_sym_print] = ACTIONS(2517), - [anon_sym_match] = ACTIONS(2517), - [anon_sym_async] = ACTIONS(2517), - [anon_sym_exec] = ACTIONS(2517), - [anon_sym_LBRACK] = ACTIONS(2519), - [anon_sym_RBRACK] = ACTIONS(2619), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2523), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2525), - [anon_sym_lambda] = ACTIONS(2527), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2531), - [anon_sym_api] = ACTIONS(2517), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2533), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), + [781] = { + [sym_named_expression] = STATE(2326), + [sym__named_expression_lhs] = STATE(5687), + [sym_list_splat] = STATE(4993), + [sym_dictionary_splat] = STATE(4843), + [sym_parenthesized_list_splat] = STATE(4993), + [sym_list_splat_pattern] = STATE(2256), + [sym_as_pattern] = STATE(2326), + [sym_expression] = STATE(3605), + [sym_primary_expression] = STATE(2061), + [sym_not_operator] = STATE(2326), + [sym_boolean_operator] = STATE(2326), + [sym_binary_operator] = STATE(2298), + [sym_unary_operator] = STATE(2298), + [sym_comparison_operator] = STATE(2326), + [sym_lambda] = STATE(2326), + [sym_yield] = STATE(4993), + [sym_attribute] = STATE(2298), + [sym_subscript] = STATE(2298), + [sym_ellipsis] = STATE(2298), + [sym_call] = STATE(2298), + [sym_list] = STATE(2298), + [sym_set] = STATE(2298), + [sym_tuple] = STATE(2298), + [sym_dictionary] = STATE(2298), + [sym_pair] = STATE(4016), + [sym_list_comprehension] = STATE(2298), + [sym_dictionary_comprehension] = STATE(2298), + [sym_set_comprehension] = STATE(2298), + [sym_generator_expression] = STATE(2298), + [sym_parenthesized_expression] = STATE(2298), + [sym__collection_elements] = STATE(5569), + [sym_conditional_expression] = STATE(2326), + [sym_concatenated_string] = STATE(2298), + [sym_string] = STATE(2099), + [sym_none] = STATE(2298), + [sym_await] = STATE(2298), + [sym_new_expression] = STATE(2326), + [sym_sizeof_expression] = STATE(2298), + [sym_cast_expression] = STATE(2298), + [sym_identifier] = ACTIONS(2521), + [anon_sym_LPAREN] = ACTIONS(2523), + [anon_sym_COMMA] = ACTIONS(2621), + [anon_sym_STAR] = ACTIONS(2527), + [anon_sym_print] = ACTIONS(2529), + [anon_sym_match] = ACTIONS(2529), + [anon_sym_async] = ACTIONS(2529), + [anon_sym_STAR_STAR] = ACTIONS(2531), + [anon_sym_exec] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2419), + [anon_sym_DASH] = ACTIONS(2421), + [anon_sym_LBRACE] = ACTIONS(2423), + [anon_sym_RBRACE] = ACTIONS(2623), + [anon_sym_PLUS] = ACTIONS(2421), + [anon_sym_not] = ACTIONS(2535), + [anon_sym_AMP] = ACTIONS(2421), + [anon_sym_TILDE] = ACTIONS(2421), + [anon_sym_LT] = ACTIONS(2537), + [anon_sym_lambda] = ACTIONS(2539), + [anon_sym_yield] = ACTIONS(2541), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2427), + [anon_sym_None] = ACTIONS(2429), + [sym_integer] = ACTIONS(2411), + [sym_float] = ACTIONS(2431), + [anon_sym_await] = ACTIONS(2543), + [anon_sym_api] = ACTIONS(2529), + [sym_true] = ACTIONS(2411), + [sym_false] = ACTIONS(2411), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2545), + [anon_sym_sizeof] = ACTIONS(2435), + [sym_string_start] = ACTIONS(2437), }, - [776] = { - [sym_named_expression] = STATE(2421), - [sym__named_expression_lhs] = STATE(5414), - [sym_list_splat] = STATE(5086), - [sym_parenthesized_list_splat] = STATE(5086), - [sym__patterns] = STATE(5471), - [sym_pattern] = STATE(5088), - [sym_tuple_pattern] = STATE(5363), - [sym_list_pattern] = STATE(5363), - [sym_list_splat_pattern] = STATE(2422), - [sym_as_pattern] = STATE(2421), - [sym_expression] = STATE(3679), - [sym_primary_expression] = STATE(2063), - [sym_not_operator] = STATE(2421), - [sym_boolean_operator] = STATE(2421), - [sym_binary_operator] = STATE(2418), - [sym_unary_operator] = STATE(2418), - [sym_comparison_operator] = STATE(2421), - [sym_lambda] = STATE(2421), - [sym_yield] = STATE(5086), - [sym_attribute] = STATE(2423), - [sym_subscript] = STATE(2423), - [sym_ellipsis] = STATE(2418), - [sym_call] = STATE(2418), - [sym_list] = STATE(2418), - [sym_set] = STATE(2418), - [sym_tuple] = STATE(2418), - [sym_dictionary] = STATE(2418), - [sym_list_comprehension] = STATE(2418), - [sym_dictionary_comprehension] = STATE(2418), - [sym_set_comprehension] = STATE(2418), - [sym_generator_expression] = STATE(2418), - [sym_parenthesized_expression] = STATE(2418), + [782] = { + [sym_named_expression] = STATE(2493), + [sym__named_expression_lhs] = STATE(5681), + [sym_list_splat] = STATE(4860), + [sym_parenthesized_list_splat] = STATE(4860), + [sym__patterns] = STATE(5555), + [sym_pattern] = STATE(4870), + [sym_tuple_pattern] = STATE(5189), + [sym_list_pattern] = STATE(5189), + [sym_list_splat_pattern] = STATE(2494), + [sym_as_pattern] = STATE(2493), + [sym_expression] = STATE(3685), + [sym_primary_expression] = STATE(2070), + [sym_not_operator] = STATE(2493), + [sym_boolean_operator] = STATE(2493), + [sym_binary_operator] = STATE(2470), + [sym_unary_operator] = STATE(2470), + [sym_comparison_operator] = STATE(2493), + [sym_lambda] = STATE(2493), + [sym_yield] = STATE(4860), + [sym_attribute] = STATE(2508), + [sym_subscript] = STATE(2508), + [sym_ellipsis] = STATE(2470), + [sym_call] = STATE(2470), + [sym_list] = STATE(2470), + [sym_set] = STATE(2470), + [sym_tuple] = STATE(2470), + [sym_dictionary] = STATE(2470), + [sym_list_comprehension] = STATE(2470), + [sym_dictionary_comprehension] = STATE(2470), + [sym_set_comprehension] = STATE(2470), + [sym_generator_expression] = STATE(2470), + [sym_parenthesized_expression] = STATE(2470), + [sym__collection_elements] = STATE(5577), + [sym_conditional_expression] = STATE(2493), + [sym_concatenated_string] = STATE(2470), + [sym_string] = STATE(2177), + [sym_none] = STATE(2470), + [sym_await] = STATE(2470), + [sym_new_expression] = STATE(2493), + [sym_sizeof_expression] = STATE(2470), + [sym_cast_expression] = STATE(2470), + [sym_identifier] = ACTIONS(2549), + [anon_sym_LPAREN] = 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_RBRACK] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2499), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_not] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_TILDE] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2563), + [anon_sym_lambda] = ACTIONS(2565), + [anon_sym_yield] = ACTIONS(2567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2503), + [anon_sym_None] = ACTIONS(2505), + [sym_integer] = ACTIONS(2487), + [sym_float] = ACTIONS(2507), + [anon_sym_await] = ACTIONS(2569), + [anon_sym_api] = ACTIONS(2555), + [sym_true] = ACTIONS(2487), + [sym_false] = ACTIONS(2487), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2571), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_string_start] = ACTIONS(2513), + }, + [783] = { + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_expression_list] = STATE(5266), + [sym_pattern] = STATE(3255), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(1899), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3909), + [sym_primary_expression] = STATE(2067), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_assignment] = STATE(5266), + [sym_augmented_assignment] = STATE(5266), + [sym_pattern_list] = STATE(3256), + [sym__right_hand_side] = STATE(5266), + [sym_yield] = STATE(5266), + [sym_attribute] = STATE(1896), + [sym_subscript] = STATE(1896), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [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(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym_string_start] = ACTIONS(107), + }, + [784] = { + [sym_named_expression] = STATE(2326), + [sym__named_expression_lhs] = STATE(5687), + [sym_list_splat] = STATE(4993), + [sym_dictionary_splat] = STATE(4906), + [sym_parenthesized_list_splat] = STATE(4993), + [sym_list_splat_pattern] = STATE(2256), + [sym_as_pattern] = STATE(2326), + [sym_expression] = STATE(3615), + [sym_primary_expression] = STATE(2061), + [sym_not_operator] = STATE(2326), + [sym_boolean_operator] = STATE(2326), + [sym_binary_operator] = STATE(2298), + [sym_unary_operator] = STATE(2298), + [sym_comparison_operator] = STATE(2326), + [sym_lambda] = STATE(2326), + [sym_yield] = STATE(4993), + [sym_attribute] = STATE(2298), + [sym_subscript] = STATE(2298), + [sym_ellipsis] = STATE(2298), + [sym_call] = STATE(2298), + [sym_list] = STATE(2298), + [sym_set] = STATE(2298), + [sym_tuple] = STATE(2298), + [sym_dictionary] = STATE(2298), + [sym_pair] = STATE(4079), + [sym_list_comprehension] = STATE(2298), + [sym_dictionary_comprehension] = STATE(2298), + [sym_set_comprehension] = STATE(2298), + [sym_generator_expression] = STATE(2298), + [sym_parenthesized_expression] = STATE(2298), [sym__collection_elements] = STATE(5611), - [sym_conditional_expression] = STATE(2421), - [sym_concatenated_string] = STATE(2418), - [sym_string] = STATE(2157), - [sym_none] = STATE(2418), - [sym_await] = STATE(2418), - [sym_new_expression] = STATE(2421), - [sym_sizeof_expression] = STATE(2418), - [sym_cast_expression] = STATE(2418), - [sym_identifier] = ACTIONS(2511), - [anon_sym_LPAREN] = ACTIONS(2513), - [anon_sym_STAR] = ACTIONS(2515), - [anon_sym_print] = ACTIONS(2517), - [anon_sym_match] = ACTIONS(2517), - [anon_sym_async] = ACTIONS(2517), - [anon_sym_exec] = ACTIONS(2517), - [anon_sym_LBRACK] = ACTIONS(2519), - [anon_sym_RBRACK] = ACTIONS(2621), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2523), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2525), - [anon_sym_lambda] = ACTIONS(2527), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2531), - [anon_sym_api] = ACTIONS(2517), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2533), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), + [sym_conditional_expression] = STATE(2326), + [sym_concatenated_string] = STATE(2298), + [sym_string] = STATE(2099), + [sym_none] = STATE(2298), + [sym_await] = STATE(2298), + [sym_new_expression] = STATE(2326), + [sym_sizeof_expression] = STATE(2298), + [sym_cast_expression] = STATE(2298), + [sym_identifier] = ACTIONS(2521), + [anon_sym_LPAREN] = ACTIONS(2523), + [anon_sym_COMMA] = ACTIONS(2627), + [anon_sym_STAR] = ACTIONS(2527), + [anon_sym_print] = ACTIONS(2529), + [anon_sym_match] = ACTIONS(2529), + [anon_sym_async] = ACTIONS(2529), + [anon_sym_STAR_STAR] = ACTIONS(2531), + [anon_sym_exec] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2419), + [anon_sym_DASH] = ACTIONS(2421), + [anon_sym_LBRACE] = ACTIONS(2423), + [anon_sym_RBRACE] = ACTIONS(2629), + [anon_sym_PLUS] = ACTIONS(2421), + [anon_sym_not] = ACTIONS(2535), + [anon_sym_AMP] = ACTIONS(2421), + [anon_sym_TILDE] = ACTIONS(2421), + [anon_sym_LT] = ACTIONS(2537), + [anon_sym_lambda] = ACTIONS(2539), + [anon_sym_yield] = ACTIONS(2541), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2427), + [anon_sym_None] = ACTIONS(2429), + [sym_integer] = ACTIONS(2411), + [sym_float] = ACTIONS(2431), + [anon_sym_await] = ACTIONS(2543), + [anon_sym_api] = ACTIONS(2529), + [sym_true] = ACTIONS(2411), + [sym_false] = ACTIONS(2411), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2545), + [anon_sym_sizeof] = ACTIONS(2435), + [sym_string_start] = ACTIONS(2437), }, - [777] = { + [785] = { [sym_named_expression] = STATE(2421), - [sym__named_expression_lhs] = STATE(5414), - [sym_list_splat] = STATE(5086), - [sym_parenthesized_list_splat] = STATE(5086), - [sym__patterns] = STATE(5393), - [sym_pattern] = STATE(5088), - [sym_tuple_pattern] = STATE(5363), - [sym_list_pattern] = STATE(5363), + [sym__named_expression_lhs] = STATE(5522), + [sym_list_splat] = STATE(4708), + [sym_parenthesized_list_splat] = STATE(4708), + [sym__patterns] = STATE(5587), + [sym_pattern] = STATE(4748), + [sym_tuple_pattern] = STATE(5264), + [sym_list_pattern] = STATE(5264), [sym_list_splat_pattern] = STATE(2422), [sym_as_pattern] = STATE(2421), - [sym_expression] = STATE(3659), - [sym_primary_expression] = STATE(2063), + [sym_expression] = STATE(3709), + [sym_primary_expression] = STATE(2066), [sym_not_operator] = STATE(2421), [sym_boolean_operator] = STATE(2421), - [sym_binary_operator] = STATE(2418), - [sym_unary_operator] = STATE(2418), + [sym_binary_operator] = STATE(2414), + [sym_unary_operator] = STATE(2414), [sym_comparison_operator] = STATE(2421), [sym_lambda] = STATE(2421), - [sym_yield] = STATE(5086), - [sym_attribute] = STATE(2423), - [sym_subscript] = STATE(2423), - [sym_ellipsis] = STATE(2418), - [sym_call] = STATE(2418), - [sym_list] = STATE(2418), - [sym_set] = STATE(2418), - [sym_tuple] = STATE(2418), - [sym_dictionary] = STATE(2418), - [sym_list_comprehension] = STATE(2418), - [sym_dictionary_comprehension] = STATE(2418), - [sym_set_comprehension] = STATE(2418), - [sym_generator_expression] = STATE(2418), - [sym_parenthesized_expression] = STATE(2418), - [sym__collection_elements] = STATE(5481), + [sym_yield] = STATE(5116), + [sym_attribute] = STATE(2425), + [sym_subscript] = STATE(2425), + [sym_ellipsis] = STATE(2414), + [sym_call] = STATE(2414), + [sym_list] = STATE(2414), + [sym_set] = STATE(2414), + [sym_tuple] = STATE(2414), + [sym_dictionary] = STATE(2414), + [sym_list_comprehension] = STATE(2414), + [sym_dictionary_comprehension] = STATE(2414), + [sym_set_comprehension] = STATE(2414), + [sym_generator_expression] = STATE(2414), + [sym_parenthesized_expression] = STATE(2414), + [sym__collection_elements] = STATE(5598), [sym_conditional_expression] = STATE(2421), - [sym_concatenated_string] = STATE(2418), - [sym_string] = STATE(2157), - [sym_none] = STATE(2418), - [sym_await] = STATE(2418), + [sym_concatenated_string] = STATE(2414), + [sym_string] = STATE(2147), + [sym_none] = STATE(2414), + [sym_await] = STATE(2414), [sym_new_expression] = STATE(2421), - [sym_sizeof_expression] = STATE(2418), - [sym_cast_expression] = STATE(2418), - [sym_identifier] = ACTIONS(2511), - [anon_sym_LPAREN] = ACTIONS(2513), - [anon_sym_STAR] = ACTIONS(2515), - [anon_sym_print] = ACTIONS(2517), - [anon_sym_match] = ACTIONS(2517), - [anon_sym_async] = ACTIONS(2517), - [anon_sym_exec] = ACTIONS(2517), - [anon_sym_LBRACK] = ACTIONS(2519), - [anon_sym_RBRACK] = ACTIONS(2623), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2523), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2525), - [anon_sym_lambda] = ACTIONS(2527), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2531), - [anon_sym_api] = ACTIONS(2517), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2533), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), - }, - [778] = { - [sym_named_expression] = STATE(2459), - [sym__named_expression_lhs] = STATE(5688), - [sym_list_splat] = STATE(4756), - [sym_parenthesized_list_splat] = STATE(4756), - [sym__patterns] = STATE(5694), - [sym_pattern] = STATE(5006), - [sym_tuple_pattern] = STATE(5295), - [sym_list_pattern] = STATE(5295), - [sym_list_splat_pattern] = STATE(2460), - [sym_as_pattern] = STATE(2459), - [sym_expression] = STATE(3667), - [sym_primary_expression] = STATE(2060), - [sym_not_operator] = STATE(2459), - [sym_boolean_operator] = STATE(2459), - [sym_binary_operator] = STATE(2457), - [sym_unary_operator] = STATE(2457), - [sym_comparison_operator] = STATE(2459), - [sym_lambda] = STATE(2459), - [sym_yield] = STATE(4647), - [sym_attribute] = STATE(2462), - [sym_subscript] = STATE(2462), - [sym_ellipsis] = STATE(2457), - [sym_call] = STATE(2457), - [sym_list] = STATE(2457), - [sym_set] = STATE(2457), - [sym_tuple] = STATE(2457), - [sym_dictionary] = STATE(2457), - [sym_list_comprehension] = STATE(2457), - [sym_dictionary_comprehension] = STATE(2457), - [sym_set_comprehension] = STATE(2457), - [sym_generator_expression] = STATE(2457), - [sym_parenthesized_expression] = STATE(2457), - [sym__collection_elements] = STATE(5455), - [sym_conditional_expression] = STATE(2459), - [sym_concatenated_string] = STATE(2457), - [sym_string] = STATE(2170), - [sym_none] = STATE(2457), - [sym_await] = STATE(2457), - [sym_new_expression] = STATE(2459), - [sym_sizeof_expression] = STATE(2457), - [sym_cast_expression] = STATE(2457), - [sym_identifier] = ACTIONS(2505), - [anon_sym_LPAREN] = ACTIONS(2507), - [anon_sym_RPAREN] = ACTIONS(2625), + [sym_sizeof_expression] = STATE(2414), + [sym_cast_expression] = STATE(2414), + [sym_identifier] = ACTIONS(2515), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_RPAREN] = ACTIONS(2631), [anon_sym_STAR] = ACTIONS(1320), [anon_sym_print] = ACTIONS(1322), [anon_sym_match] = ACTIONS(1322), @@ -100579,920 +101195,1210 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1360), [sym_string_start] = ACTIONS(1362), }, - [779] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5609), - [sym_list_splat_pattern] = STATE(2591), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(3850), - [sym_primary_expression] = STATE(2077), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2631), - [sym_unary_operator] = STATE(2631), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2631), - [sym_subscript] = STATE(2631), - [sym_ellipsis] = STATE(2631), - [sym_call] = STATE(2631), - [sym_type] = STATE(4294), - [sym_splat_type] = STATE(4364), - [sym_generic_type] = STATE(4364), - [sym_union_type] = STATE(4364), - [sym_constrained_type] = STATE(4364), - [sym_member_type] = STATE(4364), - [sym_list] = STATE(2631), - [sym_set] = STATE(2631), - [sym_tuple] = STATE(2631), - [sym_dictionary] = STATE(2631), - [sym_list_comprehension] = STATE(2631), - [sym_dictionary_comprehension] = STATE(2631), - [sym_set_comprehension] = STATE(2631), - [sym_generator_expression] = STATE(2631), - [sym_parenthesized_expression] = STATE(2631), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2631), - [sym_string] = STATE(2218), - [sym_none] = STATE(2631), - [sym_await] = STATE(2631), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2631), - [sym_cast_expression] = STATE(2631), - [sym_identifier] = ACTIONS(2627), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(2629), - [anon_sym_print] = ACTIONS(2631), - [anon_sym_match] = ACTIONS(2631), - [anon_sym_async] = ACTIONS(2631), - [anon_sym_STAR_STAR] = ACTIONS(2633), - [anon_sym_exec] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2457), + [786] = { + [sym_named_expression] = STATE(2493), + [sym__named_expression_lhs] = STATE(5681), + [sym_list_splat] = STATE(4860), + [sym_parenthesized_list_splat] = STATE(4860), + [sym__patterns] = STATE(5557), + [sym_pattern] = STATE(4870), + [sym_tuple_pattern] = STATE(5189), + [sym_list_pattern] = STATE(5189), + [sym_list_splat_pattern] = STATE(2494), + [sym_as_pattern] = STATE(2493), + [sym_expression] = STATE(3686), + [sym_primary_expression] = STATE(2070), + [sym_not_operator] = STATE(2493), + [sym_boolean_operator] = STATE(2493), + [sym_binary_operator] = STATE(2470), + [sym_unary_operator] = STATE(2470), + [sym_comparison_operator] = STATE(2493), + [sym_lambda] = STATE(2493), + [sym_yield] = STATE(4860), + [sym_attribute] = STATE(2508), + [sym_subscript] = STATE(2508), + [sym_ellipsis] = STATE(2470), + [sym_call] = STATE(2470), + [sym_list] = STATE(2470), + [sym_set] = STATE(2470), + [sym_tuple] = STATE(2470), + [sym_dictionary] = STATE(2470), + [sym_list_comprehension] = STATE(2470), + [sym_dictionary_comprehension] = STATE(2470), + [sym_set_comprehension] = STATE(2470), + [sym_generator_expression] = STATE(2470), + [sym_parenthesized_expression] = STATE(2470), + [sym__collection_elements] = STATE(5623), + [sym_conditional_expression] = STATE(2493), + [sym_concatenated_string] = STATE(2470), + [sym_string] = STATE(2177), + [sym_none] = STATE(2470), + [sym_await] = STATE(2470), + [sym_new_expression] = STATE(2493), + [sym_sizeof_expression] = STATE(2470), + [sym_cast_expression] = STATE(2470), + [sym_identifier] = ACTIONS(2549), + [anon_sym_LPAREN] = 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_RBRACK] = ACTIONS(2633), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2499), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_not] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_TILDE] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2563), + [anon_sym_lambda] = ACTIONS(2565), + [anon_sym_yield] = ACTIONS(2567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2503), + [anon_sym_None] = ACTIONS(2505), + [sym_integer] = ACTIONS(2487), + [sym_float] = ACTIONS(2507), + [anon_sym_await] = ACTIONS(2569), + [anon_sym_api] = ACTIONS(2555), + [sym_true] = ACTIONS(2487), + [sym_false] = ACTIONS(2487), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2571), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_string_start] = ACTIONS(2513), + }, + [787] = { + [sym_named_expression] = STATE(2493), + [sym__named_expression_lhs] = STATE(5681), + [sym_list_splat] = STATE(4860), + [sym_parenthesized_list_splat] = STATE(4860), + [sym__patterns] = STATE(5557), + [sym_pattern] = STATE(4870), + [sym_tuple_pattern] = STATE(5189), + [sym_list_pattern] = STATE(5189), + [sym_list_splat_pattern] = STATE(2494), + [sym_as_pattern] = STATE(2493), + [sym_expression] = STATE(3686), + [sym_primary_expression] = STATE(2070), + [sym_not_operator] = STATE(2493), + [sym_boolean_operator] = STATE(2493), + [sym_binary_operator] = STATE(2470), + [sym_unary_operator] = STATE(2470), + [sym_comparison_operator] = STATE(2493), + [sym_lambda] = STATE(2493), + [sym_yield] = STATE(4860), + [sym_attribute] = STATE(2508), + [sym_subscript] = STATE(2508), + [sym_ellipsis] = STATE(2470), + [sym_call] = STATE(2470), + [sym_list] = STATE(2470), + [sym_set] = STATE(2470), + [sym_tuple] = STATE(2470), + [sym_dictionary] = STATE(2470), + [sym_list_comprehension] = STATE(2470), + [sym_dictionary_comprehension] = STATE(2470), + [sym_set_comprehension] = STATE(2470), + [sym_generator_expression] = STATE(2470), + [sym_parenthesized_expression] = STATE(2470), + [sym__collection_elements] = STATE(5623), + [sym_conditional_expression] = STATE(2493), + [sym_concatenated_string] = STATE(2470), + [sym_string] = STATE(2177), + [sym_none] = STATE(2470), + [sym_await] = STATE(2470), + [sym_new_expression] = STATE(2493), + [sym_sizeof_expression] = STATE(2470), + [sym_cast_expression] = STATE(2470), + [sym_identifier] = ACTIONS(2549), + [anon_sym_LPAREN] = 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_RBRACK] = ACTIONS(2635), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2639), - [anon_sym_lambda] = ACTIONS(2641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2643), - [anon_sym_api] = ACTIONS(2631), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2645), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2499), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_not] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_TILDE] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2563), + [anon_sym_lambda] = ACTIONS(2565), + [anon_sym_yield] = ACTIONS(2567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2503), + [anon_sym_None] = ACTIONS(2505), + [sym_integer] = ACTIONS(2487), + [sym_float] = ACTIONS(2507), + [anon_sym_await] = ACTIONS(2569), + [anon_sym_api] = ACTIONS(2555), + [sym_true] = ACTIONS(2487), + [sym_false] = ACTIONS(2487), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2571), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_string_start] = ACTIONS(2513), }, - [780] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5609), - [sym_list_splat_pattern] = STATE(2591), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(3850), - [sym_primary_expression] = STATE(2077), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2631), - [sym_unary_operator] = STATE(2631), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2631), - [sym_subscript] = STATE(2631), - [sym_ellipsis] = STATE(2631), - [sym_call] = STATE(2631), - [sym_type] = STATE(4294), - [sym_splat_type] = STATE(4364), - [sym_generic_type] = STATE(4364), - [sym_union_type] = STATE(4364), - [sym_constrained_type] = STATE(4364), - [sym_member_type] = STATE(4364), - [sym_list] = STATE(2631), - [sym_set] = STATE(2631), - [sym_tuple] = STATE(2631), - [sym_dictionary] = STATE(2631), - [sym_list_comprehension] = STATE(2631), - [sym_dictionary_comprehension] = STATE(2631), - [sym_set_comprehension] = STATE(2631), - [sym_generator_expression] = STATE(2631), - [sym_parenthesized_expression] = STATE(2631), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2631), - [sym_string] = STATE(2218), - [sym_none] = STATE(2631), - [sym_await] = STATE(2631), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2631), - [sym_cast_expression] = STATE(2631), - [sym_identifier] = ACTIONS(2627), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(2629), - [anon_sym_print] = ACTIONS(2631), - [anon_sym_match] = ACTIONS(2631), - [anon_sym_async] = ACTIONS(2631), - [anon_sym_STAR_STAR] = ACTIONS(2633), - [anon_sym_exec] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_RBRACK] = ACTIONS(2647), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2639), - [anon_sym_lambda] = ACTIONS(2641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2643), - [anon_sym_api] = ACTIONS(2631), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2645), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), + [788] = { + [sym_named_expression] = STATE(2631), + [sym__named_expression_lhs] = STATE(5572), + [sym_list_splat_pattern] = STATE(2589), + [sym_as_pattern] = STATE(2631), + [sym_expression] = STATE(3826), + [sym_primary_expression] = STATE(2107), + [sym_not_operator] = STATE(2631), + [sym_boolean_operator] = STATE(2631), + [sym_binary_operator] = STATE(2630), + [sym_unary_operator] = STATE(2630), + [sym_comparison_operator] = STATE(2631), + [sym_lambda] = STATE(2631), + [sym_attribute] = STATE(2630), + [sym_subscript] = STATE(2630), + [sym_ellipsis] = STATE(2630), + [sym_call] = STATE(2630), + [sym_type] = STATE(4367), + [sym_splat_type] = STATE(4292), + [sym_generic_type] = STATE(4292), + [sym_union_type] = STATE(4292), + [sym_constrained_type] = STATE(4292), + [sym_member_type] = STATE(4292), + [sym_list] = STATE(2630), + [sym_set] = STATE(2630), + [sym_tuple] = STATE(2630), + [sym_dictionary] = STATE(2630), + [sym_list_comprehension] = STATE(2630), + [sym_dictionary_comprehension] = STATE(2630), + [sym_set_comprehension] = STATE(2630), + [sym_generator_expression] = STATE(2630), + [sym_parenthesized_expression] = STATE(2630), + [sym_conditional_expression] = STATE(2631), + [sym_concatenated_string] = STATE(2630), + [sym_string] = STATE(2200), + [sym_none] = STATE(2630), + [sym_await] = STATE(2630), + [sym_new_expression] = STATE(2631), + [sym_sizeof_expression] = STATE(2630), + [sym_cast_expression] = STATE(2630), + [sym_identifier] = ACTIONS(2637), + [anon_sym_LPAREN] = ACTIONS(2461), + [anon_sym_STAR] = ACTIONS(2639), + [anon_sym_print] = ACTIONS(2641), + [anon_sym_match] = ACTIONS(2641), + [anon_sym_async] = ACTIONS(2641), + [anon_sym_STAR_STAR] = ACTIONS(2643), + [anon_sym_exec] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2467), + [anon_sym_RBRACK] = ACTIONS(2645), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_not] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2469), + [anon_sym_TILDE] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_lambda] = ACTIONS(2651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2475), + [anon_sym_None] = ACTIONS(2477), + [sym_integer] = ACTIONS(2459), + [sym_float] = ACTIONS(2479), + [anon_sym_await] = ACTIONS(2653), + [anon_sym_api] = ACTIONS(2641), + [sym_true] = ACTIONS(2459), + [sym_false] = ACTIONS(2459), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2655), + [anon_sym_sizeof] = ACTIONS(2483), + [sym_string_start] = ACTIONS(2485), }, - [781] = { - [sym_named_expression] = STATE(3846), - [sym__named_expression_lhs] = STATE(5557), - [sym_expression_list] = STATE(4309), - [sym_pattern] = STATE(5371), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(2237), - [sym_as_pattern] = STATE(3846), - [sym_expression] = STATE(3717), - [sym_primary_expression] = STATE(2046), - [sym_not_operator] = STATE(3846), - [sym_boolean_operator] = STATE(3846), - [sym_binary_operator] = STATE(2255), - [sym_unary_operator] = STATE(2255), - [sym_comparison_operator] = STATE(3846), - [sym_lambda] = STATE(3846), - [sym_pattern_list] = STATE(4309), - [sym_yield] = STATE(4309), - [sym_attribute] = STATE(2240), - [sym_subscript] = STATE(2240), - [sym_ellipsis] = STATE(2255), - [sym_call] = STATE(2255), - [sym_list] = STATE(2255), - [sym_set] = STATE(2255), - [sym_tuple] = STATE(2255), - [sym_dictionary] = STATE(2255), - [sym_list_comprehension] = STATE(2255), - [sym_dictionary_comprehension] = STATE(2255), - [sym_set_comprehension] = STATE(2255), - [sym_generator_expression] = STATE(2255), - [sym_parenthesized_expression] = STATE(2255), - [sym_conditional_expression] = STATE(3846), - [sym_concatenated_string] = STATE(2255), - [sym_string] = STATE(2073), - [sym__f_expression] = STATE(4309), - [sym_none] = STATE(2255), - [sym_await] = STATE(2255), - [sym_new_expression] = STATE(3846), - [sym_sizeof_expression] = STATE(2255), - [sym_cast_expression] = STATE(2255), - [sym_identifier] = ACTIONS(2649), - [anon_sym_LPAREN] = ACTIONS(2651), - [anon_sym_STAR] = ACTIONS(2653), - [anon_sym_print] = ACTIONS(2655), - [anon_sym_match] = ACTIONS(2655), - [anon_sym_async] = ACTIONS(2655), - [anon_sym_exec] = ACTIONS(2655), - [anon_sym_LBRACK] = ACTIONS(2657), - [anon_sym_DASH] = ACTIONS(1915), - [anon_sym_LBRACE] = ACTIONS(1917), - [anon_sym_PLUS] = ACTIONS(1915), - [anon_sym_not] = ACTIONS(2659), - [anon_sym_AMP] = ACTIONS(1915), - [anon_sym_TILDE] = ACTIONS(1915), - [anon_sym_LT] = ACTIONS(2661), - [anon_sym_lambda] = ACTIONS(2663), - [anon_sym_yield] = ACTIONS(2665), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1921), - [anon_sym_None] = ACTIONS(1923), - [sym_integer] = ACTIONS(1905), - [sym_float] = ACTIONS(1925), - [anon_sym_await] = ACTIONS(2667), - [anon_sym_api] = ACTIONS(2655), - [sym_true] = ACTIONS(1905), - [sym_false] = ACTIONS(1905), + [789] = { + [sym_named_expression] = STATE(3825), + [sym__named_expression_lhs] = STATE(5410), + [sym_expression_list] = STATE(4296), + [sym_pattern] = STATE(5164), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(2327), + [sym_as_pattern] = STATE(3825), + [sym_expression] = STATE(3732), + [sym_primary_expression] = STATE(2057), + [sym_not_operator] = STATE(3825), + [sym_boolean_operator] = STATE(3825), + [sym_binary_operator] = STATE(2257), + [sym_unary_operator] = STATE(2257), + [sym_comparison_operator] = STATE(3825), + [sym_lambda] = STATE(3825), + [sym_pattern_list] = STATE(4296), + [sym_yield] = STATE(4296), + [sym_attribute] = STATE(2259), + [sym_subscript] = STATE(2259), + [sym_ellipsis] = STATE(2257), + [sym_call] = STATE(2257), + [sym_list] = STATE(2257), + [sym_set] = STATE(2257), + [sym_tuple] = STATE(2257), + [sym_dictionary] = STATE(2257), + [sym_list_comprehension] = STATE(2257), + [sym_dictionary_comprehension] = STATE(2257), + [sym_set_comprehension] = STATE(2257), + [sym_generator_expression] = STATE(2257), + [sym_parenthesized_expression] = STATE(2257), + [sym_conditional_expression] = STATE(3825), + [sym_concatenated_string] = STATE(2257), + [sym_string] = STATE(2089), + [sym__f_expression] = STATE(4296), + [sym_none] = STATE(2257), + [sym_await] = STATE(2257), + [sym_new_expression] = STATE(3825), + [sym_sizeof_expression] = STATE(2257), + [sym_cast_expression] = STATE(2257), + [sym_identifier] = ACTIONS(2657), + [anon_sym_LPAREN] = ACTIONS(2659), + [anon_sym_STAR] = ACTIONS(2661), + [anon_sym_print] = ACTIONS(2663), + [anon_sym_match] = ACTIONS(2663), + [anon_sym_async] = ACTIONS(2663), + [anon_sym_exec] = ACTIONS(2663), + [anon_sym_LBRACK] = ACTIONS(2665), + [anon_sym_DASH] = ACTIONS(1951), + [anon_sym_LBRACE] = ACTIONS(1953), + [anon_sym_PLUS] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(2667), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_LT] = ACTIONS(2669), + [anon_sym_lambda] = ACTIONS(2671), + [anon_sym_yield] = ACTIONS(2673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1957), + [anon_sym_None] = ACTIONS(1959), + [sym_integer] = ACTIONS(1941), + [sym_float] = ACTIONS(1961), + [anon_sym_await] = ACTIONS(2675), + [anon_sym_api] = ACTIONS(2663), + [sym_true] = ACTIONS(1941), + [sym_false] = ACTIONS(1941), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2669), - [anon_sym_sizeof] = ACTIONS(1929), - [sym_string_start] = ACTIONS(1931), + [anon_sym_new] = ACTIONS(2677), + [anon_sym_sizeof] = ACTIONS(1965), + [sym_string_start] = ACTIONS(1967), }, - [782] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5609), - [sym_list_splat_pattern] = STATE(2591), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(3850), - [sym_primary_expression] = STATE(2077), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2631), - [sym_unary_operator] = STATE(2631), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2631), - [sym_subscript] = STATE(2631), - [sym_ellipsis] = STATE(2631), - [sym_call] = STATE(2631), - [sym_type] = STATE(4294), - [sym_splat_type] = STATE(4364), - [sym_generic_type] = STATE(4364), - [sym_union_type] = STATE(4364), - [sym_constrained_type] = STATE(4364), - [sym_member_type] = STATE(4364), - [sym_list] = STATE(2631), - [sym_set] = STATE(2631), - [sym_tuple] = STATE(2631), - [sym_dictionary] = STATE(2631), - [sym_list_comprehension] = STATE(2631), - [sym_dictionary_comprehension] = STATE(2631), - [sym_set_comprehension] = STATE(2631), - [sym_generator_expression] = STATE(2631), - [sym_parenthesized_expression] = STATE(2631), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2631), - [sym_string] = STATE(2218), - [sym_none] = STATE(2631), - [sym_await] = STATE(2631), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2631), - [sym_cast_expression] = STATE(2631), - [sym_identifier] = ACTIONS(2627), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(2629), - [anon_sym_print] = ACTIONS(2631), - [anon_sym_match] = ACTIONS(2631), - [anon_sym_async] = ACTIONS(2631), - [anon_sym_STAR_STAR] = ACTIONS(2633), - [anon_sym_exec] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_RBRACK] = ACTIONS(2671), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2639), - [anon_sym_lambda] = ACTIONS(2641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2643), - [anon_sym_api] = ACTIONS(2631), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2645), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), + [790] = { + [sym_named_expression] = STATE(2631), + [sym__named_expression_lhs] = STATE(5572), + [sym_list_splat_pattern] = STATE(2589), + [sym_as_pattern] = STATE(2631), + [sym_expression] = STATE(3826), + [sym_primary_expression] = STATE(2107), + [sym_not_operator] = STATE(2631), + [sym_boolean_operator] = STATE(2631), + [sym_binary_operator] = STATE(2630), + [sym_unary_operator] = STATE(2630), + [sym_comparison_operator] = STATE(2631), + [sym_lambda] = STATE(2631), + [sym_attribute] = STATE(2630), + [sym_subscript] = STATE(2630), + [sym_ellipsis] = STATE(2630), + [sym_call] = STATE(2630), + [sym_type] = STATE(4367), + [sym_splat_type] = STATE(4292), + [sym_generic_type] = STATE(4292), + [sym_union_type] = STATE(4292), + [sym_constrained_type] = STATE(4292), + [sym_member_type] = STATE(4292), + [sym_list] = STATE(2630), + [sym_set] = STATE(2630), + [sym_tuple] = STATE(2630), + [sym_dictionary] = STATE(2630), + [sym_list_comprehension] = STATE(2630), + [sym_dictionary_comprehension] = STATE(2630), + [sym_set_comprehension] = STATE(2630), + [sym_generator_expression] = STATE(2630), + [sym_parenthesized_expression] = STATE(2630), + [sym_conditional_expression] = STATE(2631), + [sym_concatenated_string] = STATE(2630), + [sym_string] = STATE(2200), + [sym_none] = STATE(2630), + [sym_await] = STATE(2630), + [sym_new_expression] = STATE(2631), + [sym_sizeof_expression] = STATE(2630), + [sym_cast_expression] = STATE(2630), + [sym_identifier] = ACTIONS(2637), + [anon_sym_LPAREN] = ACTIONS(2461), + [anon_sym_STAR] = ACTIONS(2639), + [anon_sym_print] = ACTIONS(2641), + [anon_sym_match] = ACTIONS(2641), + [anon_sym_async] = ACTIONS(2641), + [anon_sym_STAR_STAR] = ACTIONS(2643), + [anon_sym_exec] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2467), + [anon_sym_RBRACK] = ACTIONS(2679), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_not] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2469), + [anon_sym_TILDE] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_lambda] = ACTIONS(2651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2475), + [anon_sym_None] = ACTIONS(2477), + [sym_integer] = ACTIONS(2459), + [sym_float] = ACTIONS(2479), + [anon_sym_await] = ACTIONS(2653), + [anon_sym_api] = ACTIONS(2641), + [sym_true] = ACTIONS(2459), + [sym_false] = ACTIONS(2459), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2655), + [anon_sym_sizeof] = ACTIONS(2483), + [sym_string_start] = ACTIONS(2485), }, - [783] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5609), - [sym_list_splat_pattern] = STATE(2591), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(3850), - [sym_primary_expression] = STATE(2077), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2631), - [sym_unary_operator] = STATE(2631), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2631), - [sym_subscript] = STATE(2631), - [sym_ellipsis] = STATE(2631), - [sym_call] = STATE(2631), - [sym_type] = STATE(4294), - [sym_splat_type] = STATE(4364), - [sym_generic_type] = STATE(4364), - [sym_union_type] = STATE(4364), - [sym_constrained_type] = STATE(4364), - [sym_member_type] = STATE(4364), - [sym_list] = STATE(2631), - [sym_set] = STATE(2631), - [sym_tuple] = STATE(2631), - [sym_dictionary] = STATE(2631), - [sym_list_comprehension] = STATE(2631), - [sym_dictionary_comprehension] = STATE(2631), - [sym_set_comprehension] = STATE(2631), - [sym_generator_expression] = STATE(2631), - [sym_parenthesized_expression] = STATE(2631), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2631), - [sym_string] = STATE(2218), - [sym_none] = STATE(2631), - [sym_await] = STATE(2631), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2631), - [sym_cast_expression] = STATE(2631), - [sym_identifier] = ACTIONS(2627), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(2629), - [anon_sym_print] = ACTIONS(2631), - [anon_sym_match] = ACTIONS(2631), - [anon_sym_async] = ACTIONS(2631), - [anon_sym_STAR_STAR] = ACTIONS(2633), - [anon_sym_exec] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_RBRACK] = ACTIONS(2673), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2639), - [anon_sym_lambda] = ACTIONS(2641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2643), - [anon_sym_api] = ACTIONS(2631), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2645), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), + [791] = { + [sym_named_expression] = STATE(2631), + [sym__named_expression_lhs] = STATE(5572), + [sym_list_splat_pattern] = STATE(2589), + [sym_as_pattern] = STATE(2631), + [sym_expression] = STATE(3826), + [sym_primary_expression] = STATE(2107), + [sym_not_operator] = STATE(2631), + [sym_boolean_operator] = STATE(2631), + [sym_binary_operator] = STATE(2630), + [sym_unary_operator] = STATE(2630), + [sym_comparison_operator] = STATE(2631), + [sym_lambda] = STATE(2631), + [sym_attribute] = STATE(2630), + [sym_subscript] = STATE(2630), + [sym_ellipsis] = STATE(2630), + [sym_call] = STATE(2630), + [sym_type] = STATE(4367), + [sym_splat_type] = STATE(4292), + [sym_generic_type] = STATE(4292), + [sym_union_type] = STATE(4292), + [sym_constrained_type] = STATE(4292), + [sym_member_type] = STATE(4292), + [sym_list] = STATE(2630), + [sym_set] = STATE(2630), + [sym_tuple] = STATE(2630), + [sym_dictionary] = STATE(2630), + [sym_list_comprehension] = STATE(2630), + [sym_dictionary_comprehension] = STATE(2630), + [sym_set_comprehension] = STATE(2630), + [sym_generator_expression] = STATE(2630), + [sym_parenthesized_expression] = STATE(2630), + [sym_conditional_expression] = STATE(2631), + [sym_concatenated_string] = STATE(2630), + [sym_string] = STATE(2200), + [sym_none] = STATE(2630), + [sym_await] = STATE(2630), + [sym_new_expression] = STATE(2631), + [sym_sizeof_expression] = STATE(2630), + [sym_cast_expression] = STATE(2630), + [sym_identifier] = ACTIONS(2637), + [anon_sym_LPAREN] = ACTIONS(2461), + [anon_sym_STAR] = ACTIONS(2639), + [anon_sym_print] = ACTIONS(2641), + [anon_sym_match] = ACTIONS(2641), + [anon_sym_async] = ACTIONS(2641), + [anon_sym_STAR_STAR] = ACTIONS(2643), + [anon_sym_exec] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2467), + [anon_sym_RBRACK] = ACTIONS(2681), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_not] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2469), + [anon_sym_TILDE] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_lambda] = ACTIONS(2651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2475), + [anon_sym_None] = ACTIONS(2477), + [sym_integer] = ACTIONS(2459), + [sym_float] = ACTIONS(2479), + [anon_sym_await] = ACTIONS(2653), + [anon_sym_api] = ACTIONS(2641), + [sym_true] = ACTIONS(2459), + [sym_false] = ACTIONS(2459), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2655), + [anon_sym_sizeof] = ACTIONS(2483), + [sym_string_start] = ACTIONS(2485), }, - [784] = { - [sym_named_expression] = STATE(3846), - [sym__named_expression_lhs] = STATE(5557), - [sym_expression_list] = STATE(4350), - [sym_pattern] = STATE(5371), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(2237), - [sym_as_pattern] = STATE(3846), - [sym_expression] = STATE(3717), - [sym_primary_expression] = STATE(2046), - [sym_not_operator] = STATE(3846), - [sym_boolean_operator] = STATE(3846), - [sym_binary_operator] = STATE(2255), - [sym_unary_operator] = STATE(2255), - [sym_comparison_operator] = STATE(3846), - [sym_lambda] = STATE(3846), - [sym_pattern_list] = STATE(4350), - [sym_yield] = STATE(4350), - [sym_attribute] = STATE(2240), - [sym_subscript] = STATE(2240), - [sym_ellipsis] = STATE(2255), - [sym_call] = STATE(2255), - [sym_list] = STATE(2255), - [sym_set] = STATE(2255), - [sym_tuple] = STATE(2255), - [sym_dictionary] = STATE(2255), - [sym_list_comprehension] = STATE(2255), - [sym_dictionary_comprehension] = STATE(2255), - [sym_set_comprehension] = STATE(2255), - [sym_generator_expression] = STATE(2255), - [sym_parenthesized_expression] = STATE(2255), - [sym_conditional_expression] = STATE(3846), - [sym_concatenated_string] = STATE(2255), - [sym_string] = STATE(2073), - [sym__f_expression] = STATE(4350), - [sym_none] = STATE(2255), - [sym_await] = STATE(2255), - [sym_new_expression] = STATE(3846), - [sym_sizeof_expression] = STATE(2255), - [sym_cast_expression] = STATE(2255), - [sym_identifier] = ACTIONS(2649), - [anon_sym_LPAREN] = ACTIONS(2651), - [anon_sym_STAR] = ACTIONS(2653), - [anon_sym_print] = ACTIONS(2655), - [anon_sym_match] = ACTIONS(2655), - [anon_sym_async] = ACTIONS(2655), - [anon_sym_exec] = ACTIONS(2655), - [anon_sym_LBRACK] = ACTIONS(2657), - [anon_sym_DASH] = ACTIONS(1915), - [anon_sym_LBRACE] = ACTIONS(1917), - [anon_sym_PLUS] = ACTIONS(1915), - [anon_sym_not] = ACTIONS(2659), - [anon_sym_AMP] = ACTIONS(1915), - [anon_sym_TILDE] = ACTIONS(1915), - [anon_sym_LT] = ACTIONS(2661), - [anon_sym_lambda] = ACTIONS(2663), - [anon_sym_yield] = ACTIONS(2665), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1921), - [anon_sym_None] = ACTIONS(1923), - [sym_integer] = ACTIONS(1905), - [sym_float] = ACTIONS(1925), - [anon_sym_await] = ACTIONS(2667), - [anon_sym_api] = ACTIONS(2655), - [sym_true] = ACTIONS(1905), - [sym_false] = ACTIONS(1905), + [792] = { + [sym_named_expression] = STATE(3825), + [sym__named_expression_lhs] = STATE(5410), + [sym_expression_list] = STATE(4359), + [sym_pattern] = STATE(5164), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(2327), + [sym_as_pattern] = STATE(3825), + [sym_expression] = STATE(3732), + [sym_primary_expression] = STATE(2057), + [sym_not_operator] = STATE(3825), + [sym_boolean_operator] = STATE(3825), + [sym_binary_operator] = STATE(2257), + [sym_unary_operator] = STATE(2257), + [sym_comparison_operator] = STATE(3825), + [sym_lambda] = STATE(3825), + [sym_pattern_list] = STATE(4359), + [sym_yield] = STATE(4359), + [sym_attribute] = STATE(2259), + [sym_subscript] = STATE(2259), + [sym_ellipsis] = STATE(2257), + [sym_call] = STATE(2257), + [sym_list] = STATE(2257), + [sym_set] = STATE(2257), + [sym_tuple] = STATE(2257), + [sym_dictionary] = STATE(2257), + [sym_list_comprehension] = STATE(2257), + [sym_dictionary_comprehension] = STATE(2257), + [sym_set_comprehension] = STATE(2257), + [sym_generator_expression] = STATE(2257), + [sym_parenthesized_expression] = STATE(2257), + [sym_conditional_expression] = STATE(3825), + [sym_concatenated_string] = STATE(2257), + [sym_string] = STATE(2089), + [sym__f_expression] = STATE(4359), + [sym_none] = STATE(2257), + [sym_await] = STATE(2257), + [sym_new_expression] = STATE(3825), + [sym_sizeof_expression] = STATE(2257), + [sym_cast_expression] = STATE(2257), + [sym_identifier] = ACTIONS(2657), + [anon_sym_LPAREN] = ACTIONS(2659), + [anon_sym_STAR] = ACTIONS(2661), + [anon_sym_print] = ACTIONS(2663), + [anon_sym_match] = ACTIONS(2663), + [anon_sym_async] = ACTIONS(2663), + [anon_sym_exec] = ACTIONS(2663), + [anon_sym_LBRACK] = ACTIONS(2665), + [anon_sym_DASH] = ACTIONS(1951), + [anon_sym_LBRACE] = ACTIONS(1953), + [anon_sym_PLUS] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(2667), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_LT] = ACTIONS(2669), + [anon_sym_lambda] = ACTIONS(2671), + [anon_sym_yield] = ACTIONS(2673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1957), + [anon_sym_None] = ACTIONS(1959), + [sym_integer] = ACTIONS(1941), + [sym_float] = ACTIONS(1961), + [anon_sym_await] = ACTIONS(2675), + [anon_sym_api] = ACTIONS(2663), + [sym_true] = ACTIONS(1941), + [sym_false] = ACTIONS(1941), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2669), - [anon_sym_sizeof] = ACTIONS(1929), - [sym_string_start] = ACTIONS(1931), + [anon_sym_new] = ACTIONS(2677), + [anon_sym_sizeof] = ACTIONS(1965), + [sym_string_start] = ACTIONS(1967), }, - [785] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5609), - [sym_list_splat_pattern] = STATE(2591), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(3850), - [sym_primary_expression] = STATE(2077), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2631), - [sym_unary_operator] = STATE(2631), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2631), - [sym_subscript] = STATE(2631), - [sym_ellipsis] = STATE(2631), - [sym_call] = STATE(2631), - [sym_type] = STATE(4294), - [sym_splat_type] = STATE(4364), - [sym_generic_type] = STATE(4364), - [sym_union_type] = STATE(4364), - [sym_constrained_type] = STATE(4364), - [sym_member_type] = STATE(4364), - [sym_list] = STATE(2631), - [sym_set] = STATE(2631), - [sym_tuple] = STATE(2631), - [sym_dictionary] = STATE(2631), - [sym_list_comprehension] = STATE(2631), - [sym_dictionary_comprehension] = STATE(2631), - [sym_set_comprehension] = STATE(2631), - [sym_generator_expression] = STATE(2631), - [sym_parenthesized_expression] = STATE(2631), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2631), - [sym_string] = STATE(2218), - [sym_none] = STATE(2631), - [sym_await] = STATE(2631), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2631), - [sym_cast_expression] = STATE(2631), - [sym_identifier] = ACTIONS(2627), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(2629), - [anon_sym_print] = ACTIONS(2631), - [anon_sym_match] = ACTIONS(2631), - [anon_sym_async] = ACTIONS(2631), - [anon_sym_STAR_STAR] = ACTIONS(2633), - [anon_sym_exec] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_RBRACK] = ACTIONS(2675), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2639), - [anon_sym_lambda] = ACTIONS(2641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2643), - [anon_sym_api] = ACTIONS(2631), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2645), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), + [793] = { + [sym_named_expression] = STATE(2631), + [sym__named_expression_lhs] = STATE(5572), + [sym_list_splat_pattern] = STATE(2589), + [sym_as_pattern] = STATE(2631), + [sym_expression] = STATE(3826), + [sym_primary_expression] = STATE(2107), + [sym_not_operator] = STATE(2631), + [sym_boolean_operator] = STATE(2631), + [sym_binary_operator] = STATE(2630), + [sym_unary_operator] = STATE(2630), + [sym_comparison_operator] = STATE(2631), + [sym_lambda] = STATE(2631), + [sym_attribute] = STATE(2630), + [sym_subscript] = STATE(2630), + [sym_ellipsis] = STATE(2630), + [sym_call] = STATE(2630), + [sym_type] = STATE(4367), + [sym_splat_type] = STATE(4292), + [sym_generic_type] = STATE(4292), + [sym_union_type] = STATE(4292), + [sym_constrained_type] = STATE(4292), + [sym_member_type] = STATE(4292), + [sym_list] = STATE(2630), + [sym_set] = STATE(2630), + [sym_tuple] = STATE(2630), + [sym_dictionary] = STATE(2630), + [sym_list_comprehension] = STATE(2630), + [sym_dictionary_comprehension] = STATE(2630), + [sym_set_comprehension] = STATE(2630), + [sym_generator_expression] = STATE(2630), + [sym_parenthesized_expression] = STATE(2630), + [sym_conditional_expression] = STATE(2631), + [sym_concatenated_string] = STATE(2630), + [sym_string] = STATE(2200), + [sym_none] = STATE(2630), + [sym_await] = STATE(2630), + [sym_new_expression] = STATE(2631), + [sym_sizeof_expression] = STATE(2630), + [sym_cast_expression] = STATE(2630), + [sym_identifier] = ACTIONS(2637), + [anon_sym_LPAREN] = ACTIONS(2461), + [anon_sym_STAR] = ACTIONS(2639), + [anon_sym_print] = ACTIONS(2641), + [anon_sym_match] = ACTIONS(2641), + [anon_sym_async] = ACTIONS(2641), + [anon_sym_STAR_STAR] = ACTIONS(2643), + [anon_sym_exec] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2467), + [anon_sym_RBRACK] = ACTIONS(2683), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_not] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2469), + [anon_sym_TILDE] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_lambda] = ACTIONS(2651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2475), + [anon_sym_None] = ACTIONS(2477), + [sym_integer] = ACTIONS(2459), + [sym_float] = ACTIONS(2479), + [anon_sym_await] = ACTIONS(2653), + [anon_sym_api] = ACTIONS(2641), + [sym_true] = ACTIONS(2459), + [sym_false] = ACTIONS(2459), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2655), + [anon_sym_sizeof] = ACTIONS(2483), + [sym_string_start] = ACTIONS(2485), }, - [786] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5609), - [sym_list_splat_pattern] = STATE(2591), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(3850), - [sym_primary_expression] = STATE(2077), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2631), - [sym_unary_operator] = STATE(2631), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2631), - [sym_subscript] = STATE(2631), - [sym_ellipsis] = STATE(2631), - [sym_call] = STATE(2631), - [sym_type] = STATE(4294), - [sym_splat_type] = STATE(4364), - [sym_generic_type] = STATE(4364), - [sym_union_type] = STATE(4364), - [sym_constrained_type] = STATE(4364), - [sym_member_type] = STATE(4364), - [sym_list] = STATE(2631), - [sym_set] = STATE(2631), - [sym_tuple] = STATE(2631), - [sym_dictionary] = STATE(2631), - [sym_list_comprehension] = STATE(2631), - [sym_dictionary_comprehension] = STATE(2631), - [sym_set_comprehension] = STATE(2631), - [sym_generator_expression] = STATE(2631), - [sym_parenthesized_expression] = STATE(2631), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2631), - [sym_string] = STATE(2218), - [sym_none] = STATE(2631), - [sym_await] = STATE(2631), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2631), - [sym_cast_expression] = STATE(2631), - [sym_identifier] = ACTIONS(2627), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(2629), - [anon_sym_print] = ACTIONS(2631), - [anon_sym_match] = ACTIONS(2631), - [anon_sym_async] = ACTIONS(2631), - [anon_sym_STAR_STAR] = ACTIONS(2633), - [anon_sym_exec] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_RBRACK] = ACTIONS(2677), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2639), - [anon_sym_lambda] = ACTIONS(2641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2643), - [anon_sym_api] = ACTIONS(2631), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2645), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), + [794] = { + [sym_named_expression] = STATE(2631), + [sym__named_expression_lhs] = STATE(5572), + [sym_list_splat_pattern] = STATE(2589), + [sym_as_pattern] = STATE(2631), + [sym_expression] = STATE(3826), + [sym_primary_expression] = STATE(2107), + [sym_not_operator] = STATE(2631), + [sym_boolean_operator] = STATE(2631), + [sym_binary_operator] = STATE(2630), + [sym_unary_operator] = STATE(2630), + [sym_comparison_operator] = STATE(2631), + [sym_lambda] = STATE(2631), + [sym_attribute] = STATE(2630), + [sym_subscript] = STATE(2630), + [sym_ellipsis] = STATE(2630), + [sym_call] = STATE(2630), + [sym_type] = STATE(4367), + [sym_splat_type] = STATE(4292), + [sym_generic_type] = STATE(4292), + [sym_union_type] = STATE(4292), + [sym_constrained_type] = STATE(4292), + [sym_member_type] = STATE(4292), + [sym_list] = STATE(2630), + [sym_set] = STATE(2630), + [sym_tuple] = STATE(2630), + [sym_dictionary] = STATE(2630), + [sym_list_comprehension] = STATE(2630), + [sym_dictionary_comprehension] = STATE(2630), + [sym_set_comprehension] = STATE(2630), + [sym_generator_expression] = STATE(2630), + [sym_parenthesized_expression] = STATE(2630), + [sym_conditional_expression] = STATE(2631), + [sym_concatenated_string] = STATE(2630), + [sym_string] = STATE(2200), + [sym_none] = STATE(2630), + [sym_await] = STATE(2630), + [sym_new_expression] = STATE(2631), + [sym_sizeof_expression] = STATE(2630), + [sym_cast_expression] = STATE(2630), + [sym_identifier] = ACTIONS(2637), + [anon_sym_LPAREN] = ACTIONS(2461), + [anon_sym_STAR] = ACTIONS(2639), + [anon_sym_print] = ACTIONS(2641), + [anon_sym_match] = ACTIONS(2641), + [anon_sym_async] = ACTIONS(2641), + [anon_sym_STAR_STAR] = ACTIONS(2643), + [anon_sym_exec] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2467), + [anon_sym_RBRACK] = ACTIONS(2685), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_not] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2469), + [anon_sym_TILDE] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_lambda] = ACTIONS(2651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2475), + [anon_sym_None] = ACTIONS(2477), + [sym_integer] = ACTIONS(2459), + [sym_float] = ACTIONS(2479), + [anon_sym_await] = ACTIONS(2653), + [anon_sym_api] = ACTIONS(2641), + [sym_true] = ACTIONS(2459), + [sym_false] = ACTIONS(2459), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2655), + [anon_sym_sizeof] = ACTIONS(2483), + [sym_string_start] = ACTIONS(2485), }, - [787] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5609), - [sym_list_splat_pattern] = STATE(2591), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(3850), - [sym_primary_expression] = STATE(2077), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2631), - [sym_unary_operator] = STATE(2631), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2631), - [sym_subscript] = STATE(2631), - [sym_ellipsis] = STATE(2631), - [sym_call] = STATE(2631), - [sym_type] = STATE(4294), - [sym_splat_type] = STATE(4364), - [sym_generic_type] = STATE(4364), - [sym_union_type] = STATE(4364), - [sym_constrained_type] = STATE(4364), - [sym_member_type] = STATE(4364), - [sym_list] = STATE(2631), - [sym_set] = STATE(2631), - [sym_tuple] = STATE(2631), - [sym_dictionary] = STATE(2631), - [sym_list_comprehension] = STATE(2631), - [sym_dictionary_comprehension] = STATE(2631), - [sym_set_comprehension] = STATE(2631), - [sym_generator_expression] = STATE(2631), - [sym_parenthesized_expression] = STATE(2631), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2631), - [sym_string] = STATE(2218), - [sym_none] = STATE(2631), - [sym_await] = STATE(2631), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2631), - [sym_cast_expression] = STATE(2631), - [sym_identifier] = ACTIONS(2627), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(2629), - [anon_sym_print] = ACTIONS(2631), - [anon_sym_match] = ACTIONS(2631), - [anon_sym_async] = ACTIONS(2631), - [anon_sym_STAR_STAR] = ACTIONS(2633), - [anon_sym_exec] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2639), - [anon_sym_lambda] = ACTIONS(2641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2643), - [anon_sym_api] = ACTIONS(2631), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2645), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), + [795] = { + [sym_named_expression] = STATE(2631), + [sym__named_expression_lhs] = STATE(5572), + [sym_list_splat_pattern] = STATE(2589), + [sym_as_pattern] = STATE(2631), + [sym_expression] = STATE(3826), + [sym_primary_expression] = STATE(2107), + [sym_not_operator] = STATE(2631), + [sym_boolean_operator] = STATE(2631), + [sym_binary_operator] = STATE(2630), + [sym_unary_operator] = STATE(2630), + [sym_comparison_operator] = STATE(2631), + [sym_lambda] = STATE(2631), + [sym_attribute] = STATE(2630), + [sym_subscript] = STATE(2630), + [sym_ellipsis] = STATE(2630), + [sym_call] = STATE(2630), + [sym_type] = STATE(4367), + [sym_splat_type] = STATE(4292), + [sym_generic_type] = STATE(4292), + [sym_union_type] = STATE(4292), + [sym_constrained_type] = STATE(4292), + [sym_member_type] = STATE(4292), + [sym_list] = STATE(2630), + [sym_set] = STATE(2630), + [sym_tuple] = STATE(2630), + [sym_dictionary] = STATE(2630), + [sym_list_comprehension] = STATE(2630), + [sym_dictionary_comprehension] = STATE(2630), + [sym_set_comprehension] = STATE(2630), + [sym_generator_expression] = STATE(2630), + [sym_parenthesized_expression] = STATE(2630), + [sym_conditional_expression] = STATE(2631), + [sym_concatenated_string] = STATE(2630), + [sym_string] = STATE(2200), + [sym_none] = STATE(2630), + [sym_await] = STATE(2630), + [sym_new_expression] = STATE(2631), + [sym_sizeof_expression] = STATE(2630), + [sym_cast_expression] = STATE(2630), + [sym_identifier] = ACTIONS(2637), + [anon_sym_LPAREN] = ACTIONS(2461), + [anon_sym_STAR] = ACTIONS(2639), + [anon_sym_print] = ACTIONS(2641), + [anon_sym_match] = ACTIONS(2641), + [anon_sym_async] = ACTIONS(2641), + [anon_sym_STAR_STAR] = ACTIONS(2643), + [anon_sym_exec] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2467), + [anon_sym_RBRACK] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_not] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2469), + [anon_sym_TILDE] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_lambda] = ACTIONS(2651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2475), + [anon_sym_None] = ACTIONS(2477), + [sym_integer] = ACTIONS(2459), + [sym_float] = ACTIONS(2479), + [anon_sym_await] = ACTIONS(2653), + [anon_sym_api] = ACTIONS(2641), + [sym_true] = ACTIONS(2459), + [sym_false] = ACTIONS(2459), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2655), + [anon_sym_sizeof] = ACTIONS(2483), + [sym_string_start] = ACTIONS(2485), }, - [788] = { - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5722), - [sym_list_splat_pattern] = STATE(2088), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3751), - [sym_primary_expression] = STATE(2024), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_attribute] = STATE(2123), - [sym_subscript] = STATE(2123), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_type] = STATE(4187), - [sym_splat_type] = STATE(4238), - [sym_generic_type] = STATE(4238), - [sym_union_type] = STATE(4238), - [sym_constrained_type] = STATE(4238), - [sym_member_type] = STATE(4238), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [sym_identifier] = ACTIONS(2679), - [anon_sym_LPAREN] = ACTIONS(1281), - [anon_sym_STAR] = ACTIONS(2681), - [anon_sym_print] = ACTIONS(592), - [anon_sym_match] = ACTIONS(592), - [anon_sym_async] = ACTIONS(592), - [anon_sym_STAR_STAR] = ACTIONS(2683), - [anon_sym_exec] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(71), - [anon_sym_lambda] = ACTIONS(2687), - [anon_sym_DOT_DOT_DOT] = ACTIONS(77), - [anon_sym_None] = ACTIONS(79), - [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(83), - [anon_sym_await] = ACTIONS(614), - [anon_sym_api] = ACTIONS(592), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), + [796] = { + [sym_else_clause] = STATE(1130), + [sym_except_group_clause] = STATE(918), + [sym_finally_clause] = STATE(1624), + [aux_sym_try_statement_repeat2] = STATE(918), + [ts_builtin_sym_end] = ACTIONS(2689), + [sym_identifier] = ACTIONS(2691), + [anon_sym_import] = ACTIONS(2691), + [anon_sym_cimport] = ACTIONS(2691), + [anon_sym_from] = ACTIONS(2691), + [anon_sym_LPAREN] = ACTIONS(2689), + [anon_sym_STAR] = ACTIONS(2689), + [anon_sym_print] = ACTIONS(2691), + [anon_sym_assert] = ACTIONS(2691), + [anon_sym_return] = ACTIONS(2691), + [anon_sym_del] = ACTIONS(2691), + [anon_sym_raise] = ACTIONS(2691), + [anon_sym_pass] = ACTIONS(2691), + [anon_sym_break] = ACTIONS(2691), + [anon_sym_continue] = ACTIONS(2691), + [anon_sym_if] = ACTIONS(2691), + [anon_sym_else] = ACTIONS(2693), + [anon_sym_match] = ACTIONS(2691), + [anon_sym_async] = ACTIONS(2691), + [anon_sym_for] = ACTIONS(2691), + [anon_sym_while] = ACTIONS(2691), + [anon_sym_try] = ACTIONS(2691), + [anon_sym_except_STAR] = ACTIONS(2695), + [anon_sym_finally] = ACTIONS(2697), + [anon_sym_with] = ACTIONS(2691), + [anon_sym_def] = ACTIONS(2691), + [anon_sym_global] = ACTIONS(2691), + [anon_sym_nonlocal] = ACTIONS(2691), + [anon_sym_exec] = ACTIONS(2691), + [anon_sym_type] = ACTIONS(2691), + [anon_sym_class] = ACTIONS(2691), + [anon_sym_LBRACK] = ACTIONS(2689), + [anon_sym_AT] = ACTIONS(2689), + [anon_sym_DASH] = ACTIONS(2689), + [anon_sym_LBRACE] = ACTIONS(2689), + [anon_sym_PLUS] = ACTIONS(2689), + [anon_sym_not] = ACTIONS(2691), + [anon_sym_AMP] = ACTIONS(2689), + [anon_sym_TILDE] = ACTIONS(2689), + [anon_sym_LT] = ACTIONS(2689), + [anon_sym_lambda] = ACTIONS(2691), + [anon_sym_yield] = ACTIONS(2691), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2689), + [anon_sym_None] = ACTIONS(2691), + [sym_integer] = ACTIONS(2691), + [sym_float] = ACTIONS(2689), + [anon_sym_await] = ACTIONS(2691), + [anon_sym_api] = ACTIONS(2691), + [sym_true] = ACTIONS(2691), + [sym_false] = ACTIONS(2691), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2691), + [anon_sym_include] = ACTIONS(2691), + [anon_sym_DEF] = ACTIONS(2691), + [anon_sym_cdef] = ACTIONS(2691), + [anon_sym_cpdef] = ACTIONS(2691), + [anon_sym_new] = ACTIONS(2691), + [anon_sym_ctypedef] = ACTIONS(2691), + [anon_sym_public] = ACTIONS(2691), + [anon_sym_packed] = ACTIONS(2691), + [anon_sym_inline] = ACTIONS(2691), + [anon_sym_readonly] = ACTIONS(2691), + [anon_sym_sizeof] = ACTIONS(2691), + [sym_string_start] = ACTIONS(2689), + }, + [797] = { + [sym_else_clause] = STATE(1130), + [sym_except_clause] = STATE(920), + [sym_finally_clause] = STATE(1624), + [aux_sym_try_statement_repeat1] = STATE(920), + [ts_builtin_sym_end] = ACTIONS(2689), + [sym_identifier] = ACTIONS(2691), + [anon_sym_import] = ACTIONS(2691), + [anon_sym_cimport] = ACTIONS(2691), + [anon_sym_from] = ACTIONS(2691), + [anon_sym_LPAREN] = ACTIONS(2689), + [anon_sym_STAR] = ACTIONS(2689), + [anon_sym_print] = ACTIONS(2691), + [anon_sym_assert] = ACTIONS(2691), + [anon_sym_return] = ACTIONS(2691), + [anon_sym_del] = ACTIONS(2691), + [anon_sym_raise] = ACTIONS(2691), + [anon_sym_pass] = ACTIONS(2691), + [anon_sym_break] = ACTIONS(2691), + [anon_sym_continue] = ACTIONS(2691), + [anon_sym_if] = ACTIONS(2691), + [anon_sym_else] = ACTIONS(2693), + [anon_sym_match] = ACTIONS(2691), + [anon_sym_async] = ACTIONS(2691), + [anon_sym_for] = ACTIONS(2691), + [anon_sym_while] = ACTIONS(2691), + [anon_sym_try] = ACTIONS(2691), + [anon_sym_except] = ACTIONS(2699), + [anon_sym_finally] = ACTIONS(2697), + [anon_sym_with] = ACTIONS(2691), + [anon_sym_def] = ACTIONS(2691), + [anon_sym_global] = ACTIONS(2691), + [anon_sym_nonlocal] = ACTIONS(2691), + [anon_sym_exec] = ACTIONS(2691), + [anon_sym_type] = ACTIONS(2691), + [anon_sym_class] = ACTIONS(2691), + [anon_sym_LBRACK] = ACTIONS(2689), + [anon_sym_AT] = ACTIONS(2689), + [anon_sym_DASH] = ACTIONS(2689), + [anon_sym_LBRACE] = ACTIONS(2689), + [anon_sym_PLUS] = ACTIONS(2689), + [anon_sym_not] = ACTIONS(2691), + [anon_sym_AMP] = ACTIONS(2689), + [anon_sym_TILDE] = ACTIONS(2689), + [anon_sym_LT] = ACTIONS(2689), + [anon_sym_lambda] = ACTIONS(2691), + [anon_sym_yield] = ACTIONS(2691), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2689), + [anon_sym_None] = ACTIONS(2691), + [sym_integer] = ACTIONS(2691), + [sym_float] = ACTIONS(2689), + [anon_sym_await] = ACTIONS(2691), + [anon_sym_api] = ACTIONS(2691), + [sym_true] = ACTIONS(2691), + [sym_false] = ACTIONS(2691), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2691), + [anon_sym_include] = ACTIONS(2691), + [anon_sym_DEF] = ACTIONS(2691), + [anon_sym_cdef] = ACTIONS(2691), + [anon_sym_cpdef] = ACTIONS(2691), + [anon_sym_new] = ACTIONS(2691), + [anon_sym_ctypedef] = ACTIONS(2691), + [anon_sym_public] = ACTIONS(2691), + [anon_sym_packed] = ACTIONS(2691), + [anon_sym_inline] = ACTIONS(2691), + [anon_sym_readonly] = ACTIONS(2691), + [anon_sym_sizeof] = ACTIONS(2691), + [sym_string_start] = ACTIONS(2689), + }, + [798] = { + [sym_named_expression] = STATE(3088), + [sym__named_expression_lhs] = STATE(5579), + [sym_list_splat_pattern] = STATE(2536), + [sym_as_pattern] = STATE(3088), + [sym_expression] = STATE(4142), + [sym_primary_expression] = STATE(2072), + [sym_not_operator] = STATE(3088), + [sym_boolean_operator] = STATE(3088), + [sym_binary_operator] = STATE(2401), + [sym_unary_operator] = STATE(2401), + [sym_comparison_operator] = STATE(3088), + [sym_lambda] = STATE(3088), + [sym_attribute] = STATE(2401), + [sym_subscript] = STATE(2401), + [sym_ellipsis] = STATE(2401), + [sym_call] = STATE(2401), + [sym_type] = STATE(4753), + [sym_splat_type] = STATE(4597), + [sym_generic_type] = STATE(4597), + [sym_union_type] = STATE(4597), + [sym_constrained_type] = STATE(4597), + [sym_member_type] = STATE(4597), + [sym_list] = STATE(2401), + [sym_set] = STATE(2401), + [sym_tuple] = STATE(2401), + [sym_dictionary] = STATE(2401), + [sym_list_comprehension] = STATE(2401), + [sym_dictionary_comprehension] = STATE(2401), + [sym_set_comprehension] = STATE(2401), + [sym_generator_expression] = STATE(2401), + [sym_parenthesized_expression] = STATE(2401), + [sym_conditional_expression] = STATE(3088), + [sym_concatenated_string] = STATE(2401), + [sym_string] = STATE(2161), + [sym_none] = STATE(2401), + [sym_await] = STATE(2401), + [sym_new_expression] = STATE(3088), + [sym_sizeof_expression] = STATE(2401), + [sym_cast_expression] = STATE(2401), + [sym_identifier] = ACTIONS(2701), + [anon_sym_LPAREN] = ACTIONS(1213), + [anon_sym_STAR] = ACTIONS(2703), + [anon_sym_print] = ACTIONS(1217), + [anon_sym_match] = ACTIONS(1217), + [anon_sym_async] = ACTIONS(1217), + [anon_sym_STAR_STAR] = ACTIONS(457), + [anon_sym_exec] = ACTIONS(1217), + [anon_sym_LBRACK] = ACTIONS(1219), + [anon_sym_DASH] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_PLUS] = ACTIONS(1227), + [anon_sym_not] = ACTIONS(1225), + [anon_sym_AMP] = ACTIONS(1227), + [anon_sym_TILDE] = ACTIONS(1227), + [anon_sym_LT] = ACTIONS(2705), + [anon_sym_lambda] = ACTIONS(1231), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), + [anon_sym_None] = ACTIONS(1235), + [sym_integer] = ACTIONS(1237), + [sym_float] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(1241), + [anon_sym_api] = ACTIONS(1217), + [sym_true] = ACTIONS(1237), + [sym_false] = ACTIONS(1237), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2689), - [anon_sym_sizeof] = ACTIONS(105), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(1243), + [anon_sym_sizeof] = ACTIONS(1245), + [sym_string_start] = ACTIONS(1247), }, - [789] = { - [sym_else_clause] = STATE(1090), - [sym_except_clause] = STATE(927), - [sym_finally_clause] = STATE(1521), - [aux_sym_try_statement_repeat1] = STATE(927), - [ts_builtin_sym_end] = ACTIONS(2691), - [sym_identifier] = ACTIONS(2693), - [anon_sym_import] = ACTIONS(2693), - [anon_sym_cimport] = ACTIONS(2693), - [anon_sym_from] = ACTIONS(2693), - [anon_sym_LPAREN] = ACTIONS(2691), - [anon_sym_STAR] = ACTIONS(2691), - [anon_sym_print] = ACTIONS(2693), - [anon_sym_assert] = ACTIONS(2693), - [anon_sym_return] = ACTIONS(2693), - [anon_sym_del] = ACTIONS(2693), - [anon_sym_raise] = ACTIONS(2693), - [anon_sym_pass] = ACTIONS(2693), - [anon_sym_break] = ACTIONS(2693), - [anon_sym_continue] = ACTIONS(2693), - [anon_sym_if] = ACTIONS(2693), - [anon_sym_else] = ACTIONS(2695), - [anon_sym_match] = ACTIONS(2693), - [anon_sym_async] = ACTIONS(2693), - [anon_sym_for] = ACTIONS(2693), - [anon_sym_while] = ACTIONS(2693), - [anon_sym_try] = ACTIONS(2693), - [anon_sym_except] = ACTIONS(2697), - [anon_sym_finally] = ACTIONS(2699), - [anon_sym_with] = ACTIONS(2693), - [anon_sym_def] = ACTIONS(2693), - [anon_sym_global] = ACTIONS(2693), - [anon_sym_nonlocal] = ACTIONS(2693), - [anon_sym_exec] = ACTIONS(2693), - [anon_sym_type] = ACTIONS(2693), - [anon_sym_class] = ACTIONS(2693), - [anon_sym_LBRACK] = ACTIONS(2691), - [anon_sym_AT] = ACTIONS(2691), - [anon_sym_DASH] = ACTIONS(2691), - [anon_sym_LBRACE] = ACTIONS(2691), - [anon_sym_PLUS] = ACTIONS(2691), - [anon_sym_not] = ACTIONS(2693), - [anon_sym_AMP] = ACTIONS(2691), - [anon_sym_TILDE] = ACTIONS(2691), - [anon_sym_LT] = ACTIONS(2691), - [anon_sym_lambda] = ACTIONS(2693), - [anon_sym_yield] = ACTIONS(2693), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2691), - [anon_sym_None] = ACTIONS(2693), - [sym_integer] = ACTIONS(2693), - [sym_float] = ACTIONS(2691), - [anon_sym_await] = ACTIONS(2693), - [anon_sym_api] = ACTIONS(2693), - [sym_true] = ACTIONS(2693), - [sym_false] = ACTIONS(2693), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2693), - [anon_sym_include] = ACTIONS(2693), - [anon_sym_DEF] = ACTIONS(2693), - [anon_sym_cdef] = ACTIONS(2693), - [anon_sym_cpdef] = ACTIONS(2693), - [anon_sym_new] = ACTIONS(2693), - [anon_sym_ctypedef] = ACTIONS(2693), - [anon_sym_public] = ACTIONS(2693), - [anon_sym_packed] = ACTIONS(2693), - [anon_sym_inline] = ACTIONS(2693), - [anon_sym_readonly] = ACTIONS(2693), - [anon_sym_sizeof] = ACTIONS(2693), - [sym_string_start] = ACTIONS(2691), + [799] = { + [sym_named_expression] = STATE(3088), + [sym__named_expression_lhs] = STATE(5669), + [sym_list_splat_pattern] = STATE(2536), + [sym_as_pattern] = STATE(3088), + [sym_expression] = STATE(3920), + [sym_primary_expression] = STATE(2072), + [sym_not_operator] = STATE(3088), + [sym_boolean_operator] = STATE(3088), + [sym_binary_operator] = STATE(2401), + [sym_unary_operator] = STATE(2401), + [sym_comparison_operator] = STATE(3088), + [sym_lambda] = STATE(3088), + [sym_attribute] = STATE(2401), + [sym_subscript] = STATE(2401), + [sym_ellipsis] = STATE(2401), + [sym_call] = STATE(2401), + [sym_type] = STATE(4568), + [sym_splat_type] = STATE(4597), + [sym_generic_type] = STATE(4597), + [sym_union_type] = STATE(4597), + [sym_constrained_type] = STATE(4597), + [sym_member_type] = STATE(4597), + [sym_list] = STATE(2401), + [sym_set] = STATE(2401), + [sym_tuple] = STATE(2401), + [sym_dictionary] = STATE(2401), + [sym_list_comprehension] = STATE(2401), + [sym_dictionary_comprehension] = STATE(2401), + [sym_set_comprehension] = STATE(2401), + [sym_generator_expression] = STATE(2401), + [sym_parenthesized_expression] = STATE(2401), + [sym_conditional_expression] = STATE(3088), + [sym_concatenated_string] = STATE(2401), + [sym_string] = STATE(2161), + [sym_none] = STATE(2401), + [sym_await] = STATE(2401), + [sym_new_expression] = STATE(3088), + [sym_sizeof_expression] = STATE(2401), + [sym_cast_expression] = STATE(2401), + [sym_identifier] = ACTIONS(2701), + [anon_sym_LPAREN] = ACTIONS(1213), + [anon_sym_STAR] = ACTIONS(2703), + [anon_sym_print] = ACTIONS(1217), + [anon_sym_match] = ACTIONS(1217), + [anon_sym_async] = ACTIONS(1217), + [anon_sym_STAR_STAR] = ACTIONS(457), + [anon_sym_exec] = ACTIONS(1217), + [anon_sym_LBRACK] = ACTIONS(1219), + [anon_sym_DASH] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_PLUS] = ACTIONS(1227), + [anon_sym_not] = ACTIONS(2707), + [anon_sym_AMP] = ACTIONS(1227), + [anon_sym_TILDE] = ACTIONS(1227), + [anon_sym_LT] = ACTIONS(2705), + [anon_sym_lambda] = ACTIONS(2709), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), + [anon_sym_None] = ACTIONS(1235), + [sym_integer] = ACTIONS(1237), + [sym_float] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(1241), + [anon_sym_api] = ACTIONS(1217), + [sym_true] = ACTIONS(1237), + [sym_false] = ACTIONS(1237), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2711), + [anon_sym_sizeof] = ACTIONS(1245), + [sym_string_start] = ACTIONS(1247), }, - [790] = { - [sym_else_clause] = STATE(1090), - [sym_except_group_clause] = STATE(928), - [sym_finally_clause] = STATE(1521), - [aux_sym_try_statement_repeat2] = STATE(928), - [ts_builtin_sym_end] = ACTIONS(2691), - [sym_identifier] = ACTIONS(2693), - [anon_sym_import] = ACTIONS(2693), - [anon_sym_cimport] = ACTIONS(2693), - [anon_sym_from] = ACTIONS(2693), - [anon_sym_LPAREN] = ACTIONS(2691), - [anon_sym_STAR] = ACTIONS(2691), - [anon_sym_print] = ACTIONS(2693), - [anon_sym_assert] = ACTIONS(2693), - [anon_sym_return] = ACTIONS(2693), - [anon_sym_del] = ACTIONS(2693), - [anon_sym_raise] = ACTIONS(2693), - [anon_sym_pass] = ACTIONS(2693), - [anon_sym_break] = ACTIONS(2693), - [anon_sym_continue] = ACTIONS(2693), - [anon_sym_if] = ACTIONS(2693), - [anon_sym_else] = ACTIONS(2695), - [anon_sym_match] = ACTIONS(2693), - [anon_sym_async] = ACTIONS(2693), - [anon_sym_for] = ACTIONS(2693), - [anon_sym_while] = ACTIONS(2693), - [anon_sym_try] = ACTIONS(2693), - [anon_sym_except_STAR] = ACTIONS(2701), - [anon_sym_finally] = ACTIONS(2699), - [anon_sym_with] = ACTIONS(2693), - [anon_sym_def] = ACTIONS(2693), - [anon_sym_global] = ACTIONS(2693), - [anon_sym_nonlocal] = ACTIONS(2693), - [anon_sym_exec] = ACTIONS(2693), - [anon_sym_type] = ACTIONS(2693), - [anon_sym_class] = ACTIONS(2693), - [anon_sym_LBRACK] = ACTIONS(2691), - [anon_sym_AT] = ACTIONS(2691), - [anon_sym_DASH] = ACTIONS(2691), - [anon_sym_LBRACE] = ACTIONS(2691), - [anon_sym_PLUS] = ACTIONS(2691), - [anon_sym_not] = ACTIONS(2693), - [anon_sym_AMP] = ACTIONS(2691), - [anon_sym_TILDE] = ACTIONS(2691), - [anon_sym_LT] = ACTIONS(2691), - [anon_sym_lambda] = ACTIONS(2693), - [anon_sym_yield] = ACTIONS(2693), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2691), - [anon_sym_None] = ACTIONS(2693), - [sym_integer] = ACTIONS(2693), - [sym_float] = ACTIONS(2691), - [anon_sym_await] = ACTIONS(2693), - [anon_sym_api] = ACTIONS(2693), - [sym_true] = ACTIONS(2693), - [sym_false] = ACTIONS(2693), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2693), - [anon_sym_include] = ACTIONS(2693), - [anon_sym_DEF] = ACTIONS(2693), - [anon_sym_cdef] = ACTIONS(2693), - [anon_sym_cpdef] = ACTIONS(2693), - [anon_sym_new] = ACTIONS(2693), - [anon_sym_ctypedef] = ACTIONS(2693), - [anon_sym_public] = ACTIONS(2693), - [anon_sym_packed] = ACTIONS(2693), - [anon_sym_inline] = ACTIONS(2693), - [anon_sym_readonly] = ACTIONS(2693), - [anon_sym_sizeof] = ACTIONS(2693), - [sym_string_start] = ACTIONS(2691), + [800] = { + [sym_pattern] = STATE(3217), + [sym_tuple_pattern] = STATE(3197), + [sym_list_pattern] = STATE(3197), + [sym_list_splat_pattern] = STATE(2544), + [sym_primary_expression] = STATE(3228), + [sym_binary_operator] = STATE(2401), + [sym_unary_operator] = STATE(2401), + [sym_attribute] = STATE(2545), + [sym_subscript] = STATE(2545), + [sym_ellipsis] = STATE(2401), + [sym_call] = STATE(2401), + [sym_list] = STATE(2401), + [sym_set] = STATE(2401), + [sym_tuple] = STATE(2401), + [sym_dictionary] = STATE(2401), + [sym_list_comprehension] = STATE(2401), + [sym_dictionary_comprehension] = STATE(2401), + [sym_set_comprehension] = STATE(2401), + [sym_generator_expression] = STATE(2401), + [sym_parenthesized_expression] = STATE(2401), + [sym_concatenated_string] = STATE(2401), + [sym_string] = STATE(2161), + [sym_none] = STATE(2401), + [sym_await] = STATE(2401), + [sym_sizeof_expression] = STATE(2401), + [sym_cast_expression] = STATE(2401), + [sym_identifier] = ACTIONS(2713), + [anon_sym_SEMI] = ACTIONS(2715), + [anon_sym_LPAREN] = ACTIONS(2717), + [anon_sym_STAR] = ACTIONS(2719), + [anon_sym_print] = ACTIONS(2721), + [anon_sym_COLON] = ACTIONS(2715), + [anon_sym_match] = ACTIONS(2721), + [anon_sym_async] = ACTIONS(2721), + [anon_sym_exec] = ACTIONS(2721), + [anon_sym_EQ] = ACTIONS(2715), + [anon_sym_LBRACK] = ACTIONS(2723), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_AMP] = ACTIONS(1306), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_LT] = ACTIONS(1310), + [anon_sym_PLUS_EQ] = ACTIONS(2715), + [anon_sym_DASH_EQ] = ACTIONS(2715), + [anon_sym_STAR_EQ] = ACTIONS(2715), + [anon_sym_SLASH_EQ] = ACTIONS(2715), + [anon_sym_AT_EQ] = ACTIONS(2715), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2715), + [anon_sym_PERCENT_EQ] = ACTIONS(2715), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2715), + [anon_sym_GT_GT_EQ] = ACTIONS(2715), + [anon_sym_LT_LT_EQ] = ACTIONS(2715), + [anon_sym_AMP_EQ] = ACTIONS(2715), + [anon_sym_CARET_EQ] = ACTIONS(2715), + [anon_sym_PIPE_EQ] = ACTIONS(2715), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), + [anon_sym_None] = ACTIONS(1235), + [sym_integer] = ACTIONS(1237), + [sym_float] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(2725), + [anon_sym_api] = ACTIONS(2721), + [sym_true] = ACTIONS(1237), + [sym_false] = ACTIONS(1237), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1245), + [sym__newline] = ACTIONS(2715), + [sym_string_start] = ACTIONS(1247), }, - [791] = { - [sym__patterns] = STATE(5637), - [sym_pattern] = STATE(5006), - [sym_tuple_pattern] = STATE(5295), - [sym_list_pattern] = STATE(5295), - [sym_list_splat_pattern] = STATE(3225), - [sym_primary_expression] = STATE(3203), - [sym_binary_operator] = STATE(2549), - [sym_unary_operator] = STATE(2549), - [sym_attribute] = STATE(3173), - [sym_subscript] = STATE(3173), - [sym_ellipsis] = STATE(2549), - [sym_call] = STATE(2549), - [sym_list] = STATE(2549), - [sym_set] = STATE(2549), - [sym_tuple] = STATE(2549), - [sym_dictionary] = STATE(2549), - [sym_list_comprehension] = STATE(2549), - [sym_dictionary_comprehension] = STATE(2549), - [sym_set_comprehension] = STATE(2549), - [sym_generator_expression] = STATE(2549), - [sym_parenthesized_expression] = STATE(2549), - [sym_concatenated_string] = STATE(2549), - [sym_string] = STATE(2140), - [sym_none] = STATE(2549), - [sym_await] = STATE(2549), - [sym_int_type] = STATE(3507), - [sym__signedness] = STATE(3124), - [sym__longness] = STATE(3338), - [sym_function_pointer_type] = STATE(3507), - [sym_c_type] = STATE(5205), - [sym_sizeof_expression] = STATE(2549), - [sym_cast_expression] = STATE(2549), - [sym_identifier] = ACTIONS(2703), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_RPAREN] = ACTIONS(2707), - [anon_sym_STAR] = ACTIONS(2709), - [anon_sym_print] = ACTIONS(2711), - [anon_sym_match] = ACTIONS(2711), - [anon_sym_async] = ACTIONS(2711), - [anon_sym_exec] = ACTIONS(2711), - [anon_sym_LBRACK] = ACTIONS(2713), + [801] = { + [sym_pattern] = STATE(3217), + [sym_tuple_pattern] = STATE(3197), + [sym_list_pattern] = STATE(3197), + [sym_list_splat_pattern] = STATE(2544), + [sym_primary_expression] = STATE(3228), + [sym_binary_operator] = STATE(2401), + [sym_unary_operator] = STATE(2401), + [sym_attribute] = STATE(2545), + [sym_subscript] = STATE(2545), + [sym_ellipsis] = STATE(2401), + [sym_call] = STATE(2401), + [sym_list] = STATE(2401), + [sym_set] = STATE(2401), + [sym_tuple] = STATE(2401), + [sym_dictionary] = STATE(2401), + [sym_list_comprehension] = STATE(2401), + [sym_dictionary_comprehension] = STATE(2401), + [sym_set_comprehension] = STATE(2401), + [sym_generator_expression] = STATE(2401), + [sym_parenthesized_expression] = STATE(2401), + [sym_concatenated_string] = STATE(2401), + [sym_string] = STATE(2161), + [sym_none] = STATE(2401), + [sym_await] = STATE(2401), + [sym_sizeof_expression] = STATE(2401), + [sym_cast_expression] = STATE(2401), + [sym_identifier] = ACTIONS(2713), + [anon_sym_SEMI] = ACTIONS(2727), + [anon_sym_LPAREN] = ACTIONS(2717), + [anon_sym_STAR] = ACTIONS(2719), + [anon_sym_print] = ACTIONS(2721), + [anon_sym_COLON] = ACTIONS(2727), + [anon_sym_match] = ACTIONS(2721), + [anon_sym_async] = ACTIONS(2721), + [anon_sym_exec] = ACTIONS(2721), + [anon_sym_EQ] = ACTIONS(2727), + [anon_sym_LBRACK] = ACTIONS(2723), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_AMP] = ACTIONS(1306), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_LT] = ACTIONS(1310), + [anon_sym_PLUS_EQ] = ACTIONS(2727), + [anon_sym_DASH_EQ] = ACTIONS(2727), + [anon_sym_STAR_EQ] = ACTIONS(2727), + [anon_sym_SLASH_EQ] = ACTIONS(2727), + [anon_sym_AT_EQ] = ACTIONS(2727), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2727), + [anon_sym_PERCENT_EQ] = ACTIONS(2727), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2727), + [anon_sym_GT_GT_EQ] = ACTIONS(2727), + [anon_sym_LT_LT_EQ] = ACTIONS(2727), + [anon_sym_AMP_EQ] = ACTIONS(2727), + [anon_sym_CARET_EQ] = ACTIONS(2727), + [anon_sym_PIPE_EQ] = ACTIONS(2727), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), + [anon_sym_None] = ACTIONS(1235), + [sym_integer] = ACTIONS(1237), + [sym_float] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(2725), + [anon_sym_api] = ACTIONS(2721), + [sym_true] = ACTIONS(1237), + [sym_false] = ACTIONS(1237), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1245), + [sym__newline] = ACTIONS(2727), + [sym_string_start] = ACTIONS(1247), + }, + [802] = { + [sym__patterns] = STATE(5580), + [sym_pattern] = STATE(4748), + [sym_tuple_pattern] = STATE(5264), + [sym_list_pattern] = STATE(5264), + [sym_list_splat_pattern] = STATE(3195), + [sym_primary_expression] = STATE(3219), + [sym_binary_operator] = STATE(2401), + [sym_unary_operator] = STATE(2401), + [sym_attribute] = STATE(3201), + [sym_subscript] = STATE(3201), + [sym_ellipsis] = STATE(2401), + [sym_call] = STATE(2401), + [sym_list] = STATE(2401), + [sym_set] = STATE(2401), + [sym_tuple] = STATE(2401), + [sym_dictionary] = STATE(2401), + [sym_list_comprehension] = STATE(2401), + [sym_dictionary_comprehension] = STATE(2401), + [sym_set_comprehension] = STATE(2401), + [sym_generator_expression] = STATE(2401), + [sym_parenthesized_expression] = STATE(2401), + [sym_concatenated_string] = STATE(2401), + [sym_string] = STATE(2161), + [sym_none] = STATE(2401), + [sym_await] = STATE(2401), + [sym_int_type] = STATE(3449), + [sym__signedness] = STATE(3148), + [sym__longness] = STATE(3367), + [sym_function_pointer_type] = STATE(3449), + [sym_c_type] = STATE(5219), + [sym_sizeof_expression] = STATE(2401), + [sym_cast_expression] = STATE(2401), + [sym_identifier] = ACTIONS(2729), + [anon_sym_LPAREN] = ACTIONS(2731), + [anon_sym_RPAREN] = ACTIONS(2733), + [anon_sym_STAR] = ACTIONS(2735), + [anon_sym_print] = ACTIONS(2737), + [anon_sym_match] = ACTIONS(2737), + [anon_sym_async] = ACTIONS(2737), + [anon_sym_exec] = ACTIONS(2737), + [anon_sym_LBRACK] = ACTIONS(2739), [anon_sym_DASH] = ACTIONS(1308), [anon_sym_LBRACE] = ACTIONS(1223), [anon_sym_PLUS] = ACTIONS(1308), [anon_sym_AMP] = ACTIONS(1308), [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_LT] = ACTIONS(2715), + [anon_sym_LT] = ACTIONS(2741), [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), [anon_sym_None] = ACTIONS(1235), [sym_integer] = ACTIONS(1237), [sym_float] = ACTIONS(1239), - [anon_sym_await] = ACTIONS(2717), - [anon_sym_api] = ACTIONS(2711), + [anon_sym_await] = ACTIONS(2743), + [anon_sym_api] = ACTIONS(2737), [sym_true] = ACTIONS(1237), [sym_false] = ACTIONS(1237), [sym_comment] = ACTIONS(3), @@ -101510,54 +102416,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1245), [sym_string_start] = ACTIONS(1247), }, - [792] = { - [sym_named_expression] = STATE(2459), - [sym__named_expression_lhs] = STATE(5688), - [sym_list_splat] = STATE(5080), - [sym_dictionary_splat] = STATE(5080), - [sym_parenthesized_list_splat] = STATE(5096), - [sym_list_splat_pattern] = STATE(2477), - [sym_as_pattern] = STATE(2459), - [sym_expression] = STATE(3706), - [sym_primary_expression] = STATE(2060), - [sym_not_operator] = STATE(2459), - [sym_boolean_operator] = STATE(2459), - [sym_binary_operator] = STATE(2457), - [sym_unary_operator] = STATE(2457), - [sym_comparison_operator] = STATE(2459), - [sym_lambda] = STATE(2459), - [sym_attribute] = STATE(2457), - [sym_subscript] = STATE(2457), - [sym_ellipsis] = STATE(2457), - [sym_call] = STATE(2457), - [sym_keyword_argument] = STATE(5080), - [sym_list] = STATE(2457), - [sym_set] = STATE(2457), - [sym_tuple] = STATE(2457), - [sym_dictionary] = STATE(2457), - [sym_list_comprehension] = STATE(2457), - [sym_dictionary_comprehension] = STATE(2457), - [sym_set_comprehension] = STATE(2457), - [sym_generator_expression] = STATE(2457), - [sym_parenthesized_expression] = STATE(2457), - [sym_conditional_expression] = STATE(2459), - [sym_concatenated_string] = STATE(2457), - [sym_string] = STATE(2170), - [sym_none] = STATE(2457), - [sym_await] = STATE(2457), - [sym_new_expression] = STATE(2459), - [sym_sizeof_expression] = STATE(2457), - [sym_cast_expression] = STATE(2457), - [sym_identifier] = ACTIONS(2719), - [anon_sym_LPAREN] = ACTIONS(2721), - [anon_sym_RPAREN] = ACTIONS(2723), - [anon_sym_COMMA] = ACTIONS(1412), - [anon_sym_STAR] = ACTIONS(2725), - [anon_sym_print] = ACTIONS(2727), - [anon_sym_match] = ACTIONS(2727), - [anon_sym_async] = ACTIONS(2727), + [803] = { + [sym_named_expression] = STATE(2421), + [sym__named_expression_lhs] = STATE(5522), + [sym_list_splat] = STATE(5057), + [sym_dictionary_splat] = STATE(5057), + [sym_parenthesized_list_splat] = STATE(5059), + [sym_list_splat_pattern] = STATE(2472), + [sym_as_pattern] = STATE(2421), + [sym_expression] = STATE(3639), + [sym_primary_expression] = STATE(2066), + [sym_not_operator] = STATE(2421), + [sym_boolean_operator] = STATE(2421), + [sym_binary_operator] = STATE(2414), + [sym_unary_operator] = STATE(2414), + [sym_comparison_operator] = STATE(2421), + [sym_lambda] = STATE(2421), + [sym_attribute] = STATE(2414), + [sym_subscript] = STATE(2414), + [sym_ellipsis] = STATE(2414), + [sym_call] = STATE(2414), + [sym_keyword_argument] = STATE(5057), + [sym_list] = STATE(2414), + [sym_set] = STATE(2414), + [sym_tuple] = STATE(2414), + [sym_dictionary] = STATE(2414), + [sym_list_comprehension] = STATE(2414), + [sym_dictionary_comprehension] = STATE(2414), + [sym_set_comprehension] = STATE(2414), + [sym_generator_expression] = STATE(2414), + [sym_parenthesized_expression] = STATE(2414), + [sym_conditional_expression] = STATE(2421), + [sym_concatenated_string] = STATE(2414), + [sym_string] = STATE(2147), + [sym_none] = STATE(2414), + [sym_await] = STATE(2414), + [sym_new_expression] = STATE(2421), + [sym_sizeof_expression] = STATE(2414), + [sym_cast_expression] = STATE(2414), + [sym_identifier] = ACTIONS(2745), + [anon_sym_LPAREN] = ACTIONS(2747), + [anon_sym_RPAREN] = ACTIONS(2749), + [anon_sym_COMMA] = ACTIONS(1418), + [anon_sym_STAR] = ACTIONS(2751), + [anon_sym_print] = ACTIONS(2753), + [anon_sym_match] = ACTIONS(2753), + [anon_sym_async] = ACTIONS(2753), [anon_sym_STAR_STAR] = ACTIONS(1380), - [anon_sym_exec] = ACTIONS(2727), + [anon_sym_exec] = ACTIONS(2753), [anon_sym_LBRACK] = ACTIONS(1472), [anon_sym_DASH] = ACTIONS(1326), [anon_sym_LBRACE] = ACTIONS(1328), @@ -101571,8 +102477,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_None] = ACTIONS(1340), [sym_integer] = ACTIONS(1342), [sym_float] = ACTIONS(1344), - [anon_sym_await] = ACTIONS(2729), - [anon_sym_api] = ACTIONS(2727), + [anon_sym_await] = ACTIONS(2755), + [anon_sym_api] = ACTIONS(2753), [sym_true] = ACTIONS(1342), [sym_false] = ACTIONS(1342), [sym_comment] = ACTIONS(3), @@ -101581,49 +102487,546 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1360), [sym_string_start] = ACTIONS(1362), }, - [793] = { - [sym_named_expression] = STATE(3081), - [sym__named_expression_lhs] = STATE(5469), - [sym_list_splat_pattern] = STATE(2432), - [sym_as_pattern] = STATE(3081), - [sym_expression] = STATE(4138), - [sym_primary_expression] = STATE(2067), - [sym_not_operator] = STATE(3081), - [sym_boolean_operator] = STATE(3081), - [sym_binary_operator] = STATE(2549), - [sym_unary_operator] = STATE(2549), - [sym_comparison_operator] = STATE(3081), - [sym_lambda] = STATE(3081), - [sym_attribute] = STATE(2549), - [sym_subscript] = STATE(2549), - [sym_ellipsis] = STATE(2549), - [sym_call] = STATE(2549), - [sym_type] = STATE(4839), - [sym_splat_type] = STATE(4593), - [sym_generic_type] = STATE(4593), - [sym_union_type] = STATE(4593), - [sym_constrained_type] = STATE(4593), - [sym_member_type] = STATE(4593), - [sym_list] = STATE(2549), - [sym_set] = STATE(2549), - [sym_tuple] = STATE(2549), - [sym_dictionary] = STATE(2549), - [sym_list_comprehension] = STATE(2549), - [sym_dictionary_comprehension] = STATE(2549), - [sym_set_comprehension] = STATE(2549), - [sym_generator_expression] = STATE(2549), - [sym_parenthesized_expression] = STATE(2549), - [sym_conditional_expression] = STATE(3081), - [sym_concatenated_string] = STATE(2549), - [sym_string] = STATE(2140), - [sym_none] = STATE(2549), - [sym_await] = STATE(2549), - [sym_new_expression] = STATE(3081), - [sym_sizeof_expression] = STATE(2549), - [sym_cast_expression] = STATE(2549), - [sym_identifier] = ACTIONS(2731), + [804] = { + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5740), + [sym_list_splat_pattern] = STATE(2088), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3714), + [sym_primary_expression] = STATE(2032), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_attribute] = STATE(2111), + [sym_subscript] = STATE(2111), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_type] = STATE(4179), + [sym_splat_type] = STATE(4213), + [sym_generic_type] = STATE(4213), + [sym_union_type] = STATE(4213), + [sym_constrained_type] = STATE(4213), + [sym_member_type] = STATE(4213), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [sym_identifier] = ACTIONS(2757), + [anon_sym_LPAREN] = ACTIONS(1281), + [anon_sym_STAR] = ACTIONS(2759), + [anon_sym_print] = ACTIONS(1016), + [anon_sym_match] = ACTIONS(1016), + [anon_sym_async] = ACTIONS(1016), + [anon_sym_STAR_STAR] = ACTIONS(2761), + [anon_sym_exec] = ACTIONS(1016), + [anon_sym_LBRACK] = ACTIONS(1287), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(2763), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(71), + [anon_sym_lambda] = ACTIONS(2765), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [sym_integer] = ACTIONS(81), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(1041), + [anon_sym_api] = ACTIONS(1016), + [sym_true] = ACTIONS(81), + [sym_false] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2767), + [anon_sym_sizeof] = ACTIONS(105), + [sym_string_start] = ACTIONS(107), + }, + [805] = { + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5740), + [sym_list_splat_pattern] = STATE(2088), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3714), + [sym_primary_expression] = STATE(2032), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_attribute] = STATE(2111), + [sym_subscript] = STATE(2111), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_type] = STATE(4177), + [sym_splat_type] = STATE(4213), + [sym_generic_type] = STATE(4213), + [sym_union_type] = STATE(4213), + [sym_constrained_type] = STATE(4213), + [sym_member_type] = STATE(4213), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [sym_identifier] = ACTIONS(2757), + [anon_sym_LPAREN] = ACTIONS(1281), + [anon_sym_STAR] = ACTIONS(2759), + [anon_sym_print] = ACTIONS(1016), + [anon_sym_match] = ACTIONS(1016), + [anon_sym_async] = ACTIONS(1016), + [anon_sym_STAR_STAR] = ACTIONS(2761), + [anon_sym_exec] = ACTIONS(1016), + [anon_sym_LBRACK] = ACTIONS(1287), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(2763), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(71), + [anon_sym_lambda] = ACTIONS(2765), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [sym_integer] = ACTIONS(81), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(1041), + [anon_sym_api] = ACTIONS(1016), + [sym_true] = ACTIONS(81), + [sym_false] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2767), + [anon_sym_sizeof] = ACTIONS(105), + [sym_string_start] = ACTIONS(107), + }, + [806] = { + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5740), + [sym_list_splat_pattern] = STATE(2088), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3714), + [sym_primary_expression] = STATE(2032), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_attribute] = STATE(2111), + [sym_subscript] = STATE(2111), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_type] = STATE(4178), + [sym_splat_type] = STATE(4213), + [sym_generic_type] = STATE(4213), + [sym_union_type] = STATE(4213), + [sym_constrained_type] = STATE(4213), + [sym_member_type] = STATE(4213), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [sym_identifier] = ACTIONS(2757), + [anon_sym_LPAREN] = ACTIONS(1281), + [anon_sym_STAR] = ACTIONS(2759), + [anon_sym_print] = ACTIONS(1016), + [anon_sym_match] = ACTIONS(1016), + [anon_sym_async] = ACTIONS(1016), + [anon_sym_STAR_STAR] = ACTIONS(2761), + [anon_sym_exec] = ACTIONS(1016), + [anon_sym_LBRACK] = ACTIONS(1287), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(2763), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(71), + [anon_sym_lambda] = ACTIONS(2765), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [sym_integer] = ACTIONS(81), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(1041), + [anon_sym_api] = ACTIONS(1016), + [sym_true] = ACTIONS(81), + [sym_false] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2767), + [anon_sym_sizeof] = ACTIONS(105), + [sym_string_start] = ACTIONS(107), + }, + [807] = { + [sym_else_clause] = STATE(1122), + [sym_except_clause] = STATE(927), + [sym_finally_clause] = STATE(1476), + [aux_sym_try_statement_repeat1] = STATE(927), + [sym_identifier] = ACTIONS(2769), + [anon_sym_import] = ACTIONS(2769), + [anon_sym_cimport] = ACTIONS(2769), + [anon_sym_from] = ACTIONS(2769), + [anon_sym_LPAREN] = ACTIONS(2771), + [anon_sym_STAR] = ACTIONS(2771), + [anon_sym_print] = ACTIONS(2769), + [anon_sym_assert] = ACTIONS(2769), + [anon_sym_return] = ACTIONS(2769), + [anon_sym_del] = ACTIONS(2769), + [anon_sym_raise] = ACTIONS(2769), + [anon_sym_pass] = ACTIONS(2769), + [anon_sym_break] = ACTIONS(2769), + [anon_sym_continue] = ACTIONS(2769), + [anon_sym_if] = ACTIONS(2769), + [anon_sym_else] = ACTIONS(2773), + [anon_sym_match] = ACTIONS(2769), + [anon_sym_async] = ACTIONS(2769), + [anon_sym_for] = ACTIONS(2769), + [anon_sym_while] = ACTIONS(2769), + [anon_sym_try] = ACTIONS(2769), + [anon_sym_except] = ACTIONS(2775), + [anon_sym_finally] = ACTIONS(2777), + [anon_sym_with] = ACTIONS(2769), + [anon_sym_def] = ACTIONS(2769), + [anon_sym_global] = ACTIONS(2769), + [anon_sym_nonlocal] = ACTIONS(2769), + [anon_sym_exec] = ACTIONS(2769), + [anon_sym_type] = ACTIONS(2769), + [anon_sym_class] = ACTIONS(2769), + [anon_sym_LBRACK] = ACTIONS(2771), + [anon_sym_AT] = ACTIONS(2771), + [anon_sym_DASH] = ACTIONS(2771), + [anon_sym_LBRACE] = ACTIONS(2771), + [anon_sym_PLUS] = ACTIONS(2771), + [anon_sym_not] = ACTIONS(2769), + [anon_sym_AMP] = ACTIONS(2771), + [anon_sym_TILDE] = ACTIONS(2771), + [anon_sym_LT] = ACTIONS(2771), + [anon_sym_lambda] = ACTIONS(2769), + [anon_sym_yield] = ACTIONS(2769), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2771), + [anon_sym_None] = ACTIONS(2769), + [sym_integer] = ACTIONS(2769), + [sym_float] = ACTIONS(2771), + [anon_sym_await] = ACTIONS(2769), + [anon_sym_api] = ACTIONS(2769), + [sym_true] = ACTIONS(2769), + [sym_false] = ACTIONS(2769), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2769), + [anon_sym_include] = ACTIONS(2769), + [anon_sym_DEF] = ACTIONS(2769), + [anon_sym_cdef] = ACTIONS(2769), + [anon_sym_cpdef] = ACTIONS(2769), + [anon_sym_new] = ACTIONS(2769), + [anon_sym_ctypedef] = ACTIONS(2769), + [anon_sym_public] = ACTIONS(2769), + [anon_sym_packed] = ACTIONS(2769), + [anon_sym_inline] = ACTIONS(2769), + [anon_sym_readonly] = ACTIONS(2769), + [anon_sym_sizeof] = ACTIONS(2769), + [sym__dedent] = ACTIONS(2771), + [sym_string_start] = ACTIONS(2771), + }, + [808] = { + [sym_else_clause] = STATE(1122), + [sym_except_group_clause] = STATE(928), + [sym_finally_clause] = STATE(1476), + [aux_sym_try_statement_repeat2] = STATE(928), + [sym_identifier] = ACTIONS(2769), + [anon_sym_import] = ACTIONS(2769), + [anon_sym_cimport] = ACTIONS(2769), + [anon_sym_from] = ACTIONS(2769), + [anon_sym_LPAREN] = ACTIONS(2771), + [anon_sym_STAR] = ACTIONS(2771), + [anon_sym_print] = ACTIONS(2769), + [anon_sym_assert] = ACTIONS(2769), + [anon_sym_return] = ACTIONS(2769), + [anon_sym_del] = ACTIONS(2769), + [anon_sym_raise] = ACTIONS(2769), + [anon_sym_pass] = ACTIONS(2769), + [anon_sym_break] = ACTIONS(2769), + [anon_sym_continue] = ACTIONS(2769), + [anon_sym_if] = ACTIONS(2769), + [anon_sym_else] = ACTIONS(2773), + [anon_sym_match] = ACTIONS(2769), + [anon_sym_async] = ACTIONS(2769), + [anon_sym_for] = ACTIONS(2769), + [anon_sym_while] = ACTIONS(2769), + [anon_sym_try] = ACTIONS(2769), + [anon_sym_except_STAR] = ACTIONS(2779), + [anon_sym_finally] = ACTIONS(2777), + [anon_sym_with] = ACTIONS(2769), + [anon_sym_def] = ACTIONS(2769), + [anon_sym_global] = ACTIONS(2769), + [anon_sym_nonlocal] = ACTIONS(2769), + [anon_sym_exec] = ACTIONS(2769), + [anon_sym_type] = ACTIONS(2769), + [anon_sym_class] = ACTIONS(2769), + [anon_sym_LBRACK] = ACTIONS(2771), + [anon_sym_AT] = ACTIONS(2771), + [anon_sym_DASH] = ACTIONS(2771), + [anon_sym_LBRACE] = ACTIONS(2771), + [anon_sym_PLUS] = ACTIONS(2771), + [anon_sym_not] = ACTIONS(2769), + [anon_sym_AMP] = ACTIONS(2771), + [anon_sym_TILDE] = ACTIONS(2771), + [anon_sym_LT] = ACTIONS(2771), + [anon_sym_lambda] = ACTIONS(2769), + [anon_sym_yield] = ACTIONS(2769), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2771), + [anon_sym_None] = ACTIONS(2769), + [sym_integer] = ACTIONS(2769), + [sym_float] = ACTIONS(2771), + [anon_sym_await] = ACTIONS(2769), + [anon_sym_api] = ACTIONS(2769), + [sym_true] = ACTIONS(2769), + [sym_false] = ACTIONS(2769), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2769), + [anon_sym_include] = ACTIONS(2769), + [anon_sym_DEF] = ACTIONS(2769), + [anon_sym_cdef] = ACTIONS(2769), + [anon_sym_cpdef] = ACTIONS(2769), + [anon_sym_new] = ACTIONS(2769), + [anon_sym_ctypedef] = ACTIONS(2769), + [anon_sym_public] = ACTIONS(2769), + [anon_sym_packed] = ACTIONS(2769), + [anon_sym_inline] = ACTIONS(2769), + [anon_sym_readonly] = ACTIONS(2769), + [anon_sym_sizeof] = ACTIONS(2769), + [sym__dedent] = ACTIONS(2771), + [sym_string_start] = ACTIONS(2771), + }, + [809] = { + [sym_else_clause] = STATE(1135), + [sym_except_clause] = STATE(927), + [sym_finally_clause] = STATE(1503), + [aux_sym_try_statement_repeat1] = STATE(927), + [sym_identifier] = ACTIONS(2691), + [anon_sym_import] = ACTIONS(2691), + [anon_sym_cimport] = ACTIONS(2691), + [anon_sym_from] = ACTIONS(2691), + [anon_sym_LPAREN] = ACTIONS(2689), + [anon_sym_STAR] = ACTIONS(2689), + [anon_sym_print] = ACTIONS(2691), + [anon_sym_assert] = ACTIONS(2691), + [anon_sym_return] = ACTIONS(2691), + [anon_sym_del] = ACTIONS(2691), + [anon_sym_raise] = ACTIONS(2691), + [anon_sym_pass] = ACTIONS(2691), + [anon_sym_break] = ACTIONS(2691), + [anon_sym_continue] = ACTIONS(2691), + [anon_sym_if] = ACTIONS(2691), + [anon_sym_else] = ACTIONS(2773), + [anon_sym_match] = ACTIONS(2691), + [anon_sym_async] = ACTIONS(2691), + [anon_sym_for] = ACTIONS(2691), + [anon_sym_while] = ACTIONS(2691), + [anon_sym_try] = ACTIONS(2691), + [anon_sym_except] = ACTIONS(2775), + [anon_sym_finally] = ACTIONS(2777), + [anon_sym_with] = ACTIONS(2691), + [anon_sym_def] = ACTIONS(2691), + [anon_sym_global] = ACTIONS(2691), + [anon_sym_nonlocal] = ACTIONS(2691), + [anon_sym_exec] = ACTIONS(2691), + [anon_sym_type] = ACTIONS(2691), + [anon_sym_class] = ACTIONS(2691), + [anon_sym_LBRACK] = ACTIONS(2689), + [anon_sym_AT] = ACTIONS(2689), + [anon_sym_DASH] = ACTIONS(2689), + [anon_sym_LBRACE] = ACTIONS(2689), + [anon_sym_PLUS] = ACTIONS(2689), + [anon_sym_not] = ACTIONS(2691), + [anon_sym_AMP] = ACTIONS(2689), + [anon_sym_TILDE] = ACTIONS(2689), + [anon_sym_LT] = ACTIONS(2689), + [anon_sym_lambda] = ACTIONS(2691), + [anon_sym_yield] = ACTIONS(2691), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2689), + [anon_sym_None] = ACTIONS(2691), + [sym_integer] = ACTIONS(2691), + [sym_float] = ACTIONS(2689), + [anon_sym_await] = ACTIONS(2691), + [anon_sym_api] = ACTIONS(2691), + [sym_true] = ACTIONS(2691), + [sym_false] = ACTIONS(2691), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2691), + [anon_sym_include] = ACTIONS(2691), + [anon_sym_DEF] = ACTIONS(2691), + [anon_sym_cdef] = ACTIONS(2691), + [anon_sym_cpdef] = ACTIONS(2691), + [anon_sym_new] = ACTIONS(2691), + [anon_sym_ctypedef] = ACTIONS(2691), + [anon_sym_public] = ACTIONS(2691), + [anon_sym_packed] = ACTIONS(2691), + [anon_sym_inline] = ACTIONS(2691), + [anon_sym_readonly] = ACTIONS(2691), + [anon_sym_sizeof] = ACTIONS(2691), + [sym__dedent] = ACTIONS(2689), + [sym_string_start] = ACTIONS(2689), + }, + [810] = { + [sym_else_clause] = STATE(1135), + [sym_except_group_clause] = STATE(928), + [sym_finally_clause] = STATE(1503), + [aux_sym_try_statement_repeat2] = STATE(928), + [sym_identifier] = ACTIONS(2691), + [anon_sym_import] = ACTIONS(2691), + [anon_sym_cimport] = ACTIONS(2691), + [anon_sym_from] = ACTIONS(2691), + [anon_sym_LPAREN] = ACTIONS(2689), + [anon_sym_STAR] = ACTIONS(2689), + [anon_sym_print] = ACTIONS(2691), + [anon_sym_assert] = ACTIONS(2691), + [anon_sym_return] = ACTIONS(2691), + [anon_sym_del] = ACTIONS(2691), + [anon_sym_raise] = ACTIONS(2691), + [anon_sym_pass] = ACTIONS(2691), + [anon_sym_break] = ACTIONS(2691), + [anon_sym_continue] = ACTIONS(2691), + [anon_sym_if] = ACTIONS(2691), + [anon_sym_else] = ACTIONS(2773), + [anon_sym_match] = ACTIONS(2691), + [anon_sym_async] = ACTIONS(2691), + [anon_sym_for] = ACTIONS(2691), + [anon_sym_while] = ACTIONS(2691), + [anon_sym_try] = ACTIONS(2691), + [anon_sym_except_STAR] = ACTIONS(2779), + [anon_sym_finally] = ACTIONS(2777), + [anon_sym_with] = ACTIONS(2691), + [anon_sym_def] = ACTIONS(2691), + [anon_sym_global] = ACTIONS(2691), + [anon_sym_nonlocal] = ACTIONS(2691), + [anon_sym_exec] = ACTIONS(2691), + [anon_sym_type] = ACTIONS(2691), + [anon_sym_class] = ACTIONS(2691), + [anon_sym_LBRACK] = ACTIONS(2689), + [anon_sym_AT] = ACTIONS(2689), + [anon_sym_DASH] = ACTIONS(2689), + [anon_sym_LBRACE] = ACTIONS(2689), + [anon_sym_PLUS] = ACTIONS(2689), + [anon_sym_not] = ACTIONS(2691), + [anon_sym_AMP] = ACTIONS(2689), + [anon_sym_TILDE] = ACTIONS(2689), + [anon_sym_LT] = ACTIONS(2689), + [anon_sym_lambda] = ACTIONS(2691), + [anon_sym_yield] = ACTIONS(2691), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2689), + [anon_sym_None] = ACTIONS(2691), + [sym_integer] = ACTIONS(2691), + [sym_float] = ACTIONS(2689), + [anon_sym_await] = ACTIONS(2691), + [anon_sym_api] = ACTIONS(2691), + [sym_true] = ACTIONS(2691), + [sym_false] = ACTIONS(2691), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2691), + [anon_sym_include] = ACTIONS(2691), + [anon_sym_DEF] = ACTIONS(2691), + [anon_sym_cdef] = ACTIONS(2691), + [anon_sym_cpdef] = ACTIONS(2691), + [anon_sym_new] = ACTIONS(2691), + [anon_sym_ctypedef] = ACTIONS(2691), + [anon_sym_public] = ACTIONS(2691), + [anon_sym_packed] = ACTIONS(2691), + [anon_sym_inline] = ACTIONS(2691), + [anon_sym_readonly] = ACTIONS(2691), + [anon_sym_sizeof] = ACTIONS(2691), + [sym__dedent] = ACTIONS(2689), + [sym_string_start] = ACTIONS(2689), + }, + [811] = { + [sym_named_expression] = STATE(3088), + [sym__named_expression_lhs] = STATE(5579), + [sym_list_splat_pattern] = STATE(2536), + [sym_as_pattern] = STATE(3088), + [sym_expression] = STATE(4142), + [sym_primary_expression] = STATE(2072), + [sym_not_operator] = STATE(3088), + [sym_boolean_operator] = STATE(3088), + [sym_binary_operator] = STATE(2401), + [sym_unary_operator] = STATE(2401), + [sym_comparison_operator] = STATE(3088), + [sym_lambda] = STATE(3088), + [sym_attribute] = STATE(2401), + [sym_subscript] = STATE(2401), + [sym_ellipsis] = STATE(2401), + [sym_call] = STATE(2401), + [sym_type] = STATE(5029), + [sym_splat_type] = STATE(4597), + [sym_generic_type] = STATE(4597), + [sym_union_type] = STATE(4597), + [sym_constrained_type] = STATE(4597), + [sym_member_type] = STATE(4597), + [sym_list] = STATE(2401), + [sym_set] = STATE(2401), + [sym_tuple] = STATE(2401), + [sym_dictionary] = STATE(2401), + [sym_list_comprehension] = STATE(2401), + [sym_dictionary_comprehension] = STATE(2401), + [sym_set_comprehension] = STATE(2401), + [sym_generator_expression] = STATE(2401), + [sym_parenthesized_expression] = STATE(2401), + [sym_conditional_expression] = STATE(3088), + [sym_concatenated_string] = STATE(2401), + [sym_string] = STATE(2161), + [sym_none] = STATE(2401), + [sym_await] = STATE(2401), + [sym_new_expression] = STATE(3088), + [sym_sizeof_expression] = STATE(2401), + [sym_cast_expression] = STATE(2401), + [sym_identifier] = ACTIONS(2701), [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_STAR] = ACTIONS(2733), + [anon_sym_STAR] = ACTIONS(2703), [anon_sym_print] = ACTIONS(1217), [anon_sym_match] = ACTIONS(1217), [anon_sym_async] = ACTIONS(1217), @@ -101636,7 +103039,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not] = ACTIONS(1225), [anon_sym_AMP] = ACTIONS(1227), [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(2735), + [anon_sym_LT] = ACTIONS(2705), [anon_sym_lambda] = ACTIONS(1231), [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), [anon_sym_None] = ACTIONS(1235), @@ -101652,54 +103055,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1245), [sym_string_start] = ACTIONS(1247), }, - [794] = { - [sym_named_expression] = STATE(2459), - [sym__named_expression_lhs] = STATE(5688), - [sym_list_splat] = STATE(5150), - [sym_dictionary_splat] = STATE(5150), - [sym_parenthesized_list_splat] = STATE(4683), - [sym_list_splat_pattern] = STATE(2477), - [sym_as_pattern] = STATE(2459), - [sym_expression] = STATE(3655), - [sym_primary_expression] = STATE(2060), - [sym_not_operator] = STATE(2459), - [sym_boolean_operator] = STATE(2459), - [sym_binary_operator] = STATE(2457), - [sym_unary_operator] = STATE(2457), - [sym_comparison_operator] = STATE(2459), - [sym_lambda] = STATE(2459), - [sym_attribute] = STATE(2457), - [sym_subscript] = STATE(2457), - [sym_ellipsis] = STATE(2457), - [sym_call] = STATE(2457), - [sym_keyword_argument] = STATE(5150), - [sym_list] = STATE(2457), - [sym_set] = STATE(2457), - [sym_tuple] = STATE(2457), - [sym_dictionary] = STATE(2457), - [sym_list_comprehension] = STATE(2457), - [sym_dictionary_comprehension] = STATE(2457), - [sym_set_comprehension] = STATE(2457), - [sym_generator_expression] = STATE(2457), - [sym_parenthesized_expression] = STATE(2457), - [sym_conditional_expression] = STATE(2459), - [sym_concatenated_string] = STATE(2457), - [sym_string] = STATE(2170), - [sym_none] = STATE(2457), - [sym_await] = STATE(2457), - [sym_new_expression] = STATE(2459), - [sym_sizeof_expression] = STATE(2457), - [sym_cast_expression] = STATE(2457), - [sym_identifier] = ACTIONS(2719), - [anon_sym_LPAREN] = ACTIONS(2721), - [anon_sym_RPAREN] = ACTIONS(2737), + [812] = { + [sym_named_expression] = STATE(2421), + [sym__named_expression_lhs] = STATE(5522), + [sym_list_splat] = STATE(4969), + [sym_dictionary_splat] = STATE(4969), + [sym_parenthesized_list_splat] = STATE(4970), + [sym_list_splat_pattern] = STATE(2472), + [sym_as_pattern] = STATE(2421), + [sym_expression] = STATE(3681), + [sym_primary_expression] = STATE(2066), + [sym_not_operator] = STATE(2421), + [sym_boolean_operator] = STATE(2421), + [sym_binary_operator] = STATE(2414), + [sym_unary_operator] = STATE(2414), + [sym_comparison_operator] = STATE(2421), + [sym_lambda] = STATE(2421), + [sym_attribute] = STATE(2414), + [sym_subscript] = STATE(2414), + [sym_ellipsis] = STATE(2414), + [sym_call] = STATE(2414), + [sym_keyword_argument] = STATE(4969), + [sym_list] = STATE(2414), + [sym_set] = STATE(2414), + [sym_tuple] = STATE(2414), + [sym_dictionary] = STATE(2414), + [sym_list_comprehension] = STATE(2414), + [sym_dictionary_comprehension] = STATE(2414), + [sym_set_comprehension] = STATE(2414), + [sym_generator_expression] = STATE(2414), + [sym_parenthesized_expression] = STATE(2414), + [sym_conditional_expression] = STATE(2421), + [sym_concatenated_string] = STATE(2414), + [sym_string] = STATE(2147), + [sym_none] = STATE(2414), + [sym_await] = STATE(2414), + [sym_new_expression] = STATE(2421), + [sym_sizeof_expression] = STATE(2414), + [sym_cast_expression] = STATE(2414), + [sym_identifier] = ACTIONS(2745), + [anon_sym_LPAREN] = ACTIONS(2747), + [anon_sym_RPAREN] = ACTIONS(2781), [anon_sym_COMMA] = ACTIONS(1422), - [anon_sym_STAR] = ACTIONS(2725), - [anon_sym_print] = ACTIONS(2727), - [anon_sym_match] = ACTIONS(2727), - [anon_sym_async] = ACTIONS(2727), + [anon_sym_STAR] = ACTIONS(2751), + [anon_sym_print] = ACTIONS(2753), + [anon_sym_match] = ACTIONS(2753), + [anon_sym_async] = ACTIONS(2753), [anon_sym_STAR_STAR] = ACTIONS(1380), - [anon_sym_exec] = ACTIONS(2727), + [anon_sym_exec] = ACTIONS(2753), [anon_sym_LBRACK] = ACTIONS(1472), [anon_sym_DASH] = ACTIONS(1326), [anon_sym_LBRACE] = ACTIONS(1328), @@ -101713,8 +103116,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_None] = ACTIONS(1340), [sym_integer] = ACTIONS(1342), [sym_float] = ACTIONS(1344), - [anon_sym_await] = ACTIONS(2729), - [anon_sym_api] = ACTIONS(2727), + [anon_sym_await] = ACTIONS(2755), + [anon_sym_api] = ACTIONS(2753), [sym_true] = ACTIONS(1342), [sym_false] = ACTIONS(1342), [sym_comment] = ACTIONS(3), @@ -101723,54 +103126,267 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1360), [sym_string_start] = ACTIONS(1362), }, - [795] = { - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), + [813] = { + [sym_else_clause] = STATE(1123), + [sym_except_clause] = STATE(920), + [sym_finally_clause] = STATE(1725), + [aux_sym_try_statement_repeat1] = STATE(920), + [ts_builtin_sym_end] = ACTIONS(2771), + [sym_identifier] = ACTIONS(2769), + [anon_sym_import] = ACTIONS(2769), + [anon_sym_cimport] = ACTIONS(2769), + [anon_sym_from] = ACTIONS(2769), + [anon_sym_LPAREN] = ACTIONS(2771), + [anon_sym_STAR] = ACTIONS(2771), + [anon_sym_print] = ACTIONS(2769), + [anon_sym_assert] = ACTIONS(2769), + [anon_sym_return] = ACTIONS(2769), + [anon_sym_del] = ACTIONS(2769), + [anon_sym_raise] = ACTIONS(2769), + [anon_sym_pass] = ACTIONS(2769), + [anon_sym_break] = ACTIONS(2769), + [anon_sym_continue] = ACTIONS(2769), + [anon_sym_if] = ACTIONS(2769), + [anon_sym_else] = ACTIONS(2693), + [anon_sym_match] = ACTIONS(2769), + [anon_sym_async] = ACTIONS(2769), + [anon_sym_for] = ACTIONS(2769), + [anon_sym_while] = ACTIONS(2769), + [anon_sym_try] = ACTIONS(2769), + [anon_sym_except] = ACTIONS(2699), + [anon_sym_finally] = ACTIONS(2697), + [anon_sym_with] = ACTIONS(2769), + [anon_sym_def] = ACTIONS(2769), + [anon_sym_global] = ACTIONS(2769), + [anon_sym_nonlocal] = ACTIONS(2769), + [anon_sym_exec] = ACTIONS(2769), + [anon_sym_type] = ACTIONS(2769), + [anon_sym_class] = ACTIONS(2769), + [anon_sym_LBRACK] = ACTIONS(2771), + [anon_sym_AT] = ACTIONS(2771), + [anon_sym_DASH] = ACTIONS(2771), + [anon_sym_LBRACE] = ACTIONS(2771), + [anon_sym_PLUS] = ACTIONS(2771), + [anon_sym_not] = ACTIONS(2769), + [anon_sym_AMP] = ACTIONS(2771), + [anon_sym_TILDE] = ACTIONS(2771), + [anon_sym_LT] = ACTIONS(2771), + [anon_sym_lambda] = ACTIONS(2769), + [anon_sym_yield] = ACTIONS(2769), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2771), + [anon_sym_None] = ACTIONS(2769), + [sym_integer] = ACTIONS(2769), + [sym_float] = ACTIONS(2771), + [anon_sym_await] = ACTIONS(2769), + [anon_sym_api] = ACTIONS(2769), + [sym_true] = ACTIONS(2769), + [sym_false] = ACTIONS(2769), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2769), + [anon_sym_include] = ACTIONS(2769), + [anon_sym_DEF] = ACTIONS(2769), + [anon_sym_cdef] = ACTIONS(2769), + [anon_sym_cpdef] = ACTIONS(2769), + [anon_sym_new] = ACTIONS(2769), + [anon_sym_ctypedef] = ACTIONS(2769), + [anon_sym_public] = ACTIONS(2769), + [anon_sym_packed] = ACTIONS(2769), + [anon_sym_inline] = ACTIONS(2769), + [anon_sym_readonly] = ACTIONS(2769), + [anon_sym_sizeof] = ACTIONS(2769), + [sym_string_start] = ACTIONS(2771), + }, + [814] = { + [sym_else_clause] = STATE(1123), + [sym_except_group_clause] = STATE(918), + [sym_finally_clause] = STATE(1725), + [aux_sym_try_statement_repeat2] = STATE(918), + [ts_builtin_sym_end] = ACTIONS(2771), + [sym_identifier] = ACTIONS(2769), + [anon_sym_import] = ACTIONS(2769), + [anon_sym_cimport] = ACTIONS(2769), + [anon_sym_from] = ACTIONS(2769), + [anon_sym_LPAREN] = ACTIONS(2771), + [anon_sym_STAR] = ACTIONS(2771), + [anon_sym_print] = ACTIONS(2769), + [anon_sym_assert] = ACTIONS(2769), + [anon_sym_return] = ACTIONS(2769), + [anon_sym_del] = ACTIONS(2769), + [anon_sym_raise] = ACTIONS(2769), + [anon_sym_pass] = ACTIONS(2769), + [anon_sym_break] = ACTIONS(2769), + [anon_sym_continue] = ACTIONS(2769), + [anon_sym_if] = ACTIONS(2769), + [anon_sym_else] = ACTIONS(2693), + [anon_sym_match] = ACTIONS(2769), + [anon_sym_async] = ACTIONS(2769), + [anon_sym_for] = ACTIONS(2769), + [anon_sym_while] = ACTIONS(2769), + [anon_sym_try] = ACTIONS(2769), + [anon_sym_except_STAR] = ACTIONS(2695), + [anon_sym_finally] = ACTIONS(2697), + [anon_sym_with] = ACTIONS(2769), + [anon_sym_def] = ACTIONS(2769), + [anon_sym_global] = ACTIONS(2769), + [anon_sym_nonlocal] = ACTIONS(2769), + [anon_sym_exec] = ACTIONS(2769), + [anon_sym_type] = ACTIONS(2769), + [anon_sym_class] = ACTIONS(2769), + [anon_sym_LBRACK] = ACTIONS(2771), + [anon_sym_AT] = ACTIONS(2771), + [anon_sym_DASH] = ACTIONS(2771), + [anon_sym_LBRACE] = ACTIONS(2771), + [anon_sym_PLUS] = ACTIONS(2771), + [anon_sym_not] = ACTIONS(2769), + [anon_sym_AMP] = ACTIONS(2771), + [anon_sym_TILDE] = ACTIONS(2771), + [anon_sym_LT] = ACTIONS(2771), + [anon_sym_lambda] = ACTIONS(2769), + [anon_sym_yield] = ACTIONS(2769), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2771), + [anon_sym_None] = ACTIONS(2769), + [sym_integer] = ACTIONS(2769), + [sym_float] = ACTIONS(2771), + [anon_sym_await] = ACTIONS(2769), + [anon_sym_api] = ACTIONS(2769), + [sym_true] = ACTIONS(2769), + [sym_false] = ACTIONS(2769), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2769), + [anon_sym_include] = ACTIONS(2769), + [anon_sym_DEF] = ACTIONS(2769), + [anon_sym_cdef] = ACTIONS(2769), + [anon_sym_cpdef] = ACTIONS(2769), + [anon_sym_new] = ACTIONS(2769), + [anon_sym_ctypedef] = ACTIONS(2769), + [anon_sym_public] = ACTIONS(2769), + [anon_sym_packed] = ACTIONS(2769), + [anon_sym_inline] = ACTIONS(2769), + [anon_sym_readonly] = ACTIONS(2769), + [anon_sym_sizeof] = ACTIONS(2769), + [sym_string_start] = ACTIONS(2771), + }, + [815] = { + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(5160), + [sym_dictionary_splat] = STATE(5160), + [sym_parenthesized_list_splat] = STATE(5161), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4048), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(5160), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(2783), + [anon_sym_LPAREN] = ACTIONS(2785), + [anon_sym_RPAREN] = ACTIONS(1412), + [anon_sym_COMMA] = ACTIONS(1414), + [anon_sym_STAR] = ACTIONS(1376), + [anon_sym_print] = ACTIONS(1378), + [anon_sym_match] = ACTIONS(1378), + [anon_sym_async] = ACTIONS(1378), + [anon_sym_STAR_STAR] = ACTIONS(1380), + [anon_sym_exec] = ACTIONS(1378), + [anon_sym_LBRACK] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_LBRACE] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(1384), + [anon_sym_not] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_TILDE] = ACTIONS(1384), + [anon_sym_LT] = ACTIONS(1390), + [anon_sym_lambda] = ACTIONS(1392), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1394), + [anon_sym_None] = ACTIONS(1396), + [sym_integer] = ACTIONS(1398), + [sym_float] = ACTIONS(1400), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_api] = ACTIONS(1378), + [sym_true] = ACTIONS(1398), + [sym_false] = ACTIONS(1398), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1404), + [anon_sym_sizeof] = ACTIONS(1406), + [sym_string_start] = ACTIONS(1408), + }, + [816] = { + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), [sym_list_splat_pattern] = STATE(2088), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3831), - [sym_primary_expression] = STATE(2024), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_attribute] = STATE(2123), - [sym_subscript] = STATE(2123), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_type] = STATE(4463), - [sym_splat_type] = STATE(4238), - [sym_generic_type] = STATE(4238), - [sym_union_type] = STATE(4238), - [sym_constrained_type] = STATE(4238), - [sym_member_type] = STATE(4238), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [sym_identifier] = ACTIONS(2679), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2032), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_attribute] = STATE(2111), + [sym_subscript] = STATE(2111), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_type] = STATE(4471), + [sym_splat_type] = STATE(4213), + [sym_generic_type] = STATE(4213), + [sym_union_type] = STATE(4213), + [sym_constrained_type] = STATE(4213), + [sym_member_type] = STATE(4213), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [sym_identifier] = ACTIONS(2757), [anon_sym_LPAREN] = ACTIONS(1281), - [anon_sym_STAR] = ACTIONS(2681), - [anon_sym_print] = ACTIONS(592), - [anon_sym_match] = ACTIONS(592), - [anon_sym_async] = ACTIONS(592), - [anon_sym_STAR_STAR] = ACTIONS(2683), - [anon_sym_exec] = ACTIONS(592), + [anon_sym_STAR] = ACTIONS(2759), + [anon_sym_print] = ACTIONS(1016), + [anon_sym_match] = ACTIONS(1016), + [anon_sym_async] = ACTIONS(1016), + [anon_sym_STAR_STAR] = ACTIONS(2761), + [anon_sym_exec] = ACTIONS(1016), [anon_sym_LBRACK] = ACTIONS(1287), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), @@ -101784,8 +103400,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), - [anon_sym_await] = ACTIONS(614), - [anon_sym_api] = ACTIONS(592), + [anon_sym_await] = ACTIONS(1041), + [anon_sym_api] = ACTIONS(1016), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -101794,49 +103410,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(105), [sym_string_start] = ACTIONS(107), }, - [796] = { - [sym_named_expression] = STATE(3081), - [sym__named_expression_lhs] = STATE(5469), - [sym_list_splat_pattern] = STATE(2432), - [sym_as_pattern] = STATE(3081), - [sym_expression] = STATE(4138), - [sym_primary_expression] = STATE(2067), - [sym_not_operator] = STATE(3081), - [sym_boolean_operator] = STATE(3081), - [sym_binary_operator] = STATE(2549), - [sym_unary_operator] = STATE(2549), - [sym_comparison_operator] = STATE(3081), - [sym_lambda] = STATE(3081), - [sym_attribute] = STATE(2549), - [sym_subscript] = STATE(2549), - [sym_ellipsis] = STATE(2549), - [sym_call] = STATE(2549), - [sym_type] = STATE(5076), - [sym_splat_type] = STATE(4593), - [sym_generic_type] = STATE(4593), - [sym_union_type] = STATE(4593), - [sym_constrained_type] = STATE(4593), - [sym_member_type] = STATE(4593), - [sym_list] = STATE(2549), - [sym_set] = STATE(2549), - [sym_tuple] = STATE(2549), - [sym_dictionary] = STATE(2549), - [sym_list_comprehension] = STATE(2549), - [sym_dictionary_comprehension] = STATE(2549), - [sym_set_comprehension] = STATE(2549), - [sym_generator_expression] = STATE(2549), - [sym_parenthesized_expression] = STATE(2549), - [sym_conditional_expression] = STATE(3081), - [sym_concatenated_string] = STATE(2549), - [sym_string] = STATE(2140), - [sym_none] = STATE(2549), - [sym_await] = STATE(2549), - [sym_new_expression] = STATE(3081), - [sym_sizeof_expression] = STATE(2549), - [sym_cast_expression] = STATE(2549), - [sym_identifier] = ACTIONS(2731), + [817] = { + [sym_named_expression] = STATE(3088), + [sym__named_expression_lhs] = STATE(5579), + [sym_list_splat_pattern] = STATE(2536), + [sym_as_pattern] = STATE(3088), + [sym_expression] = STATE(4142), + [sym_primary_expression] = STATE(2072), + [sym_not_operator] = STATE(3088), + [sym_boolean_operator] = STATE(3088), + [sym_binary_operator] = STATE(2401), + [sym_unary_operator] = STATE(2401), + [sym_comparison_operator] = STATE(3088), + [sym_lambda] = STATE(3088), + [sym_attribute] = STATE(2401), + [sym_subscript] = STATE(2401), + [sym_ellipsis] = STATE(2401), + [sym_call] = STATE(2401), + [sym_type] = STATE(4947), + [sym_splat_type] = STATE(4597), + [sym_generic_type] = STATE(4597), + [sym_union_type] = STATE(4597), + [sym_constrained_type] = STATE(4597), + [sym_member_type] = STATE(4597), + [sym_list] = STATE(2401), + [sym_set] = STATE(2401), + [sym_tuple] = STATE(2401), + [sym_dictionary] = STATE(2401), + [sym_list_comprehension] = STATE(2401), + [sym_dictionary_comprehension] = STATE(2401), + [sym_set_comprehension] = STATE(2401), + [sym_generator_expression] = STATE(2401), + [sym_parenthesized_expression] = STATE(2401), + [sym_conditional_expression] = STATE(3088), + [sym_concatenated_string] = STATE(2401), + [sym_string] = STATE(2161), + [sym_none] = STATE(2401), + [sym_await] = STATE(2401), + [sym_new_expression] = STATE(3088), + [sym_sizeof_expression] = STATE(2401), + [sym_cast_expression] = STATE(2401), + [sym_identifier] = ACTIONS(2701), [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_STAR] = ACTIONS(2733), + [anon_sym_STAR] = ACTIONS(2703), [anon_sym_print] = ACTIONS(1217), [anon_sym_match] = ACTIONS(1217), [anon_sym_async] = ACTIONS(1217), @@ -101849,7 +103465,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not] = ACTIONS(1225), [anon_sym_AMP] = ACTIONS(1227), [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(2735), + [anon_sym_LT] = ACTIONS(2705), [anon_sym_lambda] = ACTIONS(1231), [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), [anon_sym_None] = ACTIONS(1235), @@ -101865,332 +103481,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1245), [sym_string_start] = ACTIONS(1247), }, - [797] = { - [sym_named_expression] = STATE(3081), - [sym__named_expression_lhs] = STATE(5651), - [sym_list_splat_pattern] = STATE(2432), - [sym_as_pattern] = STATE(3081), - [sym_expression] = STATE(3946), - [sym_primary_expression] = STATE(2067), - [sym_not_operator] = STATE(3081), - [sym_boolean_operator] = STATE(3081), - [sym_binary_operator] = STATE(2549), - [sym_unary_operator] = STATE(2549), - [sym_comparison_operator] = STATE(3081), - [sym_lambda] = STATE(3081), - [sym_attribute] = STATE(2549), - [sym_subscript] = STATE(2549), - [sym_ellipsis] = STATE(2549), - [sym_call] = STATE(2549), - [sym_type] = STATE(4519), - [sym_splat_type] = STATE(4593), - [sym_generic_type] = STATE(4593), - [sym_union_type] = STATE(4593), - [sym_constrained_type] = STATE(4593), - [sym_member_type] = STATE(4593), - [sym_list] = STATE(2549), - [sym_set] = STATE(2549), - [sym_tuple] = STATE(2549), - [sym_dictionary] = STATE(2549), - [sym_list_comprehension] = STATE(2549), - [sym_dictionary_comprehension] = STATE(2549), - [sym_set_comprehension] = STATE(2549), - [sym_generator_expression] = STATE(2549), - [sym_parenthesized_expression] = STATE(2549), - [sym_conditional_expression] = STATE(3081), - [sym_concatenated_string] = STATE(2549), - [sym_string] = STATE(2140), - [sym_none] = STATE(2549), - [sym_await] = STATE(2549), - [sym_new_expression] = STATE(3081), - [sym_sizeof_expression] = STATE(2549), - [sym_cast_expression] = STATE(2549), - [sym_identifier] = ACTIONS(2731), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_STAR] = ACTIONS(2733), - [anon_sym_print] = ACTIONS(1217), - [anon_sym_match] = ACTIONS(1217), - [anon_sym_async] = ACTIONS(1217), - [anon_sym_STAR_STAR] = ACTIONS(457), - [anon_sym_exec] = ACTIONS(1217), - [anon_sym_LBRACK] = ACTIONS(1219), - [anon_sym_DASH] = ACTIONS(1227), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_PLUS] = ACTIONS(1227), - [anon_sym_not] = ACTIONS(2739), - [anon_sym_AMP] = ACTIONS(1227), - [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(2735), - [anon_sym_lambda] = ACTIONS(2741), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), - [anon_sym_None] = ACTIONS(1235), - [sym_integer] = ACTIONS(1237), - [sym_float] = ACTIONS(1239), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_api] = ACTIONS(1217), - [sym_true] = ACTIONS(1237), - [sym_false] = ACTIONS(1237), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2743), - [anon_sym_sizeof] = ACTIONS(1245), - [sym_string_start] = ACTIONS(1247), - }, - [798] = { - [sym_pattern] = STATE(3223), - [sym_tuple_pattern] = STATE(3221), - [sym_list_pattern] = STATE(3221), - [sym_list_splat_pattern] = STATE(2394), - [sym_primary_expression] = STATE(3213), - [sym_binary_operator] = STATE(2549), - [sym_unary_operator] = STATE(2549), - [sym_attribute] = STATE(2395), - [sym_subscript] = STATE(2395), - [sym_ellipsis] = STATE(2549), - [sym_call] = STATE(2549), - [sym_list] = STATE(2549), - [sym_set] = STATE(2549), - [sym_tuple] = STATE(2549), - [sym_dictionary] = STATE(2549), - [sym_list_comprehension] = STATE(2549), - [sym_dictionary_comprehension] = STATE(2549), - [sym_set_comprehension] = STATE(2549), - [sym_generator_expression] = STATE(2549), - [sym_parenthesized_expression] = STATE(2549), - [sym_concatenated_string] = STATE(2549), - [sym_string] = STATE(2140), - [sym_none] = STATE(2549), - [sym_await] = STATE(2549), - [sym_sizeof_expression] = STATE(2549), - [sym_cast_expression] = STATE(2549), - [sym_identifier] = ACTIONS(2745), - [anon_sym_SEMI] = ACTIONS(2747), - [anon_sym_LPAREN] = ACTIONS(2749), - [anon_sym_STAR] = ACTIONS(2751), - [anon_sym_print] = ACTIONS(2753), - [anon_sym_COLON] = ACTIONS(2747), - [anon_sym_match] = ACTIONS(2753), - [anon_sym_async] = ACTIONS(2753), - [anon_sym_exec] = ACTIONS(2753), - [anon_sym_EQ] = ACTIONS(2747), - [anon_sym_LBRACK] = ACTIONS(2755), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_AMP] = ACTIONS(1306), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_LT] = ACTIONS(1310), - [anon_sym_PLUS_EQ] = ACTIONS(2747), - [anon_sym_DASH_EQ] = ACTIONS(2747), - [anon_sym_STAR_EQ] = ACTIONS(2747), - [anon_sym_SLASH_EQ] = ACTIONS(2747), - [anon_sym_AT_EQ] = ACTIONS(2747), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2747), - [anon_sym_PERCENT_EQ] = ACTIONS(2747), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2747), - [anon_sym_GT_GT_EQ] = ACTIONS(2747), - [anon_sym_LT_LT_EQ] = ACTIONS(2747), - [anon_sym_AMP_EQ] = ACTIONS(2747), - [anon_sym_CARET_EQ] = ACTIONS(2747), - [anon_sym_PIPE_EQ] = ACTIONS(2747), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), - [anon_sym_None] = ACTIONS(1235), - [sym_integer] = ACTIONS(1237), - [sym_float] = ACTIONS(1239), - [anon_sym_await] = ACTIONS(2757), - [anon_sym_api] = ACTIONS(2753), - [sym_true] = ACTIONS(1237), - [sym_false] = ACTIONS(1237), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(1245), - [sym__newline] = ACTIONS(2747), - [sym_string_start] = ACTIONS(1247), - }, - [799] = { - [sym_named_expression] = STATE(3081), - [sym__named_expression_lhs] = STATE(5651), - [sym_list_splat_pattern] = STATE(2432), - [sym_as_pattern] = STATE(3081), - [sym_expression] = STATE(3946), - [sym_primary_expression] = STATE(2067), - [sym_not_operator] = STATE(3081), - [sym_boolean_operator] = STATE(3081), - [sym_binary_operator] = STATE(2549), - [sym_unary_operator] = STATE(2549), - [sym_comparison_operator] = STATE(3081), - [sym_lambda] = STATE(3081), - [sym_attribute] = STATE(2549), - [sym_subscript] = STATE(2549), - [sym_ellipsis] = STATE(2549), - [sym_call] = STATE(2549), - [sym_type] = STATE(4515), - [sym_splat_type] = STATE(4593), - [sym_generic_type] = STATE(4593), - [sym_union_type] = STATE(4593), - [sym_constrained_type] = STATE(4593), - [sym_member_type] = STATE(4593), - [sym_list] = STATE(2549), - [sym_set] = STATE(2549), - [sym_tuple] = STATE(2549), - [sym_dictionary] = STATE(2549), - [sym_list_comprehension] = STATE(2549), - [sym_dictionary_comprehension] = STATE(2549), - [sym_set_comprehension] = STATE(2549), - [sym_generator_expression] = STATE(2549), - [sym_parenthesized_expression] = STATE(2549), - [sym_conditional_expression] = STATE(3081), - [sym_concatenated_string] = STATE(2549), - [sym_string] = STATE(2140), - [sym_none] = STATE(2549), - [sym_await] = STATE(2549), - [sym_new_expression] = STATE(3081), - [sym_sizeof_expression] = STATE(2549), - [sym_cast_expression] = STATE(2549), - [sym_identifier] = ACTIONS(2731), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_STAR] = ACTIONS(2733), - [anon_sym_print] = ACTIONS(1217), - [anon_sym_match] = ACTIONS(1217), - [anon_sym_async] = ACTIONS(1217), - [anon_sym_STAR_STAR] = ACTIONS(457), - [anon_sym_exec] = ACTIONS(1217), - [anon_sym_LBRACK] = ACTIONS(1219), - [anon_sym_DASH] = ACTIONS(1227), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_PLUS] = ACTIONS(1227), - [anon_sym_not] = ACTIONS(2739), - [anon_sym_AMP] = ACTIONS(1227), - [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(2735), - [anon_sym_lambda] = ACTIONS(2741), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), - [anon_sym_None] = ACTIONS(1235), - [sym_integer] = ACTIONS(1237), - [sym_float] = ACTIONS(1239), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_api] = ACTIONS(1217), - [sym_true] = ACTIONS(1237), - [sym_false] = ACTIONS(1237), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2743), - [anon_sym_sizeof] = ACTIONS(1245), - [sym_string_start] = ACTIONS(1247), - }, - [800] = { - [sym_named_expression] = STATE(2459), - [sym__named_expression_lhs] = STATE(5688), - [sym_list_splat] = STATE(4738), - [sym_dictionary_splat] = STATE(4738), - [sym_parenthesized_list_splat] = STATE(4739), - [sym_list_splat_pattern] = STATE(2477), - [sym_as_pattern] = STATE(2459), - [sym_expression] = STATE(3633), - [sym_primary_expression] = STATE(2060), - [sym_not_operator] = STATE(2459), - [sym_boolean_operator] = STATE(2459), - [sym_binary_operator] = STATE(2457), - [sym_unary_operator] = STATE(2457), - [sym_comparison_operator] = STATE(2459), - [sym_lambda] = STATE(2459), - [sym_attribute] = STATE(2457), - [sym_subscript] = STATE(2457), - [sym_ellipsis] = STATE(2457), - [sym_call] = STATE(2457), - [sym_keyword_argument] = STATE(4738), - [sym_list] = STATE(2457), - [sym_set] = STATE(2457), - [sym_tuple] = STATE(2457), - [sym_dictionary] = STATE(2457), - [sym_list_comprehension] = STATE(2457), - [sym_dictionary_comprehension] = STATE(2457), - [sym_set_comprehension] = STATE(2457), - [sym_generator_expression] = STATE(2457), - [sym_parenthesized_expression] = STATE(2457), - [sym_conditional_expression] = STATE(2459), - [sym_concatenated_string] = STATE(2457), - [sym_string] = STATE(2170), - [sym_none] = STATE(2457), - [sym_await] = STATE(2457), - [sym_new_expression] = STATE(2459), - [sym_sizeof_expression] = STATE(2457), - [sym_cast_expression] = STATE(2457), - [sym_identifier] = ACTIONS(2719), - [anon_sym_LPAREN] = ACTIONS(2721), - [anon_sym_RPAREN] = ACTIONS(2759), - [anon_sym_COMMA] = ACTIONS(1430), - [anon_sym_STAR] = ACTIONS(2725), - [anon_sym_print] = ACTIONS(2727), - [anon_sym_match] = ACTIONS(2727), - [anon_sym_async] = ACTIONS(2727), - [anon_sym_STAR_STAR] = ACTIONS(1380), - [anon_sym_exec] = ACTIONS(2727), - [anon_sym_LBRACK] = ACTIONS(1472), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1326), - [anon_sym_not] = ACTIONS(1330), - [anon_sym_AMP] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1326), - [anon_sym_LT] = ACTIONS(1332), - [anon_sym_lambda] = ACTIONS(1334), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1338), - [anon_sym_None] = ACTIONS(1340), - [sym_integer] = ACTIONS(1342), - [sym_float] = ACTIONS(1344), - [anon_sym_await] = ACTIONS(2729), - [anon_sym_api] = ACTIONS(2727), - [sym_true] = ACTIONS(1342), - [sym_false] = ACTIONS(1342), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1350), - [anon_sym_sizeof] = ACTIONS(1360), - [sym_string_start] = ACTIONS(1362), + [818] = { + [sym_named_expression] = STATE(2631), + [sym__named_expression_lhs] = STATE(5572), + [sym_list_splat_pattern] = STATE(2589), + [sym_as_pattern] = STATE(2631), + [sym_expression] = STATE(3826), + [sym_primary_expression] = STATE(2107), + [sym_not_operator] = STATE(2631), + [sym_boolean_operator] = STATE(2631), + [sym_binary_operator] = STATE(2630), + [sym_unary_operator] = STATE(2630), + [sym_comparison_operator] = STATE(2631), + [sym_lambda] = STATE(2631), + [sym_attribute] = STATE(2630), + [sym_subscript] = STATE(2630), + [sym_ellipsis] = STATE(2630), + [sym_call] = STATE(2630), + [sym_type] = STATE(4367), + [sym_splat_type] = STATE(4292), + [sym_generic_type] = STATE(4292), + [sym_union_type] = STATE(4292), + [sym_constrained_type] = STATE(4292), + [sym_member_type] = STATE(4292), + [sym_list] = STATE(2630), + [sym_set] = STATE(2630), + [sym_tuple] = STATE(2630), + [sym_dictionary] = STATE(2630), + [sym_list_comprehension] = STATE(2630), + [sym_dictionary_comprehension] = STATE(2630), + [sym_set_comprehension] = STATE(2630), + [sym_generator_expression] = STATE(2630), + [sym_parenthesized_expression] = STATE(2630), + [sym_conditional_expression] = STATE(2631), + [sym_concatenated_string] = STATE(2630), + [sym_string] = STATE(2200), + [sym_none] = STATE(2630), + [sym_await] = STATE(2630), + [sym_new_expression] = STATE(2631), + [sym_sizeof_expression] = STATE(2630), + [sym_cast_expression] = STATE(2630), + [sym_identifier] = ACTIONS(2637), + [anon_sym_LPAREN] = ACTIONS(2461), + [anon_sym_STAR] = ACTIONS(2639), + [anon_sym_print] = ACTIONS(2641), + [anon_sym_match] = ACTIONS(2641), + [anon_sym_async] = ACTIONS(2641), + [anon_sym_STAR_STAR] = ACTIONS(2643), + [anon_sym_exec] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2467), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_not] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2469), + [anon_sym_TILDE] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_lambda] = ACTIONS(2651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2475), + [anon_sym_None] = ACTIONS(2477), + [sym_integer] = ACTIONS(2459), + [sym_float] = ACTIONS(2479), + [anon_sym_await] = ACTIONS(2653), + [anon_sym_api] = ACTIONS(2641), + [sym_true] = ACTIONS(2459), + [sym_false] = ACTIONS(2459), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2655), + [anon_sym_sizeof] = ACTIONS(2483), + [sym_string_start] = ACTIONS(2485), }, - [801] = { - [sym_named_expression] = STATE(2459), - [sym__named_expression_lhs] = STATE(5688), - [sym_with_item] = STATE(4813), - [sym_list_splat] = STATE(4756), - [sym_parenthesized_list_splat] = STATE(4756), - [sym_list_splat_pattern] = STATE(2477), - [sym_as_pattern] = STATE(2459), - [sym_expression] = STATE(3656), - [sym_primary_expression] = STATE(2060), - [sym_not_operator] = STATE(2459), - [sym_boolean_operator] = STATE(2459), - [sym_binary_operator] = STATE(2457), - [sym_unary_operator] = STATE(2457), - [sym_comparison_operator] = STATE(2459), - [sym_lambda] = STATE(2459), - [sym_yield] = STATE(4647), - [sym_attribute] = STATE(2457), - [sym_subscript] = STATE(2457), - [sym_ellipsis] = STATE(2457), - [sym_call] = STATE(2457), - [sym_list] = STATE(2457), - [sym_set] = STATE(2457), - [sym_tuple] = STATE(2457), - [sym_dictionary] = STATE(2457), - [sym_list_comprehension] = STATE(2457), - [sym_dictionary_comprehension] = STATE(2457), - [sym_set_comprehension] = STATE(2457), - [sym_generator_expression] = STATE(2457), - [sym_parenthesized_expression] = STATE(2457), - [sym__collection_elements] = STATE(5455), - [sym_conditional_expression] = STATE(2459), - [sym_concatenated_string] = STATE(2457), - [sym_string] = STATE(2170), - [sym_none] = STATE(2457), - [sym_await] = STATE(2457), - [sym_new_expression] = STATE(2459), - [sym_sizeof_expression] = STATE(2457), - [sym_cast_expression] = STATE(2457), - [sym_identifier] = ACTIONS(2761), - [anon_sym_LPAREN] = ACTIONS(2721), - [anon_sym_RPAREN] = ACTIONS(2763), + [819] = { + [sym_named_expression] = STATE(2421), + [sym__named_expression_lhs] = STATE(5522), + [sym_with_item] = STATE(4709), + [sym_list_splat] = STATE(4708), + [sym_parenthesized_list_splat] = STATE(4708), + [sym_list_splat_pattern] = STATE(2472), + [sym_as_pattern] = STATE(2421), + [sym_expression] = STATE(3621), + [sym_primary_expression] = STATE(2066), + [sym_not_operator] = STATE(2421), + [sym_boolean_operator] = STATE(2421), + [sym_binary_operator] = STATE(2414), + [sym_unary_operator] = STATE(2414), + [sym_comparison_operator] = STATE(2421), + [sym_lambda] = STATE(2421), + [sym_yield] = STATE(5116), + [sym_attribute] = STATE(2414), + [sym_subscript] = STATE(2414), + [sym_ellipsis] = STATE(2414), + [sym_call] = STATE(2414), + [sym_list] = STATE(2414), + [sym_set] = STATE(2414), + [sym_tuple] = STATE(2414), + [sym_dictionary] = STATE(2414), + [sym_list_comprehension] = STATE(2414), + [sym_dictionary_comprehension] = STATE(2414), + [sym_set_comprehension] = STATE(2414), + [sym_generator_expression] = STATE(2414), + [sym_parenthesized_expression] = STATE(2414), + [sym__collection_elements] = STATE(5598), + [sym_conditional_expression] = STATE(2421), + [sym_concatenated_string] = STATE(2414), + [sym_string] = STATE(2147), + [sym_none] = STATE(2414), + [sym_await] = STATE(2414), + [sym_new_expression] = STATE(2421), + [sym_sizeof_expression] = STATE(2414), + [sym_cast_expression] = STATE(2414), + [sym_identifier] = ACTIONS(2787), + [anon_sym_LPAREN] = ACTIONS(2747), + [anon_sym_RPAREN] = ACTIONS(2789), [anon_sym_STAR] = ACTIONS(1320), [anon_sym_print] = ACTIONS(1470), [anon_sym_match] = ACTIONS(1470), @@ -102220,196 +103623,267 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1360), [sym_string_start] = ACTIONS(1362), }, - [802] = { - [sym_pattern] = STATE(3223), - [sym_tuple_pattern] = STATE(3221), - [sym_list_pattern] = STATE(3221), - [sym_list_splat_pattern] = STATE(2394), - [sym_primary_expression] = STATE(3213), - [sym_binary_operator] = STATE(2549), - [sym_unary_operator] = STATE(2549), - [sym_attribute] = STATE(2395), - [sym_subscript] = STATE(2395), - [sym_ellipsis] = STATE(2549), - [sym_call] = STATE(2549), - [sym_list] = STATE(2549), - [sym_set] = STATE(2549), - [sym_tuple] = STATE(2549), - [sym_dictionary] = STATE(2549), - [sym_list_comprehension] = STATE(2549), - [sym_dictionary_comprehension] = STATE(2549), - [sym_set_comprehension] = STATE(2549), - [sym_generator_expression] = STATE(2549), - [sym_parenthesized_expression] = STATE(2549), - [sym_concatenated_string] = STATE(2549), - [sym_string] = STATE(2140), - [sym_none] = STATE(2549), - [sym_await] = STATE(2549), - [sym_sizeof_expression] = STATE(2549), - [sym_cast_expression] = STATE(2549), - [sym_identifier] = ACTIONS(2745), - [anon_sym_SEMI] = ACTIONS(2765), - [anon_sym_LPAREN] = ACTIONS(2749), - [anon_sym_STAR] = ACTIONS(2751), - [anon_sym_print] = ACTIONS(2753), - [anon_sym_COLON] = ACTIONS(2765), - [anon_sym_match] = ACTIONS(2753), - [anon_sym_async] = ACTIONS(2753), - [anon_sym_exec] = ACTIONS(2753), - [anon_sym_EQ] = ACTIONS(2765), - [anon_sym_LBRACK] = ACTIONS(2755), - [anon_sym_DASH] = ACTIONS(1306), + [820] = { + [sym_named_expression] = STATE(2631), + [sym__named_expression_lhs] = STATE(5572), + [sym_list_splat_pattern] = STATE(2589), + [sym_as_pattern] = STATE(2631), + [sym_expression] = STATE(3826), + [sym_primary_expression] = STATE(2107), + [sym_not_operator] = STATE(2631), + [sym_boolean_operator] = STATE(2631), + [sym_binary_operator] = STATE(2630), + [sym_unary_operator] = STATE(2630), + [sym_comparison_operator] = STATE(2631), + [sym_lambda] = STATE(2631), + [sym_attribute] = STATE(2630), + [sym_subscript] = STATE(2630), + [sym_ellipsis] = STATE(2630), + [sym_call] = STATE(2630), + [sym_type] = STATE(4211), + [sym_splat_type] = STATE(4292), + [sym_generic_type] = STATE(4292), + [sym_union_type] = STATE(4292), + [sym_constrained_type] = STATE(4292), + [sym_member_type] = STATE(4292), + [sym_list] = STATE(2630), + [sym_set] = STATE(2630), + [sym_tuple] = STATE(2630), + [sym_dictionary] = STATE(2630), + [sym_list_comprehension] = STATE(2630), + [sym_dictionary_comprehension] = STATE(2630), + [sym_set_comprehension] = STATE(2630), + [sym_generator_expression] = STATE(2630), + [sym_parenthesized_expression] = STATE(2630), + [sym_conditional_expression] = STATE(2631), + [sym_concatenated_string] = STATE(2630), + [sym_string] = STATE(2200), + [sym_none] = STATE(2630), + [sym_await] = STATE(2630), + [sym_new_expression] = STATE(2631), + [sym_sizeof_expression] = STATE(2630), + [sym_cast_expression] = STATE(2630), + [sym_identifier] = ACTIONS(2637), + [anon_sym_LPAREN] = ACTIONS(2461), + [anon_sym_STAR] = ACTIONS(2639), + [anon_sym_print] = ACTIONS(2641), + [anon_sym_match] = ACTIONS(2641), + [anon_sym_async] = ACTIONS(2641), + [anon_sym_STAR_STAR] = ACTIONS(2643), + [anon_sym_exec] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2467), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_not] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2469), + [anon_sym_TILDE] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_lambda] = ACTIONS(2651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2475), + [anon_sym_None] = ACTIONS(2477), + [sym_integer] = ACTIONS(2459), + [sym_float] = ACTIONS(2479), + [anon_sym_await] = ACTIONS(2653), + [anon_sym_api] = ACTIONS(2641), + [sym_true] = ACTIONS(2459), + [sym_false] = ACTIONS(2459), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2655), + [anon_sym_sizeof] = ACTIONS(2483), + [sym_string_start] = ACTIONS(2485), + }, + [821] = { + [sym_named_expression] = STATE(3088), + [sym__named_expression_lhs] = STATE(5669), + [sym_list_splat_pattern] = STATE(2536), + [sym_as_pattern] = STATE(3088), + [sym_expression] = STATE(3920), + [sym_primary_expression] = STATE(2072), + [sym_not_operator] = STATE(3088), + [sym_boolean_operator] = STATE(3088), + [sym_binary_operator] = STATE(2401), + [sym_unary_operator] = STATE(2401), + [sym_comparison_operator] = STATE(3088), + [sym_lambda] = STATE(3088), + [sym_attribute] = STATE(2401), + [sym_subscript] = STATE(2401), + [sym_ellipsis] = STATE(2401), + [sym_call] = STATE(2401), + [sym_type] = STATE(4512), + [sym_splat_type] = STATE(4597), + [sym_generic_type] = STATE(4597), + [sym_union_type] = STATE(4597), + [sym_constrained_type] = STATE(4597), + [sym_member_type] = STATE(4597), + [sym_list] = STATE(2401), + [sym_set] = STATE(2401), + [sym_tuple] = STATE(2401), + [sym_dictionary] = STATE(2401), + [sym_list_comprehension] = STATE(2401), + [sym_dictionary_comprehension] = STATE(2401), + [sym_set_comprehension] = STATE(2401), + [sym_generator_expression] = STATE(2401), + [sym_parenthesized_expression] = STATE(2401), + [sym_conditional_expression] = STATE(3088), + [sym_concatenated_string] = STATE(2401), + [sym_string] = STATE(2161), + [sym_none] = STATE(2401), + [sym_await] = STATE(2401), + [sym_new_expression] = STATE(3088), + [sym_sizeof_expression] = STATE(2401), + [sym_cast_expression] = STATE(2401), + [sym_identifier] = ACTIONS(2701), + [anon_sym_LPAREN] = ACTIONS(1213), + [anon_sym_STAR] = ACTIONS(2703), + [anon_sym_print] = ACTIONS(1217), + [anon_sym_match] = ACTIONS(1217), + [anon_sym_async] = ACTIONS(1217), + [anon_sym_STAR_STAR] = ACTIONS(457), + [anon_sym_exec] = ACTIONS(1217), + [anon_sym_LBRACK] = ACTIONS(1219), + [anon_sym_DASH] = ACTIONS(1227), [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_AMP] = ACTIONS(1306), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_LT] = ACTIONS(1310), - [anon_sym_PLUS_EQ] = ACTIONS(2765), - [anon_sym_DASH_EQ] = ACTIONS(2765), - [anon_sym_STAR_EQ] = ACTIONS(2765), - [anon_sym_SLASH_EQ] = ACTIONS(2765), - [anon_sym_AT_EQ] = ACTIONS(2765), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2765), - [anon_sym_PERCENT_EQ] = ACTIONS(2765), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2765), - [anon_sym_GT_GT_EQ] = ACTIONS(2765), - [anon_sym_LT_LT_EQ] = ACTIONS(2765), - [anon_sym_AMP_EQ] = ACTIONS(2765), - [anon_sym_CARET_EQ] = ACTIONS(2765), - [anon_sym_PIPE_EQ] = ACTIONS(2765), + [anon_sym_PLUS] = ACTIONS(1227), + [anon_sym_not] = ACTIONS(2707), + [anon_sym_AMP] = ACTIONS(1227), + [anon_sym_TILDE] = ACTIONS(1227), + [anon_sym_LT] = ACTIONS(2705), + [anon_sym_lambda] = ACTIONS(2709), [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), [anon_sym_None] = ACTIONS(1235), [sym_integer] = ACTIONS(1237), [sym_float] = ACTIONS(1239), - [anon_sym_await] = ACTIONS(2757), - [anon_sym_api] = ACTIONS(2753), + [anon_sym_await] = ACTIONS(1241), + [anon_sym_api] = ACTIONS(1217), [sym_true] = ACTIONS(1237), [sym_false] = ACTIONS(1237), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2711), [anon_sym_sizeof] = ACTIONS(1245), - [sym__newline] = ACTIONS(2765), [sym_string_start] = ACTIONS(1247), }, - [803] = { - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5722), + [822] = { + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), [sym_list_splat_pattern] = STATE(2088), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3751), - [sym_primary_expression] = STATE(2024), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_attribute] = STATE(2123), - [sym_subscript] = STATE(2123), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_type] = STATE(4189), - [sym_splat_type] = STATE(4238), - [sym_generic_type] = STATE(4238), - [sym_union_type] = STATE(4238), - [sym_constrained_type] = STATE(4238), - [sym_member_type] = STATE(4238), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [sym_identifier] = ACTIONS(2679), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2032), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_attribute] = STATE(2111), + [sym_subscript] = STATE(2111), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_type] = STATE(4467), + [sym_splat_type] = STATE(4213), + [sym_generic_type] = STATE(4213), + [sym_union_type] = STATE(4213), + [sym_constrained_type] = STATE(4213), + [sym_member_type] = STATE(4213), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [sym_identifier] = ACTIONS(2757), [anon_sym_LPAREN] = ACTIONS(1281), - [anon_sym_STAR] = ACTIONS(2681), - [anon_sym_print] = ACTIONS(592), - [anon_sym_match] = ACTIONS(592), - [anon_sym_async] = ACTIONS(592), - [anon_sym_STAR_STAR] = ACTIONS(2683), - [anon_sym_exec] = ACTIONS(592), + [anon_sym_STAR] = ACTIONS(2759), + [anon_sym_print] = ACTIONS(1016), + [anon_sym_match] = ACTIONS(1016), + [anon_sym_async] = ACTIONS(1016), + [anon_sym_STAR_STAR] = ACTIONS(2761), + [anon_sym_exec] = ACTIONS(1016), [anon_sym_LBRACK] = ACTIONS(1287), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(2685), + [anon_sym_not] = ACTIONS(69), [anon_sym_AMP] = ACTIONS(65), [anon_sym_TILDE] = ACTIONS(65), [anon_sym_LT] = ACTIONS(71), - [anon_sym_lambda] = ACTIONS(2687), + [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(614), - [anon_sym_api] = ACTIONS(592), + [anon_sym_await] = ACTIONS(1041), + [anon_sym_api] = ACTIONS(1016), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2689), + [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), [sym_string_start] = ACTIONS(107), }, - [804] = { - [sym_named_expression] = STATE(2459), - [sym__named_expression_lhs] = STATE(5688), - [sym_list_splat] = STATE(4794), - [sym_dictionary_splat] = STATE(4794), - [sym_parenthesized_list_splat] = STATE(4795), - [sym_list_splat_pattern] = STATE(2477), - [sym_as_pattern] = STATE(2459), - [sym_expression] = STATE(3640), - [sym_primary_expression] = STATE(2060), - [sym_not_operator] = STATE(2459), - [sym_boolean_operator] = STATE(2459), - [sym_binary_operator] = STATE(2457), - [sym_unary_operator] = STATE(2457), - [sym_comparison_operator] = STATE(2459), - [sym_lambda] = STATE(2459), - [sym_attribute] = STATE(2457), - [sym_subscript] = STATE(2457), - [sym_ellipsis] = STATE(2457), - [sym_call] = STATE(2457), - [sym_keyword_argument] = STATE(4794), - [sym_list] = STATE(2457), - [sym_set] = STATE(2457), - [sym_tuple] = STATE(2457), - [sym_dictionary] = STATE(2457), - [sym_list_comprehension] = STATE(2457), - [sym_dictionary_comprehension] = STATE(2457), - [sym_set_comprehension] = STATE(2457), - [sym_generator_expression] = STATE(2457), - [sym_parenthesized_expression] = STATE(2457), - [sym_conditional_expression] = STATE(2459), - [sym_concatenated_string] = STATE(2457), - [sym_string] = STATE(2170), - [sym_none] = STATE(2457), - [sym_await] = STATE(2457), - [sym_new_expression] = STATE(2459), - [sym_sizeof_expression] = STATE(2457), - [sym_cast_expression] = STATE(2457), - [sym_identifier] = ACTIONS(2719), - [anon_sym_LPAREN] = ACTIONS(2721), - [anon_sym_RPAREN] = ACTIONS(2767), - [anon_sym_COMMA] = ACTIONS(1374), - [anon_sym_STAR] = ACTIONS(2725), - [anon_sym_print] = ACTIONS(2727), - [anon_sym_match] = ACTIONS(2727), - [anon_sym_async] = ACTIONS(2727), + [823] = { + [sym_named_expression] = STATE(2421), + [sym__named_expression_lhs] = STATE(5522), + [sym_list_splat] = STATE(4766), + [sym_dictionary_splat] = STATE(4766), + [sym_parenthesized_list_splat] = STATE(4767), + [sym_list_splat_pattern] = STATE(2472), + [sym_as_pattern] = STATE(2421), + [sym_expression] = STATE(3647), + [sym_primary_expression] = STATE(2066), + [sym_not_operator] = STATE(2421), + [sym_boolean_operator] = STATE(2421), + [sym_binary_operator] = STATE(2414), + [sym_unary_operator] = STATE(2414), + [sym_comparison_operator] = STATE(2421), + [sym_lambda] = STATE(2421), + [sym_attribute] = STATE(2414), + [sym_subscript] = STATE(2414), + [sym_ellipsis] = STATE(2414), + [sym_call] = STATE(2414), + [sym_keyword_argument] = STATE(4766), + [sym_list] = STATE(2414), + [sym_set] = STATE(2414), + [sym_tuple] = STATE(2414), + [sym_dictionary] = STATE(2414), + [sym_list_comprehension] = STATE(2414), + [sym_dictionary_comprehension] = STATE(2414), + [sym_set_comprehension] = STATE(2414), + [sym_generator_expression] = STATE(2414), + [sym_parenthesized_expression] = STATE(2414), + [sym_conditional_expression] = STATE(2421), + [sym_concatenated_string] = STATE(2414), + [sym_string] = STATE(2147), + [sym_none] = STATE(2414), + [sym_await] = STATE(2414), + [sym_new_expression] = STATE(2421), + [sym_sizeof_expression] = STATE(2414), + [sym_cast_expression] = STATE(2414), + [sym_identifier] = ACTIONS(2745), + [anon_sym_LPAREN] = ACTIONS(2747), + [anon_sym_RPAREN] = ACTIONS(2791), + [anon_sym_COMMA] = ACTIONS(1430), + [anon_sym_STAR] = ACTIONS(2751), + [anon_sym_print] = ACTIONS(2753), + [anon_sym_match] = ACTIONS(2753), + [anon_sym_async] = ACTIONS(2753), [anon_sym_STAR_STAR] = ACTIONS(1380), - [anon_sym_exec] = ACTIONS(2727), + [anon_sym_exec] = ACTIONS(2753), [anon_sym_LBRACK] = ACTIONS(1472), [anon_sym_DASH] = ACTIONS(1326), [anon_sym_LBRACE] = ACTIONS(1328), @@ -102423,8 +103897,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_None] = ACTIONS(1340), [sym_integer] = ACTIONS(1342), [sym_float] = ACTIONS(1344), - [anon_sym_await] = ACTIONS(2729), - [anon_sym_api] = ACTIONS(2727), + [anon_sym_await] = ACTIONS(2755), + [anon_sym_api] = ACTIONS(2753), [sym_true] = ACTIONS(1342), [sym_false] = ACTIONS(1342), [sym_comment] = ACTIONS(3), @@ -102433,267 +103907,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1360), [sym_string_start] = ACTIONS(1362), }, - [805] = { - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5722), + [824] = { + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), [sym_list_splat_pattern] = STATE(2088), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3751), - [sym_primary_expression] = STATE(2024), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_attribute] = STATE(2123), - [sym_subscript] = STATE(2123), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_type] = STATE(4232), - [sym_splat_type] = STATE(4238), - [sym_generic_type] = STATE(4238), - [sym_union_type] = STATE(4238), - [sym_constrained_type] = STATE(4238), - [sym_member_type] = STATE(4238), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [sym_identifier] = ACTIONS(2679), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2032), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_attribute] = STATE(2111), + [sym_subscript] = STATE(2111), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_type] = STATE(4178), + [sym_splat_type] = STATE(4213), + [sym_generic_type] = STATE(4213), + [sym_union_type] = STATE(4213), + [sym_constrained_type] = STATE(4213), + [sym_member_type] = STATE(4213), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [sym_identifier] = ACTIONS(2757), [anon_sym_LPAREN] = ACTIONS(1281), - [anon_sym_STAR] = ACTIONS(2681), - [anon_sym_print] = ACTIONS(592), - [anon_sym_match] = ACTIONS(592), - [anon_sym_async] = ACTIONS(592), - [anon_sym_STAR_STAR] = ACTIONS(2683), - [anon_sym_exec] = ACTIONS(592), + [anon_sym_STAR] = ACTIONS(2759), + [anon_sym_print] = ACTIONS(1016), + [anon_sym_match] = ACTIONS(1016), + [anon_sym_async] = ACTIONS(1016), + [anon_sym_STAR_STAR] = ACTIONS(2761), + [anon_sym_exec] = ACTIONS(1016), [anon_sym_LBRACK] = ACTIONS(1287), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(2685), + [anon_sym_not] = ACTIONS(69), [anon_sym_AMP] = ACTIONS(65), [anon_sym_TILDE] = ACTIONS(65), [anon_sym_LT] = ACTIONS(71), - [anon_sym_lambda] = ACTIONS(2687), + [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(614), - [anon_sym_api] = ACTIONS(592), + [anon_sym_await] = ACTIONS(1041), + [anon_sym_api] = ACTIONS(1016), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2689), + [anon_sym_new] = ACTIONS(99), [anon_sym_sizeof] = ACTIONS(105), [sym_string_start] = ACTIONS(107), }, - [806] = { - [sym_else_clause] = STATE(1103), - [sym_except_clause] = STATE(922), - [sym_finally_clause] = STATE(1680), - [aux_sym_try_statement_repeat1] = STATE(922), - [sym_identifier] = ACTIONS(2693), - [anon_sym_import] = ACTIONS(2693), - [anon_sym_cimport] = ACTIONS(2693), - [anon_sym_from] = ACTIONS(2693), - [anon_sym_LPAREN] = ACTIONS(2691), - [anon_sym_STAR] = ACTIONS(2691), - [anon_sym_print] = ACTIONS(2693), - [anon_sym_assert] = ACTIONS(2693), - [anon_sym_return] = ACTIONS(2693), - [anon_sym_del] = ACTIONS(2693), - [anon_sym_raise] = ACTIONS(2693), - [anon_sym_pass] = ACTIONS(2693), - [anon_sym_break] = ACTIONS(2693), - [anon_sym_continue] = ACTIONS(2693), - [anon_sym_if] = ACTIONS(2693), - [anon_sym_else] = ACTIONS(2769), - [anon_sym_match] = ACTIONS(2693), - [anon_sym_async] = ACTIONS(2693), - [anon_sym_for] = ACTIONS(2693), - [anon_sym_while] = ACTIONS(2693), - [anon_sym_try] = ACTIONS(2693), - [anon_sym_except] = ACTIONS(2771), - [anon_sym_finally] = ACTIONS(2773), - [anon_sym_with] = ACTIONS(2693), - [anon_sym_def] = ACTIONS(2693), - [anon_sym_global] = ACTIONS(2693), - [anon_sym_nonlocal] = ACTIONS(2693), - [anon_sym_exec] = ACTIONS(2693), - [anon_sym_type] = ACTIONS(2693), - [anon_sym_class] = ACTIONS(2693), - [anon_sym_LBRACK] = ACTIONS(2691), - [anon_sym_AT] = ACTIONS(2691), - [anon_sym_DASH] = ACTIONS(2691), - [anon_sym_LBRACE] = ACTIONS(2691), - [anon_sym_PLUS] = ACTIONS(2691), - [anon_sym_not] = ACTIONS(2693), - [anon_sym_AMP] = ACTIONS(2691), - [anon_sym_TILDE] = ACTIONS(2691), - [anon_sym_LT] = ACTIONS(2691), - [anon_sym_lambda] = ACTIONS(2693), - [anon_sym_yield] = ACTIONS(2693), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2691), - [anon_sym_None] = ACTIONS(2693), - [sym_integer] = ACTIONS(2693), - [sym_float] = ACTIONS(2691), - [anon_sym_await] = ACTIONS(2693), - [anon_sym_api] = ACTIONS(2693), - [sym_true] = ACTIONS(2693), - [sym_false] = ACTIONS(2693), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2693), - [anon_sym_include] = ACTIONS(2693), - [anon_sym_DEF] = ACTIONS(2693), - [anon_sym_cdef] = ACTIONS(2693), - [anon_sym_cpdef] = ACTIONS(2693), - [anon_sym_new] = ACTIONS(2693), - [anon_sym_ctypedef] = ACTIONS(2693), - [anon_sym_public] = ACTIONS(2693), - [anon_sym_packed] = ACTIONS(2693), - [anon_sym_inline] = ACTIONS(2693), - [anon_sym_readonly] = ACTIONS(2693), - [anon_sym_sizeof] = ACTIONS(2693), - [sym__dedent] = ACTIONS(2691), - [sym_string_start] = ACTIONS(2691), - }, - [807] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5609), - [sym_list_splat_pattern] = STATE(2591), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(3850), - [sym_primary_expression] = STATE(2077), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2631), - [sym_unary_operator] = STATE(2631), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2631), - [sym_subscript] = STATE(2631), - [sym_ellipsis] = STATE(2631), - [sym_call] = STATE(2631), - [sym_type] = STATE(4325), - [sym_splat_type] = STATE(4364), - [sym_generic_type] = STATE(4364), - [sym_union_type] = STATE(4364), - [sym_constrained_type] = STATE(4364), - [sym_member_type] = STATE(4364), - [sym_list] = STATE(2631), - [sym_set] = STATE(2631), - [sym_tuple] = STATE(2631), - [sym_dictionary] = STATE(2631), - [sym_list_comprehension] = STATE(2631), - [sym_dictionary_comprehension] = STATE(2631), - [sym_set_comprehension] = STATE(2631), - [sym_generator_expression] = STATE(2631), - [sym_parenthesized_expression] = STATE(2631), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2631), - [sym_string] = STATE(2218), - [sym_none] = STATE(2631), - [sym_await] = STATE(2631), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2631), - [sym_cast_expression] = STATE(2631), - [sym_identifier] = ACTIONS(2627), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(2629), - [anon_sym_print] = ACTIONS(2631), - [anon_sym_match] = ACTIONS(2631), - [anon_sym_async] = ACTIONS(2631), - [anon_sym_STAR_STAR] = ACTIONS(2633), - [anon_sym_exec] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2639), - [anon_sym_lambda] = ACTIONS(2641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2643), - [anon_sym_api] = ACTIONS(2631), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2645), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), - }, - [808] = { - [sym_named_expression] = STATE(2459), - [sym__named_expression_lhs] = STATE(5688), - [sym_list_splat] = STATE(4825), - [sym_dictionary_splat] = STATE(4825), - [sym_parenthesized_list_splat] = STATE(4826), - [sym_list_splat_pattern] = STATE(2477), - [sym_as_pattern] = STATE(2459), - [sym_expression] = STATE(3644), - [sym_primary_expression] = STATE(2060), - [sym_not_operator] = STATE(2459), - [sym_boolean_operator] = STATE(2459), - [sym_binary_operator] = STATE(2457), - [sym_unary_operator] = STATE(2457), - [sym_comparison_operator] = STATE(2459), - [sym_lambda] = STATE(2459), - [sym_attribute] = STATE(2457), - [sym_subscript] = STATE(2457), - [sym_ellipsis] = STATE(2457), - [sym_call] = STATE(2457), - [sym_keyword_argument] = STATE(4825), - [sym_list] = STATE(2457), - [sym_set] = STATE(2457), - [sym_tuple] = STATE(2457), - [sym_dictionary] = STATE(2457), - [sym_list_comprehension] = STATE(2457), - [sym_dictionary_comprehension] = STATE(2457), - [sym_set_comprehension] = STATE(2457), - [sym_generator_expression] = STATE(2457), - [sym_parenthesized_expression] = STATE(2457), - [sym_conditional_expression] = STATE(2459), - [sym_concatenated_string] = STATE(2457), - [sym_string] = STATE(2170), - [sym_none] = STATE(2457), - [sym_await] = STATE(2457), - [sym_new_expression] = STATE(2459), - [sym_sizeof_expression] = STATE(2457), - [sym_cast_expression] = STATE(2457), - [sym_identifier] = ACTIONS(2719), - [anon_sym_LPAREN] = ACTIONS(2721), - [anon_sym_RPAREN] = ACTIONS(2775), - [anon_sym_COMMA] = ACTIONS(1446), - [anon_sym_STAR] = ACTIONS(2725), - [anon_sym_print] = ACTIONS(2727), - [anon_sym_match] = ACTIONS(2727), - [anon_sym_async] = ACTIONS(2727), + [825] = { + [sym_named_expression] = STATE(2421), + [sym__named_expression_lhs] = STATE(5522), + [sym_list_splat] = STATE(4818), + [sym_dictionary_splat] = STATE(4818), + [sym_parenthesized_list_splat] = STATE(4819), + [sym_list_splat_pattern] = STATE(2472), + [sym_as_pattern] = STATE(2421), + [sym_expression] = STATE(3653), + [sym_primary_expression] = STATE(2066), + [sym_not_operator] = STATE(2421), + [sym_boolean_operator] = STATE(2421), + [sym_binary_operator] = STATE(2414), + [sym_unary_operator] = STATE(2414), + [sym_comparison_operator] = STATE(2421), + [sym_lambda] = STATE(2421), + [sym_attribute] = STATE(2414), + [sym_subscript] = STATE(2414), + [sym_ellipsis] = STATE(2414), + [sym_call] = STATE(2414), + [sym_keyword_argument] = STATE(4818), + [sym_list] = STATE(2414), + [sym_set] = STATE(2414), + [sym_tuple] = STATE(2414), + [sym_dictionary] = STATE(2414), + [sym_list_comprehension] = STATE(2414), + [sym_dictionary_comprehension] = STATE(2414), + [sym_set_comprehension] = STATE(2414), + [sym_generator_expression] = STATE(2414), + [sym_parenthesized_expression] = STATE(2414), + [sym_conditional_expression] = STATE(2421), + [sym_concatenated_string] = STATE(2414), + [sym_string] = STATE(2147), + [sym_none] = STATE(2414), + [sym_await] = STATE(2414), + [sym_new_expression] = STATE(2421), + [sym_sizeof_expression] = STATE(2414), + [sym_cast_expression] = STATE(2414), + [sym_identifier] = ACTIONS(2745), + [anon_sym_LPAREN] = ACTIONS(2747), + [anon_sym_RPAREN] = ACTIONS(2793), + [anon_sym_COMMA] = ACTIONS(1374), + [anon_sym_STAR] = ACTIONS(2751), + [anon_sym_print] = ACTIONS(2753), + [anon_sym_match] = ACTIONS(2753), + [anon_sym_async] = ACTIONS(2753), [anon_sym_STAR_STAR] = ACTIONS(1380), - [anon_sym_exec] = ACTIONS(2727), + [anon_sym_exec] = ACTIONS(2753), [anon_sym_LBRACK] = ACTIONS(1472), [anon_sym_DASH] = ACTIONS(1326), [anon_sym_LBRACE] = ACTIONS(1328), @@ -102707,8 +104039,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_None] = ACTIONS(1340), [sym_integer] = ACTIONS(1342), [sym_float] = ACTIONS(1344), - [anon_sym_await] = ACTIONS(2729), - [anon_sym_api] = ACTIONS(2727), + [anon_sym_await] = ACTIONS(2755), + [anon_sym_api] = ACTIONS(2753), [sym_true] = ACTIONS(1342), [sym_false] = ACTIONS(1342), [sym_comment] = ACTIONS(3), @@ -102717,267 +104049,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1360), [sym_string_start] = ACTIONS(1362), }, - [809] = { - [sym_else_clause] = STATE(1061), - [sym_except_clause] = STATE(922), - [sym_finally_clause] = STATE(1707), - [aux_sym_try_statement_repeat1] = STATE(922), - [sym_identifier] = ACTIONS(2777), - [anon_sym_import] = ACTIONS(2777), - [anon_sym_cimport] = ACTIONS(2777), - [anon_sym_from] = ACTIONS(2777), - [anon_sym_LPAREN] = ACTIONS(2779), - [anon_sym_STAR] = ACTIONS(2779), - [anon_sym_print] = ACTIONS(2777), - [anon_sym_assert] = ACTIONS(2777), - [anon_sym_return] = ACTIONS(2777), - [anon_sym_del] = ACTIONS(2777), - [anon_sym_raise] = ACTIONS(2777), - [anon_sym_pass] = ACTIONS(2777), - [anon_sym_break] = ACTIONS(2777), - [anon_sym_continue] = ACTIONS(2777), - [anon_sym_if] = ACTIONS(2777), - [anon_sym_else] = ACTIONS(2769), - [anon_sym_match] = ACTIONS(2777), - [anon_sym_async] = ACTIONS(2777), - [anon_sym_for] = ACTIONS(2777), - [anon_sym_while] = ACTIONS(2777), - [anon_sym_try] = ACTIONS(2777), - [anon_sym_except] = ACTIONS(2771), - [anon_sym_finally] = ACTIONS(2773), - [anon_sym_with] = ACTIONS(2777), - [anon_sym_def] = ACTIONS(2777), - [anon_sym_global] = ACTIONS(2777), - [anon_sym_nonlocal] = ACTIONS(2777), - [anon_sym_exec] = ACTIONS(2777), - [anon_sym_type] = ACTIONS(2777), - [anon_sym_class] = ACTIONS(2777), - [anon_sym_LBRACK] = ACTIONS(2779), - [anon_sym_AT] = ACTIONS(2779), - [anon_sym_DASH] = ACTIONS(2779), - [anon_sym_LBRACE] = ACTIONS(2779), - [anon_sym_PLUS] = ACTIONS(2779), - [anon_sym_not] = ACTIONS(2777), - [anon_sym_AMP] = ACTIONS(2779), - [anon_sym_TILDE] = ACTIONS(2779), - [anon_sym_LT] = ACTIONS(2779), - [anon_sym_lambda] = ACTIONS(2777), - [anon_sym_yield] = ACTIONS(2777), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2779), - [anon_sym_None] = ACTIONS(2777), - [sym_integer] = ACTIONS(2777), - [sym_float] = ACTIONS(2779), - [anon_sym_await] = ACTIONS(2777), - [anon_sym_api] = ACTIONS(2777), - [sym_true] = ACTIONS(2777), - [sym_false] = ACTIONS(2777), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2777), - [anon_sym_include] = ACTIONS(2777), - [anon_sym_DEF] = ACTIONS(2777), - [anon_sym_cdef] = ACTIONS(2777), - [anon_sym_cpdef] = ACTIONS(2777), - [anon_sym_new] = ACTIONS(2777), - [anon_sym_ctypedef] = ACTIONS(2777), - [anon_sym_public] = ACTIONS(2777), - [anon_sym_packed] = ACTIONS(2777), - [anon_sym_inline] = ACTIONS(2777), - [anon_sym_readonly] = ACTIONS(2777), - [anon_sym_sizeof] = ACTIONS(2777), - [sym__dedent] = ACTIONS(2779), - [sym_string_start] = ACTIONS(2779), - }, - [810] = { - [sym_else_clause] = STATE(1061), - [sym_except_group_clause] = STATE(926), - [sym_finally_clause] = STATE(1707), - [aux_sym_try_statement_repeat2] = STATE(926), - [sym_identifier] = ACTIONS(2777), - [anon_sym_import] = ACTIONS(2777), - [anon_sym_cimport] = ACTIONS(2777), - [anon_sym_from] = ACTIONS(2777), - [anon_sym_LPAREN] = ACTIONS(2779), - [anon_sym_STAR] = ACTIONS(2779), - [anon_sym_print] = ACTIONS(2777), - [anon_sym_assert] = ACTIONS(2777), - [anon_sym_return] = ACTIONS(2777), - [anon_sym_del] = ACTIONS(2777), - [anon_sym_raise] = ACTIONS(2777), - [anon_sym_pass] = ACTIONS(2777), - [anon_sym_break] = ACTIONS(2777), - [anon_sym_continue] = ACTIONS(2777), - [anon_sym_if] = ACTIONS(2777), - [anon_sym_else] = ACTIONS(2769), - [anon_sym_match] = ACTIONS(2777), - [anon_sym_async] = ACTIONS(2777), - [anon_sym_for] = ACTIONS(2777), - [anon_sym_while] = ACTIONS(2777), - [anon_sym_try] = ACTIONS(2777), - [anon_sym_except_STAR] = ACTIONS(2781), - [anon_sym_finally] = ACTIONS(2773), - [anon_sym_with] = ACTIONS(2777), - [anon_sym_def] = ACTIONS(2777), - [anon_sym_global] = ACTIONS(2777), - [anon_sym_nonlocal] = ACTIONS(2777), - [anon_sym_exec] = ACTIONS(2777), - [anon_sym_type] = ACTIONS(2777), - [anon_sym_class] = ACTIONS(2777), - [anon_sym_LBRACK] = ACTIONS(2779), - [anon_sym_AT] = ACTIONS(2779), - [anon_sym_DASH] = ACTIONS(2779), - [anon_sym_LBRACE] = ACTIONS(2779), - [anon_sym_PLUS] = ACTIONS(2779), - [anon_sym_not] = ACTIONS(2777), - [anon_sym_AMP] = ACTIONS(2779), - [anon_sym_TILDE] = ACTIONS(2779), - [anon_sym_LT] = ACTIONS(2779), - [anon_sym_lambda] = ACTIONS(2777), - [anon_sym_yield] = ACTIONS(2777), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2779), - [anon_sym_None] = ACTIONS(2777), - [sym_integer] = ACTIONS(2777), - [sym_float] = ACTIONS(2779), - [anon_sym_await] = ACTIONS(2777), - [anon_sym_api] = ACTIONS(2777), - [sym_true] = ACTIONS(2777), - [sym_false] = ACTIONS(2777), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2777), - [anon_sym_include] = ACTIONS(2777), - [anon_sym_DEF] = ACTIONS(2777), - [anon_sym_cdef] = ACTIONS(2777), - [anon_sym_cpdef] = ACTIONS(2777), - [anon_sym_new] = ACTIONS(2777), - [anon_sym_ctypedef] = ACTIONS(2777), - [anon_sym_public] = ACTIONS(2777), - [anon_sym_packed] = ACTIONS(2777), - [anon_sym_inline] = ACTIONS(2777), - [anon_sym_readonly] = ACTIONS(2777), - [anon_sym_sizeof] = ACTIONS(2777), - [sym__dedent] = ACTIONS(2779), - [sym_string_start] = ACTIONS(2779), - }, - [811] = { - [sym__patterns] = STATE(5694), - [sym_pattern] = STATE(5006), - [sym_tuple_pattern] = STATE(5295), - [sym_list_pattern] = STATE(5295), - [sym_list_splat_pattern] = STATE(3225), - [sym_primary_expression] = STATE(3203), - [sym_binary_operator] = STATE(2549), - [sym_unary_operator] = STATE(2549), - [sym_attribute] = STATE(3173), - [sym_subscript] = STATE(3173), - [sym_ellipsis] = STATE(2549), - [sym_call] = STATE(2549), - [sym_list] = STATE(2549), - [sym_set] = STATE(2549), - [sym_tuple] = STATE(2549), - [sym_dictionary] = STATE(2549), - [sym_list_comprehension] = STATE(2549), - [sym_dictionary_comprehension] = STATE(2549), - [sym_set_comprehension] = STATE(2549), - [sym_generator_expression] = STATE(2549), - [sym_parenthesized_expression] = STATE(2549), - [sym_concatenated_string] = STATE(2549), - [sym_string] = STATE(2140), - [sym_none] = STATE(2549), - [sym_await] = STATE(2549), - [sym_int_type] = STATE(3507), - [sym__signedness] = STATE(3124), - [sym__longness] = STATE(3338), - [sym_function_pointer_type] = STATE(3507), - [sym_c_type] = STATE(5205), - [sym_sizeof_expression] = STATE(2549), - [sym_cast_expression] = STATE(2549), - [sym_identifier] = ACTIONS(2703), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_RPAREN] = ACTIONS(2783), - [anon_sym_STAR] = ACTIONS(2709), - [anon_sym_print] = ACTIONS(2711), - [anon_sym_match] = ACTIONS(2711), - [anon_sym_async] = ACTIONS(2711), - [anon_sym_exec] = ACTIONS(2711), - [anon_sym_LBRACK] = ACTIONS(2713), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_LT] = ACTIONS(2715), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), - [anon_sym_None] = ACTIONS(1235), - [sym_integer] = ACTIONS(1237), - [sym_float] = ACTIONS(1239), - [anon_sym_await] = ACTIONS(2717), - [anon_sym_api] = ACTIONS(2711), - [sym_true] = ACTIONS(1237), - [sym_false] = ACTIONS(1237), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1348), - [anon_sym_double] = ACTIONS(1348), - [anon_sym_complex] = ACTIONS(1348), - [anon_sym_signed] = ACTIONS(1352), - [anon_sym_unsigned] = ACTIONS(1352), - [anon_sym_char] = ACTIONS(1354), - [anon_sym_short] = ACTIONS(1354), - [anon_sym_long] = ACTIONS(1356), - [anon_sym_const] = ACTIONS(1358), - [anon_sym_volatile] = ACTIONS(1358), - [anon_sym_sizeof] = ACTIONS(1245), - [sym_string_start] = ACTIONS(1247), - }, - [812] = { - [sym_named_expression] = STATE(2459), - [sym__named_expression_lhs] = STATE(5688), - [sym_list_splat] = STATE(4860), - [sym_dictionary_splat] = STATE(4860), - [sym_parenthesized_list_splat] = STATE(4861), - [sym_list_splat_pattern] = STATE(2477), - [sym_as_pattern] = STATE(2459), - [sym_expression] = STATE(3648), - [sym_primary_expression] = STATE(2060), - [sym_not_operator] = STATE(2459), - [sym_boolean_operator] = STATE(2459), - [sym_binary_operator] = STATE(2457), - [sym_unary_operator] = STATE(2457), - [sym_comparison_operator] = STATE(2459), - [sym_lambda] = STATE(2459), - [sym_attribute] = STATE(2457), - [sym_subscript] = STATE(2457), - [sym_ellipsis] = STATE(2457), - [sym_call] = STATE(2457), - [sym_keyword_argument] = STATE(4860), - [sym_list] = STATE(2457), - [sym_set] = STATE(2457), - [sym_tuple] = STATE(2457), - [sym_dictionary] = STATE(2457), - [sym_list_comprehension] = STATE(2457), - [sym_dictionary_comprehension] = STATE(2457), - [sym_set_comprehension] = STATE(2457), - [sym_generator_expression] = STATE(2457), - [sym_parenthesized_expression] = STATE(2457), - [sym_conditional_expression] = STATE(2459), - [sym_concatenated_string] = STATE(2457), - [sym_string] = STATE(2170), - [sym_none] = STATE(2457), - [sym_await] = STATE(2457), - [sym_new_expression] = STATE(2459), - [sym_sizeof_expression] = STATE(2457), - [sym_cast_expression] = STATE(2457), - [sym_identifier] = ACTIONS(2719), - [anon_sym_LPAREN] = ACTIONS(2721), - [anon_sym_RPAREN] = ACTIONS(2785), - [anon_sym_COMMA] = ACTIONS(1440), - [anon_sym_STAR] = ACTIONS(2725), - [anon_sym_print] = ACTIONS(2727), - [anon_sym_match] = ACTIONS(2727), - [anon_sym_async] = ACTIONS(2727), + [826] = { + [sym_named_expression] = STATE(2421), + [sym__named_expression_lhs] = STATE(5522), + [sym_list_splat] = STATE(4853), + [sym_dictionary_splat] = STATE(4853), + [sym_parenthesized_list_splat] = STATE(4854), + [sym_list_splat_pattern] = STATE(2472), + [sym_as_pattern] = STATE(2421), + [sym_expression] = STATE(3661), + [sym_primary_expression] = STATE(2066), + [sym_not_operator] = STATE(2421), + [sym_boolean_operator] = STATE(2421), + [sym_binary_operator] = STATE(2414), + [sym_unary_operator] = STATE(2414), + [sym_comparison_operator] = STATE(2421), + [sym_lambda] = STATE(2421), + [sym_attribute] = STATE(2414), + [sym_subscript] = STATE(2414), + [sym_ellipsis] = STATE(2414), + [sym_call] = STATE(2414), + [sym_keyword_argument] = STATE(4853), + [sym_list] = STATE(2414), + [sym_set] = STATE(2414), + [sym_tuple] = STATE(2414), + [sym_dictionary] = STATE(2414), + [sym_list_comprehension] = STATE(2414), + [sym_dictionary_comprehension] = STATE(2414), + [sym_set_comprehension] = STATE(2414), + [sym_generator_expression] = STATE(2414), + [sym_parenthesized_expression] = STATE(2414), + [sym_conditional_expression] = STATE(2421), + [sym_concatenated_string] = STATE(2414), + [sym_string] = STATE(2147), + [sym_none] = STATE(2414), + [sym_await] = STATE(2414), + [sym_new_expression] = STATE(2421), + [sym_sizeof_expression] = STATE(2414), + [sym_cast_expression] = STATE(2414), + [sym_identifier] = ACTIONS(2745), + [anon_sym_LPAREN] = ACTIONS(2747), + [anon_sym_RPAREN] = ACTIONS(2795), + [anon_sym_COMMA] = ACTIONS(1456), + [anon_sym_STAR] = ACTIONS(2751), + [anon_sym_print] = ACTIONS(2753), + [anon_sym_match] = ACTIONS(2753), + [anon_sym_async] = ACTIONS(2753), [anon_sym_STAR_STAR] = ACTIONS(1380), - [anon_sym_exec] = ACTIONS(2727), + [anon_sym_exec] = ACTIONS(2753), [anon_sym_LBRACK] = ACTIONS(1472), [anon_sym_DASH] = ACTIONS(1326), [anon_sym_LBRACE] = ACTIONS(1328), @@ -102991,8 +104110,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_None] = ACTIONS(1340), [sym_integer] = ACTIONS(1342), [sym_float] = ACTIONS(1344), - [anon_sym_await] = ACTIONS(2729), - [anon_sym_api] = ACTIONS(2727), + [anon_sym_await] = ACTIONS(2755), + [anon_sym_api] = ACTIONS(2753), [sym_true] = ACTIONS(1342), [sym_false] = ACTIONS(1342), [sym_comment] = ACTIONS(3), @@ -103001,49 +104120,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1360), [sym_string_start] = ACTIONS(1362), }, - [813] = { - [sym_named_expression] = STATE(3081), - [sym__named_expression_lhs] = STATE(5469), - [sym_list_splat_pattern] = STATE(2432), - [sym_as_pattern] = STATE(3081), - [sym_expression] = STATE(4138), - [sym_primary_expression] = STATE(2067), - [sym_not_operator] = STATE(3081), - [sym_boolean_operator] = STATE(3081), - [sym_binary_operator] = STATE(2549), - [sym_unary_operator] = STATE(2549), - [sym_comparison_operator] = STATE(3081), - [sym_lambda] = STATE(3081), - [sym_attribute] = STATE(2549), - [sym_subscript] = STATE(2549), - [sym_ellipsis] = STATE(2549), - [sym_call] = STATE(2549), - [sym_type] = STATE(4963), - [sym_splat_type] = STATE(4593), - [sym_generic_type] = STATE(4593), - [sym_union_type] = STATE(4593), - [sym_constrained_type] = STATE(4593), - [sym_member_type] = STATE(4593), - [sym_list] = STATE(2549), - [sym_set] = STATE(2549), - [sym_tuple] = STATE(2549), - [sym_dictionary] = STATE(2549), - [sym_list_comprehension] = STATE(2549), - [sym_dictionary_comprehension] = STATE(2549), - [sym_set_comprehension] = STATE(2549), - [sym_generator_expression] = STATE(2549), - [sym_parenthesized_expression] = STATE(2549), - [sym_conditional_expression] = STATE(3081), - [sym_concatenated_string] = STATE(2549), - [sym_string] = STATE(2140), - [sym_none] = STATE(2549), - [sym_await] = STATE(2549), - [sym_new_expression] = STATE(3081), - [sym_sizeof_expression] = STATE(2549), - [sym_cast_expression] = STATE(2549), - [sym_identifier] = ACTIONS(2731), + [827] = { + [sym_named_expression] = STATE(3088), + [sym__named_expression_lhs] = STATE(5669), + [sym_list_splat_pattern] = STATE(2536), + [sym_as_pattern] = STATE(3088), + [sym_expression] = STATE(3920), + [sym_primary_expression] = STATE(2072), + [sym_not_operator] = STATE(3088), + [sym_boolean_operator] = STATE(3088), + [sym_binary_operator] = STATE(2401), + [sym_unary_operator] = STATE(2401), + [sym_comparison_operator] = STATE(3088), + [sym_lambda] = STATE(3088), + [sym_attribute] = STATE(2401), + [sym_subscript] = STATE(2401), + [sym_ellipsis] = STATE(2401), + [sym_call] = STATE(2401), + [sym_type] = STATE(4516), + [sym_splat_type] = STATE(4597), + [sym_generic_type] = STATE(4597), + [sym_union_type] = STATE(4597), + [sym_constrained_type] = STATE(4597), + [sym_member_type] = STATE(4597), + [sym_list] = STATE(2401), + [sym_set] = STATE(2401), + [sym_tuple] = STATE(2401), + [sym_dictionary] = STATE(2401), + [sym_list_comprehension] = STATE(2401), + [sym_dictionary_comprehension] = STATE(2401), + [sym_set_comprehension] = STATE(2401), + [sym_generator_expression] = STATE(2401), + [sym_parenthesized_expression] = STATE(2401), + [sym_conditional_expression] = STATE(3088), + [sym_concatenated_string] = STATE(2401), + [sym_string] = STATE(2161), + [sym_none] = STATE(2401), + [sym_await] = STATE(2401), + [sym_new_expression] = STATE(3088), + [sym_sizeof_expression] = STATE(2401), + [sym_cast_expression] = STATE(2401), + [sym_identifier] = ACTIONS(2701), [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_STAR] = ACTIONS(2733), + [anon_sym_STAR] = ACTIONS(2703), [anon_sym_print] = ACTIONS(1217), [anon_sym_match] = ACTIONS(1217), [anon_sym_async] = ACTIONS(1217), @@ -103053,11 +104172,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(1227), [anon_sym_LBRACE] = ACTIONS(1223), [anon_sym_PLUS] = ACTIONS(1227), - [anon_sym_not] = ACTIONS(1225), + [anon_sym_not] = ACTIONS(2707), [anon_sym_AMP] = ACTIONS(1227), [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(2735), - [anon_sym_lambda] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(2705), + [anon_sym_lambda] = ACTIONS(2709), [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), [anon_sym_None] = ACTIONS(1235), [sym_integer] = ACTIONS(1237), @@ -103068,200 +104187,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1237), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1243), + [anon_sym_new] = ACTIONS(2711), [anon_sym_sizeof] = ACTIONS(1245), [sym_string_start] = ACTIONS(1247), }, - [814] = { - [sym_else_clause] = STATE(1080), - [sym_except_clause] = STATE(927), - [sym_finally_clause] = STATE(1682), - [aux_sym_try_statement_repeat1] = STATE(927), - [ts_builtin_sym_end] = ACTIONS(2779), - [sym_identifier] = ACTIONS(2777), - [anon_sym_import] = ACTIONS(2777), - [anon_sym_cimport] = ACTIONS(2777), - [anon_sym_from] = ACTIONS(2777), - [anon_sym_LPAREN] = ACTIONS(2779), - [anon_sym_STAR] = ACTIONS(2779), - [anon_sym_print] = ACTIONS(2777), - [anon_sym_assert] = ACTIONS(2777), - [anon_sym_return] = ACTIONS(2777), - [anon_sym_del] = ACTIONS(2777), - [anon_sym_raise] = ACTIONS(2777), - [anon_sym_pass] = ACTIONS(2777), - [anon_sym_break] = ACTIONS(2777), - [anon_sym_continue] = ACTIONS(2777), - [anon_sym_if] = ACTIONS(2777), - [anon_sym_else] = ACTIONS(2695), - [anon_sym_match] = ACTIONS(2777), - [anon_sym_async] = ACTIONS(2777), - [anon_sym_for] = ACTIONS(2777), - [anon_sym_while] = ACTIONS(2777), - [anon_sym_try] = ACTIONS(2777), - [anon_sym_except] = ACTIONS(2697), - [anon_sym_finally] = ACTIONS(2699), - [anon_sym_with] = ACTIONS(2777), - [anon_sym_def] = ACTIONS(2777), - [anon_sym_global] = ACTIONS(2777), - [anon_sym_nonlocal] = ACTIONS(2777), - [anon_sym_exec] = ACTIONS(2777), - [anon_sym_type] = ACTIONS(2777), - [anon_sym_class] = ACTIONS(2777), - [anon_sym_LBRACK] = ACTIONS(2779), - [anon_sym_AT] = ACTIONS(2779), - [anon_sym_DASH] = ACTIONS(2779), - [anon_sym_LBRACE] = ACTIONS(2779), - [anon_sym_PLUS] = ACTIONS(2779), - [anon_sym_not] = ACTIONS(2777), - [anon_sym_AMP] = ACTIONS(2779), - [anon_sym_TILDE] = ACTIONS(2779), - [anon_sym_LT] = ACTIONS(2779), - [anon_sym_lambda] = ACTIONS(2777), - [anon_sym_yield] = ACTIONS(2777), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2779), - [anon_sym_None] = ACTIONS(2777), - [sym_integer] = ACTIONS(2777), - [sym_float] = ACTIONS(2779), - [anon_sym_await] = ACTIONS(2777), - [anon_sym_api] = ACTIONS(2777), - [sym_true] = ACTIONS(2777), - [sym_false] = ACTIONS(2777), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2777), - [anon_sym_include] = ACTIONS(2777), - [anon_sym_DEF] = ACTIONS(2777), - [anon_sym_cdef] = ACTIONS(2777), - [anon_sym_cpdef] = ACTIONS(2777), - [anon_sym_new] = ACTIONS(2777), - [anon_sym_ctypedef] = ACTIONS(2777), - [anon_sym_public] = ACTIONS(2777), - [anon_sym_packed] = ACTIONS(2777), - [anon_sym_inline] = ACTIONS(2777), - [anon_sym_readonly] = ACTIONS(2777), - [anon_sym_sizeof] = ACTIONS(2777), - [sym_string_start] = ACTIONS(2779), - }, - [815] = { - [sym_else_clause] = STATE(1080), - [sym_except_group_clause] = STATE(928), - [sym_finally_clause] = STATE(1682), - [aux_sym_try_statement_repeat2] = STATE(928), - [ts_builtin_sym_end] = ACTIONS(2779), - [sym_identifier] = ACTIONS(2777), - [anon_sym_import] = ACTIONS(2777), - [anon_sym_cimport] = ACTIONS(2777), - [anon_sym_from] = ACTIONS(2777), - [anon_sym_LPAREN] = ACTIONS(2779), - [anon_sym_STAR] = ACTIONS(2779), - [anon_sym_print] = ACTIONS(2777), - [anon_sym_assert] = ACTIONS(2777), - [anon_sym_return] = ACTIONS(2777), - [anon_sym_del] = ACTIONS(2777), - [anon_sym_raise] = ACTIONS(2777), - [anon_sym_pass] = ACTIONS(2777), - [anon_sym_break] = ACTIONS(2777), - [anon_sym_continue] = ACTIONS(2777), - [anon_sym_if] = ACTIONS(2777), - [anon_sym_else] = ACTIONS(2695), - [anon_sym_match] = ACTIONS(2777), - [anon_sym_async] = ACTIONS(2777), - [anon_sym_for] = ACTIONS(2777), - [anon_sym_while] = ACTIONS(2777), - [anon_sym_try] = ACTIONS(2777), - [anon_sym_except_STAR] = ACTIONS(2701), - [anon_sym_finally] = ACTIONS(2699), - [anon_sym_with] = ACTIONS(2777), - [anon_sym_def] = ACTIONS(2777), - [anon_sym_global] = ACTIONS(2777), - [anon_sym_nonlocal] = ACTIONS(2777), - [anon_sym_exec] = ACTIONS(2777), - [anon_sym_type] = ACTIONS(2777), - [anon_sym_class] = ACTIONS(2777), - [anon_sym_LBRACK] = ACTIONS(2779), - [anon_sym_AT] = ACTIONS(2779), - [anon_sym_DASH] = ACTIONS(2779), - [anon_sym_LBRACE] = ACTIONS(2779), - [anon_sym_PLUS] = ACTIONS(2779), - [anon_sym_not] = ACTIONS(2777), - [anon_sym_AMP] = ACTIONS(2779), - [anon_sym_TILDE] = ACTIONS(2779), - [anon_sym_LT] = ACTIONS(2779), - [anon_sym_lambda] = ACTIONS(2777), - [anon_sym_yield] = ACTIONS(2777), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2779), - [anon_sym_None] = ACTIONS(2777), - [sym_integer] = ACTIONS(2777), - [sym_float] = ACTIONS(2779), - [anon_sym_await] = ACTIONS(2777), - [anon_sym_api] = ACTIONS(2777), - [sym_true] = ACTIONS(2777), - [sym_false] = ACTIONS(2777), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2777), - [anon_sym_include] = ACTIONS(2777), - [anon_sym_DEF] = ACTIONS(2777), - [anon_sym_cdef] = ACTIONS(2777), - [anon_sym_cpdef] = ACTIONS(2777), - [anon_sym_new] = ACTIONS(2777), - [anon_sym_ctypedef] = ACTIONS(2777), - [anon_sym_public] = ACTIONS(2777), - [anon_sym_packed] = ACTIONS(2777), - [anon_sym_inline] = ACTIONS(2777), - [anon_sym_readonly] = ACTIONS(2777), - [anon_sym_sizeof] = ACTIONS(2777), - [sym_string_start] = ACTIONS(2779), - }, - [816] = { - [sym_named_expression] = STATE(2459), - [sym__named_expression_lhs] = STATE(5688), - [sym_list_splat] = STATE(4899), - [sym_dictionary_splat] = STATE(4899), - [sym_parenthesized_list_splat] = STATE(4900), - [sym_list_splat_pattern] = STATE(2477), - [sym_as_pattern] = STATE(2459), - [sym_expression] = STATE(3652), - [sym_primary_expression] = STATE(2060), - [sym_not_operator] = STATE(2459), - [sym_boolean_operator] = STATE(2459), - [sym_binary_operator] = STATE(2457), - [sym_unary_operator] = STATE(2457), - [sym_comparison_operator] = STATE(2459), - [sym_lambda] = STATE(2459), - [sym_attribute] = STATE(2457), - [sym_subscript] = STATE(2457), - [sym_ellipsis] = STATE(2457), - [sym_call] = STATE(2457), - [sym_keyword_argument] = STATE(4899), - [sym_list] = STATE(2457), - [sym_set] = STATE(2457), - [sym_tuple] = STATE(2457), - [sym_dictionary] = STATE(2457), - [sym_list_comprehension] = STATE(2457), - [sym_dictionary_comprehension] = STATE(2457), - [sym_set_comprehension] = STATE(2457), - [sym_generator_expression] = STATE(2457), - [sym_parenthesized_expression] = STATE(2457), - [sym_conditional_expression] = STATE(2459), - [sym_concatenated_string] = STATE(2457), - [sym_string] = STATE(2170), - [sym_none] = STATE(2457), - [sym_await] = STATE(2457), - [sym_new_expression] = STATE(2459), - [sym_sizeof_expression] = STATE(2457), - [sym_cast_expression] = STATE(2457), - [sym_identifier] = ACTIONS(2719), - [anon_sym_LPAREN] = ACTIONS(2721), - [anon_sym_RPAREN] = ACTIONS(2787), - [anon_sym_COMMA] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(2725), - [anon_sym_print] = ACTIONS(2727), - [anon_sym_match] = ACTIONS(2727), - [anon_sym_async] = ACTIONS(2727), + [828] = { + [sym_named_expression] = STATE(2421), + [sym__named_expression_lhs] = STATE(5522), + [sym_list_splat] = STATE(4887), + [sym_dictionary_splat] = STATE(4887), + [sym_parenthesized_list_splat] = STATE(4888), + [sym_list_splat_pattern] = STATE(2472), + [sym_as_pattern] = STATE(2421), + [sym_expression] = STATE(3666), + [sym_primary_expression] = STATE(2066), + [sym_not_operator] = STATE(2421), + [sym_boolean_operator] = STATE(2421), + [sym_binary_operator] = STATE(2414), + [sym_unary_operator] = STATE(2414), + [sym_comparison_operator] = STATE(2421), + [sym_lambda] = STATE(2421), + [sym_attribute] = STATE(2414), + [sym_subscript] = STATE(2414), + [sym_ellipsis] = STATE(2414), + [sym_call] = STATE(2414), + [sym_keyword_argument] = STATE(4887), + [sym_list] = STATE(2414), + [sym_set] = STATE(2414), + [sym_tuple] = STATE(2414), + [sym_dictionary] = STATE(2414), + [sym_list_comprehension] = STATE(2414), + [sym_dictionary_comprehension] = STATE(2414), + [sym_set_comprehension] = STATE(2414), + [sym_generator_expression] = STATE(2414), + [sym_parenthesized_expression] = STATE(2414), + [sym_conditional_expression] = STATE(2421), + [sym_concatenated_string] = STATE(2414), + [sym_string] = STATE(2147), + [sym_none] = STATE(2414), + [sym_await] = STATE(2414), + [sym_new_expression] = STATE(2421), + [sym_sizeof_expression] = STATE(2414), + [sym_cast_expression] = STATE(2414), + [sym_identifier] = ACTIONS(2745), + [anon_sym_LPAREN] = ACTIONS(2747), + [anon_sym_RPAREN] = ACTIONS(2797), + [anon_sym_COMMA] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(2751), + [anon_sym_print] = ACTIONS(2753), + [anon_sym_match] = ACTIONS(2753), + [anon_sym_async] = ACTIONS(2753), [anon_sym_STAR_STAR] = ACTIONS(1380), - [anon_sym_exec] = ACTIONS(2727), + [anon_sym_exec] = ACTIONS(2753), [anon_sym_LBRACK] = ACTIONS(1472), [anon_sym_DASH] = ACTIONS(1326), [anon_sym_LBRACE] = ACTIONS(1328), @@ -103275,8 +104252,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_None] = ACTIONS(1340), [sym_integer] = ACTIONS(1342), [sym_float] = ACTIONS(1344), - [anon_sym_await] = ACTIONS(2729), - [anon_sym_api] = ACTIONS(2727), + [anon_sym_await] = ACTIONS(2755), + [anon_sym_api] = ACTIONS(2753), [sym_true] = ACTIONS(1342), [sym_false] = ACTIONS(1342), [sym_comment] = ACTIONS(3), @@ -103285,125 +104262,196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1360), [sym_string_start] = ACTIONS(1362), }, - [817] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5609), - [sym_list_splat_pattern] = STATE(2591), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(3850), - [sym_primary_expression] = STATE(2077), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2631), - [sym_unary_operator] = STATE(2631), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2631), - [sym_subscript] = STATE(2631), - [sym_ellipsis] = STATE(2631), - [sym_call] = STATE(2631), - [sym_type] = STATE(4326), - [sym_splat_type] = STATE(4364), - [sym_generic_type] = STATE(4364), - [sym_union_type] = STATE(4364), - [sym_constrained_type] = STATE(4364), - [sym_member_type] = STATE(4364), - [sym_list] = STATE(2631), - [sym_set] = STATE(2631), - [sym_tuple] = STATE(2631), - [sym_dictionary] = STATE(2631), - [sym_list_comprehension] = STATE(2631), - [sym_dictionary_comprehension] = STATE(2631), - [sym_set_comprehension] = STATE(2631), - [sym_generator_expression] = STATE(2631), - [sym_parenthesized_expression] = STATE(2631), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2631), - [sym_string] = STATE(2218), - [sym_none] = STATE(2631), - [sym_await] = STATE(2631), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2631), - [sym_cast_expression] = STATE(2631), - [sym_identifier] = ACTIONS(2627), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(2629), - [anon_sym_print] = ACTIONS(2631), - [anon_sym_match] = ACTIONS(2631), - [anon_sym_async] = ACTIONS(2631), - [anon_sym_STAR_STAR] = ACTIONS(2633), - [anon_sym_exec] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2639), - [anon_sym_lambda] = ACTIONS(2641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2643), - [anon_sym_api] = ACTIONS(2631), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2645), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), + [829] = { + [sym_named_expression] = STATE(2631), + [sym__named_expression_lhs] = STATE(5572), + [sym_list_splat_pattern] = STATE(2589), + [sym_as_pattern] = STATE(2631), + [sym_expression] = STATE(3826), + [sym_primary_expression] = STATE(2107), + [sym_not_operator] = STATE(2631), + [sym_boolean_operator] = STATE(2631), + [sym_binary_operator] = STATE(2630), + [sym_unary_operator] = STATE(2630), + [sym_comparison_operator] = STATE(2631), + [sym_lambda] = STATE(2631), + [sym_attribute] = STATE(2630), + [sym_subscript] = STATE(2630), + [sym_ellipsis] = STATE(2630), + [sym_call] = STATE(2630), + [sym_type] = STATE(4424), + [sym_splat_type] = STATE(4292), + [sym_generic_type] = STATE(4292), + [sym_union_type] = STATE(4292), + [sym_constrained_type] = STATE(4292), + [sym_member_type] = STATE(4292), + [sym_list] = STATE(2630), + [sym_set] = STATE(2630), + [sym_tuple] = STATE(2630), + [sym_dictionary] = STATE(2630), + [sym_list_comprehension] = STATE(2630), + [sym_dictionary_comprehension] = STATE(2630), + [sym_set_comprehension] = STATE(2630), + [sym_generator_expression] = STATE(2630), + [sym_parenthesized_expression] = STATE(2630), + [sym_conditional_expression] = STATE(2631), + [sym_concatenated_string] = STATE(2630), + [sym_string] = STATE(2200), + [sym_none] = STATE(2630), + [sym_await] = STATE(2630), + [sym_new_expression] = STATE(2631), + [sym_sizeof_expression] = STATE(2630), + [sym_cast_expression] = STATE(2630), + [sym_identifier] = ACTIONS(2637), + [anon_sym_LPAREN] = ACTIONS(2461), + [anon_sym_STAR] = ACTIONS(2639), + [anon_sym_print] = ACTIONS(2641), + [anon_sym_match] = ACTIONS(2641), + [anon_sym_async] = ACTIONS(2641), + [anon_sym_STAR_STAR] = ACTIONS(2643), + [anon_sym_exec] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2467), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_not] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2469), + [anon_sym_TILDE] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_lambda] = ACTIONS(2651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2475), + [anon_sym_None] = ACTIONS(2477), + [sym_integer] = ACTIONS(2459), + [sym_float] = ACTIONS(2479), + [anon_sym_await] = ACTIONS(2653), + [anon_sym_api] = ACTIONS(2641), + [sym_true] = ACTIONS(2459), + [sym_false] = ACTIONS(2459), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2655), + [anon_sym_sizeof] = ACTIONS(2483), + [sym_string_start] = ACTIONS(2485), }, - [818] = { - [sym_named_expression] = STATE(2459), - [sym__named_expression_lhs] = STATE(5688), - [sym_list_splat] = STATE(4802), - [sym_dictionary_splat] = STATE(4802), - [sym_parenthesized_list_splat] = STATE(4805), - [sym_list_splat_pattern] = STATE(2477), - [sym_as_pattern] = STATE(2459), - [sym_expression] = STATE(3676), - [sym_primary_expression] = STATE(2060), - [sym_not_operator] = STATE(2459), - [sym_boolean_operator] = STATE(2459), - [sym_binary_operator] = STATE(2457), - [sym_unary_operator] = STATE(2457), - [sym_comparison_operator] = STATE(2459), - [sym_lambda] = STATE(2459), - [sym_attribute] = STATE(2457), - [sym_subscript] = STATE(2457), - [sym_ellipsis] = STATE(2457), - [sym_call] = STATE(2457), - [sym_keyword_argument] = STATE(4802), - [sym_list] = STATE(2457), - [sym_set] = STATE(2457), - [sym_tuple] = STATE(2457), - [sym_dictionary] = STATE(2457), - [sym_list_comprehension] = STATE(2457), - [sym_dictionary_comprehension] = STATE(2457), - [sym_set_comprehension] = STATE(2457), - [sym_generator_expression] = STATE(2457), - [sym_parenthesized_expression] = STATE(2457), - [sym_conditional_expression] = STATE(2459), - [sym_concatenated_string] = STATE(2457), - [sym_string] = STATE(2170), - [sym_none] = STATE(2457), - [sym_await] = STATE(2457), - [sym_new_expression] = STATE(2459), - [sym_sizeof_expression] = STATE(2457), - [sym_cast_expression] = STATE(2457), - [sym_identifier] = ACTIONS(2719), - [anon_sym_LPAREN] = ACTIONS(2721), - [anon_sym_RPAREN] = ACTIONS(1416), - [anon_sym_COMMA] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(2725), - [anon_sym_print] = ACTIONS(2727), - [anon_sym_match] = ACTIONS(2727), - [anon_sym_async] = ACTIONS(2727), + [830] = { + [sym_named_expression] = STATE(2631), + [sym__named_expression_lhs] = STATE(5572), + [sym_list_splat_pattern] = STATE(2589), + [sym_as_pattern] = STATE(2631), + [sym_expression] = STATE(3826), + [sym_primary_expression] = STATE(2107), + [sym_not_operator] = STATE(2631), + [sym_boolean_operator] = STATE(2631), + [sym_binary_operator] = STATE(2630), + [sym_unary_operator] = STATE(2630), + [sym_comparison_operator] = STATE(2631), + [sym_lambda] = STATE(2631), + [sym_attribute] = STATE(2630), + [sym_subscript] = STATE(2630), + [sym_ellipsis] = STATE(2630), + [sym_call] = STATE(2630), + [sym_type] = STATE(4425), + [sym_splat_type] = STATE(4292), + [sym_generic_type] = STATE(4292), + [sym_union_type] = STATE(4292), + [sym_constrained_type] = STATE(4292), + [sym_member_type] = STATE(4292), + [sym_list] = STATE(2630), + [sym_set] = STATE(2630), + [sym_tuple] = STATE(2630), + [sym_dictionary] = STATE(2630), + [sym_list_comprehension] = STATE(2630), + [sym_dictionary_comprehension] = STATE(2630), + [sym_set_comprehension] = STATE(2630), + [sym_generator_expression] = STATE(2630), + [sym_parenthesized_expression] = STATE(2630), + [sym_conditional_expression] = STATE(2631), + [sym_concatenated_string] = STATE(2630), + [sym_string] = STATE(2200), + [sym_none] = STATE(2630), + [sym_await] = STATE(2630), + [sym_new_expression] = STATE(2631), + [sym_sizeof_expression] = STATE(2630), + [sym_cast_expression] = STATE(2630), + [sym_identifier] = ACTIONS(2637), + [anon_sym_LPAREN] = ACTIONS(2461), + [anon_sym_STAR] = ACTIONS(2639), + [anon_sym_print] = ACTIONS(2641), + [anon_sym_match] = ACTIONS(2641), + [anon_sym_async] = ACTIONS(2641), + [anon_sym_STAR_STAR] = ACTIONS(2643), + [anon_sym_exec] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2467), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_not] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2469), + [anon_sym_TILDE] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_lambda] = ACTIONS(2651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2475), + [anon_sym_None] = ACTIONS(2477), + [sym_integer] = ACTIONS(2459), + [sym_float] = ACTIONS(2479), + [anon_sym_await] = ACTIONS(2653), + [anon_sym_api] = ACTIONS(2641), + [sym_true] = ACTIONS(2459), + [sym_false] = ACTIONS(2459), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2655), + [anon_sym_sizeof] = ACTIONS(2483), + [sym_string_start] = ACTIONS(2485), + }, + [831] = { + [sym_named_expression] = STATE(2421), + [sym__named_expression_lhs] = STATE(5522), + [sym_list_splat] = STATE(4936), + [sym_dictionary_splat] = STATE(4936), + [sym_parenthesized_list_splat] = STATE(4937), + [sym_list_splat_pattern] = STATE(2472), + [sym_as_pattern] = STATE(2421), + [sym_expression] = STATE(3672), + [sym_primary_expression] = STATE(2066), + [sym_not_operator] = STATE(2421), + [sym_boolean_operator] = STATE(2421), + [sym_binary_operator] = STATE(2414), + [sym_unary_operator] = STATE(2414), + [sym_comparison_operator] = STATE(2421), + [sym_lambda] = STATE(2421), + [sym_attribute] = STATE(2414), + [sym_subscript] = STATE(2414), + [sym_ellipsis] = STATE(2414), + [sym_call] = STATE(2414), + [sym_keyword_argument] = STATE(4936), + [sym_list] = STATE(2414), + [sym_set] = STATE(2414), + [sym_tuple] = STATE(2414), + [sym_dictionary] = STATE(2414), + [sym_list_comprehension] = STATE(2414), + [sym_dictionary_comprehension] = STATE(2414), + [sym_set_comprehension] = STATE(2414), + [sym_generator_expression] = STATE(2414), + [sym_parenthesized_expression] = STATE(2414), + [sym_conditional_expression] = STATE(2421), + [sym_concatenated_string] = STATE(2414), + [sym_string] = STATE(2147), + [sym_none] = STATE(2414), + [sym_await] = STATE(2414), + [sym_new_expression] = STATE(2421), + [sym_sizeof_expression] = STATE(2414), + [sym_cast_expression] = STATE(2414), + [sym_identifier] = ACTIONS(2745), + [anon_sym_LPAREN] = ACTIONS(2747), + [anon_sym_RPAREN] = ACTIONS(2799), + [anon_sym_COMMA] = ACTIONS(1442), + [anon_sym_STAR] = ACTIONS(2751), + [anon_sym_print] = ACTIONS(2753), + [anon_sym_match] = ACTIONS(2753), + [anon_sym_async] = ACTIONS(2753), [anon_sym_STAR_STAR] = ACTIONS(1380), - [anon_sym_exec] = ACTIONS(2727), + [anon_sym_exec] = ACTIONS(2753), [anon_sym_LBRACK] = ACTIONS(1472), [anon_sym_DASH] = ACTIONS(1326), [anon_sym_LBRACE] = ACTIONS(1328), @@ -103417,8 +104465,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_None] = ACTIONS(1340), [sym_integer] = ACTIONS(1342), [sym_float] = ACTIONS(1344), - [anon_sym_await] = ACTIONS(2729), - [anon_sym_api] = ACTIONS(2727), + [anon_sym_await] = ACTIONS(2755), + [anon_sym_api] = ACTIONS(2753), [sym_true] = ACTIONS(1342), [sym_false] = ACTIONS(1342), [sym_comment] = ACTIONS(3), @@ -103427,262 +104475,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1360), [sym_string_start] = ACTIONS(1362), }, - [819] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5609), - [sym_list_splat_pattern] = STATE(2591), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(3850), - [sym_primary_expression] = STATE(2077), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2631), - [sym_unary_operator] = STATE(2631), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2631), - [sym_subscript] = STATE(2631), - [sym_ellipsis] = STATE(2631), - [sym_call] = STATE(2631), - [sym_type] = STATE(4277), - [sym_splat_type] = STATE(4364), - [sym_generic_type] = STATE(4364), - [sym_union_type] = STATE(4364), - [sym_constrained_type] = STATE(4364), - [sym_member_type] = STATE(4364), - [sym_list] = STATE(2631), - [sym_set] = STATE(2631), - [sym_tuple] = STATE(2631), - [sym_dictionary] = STATE(2631), - [sym_list_comprehension] = STATE(2631), - [sym_dictionary_comprehension] = STATE(2631), - [sym_set_comprehension] = STATE(2631), - [sym_generator_expression] = STATE(2631), - [sym_parenthesized_expression] = STATE(2631), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2631), - [sym_string] = STATE(2218), - [sym_none] = STATE(2631), - [sym_await] = STATE(2631), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2631), - [sym_cast_expression] = STATE(2631), - [sym_identifier] = ACTIONS(2627), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(2629), - [anon_sym_print] = ACTIONS(2631), - [anon_sym_match] = ACTIONS(2631), - [anon_sym_async] = ACTIONS(2631), - [anon_sym_STAR_STAR] = ACTIONS(2633), - [anon_sym_exec] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2639), - [anon_sym_lambda] = ACTIONS(2641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2643), - [anon_sym_api] = ACTIONS(2631), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2645), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), - }, - [820] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(4802), - [sym_dictionary_splat] = STATE(4802), - [sym_parenthesized_list_splat] = STATE(4805), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4049), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(4802), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), - [sym_identifier] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_RPAREN] = ACTIONS(1416), - [anon_sym_COMMA] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_print] = ACTIONS(1378), - [anon_sym_match] = ACTIONS(1378), - [anon_sym_async] = ACTIONS(1378), - [anon_sym_STAR_STAR] = ACTIONS(1380), - [anon_sym_exec] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(1382), - [anon_sym_DASH] = ACTIONS(1384), - [anon_sym_LBRACE] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1384), - [anon_sym_not] = ACTIONS(1388), - [anon_sym_AMP] = ACTIONS(1384), - [anon_sym_TILDE] = ACTIONS(1384), - [anon_sym_LT] = ACTIONS(1390), - [anon_sym_lambda] = ACTIONS(1392), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1394), - [anon_sym_None] = ACTIONS(1396), - [sym_integer] = ACTIONS(1398), - [sym_float] = ACTIONS(1400), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_api] = ACTIONS(1378), - [sym_true] = ACTIONS(1398), - [sym_false] = ACTIONS(1398), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1404), - [anon_sym_sizeof] = ACTIONS(1406), - [sym_string_start] = ACTIONS(1408), - }, - [821] = { - [sym_named_expression] = STATE(3081), - [sym__named_expression_lhs] = STATE(5651), - [sym_list_splat_pattern] = STATE(2432), - [sym_as_pattern] = STATE(3081), - [sym_expression] = STATE(3946), - [sym_primary_expression] = STATE(2067), - [sym_not_operator] = STATE(3081), - [sym_boolean_operator] = STATE(3081), - [sym_binary_operator] = STATE(2549), - [sym_unary_operator] = STATE(2549), - [sym_comparison_operator] = STATE(3081), - [sym_lambda] = STATE(3081), - [sym_attribute] = STATE(2549), - [sym_subscript] = STATE(2549), - [sym_ellipsis] = STATE(2549), - [sym_call] = STATE(2549), - [sym_type] = STATE(4514), - [sym_splat_type] = STATE(4593), - [sym_generic_type] = STATE(4593), - [sym_union_type] = STATE(4593), - [sym_constrained_type] = STATE(4593), - [sym_member_type] = STATE(4593), - [sym_list] = STATE(2549), - [sym_set] = STATE(2549), - [sym_tuple] = STATE(2549), - [sym_dictionary] = STATE(2549), - [sym_list_comprehension] = STATE(2549), - [sym_dictionary_comprehension] = STATE(2549), - [sym_set_comprehension] = STATE(2549), - [sym_generator_expression] = STATE(2549), - [sym_parenthesized_expression] = STATE(2549), - [sym_conditional_expression] = STATE(3081), - [sym_concatenated_string] = STATE(2549), - [sym_string] = STATE(2140), - [sym_none] = STATE(2549), - [sym_await] = STATE(2549), - [sym_new_expression] = STATE(3081), - [sym_sizeof_expression] = STATE(2549), - [sym_cast_expression] = STATE(2549), - [sym_identifier] = ACTIONS(2731), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_STAR] = ACTIONS(2733), - [anon_sym_print] = ACTIONS(1217), - [anon_sym_match] = ACTIONS(1217), - [anon_sym_async] = ACTIONS(1217), - [anon_sym_STAR_STAR] = ACTIONS(457), - [anon_sym_exec] = ACTIONS(1217), - [anon_sym_LBRACK] = ACTIONS(1219), - [anon_sym_DASH] = ACTIONS(1227), + [832] = { + [sym__patterns] = STATE(5592), + [sym_pattern] = STATE(4748), + [sym_tuple_pattern] = STATE(5264), + [sym_list_pattern] = STATE(5264), + [sym_list_splat_pattern] = STATE(3195), + [sym_primary_expression] = STATE(3219), + [sym_binary_operator] = STATE(2401), + [sym_unary_operator] = STATE(2401), + [sym_attribute] = STATE(3201), + [sym_subscript] = STATE(3201), + [sym_ellipsis] = STATE(2401), + [sym_call] = STATE(2401), + [sym_list] = STATE(2401), + [sym_set] = STATE(2401), + [sym_tuple] = STATE(2401), + [sym_dictionary] = STATE(2401), + [sym_list_comprehension] = STATE(2401), + [sym_dictionary_comprehension] = STATE(2401), + [sym_set_comprehension] = STATE(2401), + [sym_generator_expression] = STATE(2401), + [sym_parenthesized_expression] = STATE(2401), + [sym_concatenated_string] = STATE(2401), + [sym_string] = STATE(2161), + [sym_none] = STATE(2401), + [sym_await] = STATE(2401), + [sym_int_type] = STATE(3449), + [sym__signedness] = STATE(3148), + [sym__longness] = STATE(3367), + [sym_function_pointer_type] = STATE(3449), + [sym_c_type] = STATE(5219), + [sym_sizeof_expression] = STATE(2401), + [sym_cast_expression] = STATE(2401), + [sym_identifier] = ACTIONS(2729), + [anon_sym_LPAREN] = ACTIONS(2731), + [anon_sym_RPAREN] = ACTIONS(2801), + [anon_sym_STAR] = ACTIONS(2735), + [anon_sym_print] = ACTIONS(2737), + [anon_sym_match] = ACTIONS(2737), + [anon_sym_async] = ACTIONS(2737), + [anon_sym_exec] = ACTIONS(2737), + [anon_sym_LBRACK] = ACTIONS(2739), + [anon_sym_DASH] = ACTIONS(1308), [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_PLUS] = ACTIONS(1227), - [anon_sym_not] = ACTIONS(2739), - [anon_sym_AMP] = ACTIONS(1227), - [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(2735), - [anon_sym_lambda] = ACTIONS(2741), + [anon_sym_PLUS] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_LT] = ACTIONS(2741), [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), [anon_sym_None] = ACTIONS(1235), [sym_integer] = ACTIONS(1237), [sym_float] = ACTIONS(1239), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_api] = ACTIONS(1217), + [anon_sym_await] = ACTIONS(2743), + [anon_sym_api] = ACTIONS(2737), [sym_true] = ACTIONS(1237), [sym_false] = ACTIONS(1237), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2743), + [anon_sym_int] = ACTIONS(1348), + [anon_sym_double] = ACTIONS(1348), + [anon_sym_complex] = ACTIONS(1348), + [anon_sym_signed] = ACTIONS(1352), + [anon_sym_unsigned] = ACTIONS(1352), + [anon_sym_char] = ACTIONS(1354), + [anon_sym_short] = ACTIONS(1354), + [anon_sym_long] = ACTIONS(1356), + [anon_sym_const] = ACTIONS(1358), + [anon_sym_volatile] = ACTIONS(1358), [anon_sym_sizeof] = ACTIONS(1245), [sym_string_start] = ACTIONS(1247), }, - [822] = { - [sym_named_expression] = STATE(3081), - [sym__named_expression_lhs] = STATE(5469), - [sym_list_splat_pattern] = STATE(2432), - [sym_as_pattern] = STATE(3081), - [sym_expression] = STATE(4138), - [sym_primary_expression] = STATE(2067), - [sym_not_operator] = STATE(3081), - [sym_boolean_operator] = STATE(3081), - [sym_binary_operator] = STATE(2549), - [sym_unary_operator] = STATE(2549), - [sym_comparison_operator] = STATE(3081), - [sym_lambda] = STATE(3081), - [sym_attribute] = STATE(2549), - [sym_subscript] = STATE(2549), - [sym_ellipsis] = STATE(2549), - [sym_call] = STATE(2549), - [sym_type] = STATE(5116), - [sym_splat_type] = STATE(4593), - [sym_generic_type] = STATE(4593), - [sym_union_type] = STATE(4593), - [sym_constrained_type] = STATE(4593), - [sym_member_type] = STATE(4593), - [sym_list] = STATE(2549), - [sym_set] = STATE(2549), - [sym_tuple] = STATE(2549), - [sym_dictionary] = STATE(2549), - [sym_list_comprehension] = STATE(2549), - [sym_dictionary_comprehension] = STATE(2549), - [sym_set_comprehension] = STATE(2549), - [sym_generator_expression] = STATE(2549), - [sym_parenthesized_expression] = STATE(2549), - [sym_conditional_expression] = STATE(3081), - [sym_concatenated_string] = STATE(2549), - [sym_string] = STATE(2140), - [sym_none] = STATE(2549), - [sym_await] = STATE(2549), - [sym_new_expression] = STATE(3081), - [sym_sizeof_expression] = STATE(2549), - [sym_cast_expression] = STATE(2549), - [sym_identifier] = ACTIONS(2731), + [833] = { + [sym_named_expression] = STATE(3088), + [sym__named_expression_lhs] = STATE(5579), + [sym_list_splat_pattern] = STATE(2536), + [sym_as_pattern] = STATE(3088), + [sym_expression] = STATE(4142), + [sym_primary_expression] = STATE(2072), + [sym_not_operator] = STATE(3088), + [sym_boolean_operator] = STATE(3088), + [sym_binary_operator] = STATE(2401), + [sym_unary_operator] = STATE(2401), + [sym_comparison_operator] = STATE(3088), + [sym_lambda] = STATE(3088), + [sym_attribute] = STATE(2401), + [sym_subscript] = STATE(2401), + [sym_ellipsis] = STATE(2401), + [sym_call] = STATE(2401), + [sym_type] = STATE(4700), + [sym_splat_type] = STATE(4597), + [sym_generic_type] = STATE(4597), + [sym_union_type] = STATE(4597), + [sym_constrained_type] = STATE(4597), + [sym_member_type] = STATE(4597), + [sym_list] = STATE(2401), + [sym_set] = STATE(2401), + [sym_tuple] = STATE(2401), + [sym_dictionary] = STATE(2401), + [sym_list_comprehension] = STATE(2401), + [sym_dictionary_comprehension] = STATE(2401), + [sym_set_comprehension] = STATE(2401), + [sym_generator_expression] = STATE(2401), + [sym_parenthesized_expression] = STATE(2401), + [sym_conditional_expression] = STATE(3088), + [sym_concatenated_string] = STATE(2401), + [sym_string] = STATE(2161), + [sym_none] = STATE(2401), + [sym_await] = STATE(2401), + [sym_new_expression] = STATE(3088), + [sym_sizeof_expression] = STATE(2401), + [sym_cast_expression] = STATE(2401), + [sym_identifier] = ACTIONS(2701), [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_STAR] = ACTIONS(2733), + [anon_sym_STAR] = ACTIONS(2703), [anon_sym_print] = ACTIONS(1217), [anon_sym_match] = ACTIONS(1217), [anon_sym_async] = ACTIONS(1217), @@ -103695,7 +104601,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not] = ACTIONS(1225), [anon_sym_AMP] = ACTIONS(1227), [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(2735), + [anon_sym_LT] = ACTIONS(2705), [anon_sym_lambda] = ACTIONS(1231), [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), [anon_sym_None] = ACTIONS(1235), @@ -103711,333 +104617,191 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1245), [sym_string_start] = ACTIONS(1247), }, - [823] = { - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_list_splat_pattern] = STATE(2088), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3831), - [sym_primary_expression] = STATE(2024), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_attribute] = STATE(2123), - [sym_subscript] = STATE(2123), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_type] = STATE(4232), - [sym_splat_type] = STATE(4238), - [sym_generic_type] = STATE(4238), - [sym_union_type] = STATE(4238), - [sym_constrained_type] = STATE(4238), - [sym_member_type] = STATE(4238), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [sym_identifier] = ACTIONS(2679), - [anon_sym_LPAREN] = ACTIONS(1281), - [anon_sym_STAR] = ACTIONS(2681), - [anon_sym_print] = ACTIONS(592), - [anon_sym_match] = ACTIONS(592), - [anon_sym_async] = ACTIONS(592), - [anon_sym_STAR_STAR] = ACTIONS(2683), - [anon_sym_exec] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(1287), - [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(614), - [anon_sym_api] = ACTIONS(592), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(105), - [sym_string_start] = ACTIONS(107), - }, - [824] = { - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_list_splat_pattern] = STATE(2088), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3831), - [sym_primary_expression] = STATE(2024), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_attribute] = STATE(2123), - [sym_subscript] = STATE(2123), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_type] = STATE(4291), - [sym_splat_type] = STATE(4238), - [sym_generic_type] = STATE(4238), - [sym_union_type] = STATE(4238), - [sym_constrained_type] = STATE(4238), - [sym_member_type] = STATE(4238), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [sym_identifier] = ACTIONS(2679), - [anon_sym_LPAREN] = ACTIONS(1281), - [anon_sym_STAR] = ACTIONS(2681), - [anon_sym_print] = ACTIONS(592), - [anon_sym_match] = ACTIONS(592), - [anon_sym_async] = ACTIONS(592), - [anon_sym_STAR_STAR] = ACTIONS(2683), - [anon_sym_exec] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(1287), - [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(614), - [anon_sym_api] = ACTIONS(592), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(105), - [sym_string_start] = ACTIONS(107), - }, - [825] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5609), - [sym_list_splat_pattern] = STATE(2591), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(3850), - [sym_primary_expression] = STATE(2077), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2631), - [sym_unary_operator] = STATE(2631), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2631), - [sym_subscript] = STATE(2631), - [sym_ellipsis] = STATE(2631), - [sym_call] = STATE(2631), - [sym_type] = STATE(4185), - [sym_splat_type] = STATE(4364), - [sym_generic_type] = STATE(4364), - [sym_union_type] = STATE(4364), - [sym_constrained_type] = STATE(4364), - [sym_member_type] = STATE(4364), - [sym_list] = STATE(2631), - [sym_set] = STATE(2631), - [sym_tuple] = STATE(2631), - [sym_dictionary] = STATE(2631), - [sym_list_comprehension] = STATE(2631), - [sym_dictionary_comprehension] = STATE(2631), - [sym_set_comprehension] = STATE(2631), - [sym_generator_expression] = STATE(2631), - [sym_parenthesized_expression] = STATE(2631), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2631), - [sym_string] = STATE(2218), - [sym_none] = STATE(2631), - [sym_await] = STATE(2631), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2631), - [sym_cast_expression] = STATE(2631), - [sym_identifier] = ACTIONS(2627), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(2629), - [anon_sym_print] = ACTIONS(2631), - [anon_sym_match] = ACTIONS(2631), - [anon_sym_async] = ACTIONS(2631), - [anon_sym_STAR_STAR] = ACTIONS(2633), - [anon_sym_exec] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2639), - [anon_sym_lambda] = ACTIONS(2641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2643), - [anon_sym_api] = ACTIONS(2631), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2645), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), + [834] = { + [sym_named_expression] = STATE(2631), + [sym__named_expression_lhs] = STATE(5572), + [sym_list_splat_pattern] = STATE(2589), + [sym_as_pattern] = STATE(2631), + [sym_expression] = STATE(3826), + [sym_primary_expression] = STATE(2107), + [sym_not_operator] = STATE(2631), + [sym_boolean_operator] = STATE(2631), + [sym_binary_operator] = STATE(2630), + [sym_unary_operator] = STATE(2630), + [sym_comparison_operator] = STATE(2631), + [sym_lambda] = STATE(2631), + [sym_attribute] = STATE(2630), + [sym_subscript] = STATE(2630), + [sym_ellipsis] = STATE(2630), + [sym_call] = STATE(2630), + [sym_type] = STATE(4236), + [sym_splat_type] = STATE(4292), + [sym_generic_type] = STATE(4292), + [sym_union_type] = STATE(4292), + [sym_constrained_type] = STATE(4292), + [sym_member_type] = STATE(4292), + [sym_list] = STATE(2630), + [sym_set] = STATE(2630), + [sym_tuple] = STATE(2630), + [sym_dictionary] = STATE(2630), + [sym_list_comprehension] = STATE(2630), + [sym_dictionary_comprehension] = STATE(2630), + [sym_set_comprehension] = STATE(2630), + [sym_generator_expression] = STATE(2630), + [sym_parenthesized_expression] = STATE(2630), + [sym_conditional_expression] = STATE(2631), + [sym_concatenated_string] = STATE(2630), + [sym_string] = STATE(2200), + [sym_none] = STATE(2630), + [sym_await] = STATE(2630), + [sym_new_expression] = STATE(2631), + [sym_sizeof_expression] = STATE(2630), + [sym_cast_expression] = STATE(2630), + [sym_identifier] = ACTIONS(2637), + [anon_sym_LPAREN] = ACTIONS(2461), + [anon_sym_STAR] = ACTIONS(2639), + [anon_sym_print] = ACTIONS(2641), + [anon_sym_match] = ACTIONS(2641), + [anon_sym_async] = ACTIONS(2641), + [anon_sym_STAR_STAR] = ACTIONS(2643), + [anon_sym_exec] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2467), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_not] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2469), + [anon_sym_TILDE] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_lambda] = ACTIONS(2651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2475), + [anon_sym_None] = ACTIONS(2477), + [sym_integer] = ACTIONS(2459), + [sym_float] = ACTIONS(2479), + [anon_sym_await] = ACTIONS(2653), + [anon_sym_api] = ACTIONS(2641), + [sym_true] = ACTIONS(2459), + [sym_false] = ACTIONS(2459), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2655), + [anon_sym_sizeof] = ACTIONS(2483), + [sym_string_start] = ACTIONS(2485), }, - [826] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5609), - [sym_list_splat_pattern] = STATE(2591), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(3850), - [sym_primary_expression] = STATE(2077), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2631), - [sym_unary_operator] = STATE(2631), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2631), - [sym_subscript] = STATE(2631), - [sym_ellipsis] = STATE(2631), - [sym_call] = STATE(2631), - [sym_type] = STATE(4231), - [sym_splat_type] = STATE(4364), - [sym_generic_type] = STATE(4364), - [sym_union_type] = STATE(4364), - [sym_constrained_type] = STATE(4364), - [sym_member_type] = STATE(4364), - [sym_list] = STATE(2631), - [sym_set] = STATE(2631), - [sym_tuple] = STATE(2631), - [sym_dictionary] = STATE(2631), - [sym_list_comprehension] = STATE(2631), - [sym_dictionary_comprehension] = STATE(2631), - [sym_set_comprehension] = STATE(2631), - [sym_generator_expression] = STATE(2631), - [sym_parenthesized_expression] = STATE(2631), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2631), - [sym_string] = STATE(2218), - [sym_none] = STATE(2631), - [sym_await] = STATE(2631), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2631), - [sym_cast_expression] = STATE(2631), - [sym_identifier] = ACTIONS(2627), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(2629), - [anon_sym_print] = ACTIONS(2631), - [anon_sym_match] = ACTIONS(2631), - [anon_sym_async] = ACTIONS(2631), - [anon_sym_STAR_STAR] = ACTIONS(2633), - [anon_sym_exec] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2639), - [anon_sym_lambda] = ACTIONS(2641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2643), - [anon_sym_api] = ACTIONS(2631), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2645), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), + [835] = { + [sym_named_expression] = STATE(2631), + [sym__named_expression_lhs] = STATE(5572), + [sym_list_splat_pattern] = STATE(2589), + [sym_as_pattern] = STATE(2631), + [sym_expression] = STATE(3826), + [sym_primary_expression] = STATE(2107), + [sym_not_operator] = STATE(2631), + [sym_boolean_operator] = STATE(2631), + [sym_binary_operator] = STATE(2630), + [sym_unary_operator] = STATE(2630), + [sym_comparison_operator] = STATE(2631), + [sym_lambda] = STATE(2631), + [sym_attribute] = STATE(2630), + [sym_subscript] = STATE(2630), + [sym_ellipsis] = STATE(2630), + [sym_call] = STATE(2630), + [sym_type] = STATE(4274), + [sym_splat_type] = STATE(4292), + [sym_generic_type] = STATE(4292), + [sym_union_type] = STATE(4292), + [sym_constrained_type] = STATE(4292), + [sym_member_type] = STATE(4292), + [sym_list] = STATE(2630), + [sym_set] = STATE(2630), + [sym_tuple] = STATE(2630), + [sym_dictionary] = STATE(2630), + [sym_list_comprehension] = STATE(2630), + [sym_dictionary_comprehension] = STATE(2630), + [sym_set_comprehension] = STATE(2630), + [sym_generator_expression] = STATE(2630), + [sym_parenthesized_expression] = STATE(2630), + [sym_conditional_expression] = STATE(2631), + [sym_concatenated_string] = STATE(2630), + [sym_string] = STATE(2200), + [sym_none] = STATE(2630), + [sym_await] = STATE(2630), + [sym_new_expression] = STATE(2631), + [sym_sizeof_expression] = STATE(2630), + [sym_cast_expression] = STATE(2630), + [sym_identifier] = ACTIONS(2637), + [anon_sym_LPAREN] = ACTIONS(2461), + [anon_sym_STAR] = ACTIONS(2639), + [anon_sym_print] = ACTIONS(2641), + [anon_sym_match] = ACTIONS(2641), + [anon_sym_async] = ACTIONS(2641), + [anon_sym_STAR_STAR] = ACTIONS(2643), + [anon_sym_exec] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2467), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_not] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2469), + [anon_sym_TILDE] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_lambda] = ACTIONS(2651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2475), + [anon_sym_None] = ACTIONS(2477), + [sym_integer] = ACTIONS(2459), + [sym_float] = ACTIONS(2479), + [anon_sym_await] = ACTIONS(2653), + [anon_sym_api] = ACTIONS(2641), + [sym_true] = ACTIONS(2459), + [sym_false] = ACTIONS(2459), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2655), + [anon_sym_sizeof] = ACTIONS(2483), + [sym_string_start] = ACTIONS(2485), }, - [827] = { - [sym_named_expression] = STATE(3081), - [sym__named_expression_lhs] = STATE(5469), - [sym_list_splat_pattern] = STATE(2432), - [sym_as_pattern] = STATE(3081), - [sym_expression] = STATE(4138), - [sym_primary_expression] = STATE(2067), - [sym_not_operator] = STATE(3081), - [sym_boolean_operator] = STATE(3081), - [sym_binary_operator] = STATE(2549), - [sym_unary_operator] = STATE(2549), - [sym_comparison_operator] = STATE(3081), - [sym_lambda] = STATE(3081), - [sym_attribute] = STATE(2549), - [sym_subscript] = STATE(2549), - [sym_ellipsis] = STATE(2549), - [sym_call] = STATE(2549), - [sym_type] = STATE(5092), - [sym_splat_type] = STATE(4593), - [sym_generic_type] = STATE(4593), - [sym_union_type] = STATE(4593), - [sym_constrained_type] = STATE(4593), - [sym_member_type] = STATE(4593), - [sym_list] = STATE(2549), - [sym_set] = STATE(2549), - [sym_tuple] = STATE(2549), - [sym_dictionary] = STATE(2549), - [sym_list_comprehension] = STATE(2549), - [sym_dictionary_comprehension] = STATE(2549), - [sym_set_comprehension] = STATE(2549), - [sym_generator_expression] = STATE(2549), - [sym_parenthesized_expression] = STATE(2549), - [sym_conditional_expression] = STATE(3081), - [sym_concatenated_string] = STATE(2549), - [sym_string] = STATE(2140), - [sym_none] = STATE(2549), - [sym_await] = STATE(2549), - [sym_new_expression] = STATE(3081), - [sym_sizeof_expression] = STATE(2549), - [sym_cast_expression] = STATE(2549), - [sym_identifier] = ACTIONS(2731), + [836] = { + [sym_named_expression] = STATE(3088), + [sym__named_expression_lhs] = STATE(5579), + [sym_list_splat_pattern] = STATE(2536), + [sym_as_pattern] = STATE(3088), + [sym_expression] = STATE(4142), + [sym_primary_expression] = STATE(2072), + [sym_not_operator] = STATE(3088), + [sym_boolean_operator] = STATE(3088), + [sym_binary_operator] = STATE(2401), + [sym_unary_operator] = STATE(2401), + [sym_comparison_operator] = STATE(3088), + [sym_lambda] = STATE(3088), + [sym_attribute] = STATE(2401), + [sym_subscript] = STATE(2401), + [sym_ellipsis] = STATE(2401), + [sym_call] = STATE(2401), + [sym_type] = STATE(5120), + [sym_splat_type] = STATE(4597), + [sym_generic_type] = STATE(4597), + [sym_union_type] = STATE(4597), + [sym_constrained_type] = STATE(4597), + [sym_member_type] = STATE(4597), + [sym_list] = STATE(2401), + [sym_set] = STATE(2401), + [sym_tuple] = STATE(2401), + [sym_dictionary] = STATE(2401), + [sym_list_comprehension] = STATE(2401), + [sym_dictionary_comprehension] = STATE(2401), + [sym_set_comprehension] = STATE(2401), + [sym_generator_expression] = STATE(2401), + [sym_parenthesized_expression] = STATE(2401), + [sym_conditional_expression] = STATE(3088), + [sym_concatenated_string] = STATE(2401), + [sym_string] = STATE(2161), + [sym_none] = STATE(2401), + [sym_await] = STATE(2401), + [sym_new_expression] = STATE(3088), + [sym_sizeof_expression] = STATE(2401), + [sym_cast_expression] = STATE(2401), + [sym_identifier] = ACTIONS(2701), [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_STAR] = ACTIONS(2733), + [anon_sym_STAR] = ACTIONS(2703), [anon_sym_print] = ACTIONS(1217), [anon_sym_match] = ACTIONS(1217), [anon_sym_async] = ACTIONS(1217), @@ -104050,7 +104814,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not] = ACTIONS(1225), [anon_sym_AMP] = ACTIONS(1227), [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(2735), + [anon_sym_LT] = ACTIONS(2705), [anon_sym_lambda] = ACTIONS(1231), [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), [anon_sym_None] = ACTIONS(1235), @@ -104066,49 +104830,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1245), [sym_string_start] = ACTIONS(1247), }, - [828] = { - [sym_named_expression] = STATE(3081), - [sym__named_expression_lhs] = STATE(5469), - [sym_list_splat_pattern] = STATE(2432), - [sym_as_pattern] = STATE(3081), - [sym_expression] = STATE(4138), - [sym_primary_expression] = STATE(2067), - [sym_not_operator] = STATE(3081), - [sym_boolean_operator] = STATE(3081), - [sym_binary_operator] = STATE(2549), - [sym_unary_operator] = STATE(2549), - [sym_comparison_operator] = STATE(3081), - [sym_lambda] = STATE(3081), - [sym_attribute] = STATE(2549), - [sym_subscript] = STATE(2549), - [sym_ellipsis] = STATE(2549), - [sym_call] = STATE(2549), - [sym_type] = STATE(4519), - [sym_splat_type] = STATE(4593), - [sym_generic_type] = STATE(4593), - [sym_union_type] = STATE(4593), - [sym_constrained_type] = STATE(4593), - [sym_member_type] = STATE(4593), - [sym_list] = STATE(2549), - [sym_set] = STATE(2549), - [sym_tuple] = STATE(2549), - [sym_dictionary] = STATE(2549), - [sym_list_comprehension] = STATE(2549), - [sym_dictionary_comprehension] = STATE(2549), - [sym_set_comprehension] = STATE(2549), - [sym_generator_expression] = STATE(2549), - [sym_parenthesized_expression] = STATE(2549), - [sym_conditional_expression] = STATE(3081), - [sym_concatenated_string] = STATE(2549), - [sym_string] = STATE(2140), - [sym_none] = STATE(2549), - [sym_await] = STATE(2549), - [sym_new_expression] = STATE(3081), - [sym_sizeof_expression] = STATE(2549), - [sym_cast_expression] = STATE(2549), - [sym_identifier] = ACTIONS(2731), + [837] = { + [sym_named_expression] = STATE(3088), + [sym__named_expression_lhs] = STATE(5579), + [sym_list_splat_pattern] = STATE(2536), + [sym_as_pattern] = STATE(3088), + [sym_expression] = STATE(4142), + [sym_primary_expression] = STATE(2072), + [sym_not_operator] = STATE(3088), + [sym_boolean_operator] = STATE(3088), + [sym_binary_operator] = STATE(2401), + [sym_unary_operator] = STATE(2401), + [sym_comparison_operator] = STATE(3088), + [sym_lambda] = STATE(3088), + [sym_attribute] = STATE(2401), + [sym_subscript] = STATE(2401), + [sym_ellipsis] = STATE(2401), + [sym_call] = STATE(2401), + [sym_type] = STATE(4516), + [sym_splat_type] = STATE(4597), + [sym_generic_type] = STATE(4597), + [sym_union_type] = STATE(4597), + [sym_constrained_type] = STATE(4597), + [sym_member_type] = STATE(4597), + [sym_list] = STATE(2401), + [sym_set] = STATE(2401), + [sym_tuple] = STATE(2401), + [sym_dictionary] = STATE(2401), + [sym_list_comprehension] = STATE(2401), + [sym_dictionary_comprehension] = STATE(2401), + [sym_set_comprehension] = STATE(2401), + [sym_generator_expression] = STATE(2401), + [sym_parenthesized_expression] = STATE(2401), + [sym_conditional_expression] = STATE(3088), + [sym_concatenated_string] = STATE(2401), + [sym_string] = STATE(2161), + [sym_none] = STATE(2401), + [sym_await] = STATE(2401), + [sym_new_expression] = STATE(3088), + [sym_sizeof_expression] = STATE(2401), + [sym_cast_expression] = STATE(2401), + [sym_identifier] = ACTIONS(2701), [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_STAR] = ACTIONS(2733), + [anon_sym_STAR] = ACTIONS(2703), [anon_sym_print] = ACTIONS(1217), [anon_sym_match] = ACTIONS(1217), [anon_sym_async] = ACTIONS(1217), @@ -104121,7 +104885,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not] = ACTIONS(1225), [anon_sym_AMP] = ACTIONS(1227), [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(2735), + [anon_sym_LT] = ACTIONS(2705), [anon_sym_lambda] = ACTIONS(1231), [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), [anon_sym_None] = ACTIONS(1235), @@ -104137,49 +104901,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1245), [sym_string_start] = ACTIONS(1247), }, - [829] = { - [sym_named_expression] = STATE(3081), - [sym__named_expression_lhs] = STATE(5469), - [sym_list_splat_pattern] = STATE(2432), - [sym_as_pattern] = STATE(3081), - [sym_expression] = STATE(4138), - [sym_primary_expression] = STATE(2067), - [sym_not_operator] = STATE(3081), - [sym_boolean_operator] = STATE(3081), - [sym_binary_operator] = STATE(2549), - [sym_unary_operator] = STATE(2549), - [sym_comparison_operator] = STATE(3081), - [sym_lambda] = STATE(3081), - [sym_attribute] = STATE(2549), - [sym_subscript] = STATE(2549), - [sym_ellipsis] = STATE(2549), - [sym_call] = STATE(2549), - [sym_type] = STATE(4991), - [sym_splat_type] = STATE(4593), - [sym_generic_type] = STATE(4593), - [sym_union_type] = STATE(4593), - [sym_constrained_type] = STATE(4593), - [sym_member_type] = STATE(4593), - [sym_list] = STATE(2549), - [sym_set] = STATE(2549), - [sym_tuple] = STATE(2549), - [sym_dictionary] = STATE(2549), - [sym_list_comprehension] = STATE(2549), - [sym_dictionary_comprehension] = STATE(2549), - [sym_set_comprehension] = STATE(2549), - [sym_generator_expression] = STATE(2549), - [sym_parenthesized_expression] = STATE(2549), - [sym_conditional_expression] = STATE(3081), - [sym_concatenated_string] = STATE(2549), - [sym_string] = STATE(2140), - [sym_none] = STATE(2549), - [sym_await] = STATE(2549), - [sym_new_expression] = STATE(3081), - [sym_sizeof_expression] = STATE(2549), - [sym_cast_expression] = STATE(2549), - [sym_identifier] = ACTIONS(2731), + [838] = { + [sym_named_expression] = STATE(3088), + [sym__named_expression_lhs] = STATE(5579), + [sym_list_splat_pattern] = STATE(2536), + [sym_as_pattern] = STATE(3088), + [sym_expression] = STATE(4142), + [sym_primary_expression] = STATE(2072), + [sym_not_operator] = STATE(3088), + [sym_boolean_operator] = STATE(3088), + [sym_binary_operator] = STATE(2401), + [sym_unary_operator] = STATE(2401), + [sym_comparison_operator] = STATE(3088), + [sym_lambda] = STATE(3088), + [sym_attribute] = STATE(2401), + [sym_subscript] = STATE(2401), + [sym_ellipsis] = STATE(2401), + [sym_call] = STATE(2401), + [sym_type] = STATE(5038), + [sym_splat_type] = STATE(4597), + [sym_generic_type] = STATE(4597), + [sym_union_type] = STATE(4597), + [sym_constrained_type] = STATE(4597), + [sym_member_type] = STATE(4597), + [sym_list] = STATE(2401), + [sym_set] = STATE(2401), + [sym_tuple] = STATE(2401), + [sym_dictionary] = STATE(2401), + [sym_list_comprehension] = STATE(2401), + [sym_dictionary_comprehension] = STATE(2401), + [sym_set_comprehension] = STATE(2401), + [sym_generator_expression] = STATE(2401), + [sym_parenthesized_expression] = STATE(2401), + [sym_conditional_expression] = STATE(3088), + [sym_concatenated_string] = STATE(2401), + [sym_string] = STATE(2161), + [sym_none] = STATE(2401), + [sym_await] = STATE(2401), + [sym_new_expression] = STATE(3088), + [sym_sizeof_expression] = STATE(2401), + [sym_cast_expression] = STATE(2401), + [sym_identifier] = ACTIONS(2701), [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_STAR] = ACTIONS(2733), + [anon_sym_STAR] = ACTIONS(2703), [anon_sym_print] = ACTIONS(1217), [anon_sym_match] = ACTIONS(1217), [anon_sym_async] = ACTIONS(1217), @@ -104192,7 +104956,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not] = ACTIONS(1225), [anon_sym_AMP] = ACTIONS(1227), [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(2735), + [anon_sym_LT] = ACTIONS(2705), [anon_sym_lambda] = ACTIONS(1231), [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), [anon_sym_None] = ACTIONS(1235), @@ -104208,49 +104972,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1245), [sym_string_start] = ACTIONS(1247), }, - [830] = { - [sym_named_expression] = STATE(3081), - [sym__named_expression_lhs] = STATE(5469), - [sym_list_splat_pattern] = STATE(2432), - [sym_as_pattern] = STATE(3081), - [sym_expression] = STATE(4138), - [sym_primary_expression] = STATE(2067), - [sym_not_operator] = STATE(3081), - [sym_boolean_operator] = STATE(3081), - [sym_binary_operator] = STATE(2549), - [sym_unary_operator] = STATE(2549), - [sym_comparison_operator] = STATE(3081), - [sym_lambda] = STATE(3081), - [sym_attribute] = STATE(2549), - [sym_subscript] = STATE(2549), - [sym_ellipsis] = STATE(2549), - [sym_call] = STATE(2549), - [sym_type] = STATE(4996), - [sym_splat_type] = STATE(4593), - [sym_generic_type] = STATE(4593), - [sym_union_type] = STATE(4593), - [sym_constrained_type] = STATE(4593), - [sym_member_type] = STATE(4593), - [sym_list] = STATE(2549), - [sym_set] = STATE(2549), - [sym_tuple] = STATE(2549), - [sym_dictionary] = STATE(2549), - [sym_list_comprehension] = STATE(2549), - [sym_dictionary_comprehension] = STATE(2549), - [sym_set_comprehension] = STATE(2549), - [sym_generator_expression] = STATE(2549), - [sym_parenthesized_expression] = STATE(2549), - [sym_conditional_expression] = STATE(3081), - [sym_concatenated_string] = STATE(2549), - [sym_string] = STATE(2140), - [sym_none] = STATE(2549), - [sym_await] = STATE(2549), - [sym_new_expression] = STATE(3081), - [sym_sizeof_expression] = STATE(2549), - [sym_cast_expression] = STATE(2549), - [sym_identifier] = ACTIONS(2731), + [839] = { + [sym_named_expression] = STATE(3088), + [sym__named_expression_lhs] = STATE(5579), + [sym_list_splat_pattern] = STATE(2536), + [sym_as_pattern] = STATE(3088), + [sym_expression] = STATE(4142), + [sym_primary_expression] = STATE(2072), + [sym_not_operator] = STATE(3088), + [sym_boolean_operator] = STATE(3088), + [sym_binary_operator] = STATE(2401), + [sym_unary_operator] = STATE(2401), + [sym_comparison_operator] = STATE(3088), + [sym_lambda] = STATE(3088), + [sym_attribute] = STATE(2401), + [sym_subscript] = STATE(2401), + [sym_ellipsis] = STATE(2401), + [sym_call] = STATE(2401), + [sym_type] = STATE(5046), + [sym_splat_type] = STATE(4597), + [sym_generic_type] = STATE(4597), + [sym_union_type] = STATE(4597), + [sym_constrained_type] = STATE(4597), + [sym_member_type] = STATE(4597), + [sym_list] = STATE(2401), + [sym_set] = STATE(2401), + [sym_tuple] = STATE(2401), + [sym_dictionary] = STATE(2401), + [sym_list_comprehension] = STATE(2401), + [sym_dictionary_comprehension] = STATE(2401), + [sym_set_comprehension] = STATE(2401), + [sym_generator_expression] = STATE(2401), + [sym_parenthesized_expression] = STATE(2401), + [sym_conditional_expression] = STATE(3088), + [sym_concatenated_string] = STATE(2401), + [sym_string] = STATE(2161), + [sym_none] = STATE(2401), + [sym_await] = STATE(2401), + [sym_new_expression] = STATE(3088), + [sym_sizeof_expression] = STATE(2401), + [sym_cast_expression] = STATE(2401), + [sym_identifier] = ACTIONS(2701), [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_STAR] = ACTIONS(2733), + [anon_sym_STAR] = ACTIONS(2703), [anon_sym_print] = ACTIONS(1217), [anon_sym_match] = ACTIONS(1217), [anon_sym_async] = ACTIONS(1217), @@ -104263,7 +105027,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not] = ACTIONS(1225), [anon_sym_AMP] = ACTIONS(1227), [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(2735), + [anon_sym_LT] = ACTIONS(2705), [anon_sym_lambda] = ACTIONS(1231), [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), [anon_sym_None] = ACTIONS(1235), @@ -104279,49 +105043,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1245), [sym_string_start] = ACTIONS(1247), }, - [831] = { - [sym_named_expression] = STATE(3081), - [sym__named_expression_lhs] = STATE(5469), - [sym_list_splat_pattern] = STATE(2432), - [sym_as_pattern] = STATE(3081), - [sym_expression] = STATE(4138), - [sym_primary_expression] = STATE(2067), - [sym_not_operator] = STATE(3081), - [sym_boolean_operator] = STATE(3081), - [sym_binary_operator] = STATE(2549), - [sym_unary_operator] = STATE(2549), - [sym_comparison_operator] = STATE(3081), - [sym_lambda] = STATE(3081), - [sym_attribute] = STATE(2549), - [sym_subscript] = STATE(2549), - [sym_ellipsis] = STATE(2549), - [sym_call] = STATE(2549), - [sym_type] = STATE(4997), - [sym_splat_type] = STATE(4593), - [sym_generic_type] = STATE(4593), - [sym_union_type] = STATE(4593), - [sym_constrained_type] = STATE(4593), - [sym_member_type] = STATE(4593), - [sym_list] = STATE(2549), - [sym_set] = STATE(2549), - [sym_tuple] = STATE(2549), - [sym_dictionary] = STATE(2549), - [sym_list_comprehension] = STATE(2549), - [sym_dictionary_comprehension] = STATE(2549), - [sym_set_comprehension] = STATE(2549), - [sym_generator_expression] = STATE(2549), - [sym_parenthesized_expression] = STATE(2549), - [sym_conditional_expression] = STATE(3081), - [sym_concatenated_string] = STATE(2549), - [sym_string] = STATE(2140), - [sym_none] = STATE(2549), - [sym_await] = STATE(2549), - [sym_new_expression] = STATE(3081), - [sym_sizeof_expression] = STATE(2549), - [sym_cast_expression] = STATE(2549), - [sym_identifier] = ACTIONS(2731), + [840] = { + [sym_named_expression] = STATE(3088), + [sym__named_expression_lhs] = STATE(5579), + [sym_list_splat_pattern] = STATE(2536), + [sym_as_pattern] = STATE(3088), + [sym_expression] = STATE(4142), + [sym_primary_expression] = STATE(2072), + [sym_not_operator] = STATE(3088), + [sym_boolean_operator] = STATE(3088), + [sym_binary_operator] = STATE(2401), + [sym_unary_operator] = STATE(2401), + [sym_comparison_operator] = STATE(3088), + [sym_lambda] = STATE(3088), + [sym_attribute] = STATE(2401), + [sym_subscript] = STATE(2401), + [sym_ellipsis] = STATE(2401), + [sym_call] = STATE(2401), + [sym_type] = STATE(5047), + [sym_splat_type] = STATE(4597), + [sym_generic_type] = STATE(4597), + [sym_union_type] = STATE(4597), + [sym_constrained_type] = STATE(4597), + [sym_member_type] = STATE(4597), + [sym_list] = STATE(2401), + [sym_set] = STATE(2401), + [sym_tuple] = STATE(2401), + [sym_dictionary] = STATE(2401), + [sym_list_comprehension] = STATE(2401), + [sym_dictionary_comprehension] = STATE(2401), + [sym_set_comprehension] = STATE(2401), + [sym_generator_expression] = STATE(2401), + [sym_parenthesized_expression] = STATE(2401), + [sym_conditional_expression] = STATE(3088), + [sym_concatenated_string] = STATE(2401), + [sym_string] = STATE(2161), + [sym_none] = STATE(2401), + [sym_await] = STATE(2401), + [sym_new_expression] = STATE(3088), + [sym_sizeof_expression] = STATE(2401), + [sym_cast_expression] = STATE(2401), + [sym_identifier] = ACTIONS(2701), [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_STAR] = ACTIONS(2733), + [anon_sym_STAR] = ACTIONS(2703), [anon_sym_print] = ACTIONS(1217), [anon_sym_match] = ACTIONS(1217), [anon_sym_async] = ACTIONS(1217), @@ -104334,7 +105098,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not] = ACTIONS(1225), [anon_sym_AMP] = ACTIONS(1227), [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(2735), + [anon_sym_LT] = ACTIONS(2705), [anon_sym_lambda] = ACTIONS(1231), [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), [anon_sym_None] = ACTIONS(1235), @@ -104350,49 +105114,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1245), [sym_string_start] = ACTIONS(1247), }, - [832] = { - [sym_named_expression] = STATE(3081), - [sym__named_expression_lhs] = STATE(5469), - [sym_list_splat_pattern] = STATE(2432), - [sym_as_pattern] = STATE(3081), - [sym_expression] = STATE(4138), - [sym_primary_expression] = STATE(2067), - [sym_not_operator] = STATE(3081), - [sym_boolean_operator] = STATE(3081), - [sym_binary_operator] = STATE(2549), - [sym_unary_operator] = STATE(2549), - [sym_comparison_operator] = STATE(3081), - [sym_lambda] = STATE(3081), - [sym_attribute] = STATE(2549), - [sym_subscript] = STATE(2549), - [sym_ellipsis] = STATE(2549), - [sym_call] = STATE(2549), - [sym_type] = STATE(5000), - [sym_splat_type] = STATE(4593), - [sym_generic_type] = STATE(4593), - [sym_union_type] = STATE(4593), - [sym_constrained_type] = STATE(4593), - [sym_member_type] = STATE(4593), - [sym_list] = STATE(2549), - [sym_set] = STATE(2549), - [sym_tuple] = STATE(2549), - [sym_dictionary] = STATE(2549), - [sym_list_comprehension] = STATE(2549), - [sym_dictionary_comprehension] = STATE(2549), - [sym_set_comprehension] = STATE(2549), - [sym_generator_expression] = STATE(2549), - [sym_parenthesized_expression] = STATE(2549), - [sym_conditional_expression] = STATE(3081), - [sym_concatenated_string] = STATE(2549), - [sym_string] = STATE(2140), - [sym_none] = STATE(2549), - [sym_await] = STATE(2549), - [sym_new_expression] = STATE(3081), - [sym_sizeof_expression] = STATE(2549), - [sym_cast_expression] = STATE(2549), - [sym_identifier] = ACTIONS(2731), + [841] = { + [sym_named_expression] = STATE(3088), + [sym__named_expression_lhs] = STATE(5579), + [sym_list_splat_pattern] = STATE(2536), + [sym_as_pattern] = STATE(3088), + [sym_expression] = STATE(4142), + [sym_primary_expression] = STATE(2072), + [sym_not_operator] = STATE(3088), + [sym_boolean_operator] = STATE(3088), + [sym_binary_operator] = STATE(2401), + [sym_unary_operator] = STATE(2401), + [sym_comparison_operator] = STATE(3088), + [sym_lambda] = STATE(3088), + [sym_attribute] = STATE(2401), + [sym_subscript] = STATE(2401), + [sym_ellipsis] = STATE(2401), + [sym_call] = STATE(2401), + [sym_type] = STATE(5051), + [sym_splat_type] = STATE(4597), + [sym_generic_type] = STATE(4597), + [sym_union_type] = STATE(4597), + [sym_constrained_type] = STATE(4597), + [sym_member_type] = STATE(4597), + [sym_list] = STATE(2401), + [sym_set] = STATE(2401), + [sym_tuple] = STATE(2401), + [sym_dictionary] = STATE(2401), + [sym_list_comprehension] = STATE(2401), + [sym_dictionary_comprehension] = STATE(2401), + [sym_set_comprehension] = STATE(2401), + [sym_generator_expression] = STATE(2401), + [sym_parenthesized_expression] = STATE(2401), + [sym_conditional_expression] = STATE(3088), + [sym_concatenated_string] = STATE(2401), + [sym_string] = STATE(2161), + [sym_none] = STATE(2401), + [sym_await] = STATE(2401), + [sym_new_expression] = STATE(3088), + [sym_sizeof_expression] = STATE(2401), + [sym_cast_expression] = STATE(2401), + [sym_identifier] = ACTIONS(2701), [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_STAR] = ACTIONS(2733), + [anon_sym_STAR] = ACTIONS(2703), [anon_sym_print] = ACTIONS(1217), [anon_sym_match] = ACTIONS(1217), [anon_sym_async] = ACTIONS(1217), @@ -104405,7 +105169,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not] = ACTIONS(1225), [anon_sym_AMP] = ACTIONS(1227), [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(2735), + [anon_sym_LT] = ACTIONS(2705), [anon_sym_lambda] = ACTIONS(1231), [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), [anon_sym_None] = ACTIONS(1235), @@ -104421,123 +105185,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1245), [sym_string_start] = ACTIONS(1247), }, - [833] = { - [sym_else_clause] = STATE(1103), - [sym_except_group_clause] = STATE(926), - [sym_finally_clause] = STATE(1680), - [aux_sym_try_statement_repeat2] = STATE(926), - [sym_identifier] = ACTIONS(2693), - [anon_sym_import] = ACTIONS(2693), - [anon_sym_cimport] = ACTIONS(2693), - [anon_sym_from] = ACTIONS(2693), - [anon_sym_LPAREN] = ACTIONS(2691), - [anon_sym_STAR] = ACTIONS(2691), - [anon_sym_print] = ACTIONS(2693), - [anon_sym_assert] = ACTIONS(2693), - [anon_sym_return] = ACTIONS(2693), - [anon_sym_del] = ACTIONS(2693), - [anon_sym_raise] = ACTIONS(2693), - [anon_sym_pass] = ACTIONS(2693), - [anon_sym_break] = ACTIONS(2693), - [anon_sym_continue] = ACTIONS(2693), - [anon_sym_if] = ACTIONS(2693), - [anon_sym_else] = ACTIONS(2769), - [anon_sym_match] = ACTIONS(2693), - [anon_sym_async] = ACTIONS(2693), - [anon_sym_for] = ACTIONS(2693), - [anon_sym_while] = ACTIONS(2693), - [anon_sym_try] = ACTIONS(2693), - [anon_sym_except_STAR] = ACTIONS(2781), - [anon_sym_finally] = ACTIONS(2773), - [anon_sym_with] = ACTIONS(2693), - [anon_sym_def] = ACTIONS(2693), - [anon_sym_global] = ACTIONS(2693), - [anon_sym_nonlocal] = ACTIONS(2693), - [anon_sym_exec] = ACTIONS(2693), - [anon_sym_type] = ACTIONS(2693), - [anon_sym_class] = ACTIONS(2693), - [anon_sym_LBRACK] = ACTIONS(2691), - [anon_sym_AT] = ACTIONS(2691), - [anon_sym_DASH] = ACTIONS(2691), - [anon_sym_LBRACE] = ACTIONS(2691), - [anon_sym_PLUS] = ACTIONS(2691), - [anon_sym_not] = ACTIONS(2693), - [anon_sym_AMP] = ACTIONS(2691), - [anon_sym_TILDE] = ACTIONS(2691), - [anon_sym_LT] = ACTIONS(2691), - [anon_sym_lambda] = ACTIONS(2693), - [anon_sym_yield] = ACTIONS(2693), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2691), - [anon_sym_None] = ACTIONS(2693), - [sym_integer] = ACTIONS(2693), - [sym_float] = ACTIONS(2691), - [anon_sym_await] = ACTIONS(2693), - [anon_sym_api] = ACTIONS(2693), - [sym_true] = ACTIONS(2693), - [sym_false] = ACTIONS(2693), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2693), - [anon_sym_include] = ACTIONS(2693), - [anon_sym_DEF] = ACTIONS(2693), - [anon_sym_cdef] = ACTIONS(2693), - [anon_sym_cpdef] = ACTIONS(2693), - [anon_sym_new] = ACTIONS(2693), - [anon_sym_ctypedef] = ACTIONS(2693), - [anon_sym_public] = ACTIONS(2693), - [anon_sym_packed] = ACTIONS(2693), - [anon_sym_inline] = ACTIONS(2693), - [anon_sym_readonly] = ACTIONS(2693), - [anon_sym_sizeof] = ACTIONS(2693), - [sym__dedent] = ACTIONS(2691), - [sym_string_start] = ACTIONS(2691), - }, - [834] = { - [sym_named_expression] = STATE(2459), - [sym__named_expression_lhs] = STATE(5688), - [sym_list_splat] = STATE(4756), - [sym_parenthesized_list_splat] = STATE(4756), - [sym_list_splat_pattern] = STATE(2477), - [sym_as_pattern] = STATE(2459), - [sym_expression] = STATE(3680), - [sym_primary_expression] = STATE(2060), - [sym_not_operator] = STATE(2459), - [sym_boolean_operator] = STATE(2459), - [sym_binary_operator] = STATE(2457), - [sym_unary_operator] = STATE(2457), - [sym_comparison_operator] = STATE(2459), - [sym_lambda] = STATE(2459), - [sym_yield] = STATE(4851), - [sym_attribute] = STATE(2457), - [sym_subscript] = STATE(2457), - [sym_ellipsis] = STATE(2457), - [sym_call] = STATE(2457), - [sym_list] = STATE(2457), - [sym_set] = STATE(2457), - [sym_tuple] = STATE(2457), - [sym_dictionary] = STATE(2457), - [sym_list_comprehension] = STATE(2457), - [sym_dictionary_comprehension] = STATE(2457), - [sym_set_comprehension] = STATE(2457), - [sym_generator_expression] = STATE(2457), - [sym_parenthesized_expression] = STATE(2457), - [sym__collection_elements] = STATE(5681), - [sym_conditional_expression] = STATE(2459), - [sym_concatenated_string] = STATE(2457), - [sym_string] = STATE(2170), - [sym_none] = STATE(2457), - [sym_await] = STATE(2457), - [sym_new_expression] = STATE(2459), - [sym_sizeof_expression] = STATE(2457), - [sym_cast_expression] = STATE(2457), - [sym_identifier] = ACTIONS(2761), - [anon_sym_LPAREN] = ACTIONS(2721), - [anon_sym_RPAREN] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1320), - [anon_sym_print] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1470), - [anon_sym_async] = ACTIONS(1470), - [anon_sym_exec] = ACTIONS(1470), + [842] = { + [sym_named_expression] = STATE(2421), + [sym__named_expression_lhs] = STATE(5522), + [sym_list_splat] = STATE(5160), + [sym_dictionary_splat] = STATE(5160), + [sym_parenthesized_list_splat] = STATE(5161), + [sym_list_splat_pattern] = STATE(2472), + [sym_as_pattern] = STATE(2421), + [sym_expression] = STATE(3626), + [sym_primary_expression] = STATE(2066), + [sym_not_operator] = STATE(2421), + [sym_boolean_operator] = STATE(2421), + [sym_binary_operator] = STATE(2414), + [sym_unary_operator] = STATE(2414), + [sym_comparison_operator] = STATE(2421), + [sym_lambda] = STATE(2421), + [sym_attribute] = STATE(2414), + [sym_subscript] = STATE(2414), + [sym_ellipsis] = STATE(2414), + [sym_call] = STATE(2414), + [sym_keyword_argument] = STATE(5160), + [sym_list] = STATE(2414), + [sym_set] = STATE(2414), + [sym_tuple] = STATE(2414), + [sym_dictionary] = STATE(2414), + [sym_list_comprehension] = STATE(2414), + [sym_dictionary_comprehension] = STATE(2414), + [sym_set_comprehension] = STATE(2414), + [sym_generator_expression] = STATE(2414), + [sym_parenthesized_expression] = STATE(2414), + [sym_conditional_expression] = STATE(2421), + [sym_concatenated_string] = STATE(2414), + [sym_string] = STATE(2147), + [sym_none] = STATE(2414), + [sym_await] = STATE(2414), + [sym_new_expression] = STATE(2421), + [sym_sizeof_expression] = STATE(2414), + [sym_cast_expression] = STATE(2414), + [sym_identifier] = ACTIONS(2745), + [anon_sym_LPAREN] = ACTIONS(2747), + [anon_sym_RPAREN] = ACTIONS(1412), + [anon_sym_COMMA] = ACTIONS(1414), + [anon_sym_STAR] = ACTIONS(2751), + [anon_sym_print] = ACTIONS(2753), + [anon_sym_match] = ACTIONS(2753), + [anon_sym_async] = ACTIONS(2753), + [anon_sym_STAR_STAR] = ACTIONS(1380), + [anon_sym_exec] = ACTIONS(2753), [anon_sym_LBRACK] = ACTIONS(1472), [anon_sym_DASH] = ACTIONS(1326), [anon_sym_LBRACE] = ACTIONS(1328), @@ -104547,13 +105242,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(1326), [anon_sym_LT] = ACTIONS(1332), [anon_sym_lambda] = ACTIONS(1334), - [anon_sym_yield] = ACTIONS(1336), [anon_sym_DOT_DOT_DOT] = ACTIONS(1338), [anon_sym_None] = ACTIONS(1340), [sym_integer] = ACTIONS(1342), [sym_float] = ACTIONS(1344), - [anon_sym_await] = ACTIONS(1474), - [anon_sym_api] = ACTIONS(1470), + [anon_sym_await] = ACTIONS(2755), + [anon_sym_api] = ACTIONS(2753), [sym_true] = ACTIONS(1342), [sym_false] = ACTIONS(1342), [sym_comment] = ACTIONS(3), @@ -104562,467 +105256,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1360), [sym_string_start] = ACTIONS(1362), }, - [835] = { - [sym_named_expression] = STATE(3846), - [sym__named_expression_lhs] = STATE(5557), - [sym_expression_list] = STATE(4328), - [sym_list_splat_pattern] = STATE(2357), - [sym_as_pattern] = STATE(3846), - [sym_expression] = STATE(3709), - [sym_primary_expression] = STATE(2046), - [sym_not_operator] = STATE(3846), - [sym_boolean_operator] = STATE(3846), - [sym_binary_operator] = STATE(2255), - [sym_unary_operator] = STATE(2255), - [sym_comparison_operator] = STATE(3846), - [sym_lambda] = STATE(3846), - [sym_attribute] = STATE(2255), - [sym_subscript] = STATE(2255), - [sym_ellipsis] = STATE(2255), - [sym_call] = STATE(2255), - [sym_list] = STATE(2255), - [sym_set] = STATE(2255), - [sym_tuple] = STATE(2255), - [sym_dictionary] = STATE(2255), - [sym_list_comprehension] = STATE(2255), - [sym_dictionary_comprehension] = STATE(2255), - [sym_set_comprehension] = STATE(2255), - [sym_generator_expression] = STATE(2255), - [sym_parenthesized_expression] = STATE(2255), - [sym_conditional_expression] = STATE(3846), - [sym_concatenated_string] = STATE(2255), - [sym_string] = STATE(2073), - [sym_none] = STATE(2255), - [sym_await] = STATE(2255), - [sym_new_expression] = STATE(3846), - [sym_sizeof_expression] = STATE(2255), - [sym_cast_expression] = STATE(2255), - [sym_identifier] = ACTIONS(2793), - [anon_sym_from] = ACTIONS(2795), - [anon_sym_LPAREN] = ACTIONS(1907), - [anon_sym_STAR] = ACTIONS(2653), - [anon_sym_print] = ACTIONS(2797), - [anon_sym_COLON] = ACTIONS(2799), - [anon_sym_match] = ACTIONS(2797), - [anon_sym_async] = ACTIONS(2797), - [anon_sym_exec] = ACTIONS(2797), - [anon_sym_EQ] = ACTIONS(2799), - [anon_sym_LBRACK] = ACTIONS(1913), - [anon_sym_DASH] = ACTIONS(1915), - [anon_sym_LBRACE] = ACTIONS(1917), - [anon_sym_RBRACE] = ACTIONS(2799), - [anon_sym_PLUS] = ACTIONS(1915), - [anon_sym_not] = ACTIONS(2659), - [anon_sym_AMP] = ACTIONS(1915), - [anon_sym_TILDE] = ACTIONS(1915), - [anon_sym_LT] = ACTIONS(2661), - [anon_sym_lambda] = ACTIONS(2663), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1921), - [anon_sym_None] = ACTIONS(1923), - [sym_type_conversion] = ACTIONS(2799), - [sym_integer] = ACTIONS(1905), - [sym_float] = ACTIONS(1925), - [anon_sym_await] = ACTIONS(2801), - [anon_sym_api] = ACTIONS(2797), - [sym_true] = ACTIONS(1905), - [sym_false] = ACTIONS(1905), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2669), - [anon_sym_sizeof] = ACTIONS(1929), - [sym_string_start] = ACTIONS(1931), - }, - [836] = { - [sym_named_expression] = STATE(2459), - [sym__named_expression_lhs] = STATE(5688), - [sym_list_splat] = STATE(4756), - [sym_parenthesized_list_splat] = STATE(4756), - [sym_list_splat_pattern] = STATE(2477), - [sym_as_pattern] = STATE(2459), - [sym_expression] = STATE(3647), - [sym_primary_expression] = STATE(2060), - [sym_not_operator] = STATE(2459), - [sym_boolean_operator] = STATE(2459), - [sym_binary_operator] = STATE(2457), - [sym_unary_operator] = STATE(2457), - [sym_comparison_operator] = STATE(2459), - [sym_lambda] = STATE(2459), - [sym_yield] = STATE(4847), - [sym_attribute] = STATE(2457), - [sym_subscript] = STATE(2457), - [sym_ellipsis] = STATE(2457), - [sym_call] = STATE(2457), - [sym_list] = STATE(2457), - [sym_set] = STATE(2457), - [sym_tuple] = STATE(2457), - [sym_dictionary] = STATE(2457), - [sym_list_comprehension] = STATE(2457), - [sym_dictionary_comprehension] = STATE(2457), - [sym_set_comprehension] = STATE(2457), - [sym_generator_expression] = STATE(2457), - [sym_parenthesized_expression] = STATE(2457), - [sym__collection_elements] = STATE(5474), - [sym_conditional_expression] = STATE(2459), - [sym_concatenated_string] = STATE(2457), - [sym_string] = STATE(2170), - [sym_none] = STATE(2457), - [sym_await] = STATE(2457), - [sym_new_expression] = STATE(2459), - [sym_sizeof_expression] = STATE(2457), - [sym_cast_expression] = STATE(2457), - [sym_identifier] = ACTIONS(2761), - [anon_sym_LPAREN] = ACTIONS(2721), - [anon_sym_RPAREN] = ACTIONS(1468), - [anon_sym_STAR] = ACTIONS(1320), - [anon_sym_print] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1470), - [anon_sym_async] = ACTIONS(1470), - [anon_sym_exec] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(1472), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1326), - [anon_sym_not] = ACTIONS(1330), - [anon_sym_AMP] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1326), - [anon_sym_LT] = ACTIONS(1332), - [anon_sym_lambda] = ACTIONS(1334), - [anon_sym_yield] = ACTIONS(1336), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1338), - [anon_sym_None] = ACTIONS(1340), - [sym_integer] = ACTIONS(1342), - [sym_float] = ACTIONS(1344), - [anon_sym_await] = ACTIONS(1474), - [anon_sym_api] = ACTIONS(1470), - [sym_true] = ACTIONS(1342), - [sym_false] = ACTIONS(1342), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1350), - [anon_sym_sizeof] = ACTIONS(1360), - [sym_string_start] = ACTIONS(1362), - }, - [837] = { - [sym_named_expression] = STATE(2421), - [sym__named_expression_lhs] = STATE(5414), - [sym_list_splat] = STATE(5086), - [sym_parenthesized_list_splat] = STATE(5086), - [sym_list_splat_pattern] = STATE(2523), - [sym_as_pattern] = STATE(2421), - [sym_expression] = STATE(3688), - [sym_primary_expression] = STATE(2063), - [sym_not_operator] = STATE(2421), - [sym_boolean_operator] = STATE(2421), - [sym_binary_operator] = STATE(2418), - [sym_unary_operator] = STATE(2418), - [sym_comparison_operator] = STATE(2421), - [sym_lambda] = STATE(2421), - [sym_yield] = STATE(5086), - [sym_attribute] = STATE(2418), - [sym_subscript] = STATE(2418), - [sym_ellipsis] = STATE(2418), - [sym_call] = STATE(2418), - [sym_list] = STATE(2418), - [sym_set] = STATE(2418), - [sym_tuple] = STATE(2418), - [sym_dictionary] = STATE(2418), - [sym_list_comprehension] = STATE(2418), - [sym_dictionary_comprehension] = STATE(2418), - [sym_set_comprehension] = STATE(2418), - [sym_generator_expression] = STATE(2418), - [sym_parenthesized_expression] = STATE(2418), - [sym__collection_elements] = STATE(5494), - [sym_conditional_expression] = STATE(2421), - [sym_concatenated_string] = STATE(2418), - [sym_string] = STATE(2157), - [sym_none] = STATE(2418), - [sym_await] = STATE(2418), - [sym_new_expression] = STATE(2421), - [sym_sizeof_expression] = STATE(2418), - [sym_cast_expression] = STATE(2418), - [sym_identifier] = ACTIONS(2803), - [anon_sym_LPAREN] = ACTIONS(2805), - [anon_sym_STAR] = ACTIONS(2515), - [anon_sym_print] = ACTIONS(2807), - [anon_sym_match] = ACTIONS(2807), - [anon_sym_async] = ACTIONS(2807), - [anon_sym_exec] = ACTIONS(2807), - [anon_sym_LBRACK] = ACTIONS(2485), - [anon_sym_RBRACK] = ACTIONS(2809), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2523), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2525), - [anon_sym_lambda] = ACTIONS(2527), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2811), - [anon_sym_api] = ACTIONS(2807), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2533), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), - }, - [838] = { - [sym_named_expression] = STATE(2459), - [sym__named_expression_lhs] = STATE(5688), - [sym_list_splat] = STATE(4810), - [sym_parenthesized_list_splat] = STATE(4817), - [sym_list_splat_pattern] = STATE(2477), - [sym_as_pattern] = STATE(2459), - [sym_expression] = STATE(3631), - [sym_primary_expression] = STATE(2060), - [sym_not_operator] = STATE(2459), - [sym_boolean_operator] = STATE(2459), - [sym_binary_operator] = STATE(2457), - [sym_unary_operator] = STATE(2457), - [sym_comparison_operator] = STATE(2459), - [sym_lambda] = STATE(2459), - [sym_yield] = STATE(4728), - [sym_attribute] = STATE(2457), - [sym_subscript] = STATE(2457), - [sym_ellipsis] = STATE(2457), - [sym_call] = STATE(2457), - [sym_list] = STATE(2457), - [sym_set] = STATE(2457), - [sym_tuple] = STATE(2457), - [sym_dictionary] = STATE(2457), - [sym_list_comprehension] = STATE(2457), - [sym_dictionary_comprehension] = STATE(2457), - [sym_set_comprehension] = STATE(2457), - [sym_generator_expression] = STATE(2457), - [sym_parenthesized_expression] = STATE(2457), - [sym__collection_elements] = STATE(5450), - [sym_conditional_expression] = STATE(2459), - [sym_concatenated_string] = STATE(2457), - [sym_string] = STATE(2170), - [sym_none] = STATE(2457), - [sym_await] = STATE(2457), - [sym_new_expression] = STATE(2459), - [sym_sizeof_expression] = STATE(2457), - [sym_cast_expression] = STATE(2457), - [sym_identifier] = ACTIONS(2761), - [anon_sym_LPAREN] = ACTIONS(2721), - [anon_sym_RPAREN] = ACTIONS(2813), - [anon_sym_STAR] = ACTIONS(1320), - [anon_sym_print] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1470), - [anon_sym_async] = ACTIONS(1470), - [anon_sym_exec] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(1472), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1326), - [anon_sym_not] = ACTIONS(1330), - [anon_sym_AMP] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1326), - [anon_sym_LT] = ACTIONS(1332), - [anon_sym_lambda] = ACTIONS(1334), - [anon_sym_yield] = ACTIONS(1336), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1338), - [anon_sym_None] = ACTIONS(1340), - [sym_integer] = ACTIONS(1342), - [sym_float] = ACTIONS(1344), - [anon_sym_await] = ACTIONS(1474), - [anon_sym_api] = ACTIONS(1470), - [sym_true] = ACTIONS(1342), - [sym_false] = ACTIONS(1342), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1350), - [anon_sym_sizeof] = ACTIONS(1360), - [sym_string_start] = ACTIONS(1362), - }, - [839] = { - [sym_named_expression] = STATE(2421), - [sym__named_expression_lhs] = STATE(5414), - [sym_list_splat] = STATE(5086), - [sym_parenthesized_list_splat] = STATE(5086), - [sym_list_splat_pattern] = STATE(2523), - [sym_as_pattern] = STATE(2421), - [sym_expression] = STATE(3679), - [sym_primary_expression] = STATE(2063), - [sym_not_operator] = STATE(2421), - [sym_boolean_operator] = STATE(2421), - [sym_binary_operator] = STATE(2418), - [sym_unary_operator] = STATE(2418), - [sym_comparison_operator] = STATE(2421), - [sym_lambda] = STATE(2421), - [sym_yield] = STATE(5086), - [sym_attribute] = STATE(2418), - [sym_subscript] = STATE(2418), - [sym_ellipsis] = STATE(2418), - [sym_call] = STATE(2418), - [sym_list] = STATE(2418), - [sym_set] = STATE(2418), - [sym_tuple] = STATE(2418), - [sym_dictionary] = STATE(2418), - [sym_list_comprehension] = STATE(2418), - [sym_dictionary_comprehension] = STATE(2418), - [sym_set_comprehension] = STATE(2418), - [sym_generator_expression] = STATE(2418), - [sym_parenthesized_expression] = STATE(2418), - [sym__collection_elements] = STATE(5611), - [sym_conditional_expression] = STATE(2421), - [sym_concatenated_string] = STATE(2418), - [sym_string] = STATE(2157), - [sym_none] = STATE(2418), - [sym_await] = STATE(2418), - [sym_new_expression] = STATE(2421), - [sym_sizeof_expression] = STATE(2418), - [sym_cast_expression] = STATE(2418), - [sym_identifier] = ACTIONS(2803), - [anon_sym_LPAREN] = ACTIONS(2805), - [anon_sym_STAR] = ACTIONS(2515), - [anon_sym_print] = ACTIONS(2807), - [anon_sym_match] = ACTIONS(2807), - [anon_sym_async] = ACTIONS(2807), - [anon_sym_exec] = ACTIONS(2807), - [anon_sym_LBRACK] = ACTIONS(2485), - [anon_sym_RBRACK] = ACTIONS(2815), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2523), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2525), - [anon_sym_lambda] = ACTIONS(2527), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2811), - [anon_sym_api] = ACTIONS(2807), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2533), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), - }, - [840] = { - [sym_named_expression] = STATE(2459), - [sym__named_expression_lhs] = STATE(5688), - [sym_list_splat] = STATE(4756), - [sym_parenthesized_list_splat] = STATE(4756), - [sym_list_splat_pattern] = STATE(2477), - [sym_as_pattern] = STATE(2459), - [sym_expression] = STATE(3664), - [sym_primary_expression] = STATE(2060), - [sym_not_operator] = STATE(2459), - [sym_boolean_operator] = STATE(2459), - [sym_binary_operator] = STATE(2457), - [sym_unary_operator] = STATE(2457), - [sym_comparison_operator] = STATE(2459), - [sym_lambda] = STATE(2459), - [sym_yield] = STATE(4816), - [sym_attribute] = STATE(2457), - [sym_subscript] = STATE(2457), - [sym_ellipsis] = STATE(2457), - [sym_call] = STATE(2457), - [sym_list] = STATE(2457), - [sym_set] = STATE(2457), - [sym_tuple] = STATE(2457), - [sym_dictionary] = STATE(2457), - [sym_list_comprehension] = STATE(2457), - [sym_dictionary_comprehension] = STATE(2457), - [sym_set_comprehension] = STATE(2457), - [sym_generator_expression] = STATE(2457), - [sym_parenthesized_expression] = STATE(2457), - [sym__collection_elements] = STATE(5415), - [sym_conditional_expression] = STATE(2459), - [sym_concatenated_string] = STATE(2457), - [sym_string] = STATE(2170), - [sym_none] = STATE(2457), - [sym_await] = STATE(2457), - [sym_new_expression] = STATE(2459), - [sym_sizeof_expression] = STATE(2457), - [sym_cast_expression] = STATE(2457), - [sym_identifier] = ACTIONS(2761), - [anon_sym_LPAREN] = ACTIONS(2721), - [anon_sym_RPAREN] = ACTIONS(2817), - [anon_sym_STAR] = ACTIONS(1320), - [anon_sym_print] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1470), - [anon_sym_async] = ACTIONS(1470), - [anon_sym_exec] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(1472), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1326), - [anon_sym_not] = ACTIONS(1330), - [anon_sym_AMP] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1326), - [anon_sym_LT] = ACTIONS(1332), - [anon_sym_lambda] = ACTIONS(1334), - [anon_sym_yield] = ACTIONS(1336), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1338), - [anon_sym_None] = ACTIONS(1340), - [sym_integer] = ACTIONS(1342), - [sym_float] = ACTIONS(1344), - [anon_sym_await] = ACTIONS(1474), - [anon_sym_api] = ACTIONS(1470), - [sym_true] = ACTIONS(1342), - [sym_false] = ACTIONS(1342), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1350), - [anon_sym_sizeof] = ACTIONS(1360), - [sym_string_start] = ACTIONS(1362), - }, - [841] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(5170), - [sym_dictionary_splat] = STATE(5170), + [843] = { + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(5299), + [sym_dictionary_splat] = STATE(5299), [sym_parenthesized_list_splat] = STATE(5305), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4169), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(5170), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), - [sym_identifier] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_RPAREN] = ACTIONS(2819), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4245), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(5299), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(2783), + [anon_sym_LPAREN] = ACTIONS(2785), + [anon_sym_RPAREN] = ACTIONS(2803), [anon_sym_STAR] = ACTIONS(1376), [anon_sym_print] = ACTIONS(1378), [anon_sym_match] = ACTIONS(1378), @@ -105052,47 +105326,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1406), [sym_string_start] = ACTIONS(1408), }, - [842] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(5170), - [sym_dictionary_splat] = STATE(5170), + [844] = { + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(5299), + [sym_dictionary_splat] = STATE(5299), [sym_parenthesized_list_splat] = STATE(5305), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4169), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(5170), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), - [sym_identifier] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_RPAREN] = ACTIONS(2821), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4245), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(5299), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(2783), + [anon_sym_LPAREN] = ACTIONS(2785), + [anon_sym_RPAREN] = ACTIONS(2805), [anon_sym_STAR] = ACTIONS(1376), [anon_sym_print] = ACTIONS(1378), [anon_sym_match] = ACTIONS(1378), @@ -105122,187 +105396,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1406), [sym_string_start] = ACTIONS(1408), }, - [843] = { - [sym_named_expression] = STATE(2421), - [sym__named_expression_lhs] = STATE(5414), - [sym_list_splat] = STATE(5086), - [sym_parenthesized_list_splat] = STATE(5086), - [sym_list_splat_pattern] = STATE(2523), - [sym_as_pattern] = STATE(2421), - [sym_expression] = STATE(3659), - [sym_primary_expression] = STATE(2063), - [sym_not_operator] = STATE(2421), - [sym_boolean_operator] = STATE(2421), - [sym_binary_operator] = STATE(2418), - [sym_unary_operator] = STATE(2418), - [sym_comparison_operator] = STATE(2421), - [sym_lambda] = STATE(2421), - [sym_yield] = STATE(5086), - [sym_attribute] = STATE(2418), - [sym_subscript] = STATE(2418), - [sym_ellipsis] = STATE(2418), - [sym_call] = STATE(2418), - [sym_list] = STATE(2418), - [sym_set] = STATE(2418), - [sym_tuple] = STATE(2418), - [sym_dictionary] = STATE(2418), - [sym_list_comprehension] = STATE(2418), - [sym_dictionary_comprehension] = STATE(2418), - [sym_set_comprehension] = STATE(2418), - [sym_generator_expression] = STATE(2418), - [sym_parenthesized_expression] = STATE(2418), - [sym__collection_elements] = STATE(5481), - [sym_conditional_expression] = STATE(2421), - [sym_concatenated_string] = STATE(2418), - [sym_string] = STATE(2157), - [sym_none] = STATE(2418), - [sym_await] = STATE(2418), - [sym_new_expression] = STATE(2421), - [sym_sizeof_expression] = STATE(2418), - [sym_cast_expression] = STATE(2418), - [sym_identifier] = ACTIONS(2803), - [anon_sym_LPAREN] = ACTIONS(2805), - [anon_sym_STAR] = ACTIONS(2515), - [anon_sym_print] = ACTIONS(2807), - [anon_sym_match] = ACTIONS(2807), - [anon_sym_async] = ACTIONS(2807), - [anon_sym_exec] = ACTIONS(2807), - [anon_sym_LBRACK] = ACTIONS(2485), - [anon_sym_RBRACK] = ACTIONS(2823), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2523), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2525), - [anon_sym_lambda] = ACTIONS(2527), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2811), - [anon_sym_api] = ACTIONS(2807), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2533), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), - }, - [844] = { - [sym_named_expression] = STATE(2459), - [sym__named_expression_lhs] = STATE(5688), - [sym_list_splat] = STATE(4970), - [sym_parenthesized_list_splat] = STATE(4977), - [sym_list_splat_pattern] = STATE(2477), - [sym_as_pattern] = STATE(2459), - [sym_expression] = STATE(3680), - [sym_primary_expression] = STATE(2060), - [sym_not_operator] = STATE(2459), - [sym_boolean_operator] = STATE(2459), - [sym_binary_operator] = STATE(2457), - [sym_unary_operator] = STATE(2457), - [sym_comparison_operator] = STATE(2459), - [sym_lambda] = STATE(2459), - [sym_yield] = STATE(4851), - [sym_attribute] = STATE(2457), - [sym_subscript] = STATE(2457), - [sym_ellipsis] = STATE(2457), - [sym_call] = STATE(2457), - [sym_list] = STATE(2457), - [sym_set] = STATE(2457), - [sym_tuple] = STATE(2457), - [sym_dictionary] = STATE(2457), - [sym_list_comprehension] = STATE(2457), - [sym_dictionary_comprehension] = STATE(2457), - [sym_set_comprehension] = STATE(2457), - [sym_generator_expression] = STATE(2457), - [sym_parenthesized_expression] = STATE(2457), - [sym__collection_elements] = STATE(5681), - [sym_conditional_expression] = STATE(2459), - [sym_concatenated_string] = STATE(2457), - [sym_string] = STATE(2170), - [sym_none] = STATE(2457), - [sym_await] = STATE(2457), - [sym_new_expression] = STATE(2459), - [sym_sizeof_expression] = STATE(2457), - [sym_cast_expression] = STATE(2457), - [sym_identifier] = ACTIONS(2761), - [anon_sym_LPAREN] = ACTIONS(2721), - [anon_sym_RPAREN] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1320), - [anon_sym_print] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1470), - [anon_sym_async] = ACTIONS(1470), - [anon_sym_exec] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(1472), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1326), - [anon_sym_not] = ACTIONS(1330), - [anon_sym_AMP] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1326), - [anon_sym_LT] = ACTIONS(1332), - [anon_sym_lambda] = ACTIONS(1334), - [anon_sym_yield] = ACTIONS(1336), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1338), - [anon_sym_None] = ACTIONS(1340), - [sym_integer] = ACTIONS(1342), - [sym_float] = ACTIONS(1344), - [anon_sym_await] = ACTIONS(1474), - [anon_sym_api] = ACTIONS(1470), - [sym_true] = ACTIONS(1342), - [sym_false] = ACTIONS(1342), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1350), - [anon_sym_sizeof] = ACTIONS(1360), - [sym_string_start] = ACTIONS(1362), - }, [845] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(5170), - [sym_dictionary_splat] = STATE(5170), + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(5299), + [sym_dictionary_splat] = STATE(5299), [sym_parenthesized_list_splat] = STATE(5305), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4169), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(5170), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), - [sym_identifier] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_RPAREN] = ACTIONS(2825), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4245), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(5299), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(2783), + [anon_sym_LPAREN] = ACTIONS(2785), + [anon_sym_RPAREN] = ACTIONS(2807), [anon_sym_STAR] = ACTIONS(1376), [anon_sym_print] = ACTIONS(1378), [anon_sym_match] = ACTIONS(1378), @@ -105333,46 +105467,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(1408), }, [846] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(5170), - [sym_dictionary_splat] = STATE(5170), + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(5299), + [sym_dictionary_splat] = STATE(5299), [sym_parenthesized_list_splat] = STATE(5305), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4169), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(5170), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), - [sym_identifier] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_RPAREN] = ACTIONS(2827), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4245), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(5299), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(2783), + [anon_sym_LPAREN] = ACTIONS(2785), + [anon_sym_RPAREN] = ACTIONS(2809), [anon_sym_STAR] = ACTIONS(1376), [anon_sym_print] = ACTIONS(1378), [anon_sym_match] = ACTIONS(1378), @@ -105403,46 +105537,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(1408), }, [847] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(5170), - [sym_dictionary_splat] = STATE(5170), + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(5299), + [sym_dictionary_splat] = STATE(5299), [sym_parenthesized_list_splat] = STATE(5305), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4169), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(5170), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), - [sym_identifier] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_RPAREN] = ACTIONS(2829), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4245), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(5299), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(2783), + [anon_sym_LPAREN] = ACTIONS(2785), + [anon_sym_RPAREN] = ACTIONS(2811), [anon_sym_STAR] = ACTIONS(1376), [anon_sym_print] = ACTIONS(1378), [anon_sym_match] = ACTIONS(1378), @@ -105473,46 +105607,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(1408), }, [848] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(5170), - [sym_dictionary_splat] = STATE(5170), + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(5299), + [sym_dictionary_splat] = STATE(5299), [sym_parenthesized_list_splat] = STATE(5305), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4169), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(5170), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), - [sym_identifier] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_RPAREN] = ACTIONS(2831), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4245), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(5299), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(2783), + [anon_sym_LPAREN] = ACTIONS(2785), + [anon_sym_RPAREN] = ACTIONS(2813), [anon_sym_STAR] = ACTIONS(1376), [anon_sym_print] = ACTIONS(1378), [anon_sym_match] = ACTIONS(1378), @@ -105543,185 +105677,185 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(1408), }, [849] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(5170), - [sym_dictionary_splat] = STATE(5170), - [sym_parenthesized_list_splat] = STATE(5305), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4169), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(5170), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), - [sym_identifier] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_RPAREN] = ACTIONS(2833), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_print] = ACTIONS(1378), - [anon_sym_match] = ACTIONS(1378), - [anon_sym_async] = ACTIONS(1378), - [anon_sym_STAR_STAR] = ACTIONS(1380), - [anon_sym_exec] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(1382), - [anon_sym_DASH] = ACTIONS(1384), - [anon_sym_LBRACE] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1384), - [anon_sym_not] = ACTIONS(1388), - [anon_sym_AMP] = ACTIONS(1384), - [anon_sym_TILDE] = ACTIONS(1384), - [anon_sym_LT] = ACTIONS(1390), - [anon_sym_lambda] = ACTIONS(1392), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1394), - [anon_sym_None] = ACTIONS(1396), - [sym_integer] = ACTIONS(1398), - [sym_float] = ACTIONS(1400), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_api] = ACTIONS(1378), - [sym_true] = ACTIONS(1398), - [sym_false] = ACTIONS(1398), + [sym_named_expression] = STATE(2421), + [sym__named_expression_lhs] = STATE(5522), + [sym_list_splat] = STATE(4708), + [sym_parenthesized_list_splat] = STATE(4708), + [sym_list_splat_pattern] = STATE(2472), + [sym_as_pattern] = STATE(2421), + [sym_expression] = STATE(3709), + [sym_primary_expression] = STATE(2066), + [sym_not_operator] = STATE(2421), + [sym_boolean_operator] = STATE(2421), + [sym_binary_operator] = STATE(2414), + [sym_unary_operator] = STATE(2414), + [sym_comparison_operator] = STATE(2421), + [sym_lambda] = STATE(2421), + [sym_yield] = STATE(5116), + [sym_attribute] = STATE(2414), + [sym_subscript] = STATE(2414), + [sym_ellipsis] = STATE(2414), + [sym_call] = STATE(2414), + [sym_list] = STATE(2414), + [sym_set] = STATE(2414), + [sym_tuple] = STATE(2414), + [sym_dictionary] = STATE(2414), + [sym_list_comprehension] = STATE(2414), + [sym_dictionary_comprehension] = STATE(2414), + [sym_set_comprehension] = STATE(2414), + [sym_generator_expression] = STATE(2414), + [sym_parenthesized_expression] = STATE(2414), + [sym__collection_elements] = STATE(5598), + [sym_conditional_expression] = STATE(2421), + [sym_concatenated_string] = STATE(2414), + [sym_string] = STATE(2147), + [sym_none] = STATE(2414), + [sym_await] = STATE(2414), + [sym_new_expression] = STATE(2421), + [sym_sizeof_expression] = STATE(2414), + [sym_cast_expression] = STATE(2414), + [sym_identifier] = ACTIONS(2787), + [anon_sym_LPAREN] = ACTIONS(2747), + [anon_sym_RPAREN] = ACTIONS(2789), + [anon_sym_STAR] = ACTIONS(1320), + [anon_sym_print] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1470), + [anon_sym_async] = ACTIONS(1470), + [anon_sym_exec] = ACTIONS(1470), + [anon_sym_LBRACK] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1326), + [anon_sym_LBRACE] = ACTIONS(1328), + [anon_sym_PLUS] = ACTIONS(1326), + [anon_sym_not] = ACTIONS(1330), + [anon_sym_AMP] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1326), + [anon_sym_LT] = ACTIONS(1332), + [anon_sym_lambda] = ACTIONS(1334), + [anon_sym_yield] = ACTIONS(1336), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1338), + [anon_sym_None] = ACTIONS(1340), + [sym_integer] = ACTIONS(1342), + [sym_float] = ACTIONS(1344), + [anon_sym_await] = ACTIONS(1474), + [anon_sym_api] = ACTIONS(1470), + [sym_true] = ACTIONS(1342), + [sym_false] = ACTIONS(1342), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1404), - [anon_sym_sizeof] = ACTIONS(1406), - [sym_string_start] = ACTIONS(1408), + [anon_sym_new] = ACTIONS(1350), + [anon_sym_sizeof] = ACTIONS(1360), + [sym_string_start] = ACTIONS(1362), }, [850] = { + [sym_named_expression] = STATE(2493), + [sym__named_expression_lhs] = STATE(5681), + [sym_list_splat] = STATE(4860), + [sym_parenthesized_list_splat] = STATE(4860), + [sym_list_splat_pattern] = STATE(2415), + [sym_as_pattern] = STATE(2493), + [sym_expression] = STATE(3686), + [sym_primary_expression] = STATE(2070), + [sym_not_operator] = STATE(2493), + [sym_boolean_operator] = STATE(2493), + [sym_binary_operator] = STATE(2470), + [sym_unary_operator] = STATE(2470), + [sym_comparison_operator] = STATE(2493), + [sym_lambda] = STATE(2493), + [sym_yield] = STATE(4860), + [sym_attribute] = STATE(2470), + [sym_subscript] = STATE(2470), + [sym_ellipsis] = STATE(2470), + [sym_call] = STATE(2470), + [sym_list] = STATE(2470), + [sym_set] = STATE(2470), + [sym_tuple] = STATE(2470), + [sym_dictionary] = STATE(2470), + [sym_list_comprehension] = STATE(2470), + [sym_dictionary_comprehension] = STATE(2470), + [sym_set_comprehension] = STATE(2470), + [sym_generator_expression] = STATE(2470), + [sym_parenthesized_expression] = STATE(2470), + [sym__collection_elements] = STATE(5623), + [sym_conditional_expression] = STATE(2493), + [sym_concatenated_string] = STATE(2470), + [sym_string] = STATE(2177), + [sym_none] = STATE(2470), + [sym_await] = STATE(2470), + [sym_new_expression] = STATE(2493), + [sym_sizeof_expression] = STATE(2470), + [sym_cast_expression] = STATE(2470), + [sym_identifier] = ACTIONS(2815), + [anon_sym_LPAREN] = ACTIONS(2817), + [anon_sym_STAR] = ACTIONS(2553), + [anon_sym_print] = ACTIONS(2819), + [anon_sym_match] = ACTIONS(2819), + [anon_sym_async] = ACTIONS(2819), + [anon_sym_exec] = ACTIONS(2819), + [anon_sym_LBRACK] = ACTIONS(2495), + [anon_sym_RBRACK] = ACTIONS(2821), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2499), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_not] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_TILDE] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2563), + [anon_sym_lambda] = ACTIONS(2565), + [anon_sym_yield] = ACTIONS(2567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2503), + [anon_sym_None] = ACTIONS(2505), + [sym_integer] = ACTIONS(2487), + [sym_float] = ACTIONS(2507), + [anon_sym_await] = ACTIONS(2823), + [anon_sym_api] = ACTIONS(2819), + [sym_true] = ACTIONS(2487), + [sym_false] = ACTIONS(2487), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2571), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_string_start] = ACTIONS(2513), + }, + [851] = { [sym_named_expression] = STATE(2421), - [sym__named_expression_lhs] = STATE(5414), - [sym_list_splat] = STATE(5086), - [sym_parenthesized_list_splat] = STATE(5086), - [sym_list_splat_pattern] = STATE(2523), + [sym__named_expression_lhs] = STATE(5522), + [sym_list_splat] = STATE(4708), + [sym_parenthesized_list_splat] = STATE(4708), + [sym_list_splat_pattern] = STATE(2472), [sym_as_pattern] = STATE(2421), - [sym_expression] = STATE(3695), - [sym_primary_expression] = STATE(2063), + [sym_expression] = STATE(3665), + [sym_primary_expression] = STATE(2066), [sym_not_operator] = STATE(2421), [sym_boolean_operator] = STATE(2421), - [sym_binary_operator] = STATE(2418), - [sym_unary_operator] = STATE(2418), + [sym_binary_operator] = STATE(2414), + [sym_unary_operator] = STATE(2414), [sym_comparison_operator] = STATE(2421), [sym_lambda] = STATE(2421), - [sym_yield] = STATE(5086), - [sym_attribute] = STATE(2418), - [sym_subscript] = STATE(2418), - [sym_ellipsis] = STATE(2418), - [sym_call] = STATE(2418), - [sym_list] = STATE(2418), - [sym_set] = STATE(2418), - [sym_tuple] = STATE(2418), - [sym_dictionary] = STATE(2418), - [sym_list_comprehension] = STATE(2418), - [sym_dictionary_comprehension] = STATE(2418), - [sym_set_comprehension] = STATE(2418), - [sym_generator_expression] = STATE(2418), - [sym_parenthesized_expression] = STATE(2418), - [sym__collection_elements] = STATE(5485), + [sym_yield] = STATE(4877), + [sym_attribute] = STATE(2414), + [sym_subscript] = STATE(2414), + [sym_ellipsis] = STATE(2414), + [sym_call] = STATE(2414), + [sym_list] = STATE(2414), + [sym_set] = STATE(2414), + [sym_tuple] = STATE(2414), + [sym_dictionary] = STATE(2414), + [sym_list_comprehension] = STATE(2414), + [sym_dictionary_comprehension] = STATE(2414), + [sym_set_comprehension] = STATE(2414), + [sym_generator_expression] = STATE(2414), + [sym_parenthesized_expression] = STATE(2414), + [sym__collection_elements] = STATE(5407), [sym_conditional_expression] = STATE(2421), - [sym_concatenated_string] = STATE(2418), - [sym_string] = STATE(2157), - [sym_none] = STATE(2418), - [sym_await] = STATE(2418), + [sym_concatenated_string] = STATE(2414), + [sym_string] = STATE(2147), + [sym_none] = STATE(2414), + [sym_await] = STATE(2414), [sym_new_expression] = STATE(2421), - [sym_sizeof_expression] = STATE(2418), - [sym_cast_expression] = STATE(2418), - [sym_identifier] = ACTIONS(2803), - [anon_sym_LPAREN] = ACTIONS(2805), - [anon_sym_STAR] = ACTIONS(2515), - [anon_sym_print] = ACTIONS(2807), - [anon_sym_match] = ACTIONS(2807), - [anon_sym_async] = ACTIONS(2807), - [anon_sym_exec] = ACTIONS(2807), - [anon_sym_LBRACK] = ACTIONS(2485), - [anon_sym_RBRACK] = ACTIONS(2835), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2523), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2525), - [anon_sym_lambda] = ACTIONS(2527), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2811), - [anon_sym_api] = ACTIONS(2807), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2533), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), - }, - [851] = { - [sym_named_expression] = STATE(2459), - [sym__named_expression_lhs] = STATE(5688), - [sym_list_splat] = STATE(4970), - [sym_parenthesized_list_splat] = STATE(4977), - [sym_list_splat_pattern] = STATE(2477), - [sym_as_pattern] = STATE(2459), - [sym_expression] = STATE(3647), - [sym_primary_expression] = STATE(2060), - [sym_not_operator] = STATE(2459), - [sym_boolean_operator] = STATE(2459), - [sym_binary_operator] = STATE(2457), - [sym_unary_operator] = STATE(2457), - [sym_comparison_operator] = STATE(2459), - [sym_lambda] = STATE(2459), - [sym_yield] = STATE(4847), - [sym_attribute] = STATE(2457), - [sym_subscript] = STATE(2457), - [sym_ellipsis] = STATE(2457), - [sym_call] = STATE(2457), - [sym_list] = STATE(2457), - [sym_set] = STATE(2457), - [sym_tuple] = STATE(2457), - [sym_dictionary] = STATE(2457), - [sym_list_comprehension] = STATE(2457), - [sym_dictionary_comprehension] = STATE(2457), - [sym_set_comprehension] = STATE(2457), - [sym_generator_expression] = STATE(2457), - [sym_parenthesized_expression] = STATE(2457), - [sym__collection_elements] = STATE(5474), - [sym_conditional_expression] = STATE(2459), - [sym_concatenated_string] = STATE(2457), - [sym_string] = STATE(2170), - [sym_none] = STATE(2457), - [sym_await] = STATE(2457), - [sym_new_expression] = STATE(2459), - [sym_sizeof_expression] = STATE(2457), - [sym_cast_expression] = STATE(2457), - [sym_identifier] = ACTIONS(2761), - [anon_sym_LPAREN] = ACTIONS(2721), + [sym_sizeof_expression] = STATE(2414), + [sym_cast_expression] = STATE(2414), + [sym_identifier] = ACTIONS(2787), + [anon_sym_LPAREN] = ACTIONS(2747), [anon_sym_RPAREN] = ACTIONS(1468), [anon_sym_STAR] = ACTIONS(1320), [anon_sym_print] = ACTIONS(1470), @@ -105753,116 +105887,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(1362), }, [852] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(5170), - [sym_dictionary_splat] = STATE(5170), - [sym_parenthesized_list_splat] = STATE(5305), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4169), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(5170), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), - [sym_identifier] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_RPAREN] = ACTIONS(2837), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_print] = ACTIONS(1378), - [anon_sym_match] = ACTIONS(1378), - [anon_sym_async] = ACTIONS(1378), - [anon_sym_STAR_STAR] = ACTIONS(1380), - [anon_sym_exec] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(1382), - [anon_sym_DASH] = ACTIONS(1384), - [anon_sym_LBRACE] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1384), - [anon_sym_not] = ACTIONS(1388), - [anon_sym_AMP] = ACTIONS(1384), - [anon_sym_TILDE] = ACTIONS(1384), - [anon_sym_LT] = ACTIONS(1390), - [anon_sym_lambda] = ACTIONS(1392), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1394), - [anon_sym_None] = ACTIONS(1396), - [sym_integer] = ACTIONS(1398), - [sym_float] = ACTIONS(1400), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_api] = ACTIONS(1378), - [sym_true] = ACTIONS(1398), - [sym_false] = ACTIONS(1398), + [sym_named_expression] = STATE(2493), + [sym__named_expression_lhs] = STATE(5681), + [sym_list_splat] = STATE(4860), + [sym_parenthesized_list_splat] = STATE(4860), + [sym_list_splat_pattern] = STATE(2415), + [sym_as_pattern] = STATE(2493), + [sym_expression] = STATE(3691), + [sym_primary_expression] = STATE(2070), + [sym_not_operator] = STATE(2493), + [sym_boolean_operator] = STATE(2493), + [sym_binary_operator] = STATE(2470), + [sym_unary_operator] = STATE(2470), + [sym_comparison_operator] = STATE(2493), + [sym_lambda] = STATE(2493), + [sym_yield] = STATE(4860), + [sym_attribute] = STATE(2470), + [sym_subscript] = STATE(2470), + [sym_ellipsis] = STATE(2470), + [sym_call] = STATE(2470), + [sym_list] = STATE(2470), + [sym_set] = STATE(2470), + [sym_tuple] = STATE(2470), + [sym_dictionary] = STATE(2470), + [sym_list_comprehension] = STATE(2470), + [sym_dictionary_comprehension] = STATE(2470), + [sym_set_comprehension] = STATE(2470), + [sym_generator_expression] = STATE(2470), + [sym_parenthesized_expression] = STATE(2470), + [sym__collection_elements] = STATE(5731), + [sym_conditional_expression] = STATE(2493), + [sym_concatenated_string] = STATE(2470), + [sym_string] = STATE(2177), + [sym_none] = STATE(2470), + [sym_await] = STATE(2470), + [sym_new_expression] = STATE(2493), + [sym_sizeof_expression] = STATE(2470), + [sym_cast_expression] = STATE(2470), + [sym_identifier] = ACTIONS(2815), + [anon_sym_LPAREN] = ACTIONS(2817), + [anon_sym_STAR] = ACTIONS(2553), + [anon_sym_print] = ACTIONS(2819), + [anon_sym_match] = ACTIONS(2819), + [anon_sym_async] = ACTIONS(2819), + [anon_sym_exec] = ACTIONS(2819), + [anon_sym_LBRACK] = ACTIONS(2495), + [anon_sym_RBRACK] = ACTIONS(2825), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2499), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_not] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_TILDE] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2563), + [anon_sym_lambda] = ACTIONS(2565), + [anon_sym_yield] = ACTIONS(2567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2503), + [anon_sym_None] = ACTIONS(2505), + [sym_integer] = ACTIONS(2487), + [sym_float] = ACTIONS(2507), + [anon_sym_await] = ACTIONS(2823), + [anon_sym_api] = ACTIONS(2819), + [sym_true] = ACTIONS(2487), + [sym_false] = ACTIONS(2487), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2571), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_string_start] = ACTIONS(2513), + }, + [853] = { + [sym_named_expression] = STATE(2421), + [sym__named_expression_lhs] = STATE(5522), + [sym_list_splat] = STATE(5162), + [sym_parenthesized_list_splat] = STATE(4940), + [sym_list_splat_pattern] = STATE(2472), + [sym_as_pattern] = STATE(2421), + [sym_expression] = STATE(3645), + [sym_primary_expression] = STATE(2066), + [sym_not_operator] = STATE(2421), + [sym_boolean_operator] = STATE(2421), + [sym_binary_operator] = STATE(2414), + [sym_unary_operator] = STATE(2414), + [sym_comparison_operator] = STATE(2421), + [sym_lambda] = STATE(2421), + [sym_yield] = STATE(4750), + [sym_attribute] = STATE(2414), + [sym_subscript] = STATE(2414), + [sym_ellipsis] = STATE(2414), + [sym_call] = STATE(2414), + [sym_list] = STATE(2414), + [sym_set] = STATE(2414), + [sym_tuple] = STATE(2414), + [sym_dictionary] = STATE(2414), + [sym_list_comprehension] = STATE(2414), + [sym_dictionary_comprehension] = STATE(2414), + [sym_set_comprehension] = STATE(2414), + [sym_generator_expression] = STATE(2414), + [sym_parenthesized_expression] = STATE(2414), + [sym__collection_elements] = STATE(5537), + [sym_conditional_expression] = STATE(2421), + [sym_concatenated_string] = STATE(2414), + [sym_string] = STATE(2147), + [sym_none] = STATE(2414), + [sym_await] = STATE(2414), + [sym_new_expression] = STATE(2421), + [sym_sizeof_expression] = STATE(2414), + [sym_cast_expression] = STATE(2414), + [sym_identifier] = ACTIONS(2787), + [anon_sym_LPAREN] = ACTIONS(2747), + [anon_sym_RPAREN] = ACTIONS(2827), + [anon_sym_STAR] = ACTIONS(1320), + [anon_sym_print] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1470), + [anon_sym_async] = ACTIONS(1470), + [anon_sym_exec] = ACTIONS(1470), + [anon_sym_LBRACK] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1326), + [anon_sym_LBRACE] = ACTIONS(1328), + [anon_sym_PLUS] = ACTIONS(1326), + [anon_sym_not] = ACTIONS(1330), + [anon_sym_AMP] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1326), + [anon_sym_LT] = ACTIONS(1332), + [anon_sym_lambda] = ACTIONS(1334), + [anon_sym_yield] = ACTIONS(1336), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1338), + [anon_sym_None] = ACTIONS(1340), + [sym_integer] = ACTIONS(1342), + [sym_float] = ACTIONS(1344), + [anon_sym_await] = ACTIONS(1474), + [anon_sym_api] = ACTIONS(1470), + [sym_true] = ACTIONS(1342), + [sym_false] = ACTIONS(1342), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1404), - [anon_sym_sizeof] = ACTIONS(1406), - [sym_string_start] = ACTIONS(1408), + [anon_sym_new] = ACTIONS(1350), + [anon_sym_sizeof] = ACTIONS(1360), + [sym_string_start] = ACTIONS(1362), }, - [853] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(5170), - [sym_dictionary_splat] = STATE(5170), + [854] = { + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(5299), + [sym_dictionary_splat] = STATE(5299), [sym_parenthesized_list_splat] = STATE(5305), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4169), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(5170), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), - [sym_identifier] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_RPAREN] = ACTIONS(2839), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4245), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(5299), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(2783), + [anon_sym_LPAREN] = ACTIONS(2785), + [anon_sym_RPAREN] = ACTIONS(2829), [anon_sym_STAR] = ACTIONS(1376), [anon_sym_print] = ACTIONS(1378), [anon_sym_match] = ACTIONS(1378), @@ -105892,47 +106096,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1406), [sym_string_start] = ACTIONS(1408), }, - [854] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(5170), - [sym_dictionary_splat] = STATE(5170), + [855] = { + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(5299), + [sym_dictionary_splat] = STATE(5299), [sym_parenthesized_list_splat] = STATE(5305), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4169), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(5170), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), - [sym_identifier] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_RPAREN] = ACTIONS(2841), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4245), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(5299), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(2783), + [anon_sym_LPAREN] = ACTIONS(2785), + [anon_sym_RPAREN] = ACTIONS(2831), [anon_sym_STAR] = ACTIONS(1376), [anon_sym_print] = ACTIONS(1378), [anon_sym_match] = ACTIONS(1378), @@ -105962,47 +106166,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1406), [sym_string_start] = ACTIONS(1408), }, - [855] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(5170), - [sym_dictionary_splat] = STATE(5170), + [856] = { + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(5299), + [sym_dictionary_splat] = STATE(5299), [sym_parenthesized_list_splat] = STATE(5305), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4169), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(5170), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), - [sym_identifier] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_RPAREN] = ACTIONS(2843), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4245), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(5299), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(2783), + [anon_sym_LPAREN] = ACTIONS(2785), + [anon_sym_RPAREN] = ACTIONS(2833), [anon_sym_STAR] = ACTIONS(1376), [anon_sym_print] = ACTIONS(1378), [anon_sym_match] = ACTIONS(1378), @@ -106032,47 +106236,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1406), [sym_string_start] = ACTIONS(1408), }, - [856] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(5170), - [sym_dictionary_splat] = STATE(5170), + [857] = { + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(5299), + [sym_dictionary_splat] = STATE(5299), [sym_parenthesized_list_splat] = STATE(5305), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4169), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(5170), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), - [sym_identifier] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_RPAREN] = ACTIONS(2845), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4245), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(5299), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(2783), + [anon_sym_LPAREN] = ACTIONS(2785), + [anon_sym_RPAREN] = ACTIONS(2835), [anon_sym_STAR] = ACTIONS(1376), [anon_sym_print] = ACTIONS(1378), [anon_sym_match] = ACTIONS(1378), @@ -106102,47 +106306,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1406), [sym_string_start] = ACTIONS(1408), }, - [857] = { - [sym_named_expression] = STATE(2459), - [sym__named_expression_lhs] = STATE(5688), - [sym_list_splat] = STATE(4756), - [sym_parenthesized_list_splat] = STATE(4756), - [sym_list_splat_pattern] = STATE(2477), - [sym_as_pattern] = STATE(2459), - [sym_expression] = STATE(3651), - [sym_primary_expression] = STATE(2060), - [sym_not_operator] = STATE(2459), - [sym_boolean_operator] = STATE(2459), - [sym_binary_operator] = STATE(2457), - [sym_unary_operator] = STATE(2457), - [sym_comparison_operator] = STATE(2459), - [sym_lambda] = STATE(2459), - [sym_yield] = STATE(4876), - [sym_attribute] = STATE(2457), - [sym_subscript] = STATE(2457), - [sym_ellipsis] = STATE(2457), - [sym_call] = STATE(2457), - [sym_list] = STATE(2457), - [sym_set] = STATE(2457), - [sym_tuple] = STATE(2457), - [sym_dictionary] = STATE(2457), - [sym_list_comprehension] = STATE(2457), - [sym_dictionary_comprehension] = STATE(2457), - [sym_set_comprehension] = STATE(2457), - [sym_generator_expression] = STATE(2457), - [sym_parenthesized_expression] = STATE(2457), - [sym__collection_elements] = STATE(5615), - [sym_conditional_expression] = STATE(2459), - [sym_concatenated_string] = STATE(2457), - [sym_string] = STATE(2170), - [sym_none] = STATE(2457), - [sym_await] = STATE(2457), - [sym_new_expression] = STATE(2459), - [sym_sizeof_expression] = STATE(2457), - [sym_cast_expression] = STATE(2457), - [sym_identifier] = ACTIONS(2761), - [anon_sym_LPAREN] = ACTIONS(2721), - [anon_sym_RPAREN] = ACTIONS(2847), + [858] = { + [sym_named_expression] = STATE(2421), + [sym__named_expression_lhs] = STATE(5522), + [sym_list_splat] = STATE(4708), + [sym_parenthesized_list_splat] = STATE(4708), + [sym_list_splat_pattern] = STATE(2472), + [sym_as_pattern] = STATE(2421), + [sym_expression] = STATE(3640), + [sym_primary_expression] = STATE(2066), + [sym_not_operator] = STATE(2421), + [sym_boolean_operator] = STATE(2421), + [sym_binary_operator] = STATE(2414), + [sym_unary_operator] = STATE(2414), + [sym_comparison_operator] = STATE(2421), + [sym_lambda] = STATE(2421), + [sym_yield] = STATE(4804), + [sym_attribute] = STATE(2414), + [sym_subscript] = STATE(2414), + [sym_ellipsis] = STATE(2414), + [sym_call] = STATE(2414), + [sym_list] = STATE(2414), + [sym_set] = STATE(2414), + [sym_tuple] = STATE(2414), + [sym_dictionary] = STATE(2414), + [sym_list_comprehension] = STATE(2414), + [sym_dictionary_comprehension] = STATE(2414), + [sym_set_comprehension] = STATE(2414), + [sym_generator_expression] = STATE(2414), + [sym_parenthesized_expression] = STATE(2414), + [sym__collection_elements] = STATE(5702), + [sym_conditional_expression] = STATE(2421), + [sym_concatenated_string] = STATE(2414), + [sym_string] = STATE(2147), + [sym_none] = STATE(2414), + [sym_await] = STATE(2414), + [sym_new_expression] = STATE(2421), + [sym_sizeof_expression] = STATE(2414), + [sym_cast_expression] = STATE(2414), + [sym_identifier] = ACTIONS(2787), + [anon_sym_LPAREN] = ACTIONS(2747), + [anon_sym_RPAREN] = ACTIONS(1476), [anon_sym_STAR] = ACTIONS(1320), [anon_sym_print] = ACTIONS(1470), [anon_sym_match] = ACTIONS(1470), @@ -106172,117 +106376,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1360), [sym_string_start] = ACTIONS(1362), }, - [858] = { + [859] = { + [sym_named_expression] = STATE(2493), + [sym__named_expression_lhs] = STATE(5681), + [sym_list_splat] = STATE(4860), + [sym_parenthesized_list_splat] = STATE(4860), + [sym_list_splat_pattern] = STATE(2415), + [sym_as_pattern] = STATE(2493), + [sym_expression] = STATE(3694), + [sym_primary_expression] = STATE(2070), + [sym_not_operator] = STATE(2493), + [sym_boolean_operator] = STATE(2493), + [sym_binary_operator] = STATE(2470), + [sym_unary_operator] = STATE(2470), + [sym_comparison_operator] = STATE(2493), + [sym_lambda] = STATE(2493), + [sym_yield] = STATE(4860), + [sym_attribute] = STATE(2470), + [sym_subscript] = STATE(2470), + [sym_ellipsis] = STATE(2470), + [sym_call] = STATE(2470), + [sym_list] = STATE(2470), + [sym_set] = STATE(2470), + [sym_tuple] = STATE(2470), + [sym_dictionary] = STATE(2470), + [sym_list_comprehension] = STATE(2470), + [sym_dictionary_comprehension] = STATE(2470), + [sym_set_comprehension] = STATE(2470), + [sym_generator_expression] = STATE(2470), + [sym_parenthesized_expression] = STATE(2470), + [sym__collection_elements] = STATE(5412), + [sym_conditional_expression] = STATE(2493), + [sym_concatenated_string] = STATE(2470), + [sym_string] = STATE(2177), + [sym_none] = STATE(2470), + [sym_await] = STATE(2470), + [sym_new_expression] = STATE(2493), + [sym_sizeof_expression] = STATE(2470), + [sym_cast_expression] = STATE(2470), + [sym_identifier] = ACTIONS(2815), + [anon_sym_LPAREN] = ACTIONS(2817), + [anon_sym_STAR] = ACTIONS(2553), + [anon_sym_print] = ACTIONS(2819), + [anon_sym_match] = ACTIONS(2819), + [anon_sym_async] = ACTIONS(2819), + [anon_sym_exec] = ACTIONS(2819), + [anon_sym_LBRACK] = ACTIONS(2495), + [anon_sym_RBRACK] = ACTIONS(2837), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2499), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_not] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_TILDE] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2563), + [anon_sym_lambda] = ACTIONS(2565), + [anon_sym_yield] = ACTIONS(2567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2503), + [anon_sym_None] = ACTIONS(2505), + [sym_integer] = ACTIONS(2487), + [sym_float] = ACTIONS(2507), + [anon_sym_await] = ACTIONS(2823), + [anon_sym_api] = ACTIONS(2819), + [sym_true] = ACTIONS(2487), + [sym_false] = ACTIONS(2487), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2571), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_string_start] = ACTIONS(2513), + }, + [860] = { [sym_named_expression] = STATE(2421), - [sym__named_expression_lhs] = STATE(5414), - [sym_list_splat] = STATE(5086), - [sym_parenthesized_list_splat] = STATE(5086), - [sym_list_splat_pattern] = STATE(2523), + [sym__named_expression_lhs] = STATE(5522), + [sym_list_splat] = STATE(5063), + [sym_parenthesized_list_splat] = STATE(4789), + [sym_list_splat_pattern] = STATE(2472), [sym_as_pattern] = STATE(2421), - [sym_expression] = STATE(3671), - [sym_primary_expression] = STATE(2063), + [sym_expression] = STATE(3665), + [sym_primary_expression] = STATE(2066), [sym_not_operator] = STATE(2421), [sym_boolean_operator] = STATE(2421), - [sym_binary_operator] = STATE(2418), - [sym_unary_operator] = STATE(2418), + [sym_binary_operator] = STATE(2414), + [sym_unary_operator] = STATE(2414), [sym_comparison_operator] = STATE(2421), [sym_lambda] = STATE(2421), - [sym_yield] = STATE(5086), - [sym_attribute] = STATE(2418), - [sym_subscript] = STATE(2418), - [sym_ellipsis] = STATE(2418), - [sym_call] = STATE(2418), - [sym_list] = STATE(2418), - [sym_set] = STATE(2418), - [sym_tuple] = STATE(2418), - [sym_dictionary] = STATE(2418), - [sym_list_comprehension] = STATE(2418), - [sym_dictionary_comprehension] = STATE(2418), - [sym_set_comprehension] = STATE(2418), - [sym_generator_expression] = STATE(2418), - [sym_parenthesized_expression] = STATE(2418), - [sym__collection_elements] = STATE(5515), + [sym_yield] = STATE(4877), + [sym_attribute] = STATE(2414), + [sym_subscript] = STATE(2414), + [sym_ellipsis] = STATE(2414), + [sym_call] = STATE(2414), + [sym_list] = STATE(2414), + [sym_set] = STATE(2414), + [sym_tuple] = STATE(2414), + [sym_dictionary] = STATE(2414), + [sym_list_comprehension] = STATE(2414), + [sym_dictionary_comprehension] = STATE(2414), + [sym_set_comprehension] = STATE(2414), + [sym_generator_expression] = STATE(2414), + [sym_parenthesized_expression] = STATE(2414), + [sym__collection_elements] = STATE(5407), [sym_conditional_expression] = STATE(2421), - [sym_concatenated_string] = STATE(2418), - [sym_string] = STATE(2157), - [sym_none] = STATE(2418), - [sym_await] = STATE(2418), + [sym_concatenated_string] = STATE(2414), + [sym_string] = STATE(2147), + [sym_none] = STATE(2414), + [sym_await] = STATE(2414), [sym_new_expression] = STATE(2421), - [sym_sizeof_expression] = STATE(2418), - [sym_cast_expression] = STATE(2418), - [sym_identifier] = ACTIONS(2803), - [anon_sym_LPAREN] = ACTIONS(2805), - [anon_sym_STAR] = ACTIONS(2515), - [anon_sym_print] = ACTIONS(2807), - [anon_sym_match] = ACTIONS(2807), - [anon_sym_async] = ACTIONS(2807), - [anon_sym_exec] = ACTIONS(2807), - [anon_sym_LBRACK] = ACTIONS(2485), - [anon_sym_RBRACK] = ACTIONS(2849), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2523), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2525), - [anon_sym_lambda] = ACTIONS(2527), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2811), - [anon_sym_api] = ACTIONS(2807), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2533), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), - }, - [859] = { - [sym_named_expression] = STATE(2459), - [sym__named_expression_lhs] = STATE(5688), - [sym_list_splat] = STATE(4810), - [sym_parenthesized_list_splat] = STATE(4817), - [sym_list_splat_pattern] = STATE(2477), - [sym_as_pattern] = STATE(2459), - [sym_expression] = STATE(3651), - [sym_primary_expression] = STATE(2060), - [sym_not_operator] = STATE(2459), - [sym_boolean_operator] = STATE(2459), - [sym_binary_operator] = STATE(2457), - [sym_unary_operator] = STATE(2457), - [sym_comparison_operator] = STATE(2459), - [sym_lambda] = STATE(2459), - [sym_yield] = STATE(4876), - [sym_attribute] = STATE(2457), - [sym_subscript] = STATE(2457), - [sym_ellipsis] = STATE(2457), - [sym_call] = STATE(2457), - [sym_list] = STATE(2457), - [sym_set] = STATE(2457), - [sym_tuple] = STATE(2457), - [sym_dictionary] = STATE(2457), - [sym_list_comprehension] = STATE(2457), - [sym_dictionary_comprehension] = STATE(2457), - [sym_set_comprehension] = STATE(2457), - [sym_generator_expression] = STATE(2457), - [sym_parenthesized_expression] = STATE(2457), - [sym__collection_elements] = STATE(5615), - [sym_conditional_expression] = STATE(2459), - [sym_concatenated_string] = STATE(2457), - [sym_string] = STATE(2170), - [sym_none] = STATE(2457), - [sym_await] = STATE(2457), - [sym_new_expression] = STATE(2459), - [sym_sizeof_expression] = STATE(2457), - [sym_cast_expression] = STATE(2457), - [sym_identifier] = ACTIONS(2761), - [anon_sym_LPAREN] = ACTIONS(2721), - [anon_sym_RPAREN] = ACTIONS(2847), + [sym_sizeof_expression] = STATE(2414), + [sym_cast_expression] = STATE(2414), + [sym_identifier] = ACTIONS(2787), + [anon_sym_LPAREN] = ACTIONS(2747), + [anon_sym_RPAREN] = ACTIONS(1468), [anon_sym_STAR] = ACTIONS(1320), [anon_sym_print] = ACTIONS(1470), [anon_sym_match] = ACTIONS(1470), @@ -106312,47 +106516,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1360), [sym_string_start] = ACTIONS(1362), }, - [860] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(5170), - [sym_dictionary_splat] = STATE(5170), + [861] = { + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(5299), + [sym_dictionary_splat] = STATE(5299), [sym_parenthesized_list_splat] = STATE(5305), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4169), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(5170), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), - [sym_identifier] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_RPAREN] = ACTIONS(2851), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4245), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(5299), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(2783), + [anon_sym_LPAREN] = ACTIONS(2785), + [anon_sym_RPAREN] = ACTIONS(2839), [anon_sym_STAR] = ACTIONS(1376), [anon_sym_print] = ACTIONS(1378), [anon_sym_match] = ACTIONS(1378), @@ -106382,47 +106586,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1406), [sym_string_start] = ACTIONS(1408), }, - [861] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(5170), - [sym_dictionary_splat] = STATE(5170), + [862] = { + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(5299), + [sym_dictionary_splat] = STATE(5299), [sym_parenthesized_list_splat] = STATE(5305), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4169), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(5170), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), - [sym_identifier] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_RPAREN] = ACTIONS(2853), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4245), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(5299), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(2783), + [anon_sym_LPAREN] = ACTIONS(2785), + [anon_sym_RPAREN] = ACTIONS(2841), [anon_sym_STAR] = ACTIONS(1376), [anon_sym_print] = ACTIONS(1378), [anon_sym_match] = ACTIONS(1378), @@ -106452,47 +106656,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1406), [sym_string_start] = ACTIONS(1408), }, - [862] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(5170), - [sym_dictionary_splat] = STATE(5170), + [863] = { + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(5299), + [sym_dictionary_splat] = STATE(5299), [sym_parenthesized_list_splat] = STATE(5305), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4169), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(5170), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), - [sym_identifier] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_RPAREN] = ACTIONS(2855), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4245), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(5299), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(2783), + [anon_sym_LPAREN] = ACTIONS(2785), + [anon_sym_RPAREN] = ACTIONS(2843), [anon_sym_STAR] = ACTIONS(1376), [anon_sym_print] = ACTIONS(1378), [anon_sym_match] = ACTIONS(1378), @@ -106522,47 +106726,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1406), [sym_string_start] = ACTIONS(1408), }, - [863] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(5170), - [sym_dictionary_splat] = STATE(5170), + [864] = { + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(5299), + [sym_dictionary_splat] = STATE(5299), [sym_parenthesized_list_splat] = STATE(5305), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4169), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(5170), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), - [sym_identifier] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_RPAREN] = ACTIONS(2857), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4245), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(5299), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(2783), + [anon_sym_LPAREN] = ACTIONS(2785), + [anon_sym_RPAREN] = ACTIONS(2845), [anon_sym_STAR] = ACTIONS(1376), [anon_sym_print] = ACTIONS(1378), [anon_sym_match] = ACTIONS(1378), @@ -106592,47 +106796,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1406), [sym_string_start] = ACTIONS(1408), }, - [864] = { - [sym_named_expression] = STATE(2459), - [sym__named_expression_lhs] = STATE(5688), - [sym_list_splat] = STATE(4756), - [sym_parenthesized_list_splat] = STATE(4756), - [sym_list_splat_pattern] = STATE(2477), - [sym_as_pattern] = STATE(2459), - [sym_expression] = STATE(3631), - [sym_primary_expression] = STATE(2060), - [sym_not_operator] = STATE(2459), - [sym_boolean_operator] = STATE(2459), - [sym_binary_operator] = STATE(2457), - [sym_unary_operator] = STATE(2457), - [sym_comparison_operator] = STATE(2459), - [sym_lambda] = STATE(2459), - [sym_yield] = STATE(4728), - [sym_attribute] = STATE(2457), - [sym_subscript] = STATE(2457), - [sym_ellipsis] = STATE(2457), - [sym_call] = STATE(2457), - [sym_list] = STATE(2457), - [sym_set] = STATE(2457), - [sym_tuple] = STATE(2457), - [sym_dictionary] = STATE(2457), - [sym_list_comprehension] = STATE(2457), - [sym_dictionary_comprehension] = STATE(2457), - [sym_set_comprehension] = STATE(2457), - [sym_generator_expression] = STATE(2457), - [sym_parenthesized_expression] = STATE(2457), - [sym__collection_elements] = STATE(5450), - [sym_conditional_expression] = STATE(2459), - [sym_concatenated_string] = STATE(2457), - [sym_string] = STATE(2170), - [sym_none] = STATE(2457), - [sym_await] = STATE(2457), - [sym_new_expression] = STATE(2459), - [sym_sizeof_expression] = STATE(2457), - [sym_cast_expression] = STATE(2457), - [sym_identifier] = ACTIONS(2761), - [anon_sym_LPAREN] = ACTIONS(2721), - [anon_sym_RPAREN] = ACTIONS(2813), + [865] = { + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(5299), + [sym_dictionary_splat] = STATE(5299), + [sym_parenthesized_list_splat] = STATE(5305), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4245), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(5299), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(2783), + [anon_sym_LPAREN] = ACTIONS(2785), + [anon_sym_RPAREN] = ACTIONS(2847), + [anon_sym_STAR] = ACTIONS(1376), + [anon_sym_print] = ACTIONS(1378), + [anon_sym_match] = ACTIONS(1378), + [anon_sym_async] = ACTIONS(1378), + [anon_sym_STAR_STAR] = ACTIONS(1380), + [anon_sym_exec] = ACTIONS(1378), + [anon_sym_LBRACK] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_LBRACE] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(1384), + [anon_sym_not] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_TILDE] = ACTIONS(1384), + [anon_sym_LT] = ACTIONS(1390), + [anon_sym_lambda] = ACTIONS(1392), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1394), + [anon_sym_None] = ACTIONS(1396), + [sym_integer] = ACTIONS(1398), + [sym_float] = ACTIONS(1400), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_api] = ACTIONS(1378), + [sym_true] = ACTIONS(1398), + [sym_false] = ACTIONS(1398), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1404), + [anon_sym_sizeof] = ACTIONS(1406), + [sym_string_start] = ACTIONS(1408), + }, + [866] = { + [sym_named_expression] = STATE(2421), + [sym__named_expression_lhs] = STATE(5522), + [sym_list_splat] = STATE(4708), + [sym_parenthesized_list_splat] = STATE(4708), + [sym_list_splat_pattern] = STATE(2472), + [sym_as_pattern] = STATE(2421), + [sym_expression] = STATE(3670), + [sym_primary_expression] = STATE(2066), + [sym_not_operator] = STATE(2421), + [sym_boolean_operator] = STATE(2421), + [sym_binary_operator] = STATE(2414), + [sym_unary_operator] = STATE(2414), + [sym_comparison_operator] = STATE(2421), + [sym_lambda] = STATE(2421), + [sym_yield] = STATE(4903), + [sym_attribute] = STATE(2414), + [sym_subscript] = STATE(2414), + [sym_ellipsis] = STATE(2414), + [sym_call] = STATE(2414), + [sym_list] = STATE(2414), + [sym_set] = STATE(2414), + [sym_tuple] = STATE(2414), + [sym_dictionary] = STATE(2414), + [sym_list_comprehension] = STATE(2414), + [sym_dictionary_comprehension] = STATE(2414), + [sym_set_comprehension] = STATE(2414), + [sym_generator_expression] = STATE(2414), + [sym_parenthesized_expression] = STATE(2414), + [sym__collection_elements] = STATE(5581), + [sym_conditional_expression] = STATE(2421), + [sym_concatenated_string] = STATE(2414), + [sym_string] = STATE(2147), + [sym_none] = STATE(2414), + [sym_await] = STATE(2414), + [sym_new_expression] = STATE(2421), + [sym_sizeof_expression] = STATE(2414), + [sym_cast_expression] = STATE(2414), + [sym_identifier] = ACTIONS(2787), + [anon_sym_LPAREN] = ACTIONS(2747), + [anon_sym_RPAREN] = ACTIONS(2849), [anon_sym_STAR] = ACTIONS(1320), [anon_sym_print] = ACTIONS(1470), [anon_sym_match] = ACTIONS(1470), @@ -106662,117 +106936,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1360), [sym_string_start] = ACTIONS(1362), }, - [865] = { + [867] = { + [sym_named_expression] = STATE(2493), + [sym__named_expression_lhs] = STATE(5681), + [sym_list_splat] = STATE(4860), + [sym_parenthesized_list_splat] = STATE(4860), + [sym_list_splat_pattern] = STATE(2415), + [sym_as_pattern] = STATE(2493), + [sym_expression] = STATE(3685), + [sym_primary_expression] = STATE(2070), + [sym_not_operator] = STATE(2493), + [sym_boolean_operator] = STATE(2493), + [sym_binary_operator] = STATE(2470), + [sym_unary_operator] = STATE(2470), + [sym_comparison_operator] = STATE(2493), + [sym_lambda] = STATE(2493), + [sym_yield] = STATE(4860), + [sym_attribute] = STATE(2470), + [sym_subscript] = STATE(2470), + [sym_ellipsis] = STATE(2470), + [sym_call] = STATE(2470), + [sym_list] = STATE(2470), + [sym_set] = STATE(2470), + [sym_tuple] = STATE(2470), + [sym_dictionary] = STATE(2470), + [sym_list_comprehension] = STATE(2470), + [sym_dictionary_comprehension] = STATE(2470), + [sym_set_comprehension] = STATE(2470), + [sym_generator_expression] = STATE(2470), + [sym_parenthesized_expression] = STATE(2470), + [sym__collection_elements] = STATE(5577), + [sym_conditional_expression] = STATE(2493), + [sym_concatenated_string] = STATE(2470), + [sym_string] = STATE(2177), + [sym_none] = STATE(2470), + [sym_await] = STATE(2470), + [sym_new_expression] = STATE(2493), + [sym_sizeof_expression] = STATE(2470), + [sym_cast_expression] = STATE(2470), + [sym_identifier] = ACTIONS(2815), + [anon_sym_LPAREN] = ACTIONS(2817), + [anon_sym_STAR] = ACTIONS(2553), + [anon_sym_print] = ACTIONS(2819), + [anon_sym_match] = ACTIONS(2819), + [anon_sym_async] = ACTIONS(2819), + [anon_sym_exec] = ACTIONS(2819), + [anon_sym_LBRACK] = ACTIONS(2495), + [anon_sym_RBRACK] = ACTIONS(2851), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2499), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_not] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_TILDE] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2563), + [anon_sym_lambda] = ACTIONS(2565), + [anon_sym_yield] = ACTIONS(2567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2503), + [anon_sym_None] = ACTIONS(2505), + [sym_integer] = ACTIONS(2487), + [sym_float] = ACTIONS(2507), + [anon_sym_await] = ACTIONS(2823), + [anon_sym_api] = ACTIONS(2819), + [sym_true] = ACTIONS(2487), + [sym_false] = ACTIONS(2487), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2571), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_string_start] = ACTIONS(2513), + }, + [868] = { [sym_named_expression] = STATE(2421), - [sym__named_expression_lhs] = STATE(5414), - [sym_list_splat] = STATE(5086), - [sym_parenthesized_list_splat] = STATE(5086), - [sym_list_splat_pattern] = STATE(2523), + [sym__named_expression_lhs] = STATE(5522), + [sym_list_splat] = STATE(5162), + [sym_parenthesized_list_splat] = STATE(4940), + [sym_list_splat_pattern] = STATE(2472), [sym_as_pattern] = STATE(2421), - [sym_expression] = STATE(3685), - [sym_primary_expression] = STATE(2063), + [sym_expression] = STATE(3670), + [sym_primary_expression] = STATE(2066), [sym_not_operator] = STATE(2421), [sym_boolean_operator] = STATE(2421), - [sym_binary_operator] = STATE(2418), - [sym_unary_operator] = STATE(2418), + [sym_binary_operator] = STATE(2414), + [sym_unary_operator] = STATE(2414), [sym_comparison_operator] = STATE(2421), [sym_lambda] = STATE(2421), - [sym_yield] = STATE(5086), - [sym_attribute] = STATE(2418), - [sym_subscript] = STATE(2418), - [sym_ellipsis] = STATE(2418), - [sym_call] = STATE(2418), - [sym_list] = STATE(2418), - [sym_set] = STATE(2418), - [sym_tuple] = STATE(2418), - [sym_dictionary] = STATE(2418), - [sym_list_comprehension] = STATE(2418), - [sym_dictionary_comprehension] = STATE(2418), - [sym_set_comprehension] = STATE(2418), - [sym_generator_expression] = STATE(2418), - [sym_parenthesized_expression] = STATE(2418), - [sym__collection_elements] = STATE(5500), + [sym_yield] = STATE(4903), + [sym_attribute] = STATE(2414), + [sym_subscript] = STATE(2414), + [sym_ellipsis] = STATE(2414), + [sym_call] = STATE(2414), + [sym_list] = STATE(2414), + [sym_set] = STATE(2414), + [sym_tuple] = STATE(2414), + [sym_dictionary] = STATE(2414), + [sym_list_comprehension] = STATE(2414), + [sym_dictionary_comprehension] = STATE(2414), + [sym_set_comprehension] = STATE(2414), + [sym_generator_expression] = STATE(2414), + [sym_parenthesized_expression] = STATE(2414), + [sym__collection_elements] = STATE(5581), [sym_conditional_expression] = STATE(2421), - [sym_concatenated_string] = STATE(2418), - [sym_string] = STATE(2157), - [sym_none] = STATE(2418), - [sym_await] = STATE(2418), + [sym_concatenated_string] = STATE(2414), + [sym_string] = STATE(2147), + [sym_none] = STATE(2414), + [sym_await] = STATE(2414), [sym_new_expression] = STATE(2421), - [sym_sizeof_expression] = STATE(2418), - [sym_cast_expression] = STATE(2418), - [sym_identifier] = ACTIONS(2803), - [anon_sym_LPAREN] = ACTIONS(2805), - [anon_sym_STAR] = ACTIONS(2515), - [anon_sym_print] = ACTIONS(2807), - [anon_sym_match] = ACTIONS(2807), - [anon_sym_async] = ACTIONS(2807), - [anon_sym_exec] = ACTIONS(2807), - [anon_sym_LBRACK] = ACTIONS(2485), - [anon_sym_RBRACK] = ACTIONS(2859), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2523), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2525), - [anon_sym_lambda] = ACTIONS(2527), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2811), - [anon_sym_api] = ACTIONS(2807), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2533), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), - }, - [866] = { - [sym_named_expression] = STATE(2459), - [sym__named_expression_lhs] = STATE(5688), - [sym_list_splat] = STATE(4714), - [sym_parenthesized_list_splat] = STATE(4718), - [sym_list_splat_pattern] = STATE(2477), - [sym_as_pattern] = STATE(2459), - [sym_expression] = STATE(3643), - [sym_primary_expression] = STATE(2060), - [sym_not_operator] = STATE(2459), - [sym_boolean_operator] = STATE(2459), - [sym_binary_operator] = STATE(2457), - [sym_unary_operator] = STATE(2457), - [sym_comparison_operator] = STATE(2459), - [sym_lambda] = STATE(2459), - [sym_yield] = STATE(4815), - [sym_attribute] = STATE(2457), - [sym_subscript] = STATE(2457), - [sym_ellipsis] = STATE(2457), - [sym_call] = STATE(2457), - [sym_list] = STATE(2457), - [sym_set] = STATE(2457), - [sym_tuple] = STATE(2457), - [sym_dictionary] = STATE(2457), - [sym_list_comprehension] = STATE(2457), - [sym_dictionary_comprehension] = STATE(2457), - [sym_set_comprehension] = STATE(2457), - [sym_generator_expression] = STATE(2457), - [sym_parenthesized_expression] = STATE(2457), - [sym__collection_elements] = STATE(5584), - [sym_conditional_expression] = STATE(2459), - [sym_concatenated_string] = STATE(2457), - [sym_string] = STATE(2170), - [sym_none] = STATE(2457), - [sym_await] = STATE(2457), - [sym_new_expression] = STATE(2459), - [sym_sizeof_expression] = STATE(2457), - [sym_cast_expression] = STATE(2457), - [sym_identifier] = ACTIONS(2761), - [anon_sym_LPAREN] = ACTIONS(2721), - [anon_sym_RPAREN] = ACTIONS(2861), + [sym_sizeof_expression] = STATE(2414), + [sym_cast_expression] = STATE(2414), + [sym_identifier] = ACTIONS(2787), + [anon_sym_LPAREN] = ACTIONS(2747), + [anon_sym_RPAREN] = ACTIONS(2849), [anon_sym_STAR] = ACTIONS(1320), [anon_sym_print] = ACTIONS(1470), [anon_sym_match] = ACTIONS(1470), @@ -106802,47 +107076,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1360), [sym_string_start] = ACTIONS(1362), }, - [867] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(5170), - [sym_dictionary_splat] = STATE(5170), + [869] = { + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(5299), + [sym_dictionary_splat] = STATE(5299), [sym_parenthesized_list_splat] = STATE(5305), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4169), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(5170), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), - [sym_identifier] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_RPAREN] = ACTIONS(2863), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4245), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(5299), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(2783), + [anon_sym_LPAREN] = ACTIONS(2785), + [anon_sym_RPAREN] = ACTIONS(2853), [anon_sym_STAR] = ACTIONS(1376), [anon_sym_print] = ACTIONS(1378), [anon_sym_match] = ACTIONS(1378), @@ -106872,47 +107146,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1406), [sym_string_start] = ACTIONS(1408), }, - [868] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(5170), - [sym_dictionary_splat] = STATE(5170), + [870] = { + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(5299), + [sym_dictionary_splat] = STATE(5299), [sym_parenthesized_list_splat] = STATE(5305), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4169), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(5170), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), - [sym_identifier] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_RPAREN] = ACTIONS(2865), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4245), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(5299), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(2783), + [anon_sym_LPAREN] = ACTIONS(2785), + [anon_sym_RPAREN] = ACTIONS(2855), [anon_sym_STAR] = ACTIONS(1376), [anon_sym_print] = ACTIONS(1378), [anon_sym_match] = ACTIONS(1378), @@ -106942,47 +107216,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1406), [sym_string_start] = ACTIONS(1408), }, - [869] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(5170), - [sym_dictionary_splat] = STATE(5170), + [871] = { + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(5299), + [sym_dictionary_splat] = STATE(5299), [sym_parenthesized_list_splat] = STATE(5305), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4169), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(5170), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), - [sym_identifier] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_RPAREN] = ACTIONS(2867), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4245), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(5299), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(2783), + [anon_sym_LPAREN] = ACTIONS(2785), + [anon_sym_RPAREN] = ACTIONS(2857), [anon_sym_STAR] = ACTIONS(1376), [anon_sym_print] = ACTIONS(1378), [anon_sym_match] = ACTIONS(1378), @@ -107012,47 +107286,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1406), [sym_string_start] = ACTIONS(1408), }, - [870] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(5170), - [sym_dictionary_splat] = STATE(5170), + [872] = { + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(5299), + [sym_dictionary_splat] = STATE(5299), [sym_parenthesized_list_splat] = STATE(5305), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4169), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(5170), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), - [sym_identifier] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_RPAREN] = ACTIONS(2869), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4245), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(5299), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(2783), + [anon_sym_LPAREN] = ACTIONS(2785), + [anon_sym_RPAREN] = ACTIONS(2859), [anon_sym_STAR] = ACTIONS(1376), [anon_sym_print] = ACTIONS(1378), [anon_sym_match] = ACTIONS(1378), @@ -107082,117 +107356,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1406), [sym_string_start] = ACTIONS(1408), }, - [871] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(5170), - [sym_dictionary_splat] = STATE(5170), - [sym_parenthesized_list_splat] = STATE(5305), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4169), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(5170), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), - [sym_identifier] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_RPAREN] = ACTIONS(2871), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_print] = ACTIONS(1378), - [anon_sym_match] = ACTIONS(1378), - [anon_sym_async] = ACTIONS(1378), - [anon_sym_STAR_STAR] = ACTIONS(1380), - [anon_sym_exec] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(1382), - [anon_sym_DASH] = ACTIONS(1384), - [anon_sym_LBRACE] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1384), - [anon_sym_not] = ACTIONS(1388), - [anon_sym_AMP] = ACTIONS(1384), - [anon_sym_TILDE] = ACTIONS(1384), - [anon_sym_LT] = ACTIONS(1390), - [anon_sym_lambda] = ACTIONS(1392), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1394), - [anon_sym_None] = ACTIONS(1396), - [sym_integer] = ACTIONS(1398), - [sym_float] = ACTIONS(1400), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_api] = ACTIONS(1378), - [sym_true] = ACTIONS(1398), - [sym_false] = ACTIONS(1398), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1404), - [anon_sym_sizeof] = ACTIONS(1406), - [sym_string_start] = ACTIONS(1408), - }, - [872] = { - [sym_named_expression] = STATE(2459), - [sym__named_expression_lhs] = STATE(5688), - [sym_list_splat] = STATE(4756), - [sym_parenthesized_list_splat] = STATE(4756), - [sym_list_splat_pattern] = STATE(2477), - [sym_as_pattern] = STATE(2459), - [sym_expression] = STATE(3643), - [sym_primary_expression] = STATE(2060), - [sym_not_operator] = STATE(2459), - [sym_boolean_operator] = STATE(2459), - [sym_binary_operator] = STATE(2457), - [sym_unary_operator] = STATE(2457), - [sym_comparison_operator] = STATE(2459), - [sym_lambda] = STATE(2459), - [sym_yield] = STATE(4815), - [sym_attribute] = STATE(2457), - [sym_subscript] = STATE(2457), - [sym_ellipsis] = STATE(2457), - [sym_call] = STATE(2457), - [sym_list] = STATE(2457), - [sym_set] = STATE(2457), - [sym_tuple] = STATE(2457), - [sym_dictionary] = STATE(2457), - [sym_list_comprehension] = STATE(2457), - [sym_dictionary_comprehension] = STATE(2457), - [sym_set_comprehension] = STATE(2457), - [sym_generator_expression] = STATE(2457), - [sym_parenthesized_expression] = STATE(2457), - [sym__collection_elements] = STATE(5584), - [sym_conditional_expression] = STATE(2459), - [sym_concatenated_string] = STATE(2457), - [sym_string] = STATE(2170), - [sym_none] = STATE(2457), - [sym_await] = STATE(2457), - [sym_new_expression] = STATE(2459), - [sym_sizeof_expression] = STATE(2457), - [sym_cast_expression] = STATE(2457), - [sym_identifier] = ACTIONS(2761), - [anon_sym_LPAREN] = ACTIONS(2721), - [anon_sym_RPAREN] = ACTIONS(2861), + [873] = { + [sym_named_expression] = STATE(2421), + [sym__named_expression_lhs] = STATE(5522), + [sym_list_splat] = STATE(4708), + [sym_parenthesized_list_splat] = STATE(4708), + [sym_list_splat_pattern] = STATE(2472), + [sym_as_pattern] = STATE(2421), + [sym_expression] = STATE(3645), + [sym_primary_expression] = STATE(2066), + [sym_not_operator] = STATE(2421), + [sym_boolean_operator] = STATE(2421), + [sym_binary_operator] = STATE(2414), + [sym_unary_operator] = STATE(2414), + [sym_comparison_operator] = STATE(2421), + [sym_lambda] = STATE(2421), + [sym_yield] = STATE(4750), + [sym_attribute] = STATE(2414), + [sym_subscript] = STATE(2414), + [sym_ellipsis] = STATE(2414), + [sym_call] = STATE(2414), + [sym_list] = STATE(2414), + [sym_set] = STATE(2414), + [sym_tuple] = STATE(2414), + [sym_dictionary] = STATE(2414), + [sym_list_comprehension] = STATE(2414), + [sym_dictionary_comprehension] = STATE(2414), + [sym_set_comprehension] = STATE(2414), + [sym_generator_expression] = STATE(2414), + [sym_parenthesized_expression] = STATE(2414), + [sym__collection_elements] = STATE(5537), + [sym_conditional_expression] = STATE(2421), + [sym_concatenated_string] = STATE(2414), + [sym_string] = STATE(2147), + [sym_none] = STATE(2414), + [sym_await] = STATE(2414), + [sym_new_expression] = STATE(2421), + [sym_sizeof_expression] = STATE(2414), + [sym_cast_expression] = STATE(2414), + [sym_identifier] = ACTIONS(2787), + [anon_sym_LPAREN] = ACTIONS(2747), + [anon_sym_RPAREN] = ACTIONS(2827), [anon_sym_STAR] = ACTIONS(1320), [anon_sym_print] = ACTIONS(1470), [anon_sym_match] = ACTIONS(1470), @@ -107222,257 +107426,187 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1360), [sym_string_start] = ACTIONS(1362), }, - [873] = { + [874] = { + [sym_named_expression] = STATE(2493), + [sym__named_expression_lhs] = STATE(5681), + [sym_list_splat] = STATE(4860), + [sym_parenthesized_list_splat] = STATE(4860), + [sym_list_splat_pattern] = STATE(2415), + [sym_as_pattern] = STATE(2493), + [sym_expression] = STATE(3689), + [sym_primary_expression] = STATE(2070), + [sym_not_operator] = STATE(2493), + [sym_boolean_operator] = STATE(2493), + [sym_binary_operator] = STATE(2470), + [sym_unary_operator] = STATE(2470), + [sym_comparison_operator] = STATE(2493), + [sym_lambda] = STATE(2493), + [sym_yield] = STATE(4860), + [sym_attribute] = STATE(2470), + [sym_subscript] = STATE(2470), + [sym_ellipsis] = STATE(2470), + [sym_call] = STATE(2470), + [sym_list] = STATE(2470), + [sym_set] = STATE(2470), + [sym_tuple] = STATE(2470), + [sym_dictionary] = STATE(2470), + [sym_list_comprehension] = STATE(2470), + [sym_dictionary_comprehension] = STATE(2470), + [sym_set_comprehension] = STATE(2470), + [sym_generator_expression] = STATE(2470), + [sym_parenthesized_expression] = STATE(2470), + [sym__collection_elements] = STATE(5435), + [sym_conditional_expression] = STATE(2493), + [sym_concatenated_string] = STATE(2470), + [sym_string] = STATE(2177), + [sym_none] = STATE(2470), + [sym_await] = STATE(2470), + [sym_new_expression] = STATE(2493), + [sym_sizeof_expression] = STATE(2470), + [sym_cast_expression] = STATE(2470), + [sym_identifier] = ACTIONS(2815), + [anon_sym_LPAREN] = ACTIONS(2817), + [anon_sym_STAR] = ACTIONS(2553), + [anon_sym_print] = ACTIONS(2819), + [anon_sym_match] = ACTIONS(2819), + [anon_sym_async] = ACTIONS(2819), + [anon_sym_exec] = ACTIONS(2819), + [anon_sym_LBRACK] = ACTIONS(2495), + [anon_sym_RBRACK] = ACTIONS(2861), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2499), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_not] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_TILDE] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2563), + [anon_sym_lambda] = ACTIONS(2565), + [anon_sym_yield] = ACTIONS(2567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2503), + [anon_sym_None] = ACTIONS(2505), + [sym_integer] = ACTIONS(2487), + [sym_float] = ACTIONS(2507), + [anon_sym_await] = ACTIONS(2823), + [anon_sym_api] = ACTIONS(2819), + [sym_true] = ACTIONS(2487), + [sym_false] = ACTIONS(2487), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2571), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_string_start] = ACTIONS(2513), + }, + [875] = { [sym_named_expression] = STATE(2421), - [sym__named_expression_lhs] = STATE(5414), - [sym_list_splat] = STATE(5086), - [sym_parenthesized_list_splat] = STATE(5086), - [sym_list_splat_pattern] = STATE(2523), + [sym__named_expression_lhs] = STATE(5522), + [sym_list_splat] = STATE(5133), + [sym_parenthesized_list_splat] = STATE(5134), + [sym_list_splat_pattern] = STATE(2472), [sym_as_pattern] = STATE(2421), - [sym_expression] = STATE(3697), - [sym_primary_expression] = STATE(2063), + [sym_expression] = STATE(3659), + [sym_primary_expression] = STATE(2066), [sym_not_operator] = STATE(2421), [sym_boolean_operator] = STATE(2421), - [sym_binary_operator] = STATE(2418), - [sym_unary_operator] = STATE(2418), + [sym_binary_operator] = STATE(2414), + [sym_unary_operator] = STATE(2414), [sym_comparison_operator] = STATE(2421), [sym_lambda] = STATE(2421), - [sym_yield] = STATE(5086), - [sym_attribute] = STATE(2418), - [sym_subscript] = STATE(2418), - [sym_ellipsis] = STATE(2418), - [sym_call] = STATE(2418), - [sym_list] = STATE(2418), - [sym_set] = STATE(2418), - [sym_tuple] = STATE(2418), - [sym_dictionary] = STATE(2418), - [sym_list_comprehension] = STATE(2418), - [sym_dictionary_comprehension] = STATE(2418), - [sym_set_comprehension] = STATE(2418), - [sym_generator_expression] = STATE(2418), - [sym_parenthesized_expression] = STATE(2418), - [sym__collection_elements] = STATE(5622), + [sym_yield] = STATE(4842), + [sym_attribute] = STATE(2414), + [sym_subscript] = STATE(2414), + [sym_ellipsis] = STATE(2414), + [sym_call] = STATE(2414), + [sym_list] = STATE(2414), + [sym_set] = STATE(2414), + [sym_tuple] = STATE(2414), + [sym_dictionary] = STATE(2414), + [sym_list_comprehension] = STATE(2414), + [sym_dictionary_comprehension] = STATE(2414), + [sym_set_comprehension] = STATE(2414), + [sym_generator_expression] = STATE(2414), + [sym_parenthesized_expression] = STATE(2414), + [sym__collection_elements] = STATE(5434), [sym_conditional_expression] = STATE(2421), - [sym_concatenated_string] = STATE(2418), - [sym_string] = STATE(2157), - [sym_none] = STATE(2418), - [sym_await] = STATE(2418), + [sym_concatenated_string] = STATE(2414), + [sym_string] = STATE(2147), + [sym_none] = STATE(2414), + [sym_await] = STATE(2414), [sym_new_expression] = STATE(2421), - [sym_sizeof_expression] = STATE(2418), - [sym_cast_expression] = STATE(2418), - [sym_identifier] = ACTIONS(2803), - [anon_sym_LPAREN] = ACTIONS(2805), - [anon_sym_STAR] = ACTIONS(2515), - [anon_sym_print] = ACTIONS(2807), - [anon_sym_match] = ACTIONS(2807), - [anon_sym_async] = ACTIONS(2807), - [anon_sym_exec] = ACTIONS(2807), - [anon_sym_LBRACK] = ACTIONS(2485), - [anon_sym_RBRACK] = ACTIONS(2873), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2523), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2525), - [anon_sym_lambda] = ACTIONS(2527), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2811), - [anon_sym_api] = ACTIONS(2807), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2533), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), - }, - [874] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(5170), - [sym_dictionary_splat] = STATE(5170), - [sym_parenthesized_list_splat] = STATE(5305), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4169), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(5170), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), - [sym_identifier] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_RPAREN] = ACTIONS(2875), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_print] = ACTIONS(1378), - [anon_sym_match] = ACTIONS(1378), - [anon_sym_async] = ACTIONS(1378), - [anon_sym_STAR_STAR] = ACTIONS(1380), - [anon_sym_exec] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(1382), - [anon_sym_DASH] = ACTIONS(1384), - [anon_sym_LBRACE] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1384), - [anon_sym_not] = ACTIONS(1388), - [anon_sym_AMP] = ACTIONS(1384), - [anon_sym_TILDE] = ACTIONS(1384), - [anon_sym_LT] = ACTIONS(1390), - [anon_sym_lambda] = ACTIONS(1392), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1394), - [anon_sym_None] = ACTIONS(1396), - [sym_integer] = ACTIONS(1398), - [sym_float] = ACTIONS(1400), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_api] = ACTIONS(1378), - [sym_true] = ACTIONS(1398), - [sym_false] = ACTIONS(1398), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1404), - [anon_sym_sizeof] = ACTIONS(1406), - [sym_string_start] = ACTIONS(1408), - }, - [875] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(5170), - [sym_dictionary_splat] = STATE(5170), - [sym_parenthesized_list_splat] = STATE(5305), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4169), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(5170), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), - [sym_identifier] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_RPAREN] = ACTIONS(2877), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_print] = ACTIONS(1378), - [anon_sym_match] = ACTIONS(1378), - [anon_sym_async] = ACTIONS(1378), - [anon_sym_STAR_STAR] = ACTIONS(1380), - [anon_sym_exec] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(1382), - [anon_sym_DASH] = ACTIONS(1384), - [anon_sym_LBRACE] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1384), - [anon_sym_not] = ACTIONS(1388), - [anon_sym_AMP] = ACTIONS(1384), - [anon_sym_TILDE] = ACTIONS(1384), - [anon_sym_LT] = ACTIONS(1390), - [anon_sym_lambda] = ACTIONS(1392), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1394), - [anon_sym_None] = ACTIONS(1396), - [sym_integer] = ACTIONS(1398), - [sym_float] = ACTIONS(1400), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_api] = ACTIONS(1378), - [sym_true] = ACTIONS(1398), - [sym_false] = ACTIONS(1398), + [sym_sizeof_expression] = STATE(2414), + [sym_cast_expression] = STATE(2414), + [sym_identifier] = ACTIONS(2787), + [anon_sym_LPAREN] = ACTIONS(2747), + [anon_sym_RPAREN] = ACTIONS(2863), + [anon_sym_STAR] = ACTIONS(1320), + [anon_sym_print] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1470), + [anon_sym_async] = ACTIONS(1470), + [anon_sym_exec] = ACTIONS(1470), + [anon_sym_LBRACK] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1326), + [anon_sym_LBRACE] = ACTIONS(1328), + [anon_sym_PLUS] = ACTIONS(1326), + [anon_sym_not] = ACTIONS(1330), + [anon_sym_AMP] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1326), + [anon_sym_LT] = ACTIONS(1332), + [anon_sym_lambda] = ACTIONS(1334), + [anon_sym_yield] = ACTIONS(1336), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1338), + [anon_sym_None] = ACTIONS(1340), + [sym_integer] = ACTIONS(1342), + [sym_float] = ACTIONS(1344), + [anon_sym_await] = ACTIONS(1474), + [anon_sym_api] = ACTIONS(1470), + [sym_true] = ACTIONS(1342), + [sym_false] = ACTIONS(1342), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1404), - [anon_sym_sizeof] = ACTIONS(1406), - [sym_string_start] = ACTIONS(1408), + [anon_sym_new] = ACTIONS(1350), + [anon_sym_sizeof] = ACTIONS(1360), + [sym_string_start] = ACTIONS(1362), }, [876] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(5170), - [sym_dictionary_splat] = STATE(5170), + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(5299), + [sym_dictionary_splat] = STATE(5299), [sym_parenthesized_list_splat] = STATE(5305), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4169), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(5170), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), - [sym_identifier] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_RPAREN] = ACTIONS(2879), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4245), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(5299), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(2783), + [anon_sym_LPAREN] = ACTIONS(2785), + [anon_sym_RPAREN] = ACTIONS(2865), [anon_sym_STAR] = ACTIONS(1376), [anon_sym_print] = ACTIONS(1378), [anon_sym_match] = ACTIONS(1378), @@ -107503,46 +107637,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(1408), }, [877] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(5170), - [sym_dictionary_splat] = STATE(5170), + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(5299), + [sym_dictionary_splat] = STATE(5299), [sym_parenthesized_list_splat] = STATE(5305), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4169), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(5170), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), - [sym_identifier] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_RPAREN] = ACTIONS(2881), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4245), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(5299), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(2783), + [anon_sym_LPAREN] = ACTIONS(2785), + [anon_sym_RPAREN] = ACTIONS(2867), [anon_sym_STAR] = ACTIONS(1376), [anon_sym_print] = ACTIONS(1378), [anon_sym_match] = ACTIONS(1378), @@ -107573,46 +107707,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(1408), }, [878] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(5170), - [sym_dictionary_splat] = STATE(5170), + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(5299), + [sym_dictionary_splat] = STATE(5299), [sym_parenthesized_list_splat] = STATE(5305), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4169), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(5170), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), - [sym_identifier] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_RPAREN] = ACTIONS(2883), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4245), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(5299), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(2783), + [anon_sym_LPAREN] = ACTIONS(2785), + [anon_sym_RPAREN] = ACTIONS(2869), [anon_sym_STAR] = ACTIONS(1376), [anon_sym_print] = ACTIONS(1378), [anon_sym_match] = ACTIONS(1378), @@ -107643,46 +107777,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(1408), }, [879] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(5170), - [sym_dictionary_splat] = STATE(5170), + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(5299), + [sym_dictionary_splat] = STATE(5299), [sym_parenthesized_list_splat] = STATE(5305), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4169), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(5170), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), - [sym_identifier] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_RPAREN] = ACTIONS(2885), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4245), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(5299), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(2783), + [anon_sym_LPAREN] = ACTIONS(2785), + [anon_sym_RPAREN] = ACTIONS(2871), [anon_sym_STAR] = ACTIONS(1376), [anon_sym_print] = ACTIONS(1378), [anon_sym_match] = ACTIONS(1378), @@ -107713,46 +107847,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(1408), }, [880] = { - [sym_named_expression] = STATE(2459), - [sym__named_expression_lhs] = STATE(5688), - [sym_list_splat] = STATE(4756), - [sym_parenthesized_list_splat] = STATE(4756), - [sym_list_splat_pattern] = STATE(2477), - [sym_as_pattern] = STATE(2459), - [sym_expression] = STATE(3639), - [sym_primary_expression] = STATE(2060), - [sym_not_operator] = STATE(2459), - [sym_boolean_operator] = STATE(2459), - [sym_binary_operator] = STATE(2457), - [sym_unary_operator] = STATE(2457), - [sym_comparison_operator] = STATE(2459), - [sym_lambda] = STATE(2459), - [sym_yield] = STATE(4786), - [sym_attribute] = STATE(2457), - [sym_subscript] = STATE(2457), - [sym_ellipsis] = STATE(2457), - [sym_call] = STATE(2457), - [sym_list] = STATE(2457), - [sym_set] = STATE(2457), - [sym_tuple] = STATE(2457), - [sym_dictionary] = STATE(2457), - [sym_list_comprehension] = STATE(2457), - [sym_dictionary_comprehension] = STATE(2457), - [sym_set_comprehension] = STATE(2457), - [sym_generator_expression] = STATE(2457), - [sym_parenthesized_expression] = STATE(2457), - [sym__collection_elements] = STATE(5448), - [sym_conditional_expression] = STATE(2459), - [sym_concatenated_string] = STATE(2457), - [sym_string] = STATE(2170), - [sym_none] = STATE(2457), - [sym_await] = STATE(2457), - [sym_new_expression] = STATE(2459), - [sym_sizeof_expression] = STATE(2457), - [sym_cast_expression] = STATE(2457), - [sym_identifier] = ACTIONS(2761), - [anon_sym_LPAREN] = ACTIONS(2721), - [anon_sym_RPAREN] = ACTIONS(2887), + [sym_named_expression] = STATE(2421), + [sym__named_expression_lhs] = STATE(5522), + [sym_list_splat] = STATE(4708), + [sym_parenthesized_list_splat] = STATE(4708), + [sym_list_splat_pattern] = STATE(2472), + [sym_as_pattern] = STATE(2421), + [sym_expression] = STATE(3659), + [sym_primary_expression] = STATE(2066), + [sym_not_operator] = STATE(2421), + [sym_boolean_operator] = STATE(2421), + [sym_binary_operator] = STATE(2414), + [sym_unary_operator] = STATE(2414), + [sym_comparison_operator] = STATE(2421), + [sym_lambda] = STATE(2421), + [sym_yield] = STATE(4842), + [sym_attribute] = STATE(2414), + [sym_subscript] = STATE(2414), + [sym_ellipsis] = STATE(2414), + [sym_call] = STATE(2414), + [sym_list] = STATE(2414), + [sym_set] = STATE(2414), + [sym_tuple] = STATE(2414), + [sym_dictionary] = STATE(2414), + [sym_list_comprehension] = STATE(2414), + [sym_dictionary_comprehension] = STATE(2414), + [sym_set_comprehension] = STATE(2414), + [sym_generator_expression] = STATE(2414), + [sym_parenthesized_expression] = STATE(2414), + [sym__collection_elements] = STATE(5434), + [sym_conditional_expression] = STATE(2421), + [sym_concatenated_string] = STATE(2414), + [sym_string] = STATE(2147), + [sym_none] = STATE(2414), + [sym_await] = STATE(2414), + [sym_new_expression] = STATE(2421), + [sym_sizeof_expression] = STATE(2414), + [sym_cast_expression] = STATE(2414), + [sym_identifier] = ACTIONS(2787), + [anon_sym_LPAREN] = ACTIONS(2747), + [anon_sym_RPAREN] = ACTIONS(2863), [anon_sym_STAR] = ACTIONS(1320), [anon_sym_print] = ACTIONS(1470), [anon_sym_match] = ACTIONS(1470), @@ -107783,116 +107917,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(1362), }, [881] = { - [sym_named_expression] = STATE(2421), - [sym__named_expression_lhs] = STATE(5414), - [sym_list_splat] = STATE(5086), - [sym_parenthesized_list_splat] = STATE(5086), - [sym_list_splat_pattern] = STATE(2523), - [sym_as_pattern] = STATE(2421), - [sym_expression] = STATE(3691), - [sym_primary_expression] = STATE(2063), - [sym_not_operator] = STATE(2421), - [sym_boolean_operator] = STATE(2421), - [sym_binary_operator] = STATE(2418), - [sym_unary_operator] = STATE(2418), - [sym_comparison_operator] = STATE(2421), - [sym_lambda] = STATE(2421), - [sym_yield] = STATE(5086), - [sym_attribute] = STATE(2418), - [sym_subscript] = STATE(2418), - [sym_ellipsis] = STATE(2418), - [sym_call] = STATE(2418), - [sym_list] = STATE(2418), - [sym_set] = STATE(2418), - [sym_tuple] = STATE(2418), - [sym_dictionary] = STATE(2418), - [sym_list_comprehension] = STATE(2418), - [sym_dictionary_comprehension] = STATE(2418), - [sym_set_comprehension] = STATE(2418), - [sym_generator_expression] = STATE(2418), - [sym_parenthesized_expression] = STATE(2418), - [sym__collection_elements] = STATE(5601), - [sym_conditional_expression] = STATE(2421), - [sym_concatenated_string] = STATE(2418), - [sym_string] = STATE(2157), - [sym_none] = STATE(2418), - [sym_await] = STATE(2418), - [sym_new_expression] = STATE(2421), - [sym_sizeof_expression] = STATE(2418), - [sym_cast_expression] = STATE(2418), - [sym_identifier] = ACTIONS(2803), - [anon_sym_LPAREN] = ACTIONS(2805), - [anon_sym_STAR] = ACTIONS(2515), - [anon_sym_print] = ACTIONS(2807), - [anon_sym_match] = ACTIONS(2807), - [anon_sym_async] = ACTIONS(2807), - [anon_sym_exec] = ACTIONS(2807), - [anon_sym_LBRACK] = ACTIONS(2485), - [anon_sym_RBRACK] = ACTIONS(2889), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2523), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2525), - [anon_sym_lambda] = ACTIONS(2527), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2811), - [anon_sym_api] = ACTIONS(2807), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2533), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), + [sym_named_expression] = STATE(2493), + [sym__named_expression_lhs] = STATE(5681), + [sym_list_splat] = STATE(4860), + [sym_parenthesized_list_splat] = STATE(4860), + [sym_list_splat_pattern] = STATE(2415), + [sym_as_pattern] = STATE(2493), + [sym_expression] = STATE(3695), + [sym_primary_expression] = STATE(2070), + [sym_not_operator] = STATE(2493), + [sym_boolean_operator] = STATE(2493), + [sym_binary_operator] = STATE(2470), + [sym_unary_operator] = STATE(2470), + [sym_comparison_operator] = STATE(2493), + [sym_lambda] = STATE(2493), + [sym_yield] = STATE(4860), + [sym_attribute] = STATE(2470), + [sym_subscript] = STATE(2470), + [sym_ellipsis] = STATE(2470), + [sym_call] = STATE(2470), + [sym_list] = STATE(2470), + [sym_set] = STATE(2470), + [sym_tuple] = STATE(2470), + [sym_dictionary] = STATE(2470), + [sym_list_comprehension] = STATE(2470), + [sym_dictionary_comprehension] = STATE(2470), + [sym_set_comprehension] = STATE(2470), + [sym_generator_expression] = STATE(2470), + [sym_parenthesized_expression] = STATE(2470), + [sym__collection_elements] = STATE(5588), + [sym_conditional_expression] = STATE(2493), + [sym_concatenated_string] = STATE(2470), + [sym_string] = STATE(2177), + [sym_none] = STATE(2470), + [sym_await] = STATE(2470), + [sym_new_expression] = STATE(2493), + [sym_sizeof_expression] = STATE(2470), + [sym_cast_expression] = STATE(2470), + [sym_identifier] = ACTIONS(2815), + [anon_sym_LPAREN] = ACTIONS(2817), + [anon_sym_STAR] = ACTIONS(2553), + [anon_sym_print] = ACTIONS(2819), + [anon_sym_match] = ACTIONS(2819), + [anon_sym_async] = ACTIONS(2819), + [anon_sym_exec] = ACTIONS(2819), + [anon_sym_LBRACK] = ACTIONS(2495), + [anon_sym_RBRACK] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2499), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_not] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_TILDE] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2563), + [anon_sym_lambda] = ACTIONS(2565), + [anon_sym_yield] = ACTIONS(2567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2503), + [anon_sym_None] = ACTIONS(2505), + [sym_integer] = ACTIONS(2487), + [sym_float] = ACTIONS(2507), + [anon_sym_await] = ACTIONS(2823), + [anon_sym_api] = ACTIONS(2819), + [sym_true] = ACTIONS(2487), + [sym_false] = ACTIONS(2487), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2571), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_string_start] = ACTIONS(2513), }, [882] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(5170), - [sym_dictionary_splat] = STATE(5170), + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(5299), + [sym_dictionary_splat] = STATE(5299), [sym_parenthesized_list_splat] = STATE(5305), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4169), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(5170), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), - [sym_identifier] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_RPAREN] = ACTIONS(2891), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4245), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(5299), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(2783), + [anon_sym_LPAREN] = ACTIONS(2785), + [anon_sym_RPAREN] = ACTIONS(2875), [anon_sym_STAR] = ACTIONS(1376), [anon_sym_print] = ACTIONS(1378), [anon_sym_match] = ACTIONS(1378), @@ -107923,46 +108057,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(1408), }, [883] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(5170), - [sym_dictionary_splat] = STATE(5170), + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(5299), + [sym_dictionary_splat] = STATE(5299), [sym_parenthesized_list_splat] = STATE(5305), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4169), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(5170), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), - [sym_identifier] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_RPAREN] = ACTIONS(2893), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4245), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(5299), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(2783), + [anon_sym_LPAREN] = ACTIONS(2785), + [anon_sym_RPAREN] = ACTIONS(2877), [anon_sym_STAR] = ACTIONS(1376), [anon_sym_print] = ACTIONS(1378), [anon_sym_match] = ACTIONS(1378), @@ -107993,46 +108127,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(1408), }, [884] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(5170), - [sym_dictionary_splat] = STATE(5170), + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(5299), + [sym_dictionary_splat] = STATE(5299), [sym_parenthesized_list_splat] = STATE(5305), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4169), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(5170), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), - [sym_identifier] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_RPAREN] = ACTIONS(2895), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4245), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(5299), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(2783), + [anon_sym_LPAREN] = ACTIONS(2785), + [anon_sym_RPAREN] = ACTIONS(2879), [anon_sym_STAR] = ACTIONS(1376), [anon_sym_print] = ACTIONS(1378), [anon_sym_match] = ACTIONS(1378), @@ -108063,46 +108197,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(1408), }, [885] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(5170), - [sym_dictionary_splat] = STATE(5170), + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(5299), + [sym_dictionary_splat] = STATE(5299), [sym_parenthesized_list_splat] = STATE(5305), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4169), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(5170), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), - [sym_identifier] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_RPAREN] = ACTIONS(2897), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4245), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(5299), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(2783), + [anon_sym_LPAREN] = ACTIONS(2785), + [anon_sym_RPAREN] = ACTIONS(2881), [anon_sym_STAR] = ACTIONS(1376), [anon_sym_print] = ACTIONS(1378), [anon_sym_match] = ACTIONS(1378), @@ -108133,46 +108267,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(1408), }, [886] = { - [sym_named_expression] = STATE(2459), - [sym__named_expression_lhs] = STATE(5688), - [sym_list_splat] = STATE(4714), - [sym_parenthesized_list_splat] = STATE(4718), - [sym_list_splat_pattern] = STATE(2477), - [sym_as_pattern] = STATE(2459), - [sym_expression] = STATE(3639), - [sym_primary_expression] = STATE(2060), - [sym_not_operator] = STATE(2459), - [sym_boolean_operator] = STATE(2459), - [sym_binary_operator] = STATE(2457), - [sym_unary_operator] = STATE(2457), - [sym_comparison_operator] = STATE(2459), - [sym_lambda] = STATE(2459), - [sym_yield] = STATE(4786), - [sym_attribute] = STATE(2457), - [sym_subscript] = STATE(2457), - [sym_ellipsis] = STATE(2457), - [sym_call] = STATE(2457), - [sym_list] = STATE(2457), - [sym_set] = STATE(2457), - [sym_tuple] = STATE(2457), - [sym_dictionary] = STATE(2457), - [sym_list_comprehension] = STATE(2457), - [sym_dictionary_comprehension] = STATE(2457), - [sym_set_comprehension] = STATE(2457), - [sym_generator_expression] = STATE(2457), - [sym_parenthesized_expression] = STATE(2457), - [sym__collection_elements] = STATE(5448), - [sym_conditional_expression] = STATE(2459), - [sym_concatenated_string] = STATE(2457), - [sym_string] = STATE(2170), - [sym_none] = STATE(2457), - [sym_await] = STATE(2457), - [sym_new_expression] = STATE(2459), - [sym_sizeof_expression] = STATE(2457), - [sym_cast_expression] = STATE(2457), - [sym_identifier] = ACTIONS(2761), - [anon_sym_LPAREN] = ACTIONS(2721), - [anon_sym_RPAREN] = ACTIONS(2887), + [sym_named_expression] = STATE(2421), + [sym__named_expression_lhs] = STATE(5522), + [sym_list_splat] = STATE(4708), + [sym_parenthesized_list_splat] = STATE(4708), + [sym_list_splat_pattern] = STATE(2472), + [sym_as_pattern] = STATE(2421), + [sym_expression] = STATE(3652), + [sym_primary_expression] = STATE(2066), + [sym_not_operator] = STATE(2421), + [sym_boolean_operator] = STATE(2421), + [sym_binary_operator] = STATE(2414), + [sym_unary_operator] = STATE(2414), + [sym_comparison_operator] = STATE(2421), + [sym_lambda] = STATE(2421), + [sym_yield] = STATE(4808), + [sym_attribute] = STATE(2414), + [sym_subscript] = STATE(2414), + [sym_ellipsis] = STATE(2414), + [sym_call] = STATE(2414), + [sym_list] = STATE(2414), + [sym_set] = STATE(2414), + [sym_tuple] = STATE(2414), + [sym_dictionary] = STATE(2414), + [sym_list_comprehension] = STATE(2414), + [sym_dictionary_comprehension] = STATE(2414), + [sym_set_comprehension] = STATE(2414), + [sym_generator_expression] = STATE(2414), + [sym_parenthesized_expression] = STATE(2414), + [sym__collection_elements] = STATE(5711), + [sym_conditional_expression] = STATE(2421), + [sym_concatenated_string] = STATE(2414), + [sym_string] = STATE(2147), + [sym_none] = STATE(2414), + [sym_await] = STATE(2414), + [sym_new_expression] = STATE(2421), + [sym_sizeof_expression] = STATE(2414), + [sym_cast_expression] = STATE(2414), + [sym_identifier] = ACTIONS(2787), + [anon_sym_LPAREN] = ACTIONS(2747), + [anon_sym_RPAREN] = ACTIONS(2883), [anon_sym_STAR] = ACTIONS(1320), [anon_sym_print] = ACTIONS(1470), [anon_sym_match] = ACTIONS(1470), @@ -108203,46 +108337,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(1362), }, [887] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(5170), - [sym_dictionary_splat] = STATE(5170), + [sym_named_expression] = STATE(2493), + [sym__named_expression_lhs] = STATE(5681), + [sym_list_splat] = STATE(4860), + [sym_parenthesized_list_splat] = STATE(4860), + [sym_list_splat_pattern] = STATE(2415), + [sym_as_pattern] = STATE(2493), + [sym_expression] = STATE(3692), + [sym_primary_expression] = STATE(2070), + [sym_not_operator] = STATE(2493), + [sym_boolean_operator] = STATE(2493), + [sym_binary_operator] = STATE(2470), + [sym_unary_operator] = STATE(2470), + [sym_comparison_operator] = STATE(2493), + [sym_lambda] = STATE(2493), + [sym_yield] = STATE(4860), + [sym_attribute] = STATE(2470), + [sym_subscript] = STATE(2470), + [sym_ellipsis] = STATE(2470), + [sym_call] = STATE(2470), + [sym_list] = STATE(2470), + [sym_set] = STATE(2470), + [sym_tuple] = STATE(2470), + [sym_dictionary] = STATE(2470), + [sym_list_comprehension] = STATE(2470), + [sym_dictionary_comprehension] = STATE(2470), + [sym_set_comprehension] = STATE(2470), + [sym_generator_expression] = STATE(2470), + [sym_parenthesized_expression] = STATE(2470), + [sym__collection_elements] = STATE(5442), + [sym_conditional_expression] = STATE(2493), + [sym_concatenated_string] = STATE(2470), + [sym_string] = STATE(2177), + [sym_none] = STATE(2470), + [sym_await] = STATE(2470), + [sym_new_expression] = STATE(2493), + [sym_sizeof_expression] = STATE(2470), + [sym_cast_expression] = STATE(2470), + [sym_identifier] = ACTIONS(2815), + [anon_sym_LPAREN] = ACTIONS(2817), + [anon_sym_STAR] = ACTIONS(2553), + [anon_sym_print] = ACTIONS(2819), + [anon_sym_match] = ACTIONS(2819), + [anon_sym_async] = ACTIONS(2819), + [anon_sym_exec] = ACTIONS(2819), + [anon_sym_LBRACK] = ACTIONS(2495), + [anon_sym_RBRACK] = ACTIONS(2885), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2499), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_not] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_TILDE] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2563), + [anon_sym_lambda] = ACTIONS(2565), + [anon_sym_yield] = ACTIONS(2567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2503), + [anon_sym_None] = ACTIONS(2505), + [sym_integer] = ACTIONS(2487), + [sym_float] = ACTIONS(2507), + [anon_sym_await] = ACTIONS(2823), + [anon_sym_api] = ACTIONS(2819), + [sym_true] = ACTIONS(2487), + [sym_false] = ACTIONS(2487), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2571), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_string_start] = ACTIONS(2513), + }, + [888] = { + [sym_named_expression] = STATE(2421), + [sym__named_expression_lhs] = STATE(5522), + [sym_list_splat] = STATE(4708), + [sym_parenthesized_list_splat] = STATE(4708), + [sym_list_splat_pattern] = STATE(2472), + [sym_as_pattern] = STATE(2421), + [sym_expression] = STATE(3660), + [sym_primary_expression] = STATE(2066), + [sym_not_operator] = STATE(2421), + [sym_boolean_operator] = STATE(2421), + [sym_binary_operator] = STATE(2414), + [sym_unary_operator] = STATE(2414), + [sym_comparison_operator] = STATE(2421), + [sym_lambda] = STATE(2421), + [sym_yield] = STATE(4837), + [sym_attribute] = STATE(2414), + [sym_subscript] = STATE(2414), + [sym_ellipsis] = STATE(2414), + [sym_call] = STATE(2414), + [sym_list] = STATE(2414), + [sym_set] = STATE(2414), + [sym_tuple] = STATE(2414), + [sym_dictionary] = STATE(2414), + [sym_list_comprehension] = STATE(2414), + [sym_dictionary_comprehension] = STATE(2414), + [sym_set_comprehension] = STATE(2414), + [sym_generator_expression] = STATE(2414), + [sym_parenthesized_expression] = STATE(2414), + [sym__collection_elements] = STATE(5713), + [sym_conditional_expression] = STATE(2421), + [sym_concatenated_string] = STATE(2414), + [sym_string] = STATE(2147), + [sym_none] = STATE(2414), + [sym_await] = STATE(2414), + [sym_new_expression] = STATE(2421), + [sym_sizeof_expression] = STATE(2414), + [sym_cast_expression] = STATE(2414), + [sym_identifier] = ACTIONS(2787), + [anon_sym_LPAREN] = ACTIONS(2747), + [anon_sym_RPAREN] = ACTIONS(2887), + [anon_sym_STAR] = ACTIONS(1320), + [anon_sym_print] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1470), + [anon_sym_async] = ACTIONS(1470), + [anon_sym_exec] = ACTIONS(1470), + [anon_sym_LBRACK] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1326), + [anon_sym_LBRACE] = ACTIONS(1328), + [anon_sym_PLUS] = ACTIONS(1326), + [anon_sym_not] = ACTIONS(1330), + [anon_sym_AMP] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1326), + [anon_sym_LT] = ACTIONS(1332), + [anon_sym_lambda] = ACTIONS(1334), + [anon_sym_yield] = ACTIONS(1336), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1338), + [anon_sym_None] = ACTIONS(1340), + [sym_integer] = ACTIONS(1342), + [sym_float] = ACTIONS(1344), + [anon_sym_await] = ACTIONS(1474), + [anon_sym_api] = ACTIONS(1470), + [sym_true] = ACTIONS(1342), + [sym_false] = ACTIONS(1342), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1350), + [anon_sym_sizeof] = ACTIONS(1360), + [sym_string_start] = ACTIONS(1362), + }, + [889] = { + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(5299), + [sym_dictionary_splat] = STATE(5299), [sym_parenthesized_list_splat] = STATE(5305), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4169), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(5170), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), - [sym_identifier] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_RPAREN] = ACTIONS(2899), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4245), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(5299), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(2783), + [anon_sym_LPAREN] = ACTIONS(2785), + [anon_sym_RPAREN] = ACTIONS(2889), [anon_sym_STAR] = ACTIONS(1376), [anon_sym_print] = ACTIONS(1378), [anon_sym_match] = ACTIONS(1378), @@ -108272,47 +108546,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1406), [sym_string_start] = ACTIONS(1408), }, - [888] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(5170), - [sym_dictionary_splat] = STATE(5170), + [890] = { + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(5299), + [sym_dictionary_splat] = STATE(5299), [sym_parenthesized_list_splat] = STATE(5305), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4169), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(5170), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), - [sym_identifier] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_RPAREN] = ACTIONS(2901), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4245), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(5299), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(2783), + [anon_sym_LPAREN] = ACTIONS(2785), + [anon_sym_RPAREN] = ACTIONS(2891), [anon_sym_STAR] = ACTIONS(1376), [anon_sym_print] = ACTIONS(1378), [anon_sym_match] = ACTIONS(1378), @@ -108342,47 +108616,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1406), [sym_string_start] = ACTIONS(1408), }, - [889] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(5170), - [sym_dictionary_splat] = STATE(5170), + [891] = { + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(5299), + [sym_dictionary_splat] = STATE(5299), [sym_parenthesized_list_splat] = STATE(5305), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4169), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(5170), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), - [sym_identifier] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_RPAREN] = ACTIONS(2903), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4245), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(5299), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(2783), + [anon_sym_LPAREN] = ACTIONS(2785), + [anon_sym_RPAREN] = ACTIONS(2893), [anon_sym_STAR] = ACTIONS(1376), [anon_sym_print] = ACTIONS(1378), [anon_sym_match] = ACTIONS(1378), @@ -108412,47 +108686,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1406), [sym_string_start] = ACTIONS(1408), }, - [890] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(5170), - [sym_dictionary_splat] = STATE(5170), + [892] = { + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(5299), + [sym_dictionary_splat] = STATE(5299), [sym_parenthesized_list_splat] = STATE(5305), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4169), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(5170), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), - [sym_identifier] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_RPAREN] = ACTIONS(2905), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4245), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(5299), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(2783), + [anon_sym_LPAREN] = ACTIONS(2785), + [anon_sym_RPAREN] = ACTIONS(2895), [anon_sym_STAR] = ACTIONS(1376), [anon_sym_print] = ACTIONS(1378), [anon_sym_match] = ACTIONS(1378), @@ -108482,47 +108756,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1406), [sym_string_start] = ACTIONS(1408), }, - [891] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(5170), - [sym_dictionary_splat] = STATE(5170), + [893] = { + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(5299), + [sym_dictionary_splat] = STATE(5299), [sym_parenthesized_list_splat] = STATE(5305), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4169), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(5170), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), - [sym_identifier] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_RPAREN] = ACTIONS(2907), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4245), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(5299), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(2783), + [anon_sym_LPAREN] = ACTIONS(2785), + [anon_sym_RPAREN] = ACTIONS(2897), [anon_sym_STAR] = ACTIONS(1376), [anon_sym_print] = ACTIONS(1378), [anon_sym_match] = ACTIONS(1378), @@ -108552,47 +108826,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1406), [sym_string_start] = ACTIONS(1408), }, - [892] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(5170), - [sym_dictionary_splat] = STATE(5170), + [894] = { + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(5299), + [sym_dictionary_splat] = STATE(5299), [sym_parenthesized_list_splat] = STATE(5305), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4169), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(5170), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), - [sym_identifier] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_RPAREN] = ACTIONS(2909), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4245), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(5299), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(2783), + [anon_sym_LPAREN] = ACTIONS(2785), + [anon_sym_RPAREN] = ACTIONS(2899), [anon_sym_STAR] = ACTIONS(1376), [anon_sym_print] = ACTIONS(1378), [anon_sym_match] = ACTIONS(1378), @@ -108622,47 +108896,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1406), [sym_string_start] = ACTIONS(1408), }, - [893] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(5170), - [sym_dictionary_splat] = STATE(5170), + [895] = { + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(5299), + [sym_dictionary_splat] = STATE(5299), [sym_parenthesized_list_splat] = STATE(5305), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4169), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(5170), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), - [sym_identifier] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_RPAREN] = ACTIONS(2911), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4245), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(5299), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(2783), + [anon_sym_LPAREN] = ACTIONS(2785), + [anon_sym_RPAREN] = ACTIONS(2901), [anon_sym_STAR] = ACTIONS(1376), [anon_sym_print] = ACTIONS(1378), [anon_sym_match] = ACTIONS(1378), @@ -108692,47 +108966,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1406), [sym_string_start] = ACTIONS(1408), }, - [894] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(5170), - [sym_dictionary_splat] = STATE(5170), + [896] = { + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(5299), + [sym_dictionary_splat] = STATE(5299), [sym_parenthesized_list_splat] = STATE(5305), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4169), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(5170), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), - [sym_identifier] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_RPAREN] = ACTIONS(2913), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4245), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(5299), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(2783), + [anon_sym_LPAREN] = ACTIONS(2785), + [anon_sym_RPAREN] = ACTIONS(2903), [anon_sym_STAR] = ACTIONS(1376), [anon_sym_print] = ACTIONS(1378), [anon_sym_match] = ACTIONS(1378), @@ -108762,47 +109036,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1406), [sym_string_start] = ACTIONS(1408), }, - [895] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(5170), - [sym_dictionary_splat] = STATE(5170), + [897] = { + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(5299), + [sym_dictionary_splat] = STATE(5299), [sym_parenthesized_list_splat] = STATE(5305), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4169), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(5170), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), - [sym_identifier] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_RPAREN] = ACTIONS(2915), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4245), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(5299), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(2783), + [anon_sym_LPAREN] = ACTIONS(2785), + [anon_sym_RPAREN] = ACTIONS(2905), [anon_sym_STAR] = ACTIONS(1376), [anon_sym_print] = ACTIONS(1378), [anon_sym_match] = ACTIONS(1378), @@ -108832,47 +109106,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1406), [sym_string_start] = ACTIONS(1408), }, - [896] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(5170), - [sym_dictionary_splat] = STATE(5170), + [898] = { + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(5299), + [sym_dictionary_splat] = STATE(5299), [sym_parenthesized_list_splat] = STATE(5305), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4169), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(5170), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), - [sym_identifier] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_RPAREN] = ACTIONS(2917), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4245), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(5299), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(2783), + [anon_sym_LPAREN] = ACTIONS(2785), + [anon_sym_RPAREN] = ACTIONS(2907), [anon_sym_STAR] = ACTIONS(1376), [anon_sym_print] = ACTIONS(1378), [anon_sym_match] = ACTIONS(1378), @@ -108902,47 +109176,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1406), [sym_string_start] = ACTIONS(1408), }, - [897] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(5170), - [sym_dictionary_splat] = STATE(5170), + [899] = { + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(5299), + [sym_dictionary_splat] = STATE(5299), [sym_parenthesized_list_splat] = STATE(5305), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4169), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(5170), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), - [sym_identifier] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_RPAREN] = ACTIONS(2919), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4245), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(5299), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(2783), + [anon_sym_LPAREN] = ACTIONS(2785), + [anon_sym_RPAREN] = ACTIONS(2909), [anon_sym_STAR] = ACTIONS(1376), [anon_sym_print] = ACTIONS(1378), [anon_sym_match] = ACTIONS(1378), @@ -108972,47 +109246,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1406), [sym_string_start] = ACTIONS(1408), }, - [898] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(5170), - [sym_dictionary_splat] = STATE(5170), + [900] = { + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(5299), + [sym_dictionary_splat] = STATE(5299), [sym_parenthesized_list_splat] = STATE(5305), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4169), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(5170), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), - [sym_identifier] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_RPAREN] = ACTIONS(2921), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4245), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(5299), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(2783), + [anon_sym_LPAREN] = ACTIONS(2785), + [anon_sym_RPAREN] = ACTIONS(2911), [anon_sym_STAR] = ACTIONS(1376), [anon_sym_print] = ACTIONS(1378), [anon_sym_match] = ACTIONS(1378), @@ -109042,117 +109316,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1406), [sym_string_start] = ACTIONS(1408), }, - [899] = { - [sym_named_expression] = STATE(2459), - [sym__named_expression_lhs] = STATE(5688), - [sym_list_splat] = STATE(4756), - [sym_parenthesized_list_splat] = STATE(4756), - [sym_list_splat_pattern] = STATE(2477), - [sym_as_pattern] = STATE(2459), - [sym_expression] = STATE(3667), - [sym_primary_expression] = STATE(2060), - [sym_not_operator] = STATE(2459), - [sym_boolean_operator] = STATE(2459), - [sym_binary_operator] = STATE(2457), - [sym_unary_operator] = STATE(2457), - [sym_comparison_operator] = STATE(2459), - [sym_lambda] = STATE(2459), - [sym_yield] = STATE(4647), - [sym_attribute] = STATE(2457), - [sym_subscript] = STATE(2457), - [sym_ellipsis] = STATE(2457), - [sym_call] = STATE(2457), - [sym_list] = STATE(2457), - [sym_set] = STATE(2457), - [sym_tuple] = STATE(2457), - [sym_dictionary] = STATE(2457), - [sym_list_comprehension] = STATE(2457), - [sym_dictionary_comprehension] = STATE(2457), - [sym_set_comprehension] = STATE(2457), - [sym_generator_expression] = STATE(2457), - [sym_parenthesized_expression] = STATE(2457), - [sym__collection_elements] = STATE(5455), - [sym_conditional_expression] = STATE(2459), - [sym_concatenated_string] = STATE(2457), - [sym_string] = STATE(2170), - [sym_none] = STATE(2457), - [sym_await] = STATE(2457), - [sym_new_expression] = STATE(2459), - [sym_sizeof_expression] = STATE(2457), - [sym_cast_expression] = STATE(2457), - [sym_identifier] = ACTIONS(2761), - [anon_sym_LPAREN] = ACTIONS(2721), - [anon_sym_RPAREN] = ACTIONS(2763), - [anon_sym_STAR] = ACTIONS(1320), - [anon_sym_print] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1470), - [anon_sym_async] = ACTIONS(1470), - [anon_sym_exec] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(1472), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1326), - [anon_sym_not] = ACTIONS(1330), - [anon_sym_AMP] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1326), - [anon_sym_LT] = ACTIONS(1332), - [anon_sym_lambda] = ACTIONS(1334), - [anon_sym_yield] = ACTIONS(1336), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1338), - [anon_sym_None] = ACTIONS(1340), - [sym_integer] = ACTIONS(1342), - [sym_float] = ACTIONS(1344), - [anon_sym_await] = ACTIONS(1474), - [anon_sym_api] = ACTIONS(1470), - [sym_true] = ACTIONS(1342), - [sym_false] = ACTIONS(1342), + [901] = { + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(5299), + [sym_dictionary_splat] = STATE(5299), + [sym_parenthesized_list_splat] = STATE(5305), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4245), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(5299), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(2783), + [anon_sym_LPAREN] = ACTIONS(2785), + [anon_sym_RPAREN] = ACTIONS(2913), + [anon_sym_STAR] = ACTIONS(1376), + [anon_sym_print] = ACTIONS(1378), + [anon_sym_match] = ACTIONS(1378), + [anon_sym_async] = ACTIONS(1378), + [anon_sym_STAR_STAR] = ACTIONS(1380), + [anon_sym_exec] = ACTIONS(1378), + [anon_sym_LBRACK] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_LBRACE] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(1384), + [anon_sym_not] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_TILDE] = ACTIONS(1384), + [anon_sym_LT] = ACTIONS(1390), + [anon_sym_lambda] = ACTIONS(1392), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1394), + [anon_sym_None] = ACTIONS(1396), + [sym_integer] = ACTIONS(1398), + [sym_float] = ACTIONS(1400), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_api] = ACTIONS(1378), + [sym_true] = ACTIONS(1398), + [sym_false] = ACTIONS(1398), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1350), - [anon_sym_sizeof] = ACTIONS(1360), - [sym_string_start] = ACTIONS(1362), + [anon_sym_new] = ACTIONS(1404), + [anon_sym_sizeof] = ACTIONS(1406), + [sym_string_start] = ACTIONS(1408), }, - [900] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(5170), - [sym_dictionary_splat] = STATE(5170), + [902] = { + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(5299), + [sym_dictionary_splat] = STATE(5299), [sym_parenthesized_list_splat] = STATE(5305), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4169), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(5170), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), - [sym_identifier] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_RPAREN] = ACTIONS(2923), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4245), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(5299), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(2783), + [anon_sym_LPAREN] = ACTIONS(2785), + [anon_sym_RPAREN] = ACTIONS(2915), [anon_sym_STAR] = ACTIONS(1376), [anon_sym_print] = ACTIONS(1378), [anon_sym_match] = ACTIONS(1378), @@ -109182,120 +109456,191 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1406), [sym_string_start] = ACTIONS(1408), }, - [901] = { - [sym_named_expression] = STATE(3846), - [sym__named_expression_lhs] = STATE(5657), - [sym_list_splat] = STATE(5159), - [sym_parenthesized_list_splat] = STATE(5159), - [sym_list_splat_pattern] = STATE(2357), - [sym_as_pattern] = STATE(3846), - [sym_expression] = STATE(4183), - [sym_primary_expression] = STATE(2046), - [sym_not_operator] = STATE(3846), - [sym_boolean_operator] = STATE(3846), - [sym_binary_operator] = STATE(2255), - [sym_unary_operator] = STATE(2255), - [sym_comparison_operator] = STATE(3846), - [sym_lambda] = STATE(3846), - [sym_yield] = STATE(5159), - [sym_attribute] = STATE(2255), - [sym_subscript] = STATE(2255), - [sym_ellipsis] = STATE(2255), - [sym_call] = STATE(2255), - [sym_list] = STATE(2255), - [sym_set] = STATE(2255), - [sym_tuple] = STATE(2255), - [sym_dictionary] = STATE(2255), - [sym_list_comprehension] = STATE(2255), - [sym_dictionary_comprehension] = STATE(2255), - [sym_set_comprehension] = STATE(2255), - [sym_generator_expression] = STATE(2255), - [sym_parenthesized_expression] = STATE(2255), - [sym_conditional_expression] = STATE(3846), - [sym_concatenated_string] = STATE(2255), - [sym_string] = STATE(2073), - [sym_none] = STATE(2255), - [sym_await] = STATE(2255), - [sym_new_expression] = STATE(3846), - [sym_sizeof_expression] = STATE(2255), - [sym_cast_expression] = STATE(2255), - [sym_identifier] = ACTIONS(2793), - [anon_sym_LPAREN] = ACTIONS(2925), - [anon_sym_STAR] = ACTIONS(2927), - [anon_sym_print] = ACTIONS(2797), - [anon_sym_match] = ACTIONS(2797), - [anon_sym_async] = ACTIONS(2797), - [anon_sym_exec] = ACTIONS(2797), - [anon_sym_LBRACK] = ACTIONS(1913), - [anon_sym_DASH] = ACTIONS(1915), - [anon_sym_LBRACE] = ACTIONS(1917), - [anon_sym_RBRACE] = ACTIONS(2929), - [anon_sym_PLUS] = ACTIONS(1915), - [anon_sym_not] = ACTIONS(2931), - [anon_sym_AMP] = ACTIONS(1915), - [anon_sym_TILDE] = ACTIONS(1915), - [anon_sym_LT] = ACTIONS(2661), - [anon_sym_lambda] = ACTIONS(2933), - [anon_sym_yield] = ACTIONS(2555), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1921), - [anon_sym_None] = ACTIONS(1923), - [sym_integer] = ACTIONS(1905), - [sym_float] = ACTIONS(1925), - [anon_sym_await] = ACTIONS(2801), - [anon_sym_api] = ACTIONS(2797), - [sym_true] = ACTIONS(1905), - [sym_false] = ACTIONS(1905), + [903] = { + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(5299), + [sym_dictionary_splat] = STATE(5299), + [sym_parenthesized_list_splat] = STATE(5305), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4245), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(5299), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(2783), + [anon_sym_LPAREN] = ACTIONS(2785), + [anon_sym_RPAREN] = ACTIONS(2917), + [anon_sym_STAR] = ACTIONS(1376), + [anon_sym_print] = ACTIONS(1378), + [anon_sym_match] = ACTIONS(1378), + [anon_sym_async] = ACTIONS(1378), + [anon_sym_STAR_STAR] = ACTIONS(1380), + [anon_sym_exec] = ACTIONS(1378), + [anon_sym_LBRACK] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_LBRACE] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(1384), + [anon_sym_not] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_TILDE] = ACTIONS(1384), + [anon_sym_LT] = ACTIONS(1390), + [anon_sym_lambda] = ACTIONS(1392), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1394), + [anon_sym_None] = ACTIONS(1396), + [sym_integer] = ACTIONS(1398), + [sym_float] = ACTIONS(1400), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_api] = ACTIONS(1378), + [sym_true] = ACTIONS(1398), + [sym_false] = ACTIONS(1398), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2935), - [anon_sym_sizeof] = ACTIONS(1929), - [sym_string_start] = ACTIONS(1931), + [anon_sym_new] = ACTIONS(1404), + [anon_sym_sizeof] = ACTIONS(1406), + [sym_string_start] = ACTIONS(1408), }, - [902] = { - [sym_named_expression] = STATE(2459), - [sym__named_expression_lhs] = STATE(5688), - [sym_list_splat_pattern] = STATE(2477), - [sym_as_pattern] = STATE(2459), - [sym__expression_within_for_in_clause] = STATE(4344), - [sym_expression] = STATE(3953), - [sym_primary_expression] = STATE(2060), - [sym_not_operator] = STATE(2459), - [sym_boolean_operator] = STATE(2459), - [sym_binary_operator] = STATE(2457), - [sym_unary_operator] = STATE(2457), - [sym_comparison_operator] = STATE(2459), - [sym_lambda] = STATE(2459), - [sym_lambda_within_for_in_clause] = STATE(4344), - [sym_attribute] = STATE(2457), - [sym_subscript] = STATE(2457), - [sym_ellipsis] = STATE(2457), - [sym_call] = STATE(2457), - [sym_list] = STATE(2457), - [sym_set] = STATE(2457), - [sym_tuple] = STATE(2457), - [sym_dictionary] = STATE(2457), - [sym_list_comprehension] = STATE(2457), - [sym_dictionary_comprehension] = STATE(2457), - [sym_set_comprehension] = STATE(2457), - [sym_generator_expression] = STATE(2457), - [sym_parenthesized_expression] = STATE(2457), - [sym_conditional_expression] = STATE(2459), - [sym_concatenated_string] = STATE(2457), - [sym_string] = STATE(2170), - [sym_none] = STATE(2457), - [sym_await] = STATE(2457), - [sym_new_expression] = STATE(2459), - [sym_sizeof_expression] = STATE(2457), - [sym_cast_expression] = STATE(2457), - [sym_identifier] = ACTIONS(2761), - [anon_sym_LPAREN] = ACTIONS(2427), - [anon_sym_RPAREN] = ACTIONS(2937), - [anon_sym_STAR] = ACTIONS(2939), + [904] = { + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(5299), + [sym_dictionary_splat] = STATE(5299), + [sym_parenthesized_list_splat] = STATE(5305), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4245), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(5299), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(2783), + [anon_sym_LPAREN] = ACTIONS(2785), + [anon_sym_RPAREN] = ACTIONS(2919), + [anon_sym_STAR] = ACTIONS(1376), + [anon_sym_print] = ACTIONS(1378), + [anon_sym_match] = ACTIONS(1378), + [anon_sym_async] = ACTIONS(1378), + [anon_sym_STAR_STAR] = ACTIONS(1380), + [anon_sym_exec] = ACTIONS(1378), + [anon_sym_LBRACK] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_LBRACE] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(1384), + [anon_sym_not] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_TILDE] = ACTIONS(1384), + [anon_sym_LT] = ACTIONS(1390), + [anon_sym_lambda] = ACTIONS(1392), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1394), + [anon_sym_None] = ACTIONS(1396), + [sym_integer] = ACTIONS(1398), + [sym_float] = ACTIONS(1400), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_api] = ACTIONS(1378), + [sym_true] = ACTIONS(1398), + [sym_false] = ACTIONS(1398), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1404), + [anon_sym_sizeof] = ACTIONS(1406), + [sym_string_start] = ACTIONS(1408), + }, + [905] = { + [sym_named_expression] = STATE(2421), + [sym__named_expression_lhs] = STATE(5522), + [sym_list_splat] = STATE(5133), + [sym_parenthesized_list_splat] = STATE(5134), + [sym_list_splat_pattern] = STATE(2472), + [sym_as_pattern] = STATE(2421), + [sym_expression] = STATE(3652), + [sym_primary_expression] = STATE(2066), + [sym_not_operator] = STATE(2421), + [sym_boolean_operator] = STATE(2421), + [sym_binary_operator] = STATE(2414), + [sym_unary_operator] = STATE(2414), + [sym_comparison_operator] = STATE(2421), + [sym_lambda] = STATE(2421), + [sym_yield] = STATE(4808), + [sym_attribute] = STATE(2414), + [sym_subscript] = STATE(2414), + [sym_ellipsis] = STATE(2414), + [sym_call] = STATE(2414), + [sym_list] = STATE(2414), + [sym_set] = STATE(2414), + [sym_tuple] = STATE(2414), + [sym_dictionary] = STATE(2414), + [sym_list_comprehension] = STATE(2414), + [sym_dictionary_comprehension] = STATE(2414), + [sym_set_comprehension] = STATE(2414), + [sym_generator_expression] = STATE(2414), + [sym_parenthesized_expression] = STATE(2414), + [sym__collection_elements] = STATE(5711), + [sym_conditional_expression] = STATE(2421), + [sym_concatenated_string] = STATE(2414), + [sym_string] = STATE(2147), + [sym_none] = STATE(2414), + [sym_await] = STATE(2414), + [sym_new_expression] = STATE(2421), + [sym_sizeof_expression] = STATE(2414), + [sym_cast_expression] = STATE(2414), + [sym_identifier] = ACTIONS(2787), + [anon_sym_LPAREN] = ACTIONS(2747), + [anon_sym_RPAREN] = ACTIONS(2883), + [anon_sym_STAR] = ACTIONS(1320), [anon_sym_print] = ACTIONS(1470), - [anon_sym_if] = ACTIONS(2941), [anon_sym_match] = ACTIONS(1470), - [anon_sym_async] = ACTIONS(2941), - [anon_sym_for] = ACTIONS(2941), + [anon_sym_async] = ACTIONS(1470), [anon_sym_exec] = ACTIONS(1470), [anon_sym_LBRACK] = ACTIONS(1472), [anon_sym_DASH] = ACTIONS(1326), @@ -109305,7 +109650,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1326), [anon_sym_TILDE] = ACTIONS(1326), [anon_sym_LT] = ACTIONS(1332), - [anon_sym_lambda] = ACTIONS(2943), + [anon_sym_lambda] = ACTIONS(1334), + [anon_sym_yield] = ACTIONS(1336), [anon_sym_DOT_DOT_DOT] = ACTIONS(1338), [anon_sym_None] = ACTIONS(1340), [sym_integer] = ACTIONS(1342), @@ -109320,189 +109666,263 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1360), [sym_string_start] = ACTIONS(1362), }, - [903] = { - [sym_named_expression] = STATE(3846), - [sym__named_expression_lhs] = STATE(5657), - [sym_list_splat] = STATE(5159), - [sym_parenthesized_list_splat] = STATE(5159), - [sym_list_splat_pattern] = STATE(2357), - [sym_as_pattern] = STATE(3846), - [sym_expression] = STATE(4183), - [sym_primary_expression] = STATE(2046), - [sym_not_operator] = STATE(3846), - [sym_boolean_operator] = STATE(3846), - [sym_binary_operator] = STATE(2255), - [sym_unary_operator] = STATE(2255), - [sym_comparison_operator] = STATE(3846), - [sym_lambda] = STATE(3846), - [sym_yield] = STATE(5159), - [sym_attribute] = STATE(2255), - [sym_subscript] = STATE(2255), - [sym_ellipsis] = STATE(2255), - [sym_call] = STATE(2255), - [sym_list] = STATE(2255), - [sym_set] = STATE(2255), - [sym_tuple] = STATE(2255), - [sym_dictionary] = STATE(2255), - [sym_list_comprehension] = STATE(2255), - [sym_dictionary_comprehension] = STATE(2255), - [sym_set_comprehension] = STATE(2255), - [sym_generator_expression] = STATE(2255), - [sym_parenthesized_expression] = STATE(2255), - [sym_conditional_expression] = STATE(3846), - [sym_concatenated_string] = STATE(2255), - [sym_string] = STATE(2073), - [sym_none] = STATE(2255), - [sym_await] = STATE(2255), - [sym_new_expression] = STATE(3846), - [sym_sizeof_expression] = STATE(2255), - [sym_cast_expression] = STATE(2255), - [sym_identifier] = ACTIONS(2793), - [anon_sym_LPAREN] = ACTIONS(2925), - [anon_sym_STAR] = ACTIONS(2927), - [anon_sym_print] = ACTIONS(2797), - [anon_sym_match] = ACTIONS(2797), - [anon_sym_async] = ACTIONS(2797), - [anon_sym_exec] = ACTIONS(2797), - [anon_sym_LBRACK] = ACTIONS(1913), - [anon_sym_DASH] = ACTIONS(1915), - [anon_sym_LBRACE] = ACTIONS(1917), - [anon_sym_RBRACE] = ACTIONS(2945), - [anon_sym_PLUS] = ACTIONS(1915), - [anon_sym_not] = ACTIONS(2931), - [anon_sym_AMP] = ACTIONS(1915), - [anon_sym_TILDE] = ACTIONS(1915), - [anon_sym_LT] = ACTIONS(2661), - [anon_sym_lambda] = ACTIONS(2933), - [anon_sym_yield] = ACTIONS(2555), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1921), - [anon_sym_None] = ACTIONS(1923), - [sym_integer] = ACTIONS(1905), - [sym_float] = ACTIONS(1925), - [anon_sym_await] = ACTIONS(2801), - [anon_sym_api] = ACTIONS(2797), - [sym_true] = ACTIONS(1905), - [sym_false] = ACTIONS(1905), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2935), - [anon_sym_sizeof] = ACTIONS(1929), - [sym_string_start] = ACTIONS(1931), + [906] = { + [sym_named_expression] = STATE(2493), + [sym__named_expression_lhs] = STATE(5681), + [sym_list_splat] = STATE(4860), + [sym_parenthesized_list_splat] = STATE(4860), + [sym_list_splat_pattern] = STATE(2415), + [sym_as_pattern] = STATE(2493), + [sym_expression] = STATE(3636), + [sym_primary_expression] = STATE(2070), + [sym_not_operator] = STATE(2493), + [sym_boolean_operator] = STATE(2493), + [sym_binary_operator] = STATE(2470), + [sym_unary_operator] = STATE(2470), + [sym_comparison_operator] = STATE(2493), + [sym_lambda] = STATE(2493), + [sym_yield] = STATE(4860), + [sym_attribute] = STATE(2470), + [sym_subscript] = STATE(2470), + [sym_ellipsis] = STATE(2470), + [sym_call] = STATE(2470), + [sym_list] = STATE(2470), + [sym_set] = STATE(2470), + [sym_tuple] = STATE(2470), + [sym_dictionary] = STATE(2470), + [sym_list_comprehension] = STATE(2470), + [sym_dictionary_comprehension] = STATE(2470), + [sym_set_comprehension] = STATE(2470), + [sym_generator_expression] = STATE(2470), + [sym_parenthesized_expression] = STATE(2470), + [sym__collection_elements] = STATE(5602), + [sym_conditional_expression] = STATE(2493), + [sym_concatenated_string] = STATE(2470), + [sym_string] = STATE(2177), + [sym_none] = STATE(2470), + [sym_await] = STATE(2470), + [sym_new_expression] = STATE(2493), + [sym_sizeof_expression] = STATE(2470), + [sym_cast_expression] = STATE(2470), + [sym_identifier] = ACTIONS(2815), + [anon_sym_LPAREN] = ACTIONS(2817), + [anon_sym_STAR] = ACTIONS(2553), + [anon_sym_print] = ACTIONS(2819), + [anon_sym_match] = ACTIONS(2819), + [anon_sym_async] = ACTIONS(2819), + [anon_sym_exec] = ACTIONS(2819), + [anon_sym_LBRACK] = ACTIONS(2495), + [anon_sym_RBRACK] = ACTIONS(2921), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2499), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_not] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_TILDE] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2563), + [anon_sym_lambda] = ACTIONS(2565), + [anon_sym_yield] = ACTIONS(2567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2503), + [anon_sym_None] = ACTIONS(2505), + [sym_integer] = ACTIONS(2487), + [sym_float] = ACTIONS(2507), + [anon_sym_await] = ACTIONS(2823), + [anon_sym_api] = ACTIONS(2819), + [sym_true] = ACTIONS(2487), + [sym_false] = ACTIONS(2487), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2571), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_string_start] = ACTIONS(2513), }, - [904] = { + [907] = { [sym_named_expression] = STATE(2421), - [sym__named_expression_lhs] = STATE(5414), - [sym_list_splat_pattern] = STATE(2523), + [sym__named_expression_lhs] = STATE(5522), + [sym_list_splat] = STATE(5063), + [sym_parenthesized_list_splat] = STATE(4789), + [sym_list_splat_pattern] = STATE(2472), [sym_as_pattern] = STATE(2421), - [sym__expression_within_for_in_clause] = STATE(4460), - [sym_expression] = STATE(3939), - [sym_primary_expression] = STATE(2063), + [sym_expression] = STATE(3640), + [sym_primary_expression] = STATE(2066), [sym_not_operator] = STATE(2421), [sym_boolean_operator] = STATE(2421), - [sym_binary_operator] = STATE(2418), - [sym_unary_operator] = STATE(2418), + [sym_binary_operator] = STATE(2414), + [sym_unary_operator] = STATE(2414), [sym_comparison_operator] = STATE(2421), [sym_lambda] = STATE(2421), - [sym_lambda_within_for_in_clause] = STATE(4460), - [sym_attribute] = STATE(2418), - [sym_subscript] = STATE(2418), - [sym_ellipsis] = STATE(2418), - [sym_call] = STATE(2418), - [sym_list] = STATE(2418), - [sym_set] = STATE(2418), - [sym_tuple] = STATE(2418), - [sym_dictionary] = STATE(2418), - [sym_list_comprehension] = STATE(2418), - [sym_dictionary_comprehension] = STATE(2418), - [sym_set_comprehension] = STATE(2418), - [sym_generator_expression] = STATE(2418), - [sym_parenthesized_expression] = STATE(2418), + [sym_yield] = STATE(4804), + [sym_attribute] = STATE(2414), + [sym_subscript] = STATE(2414), + [sym_ellipsis] = STATE(2414), + [sym_call] = STATE(2414), + [sym_list] = STATE(2414), + [sym_set] = STATE(2414), + [sym_tuple] = STATE(2414), + [sym_dictionary] = STATE(2414), + [sym_list_comprehension] = STATE(2414), + [sym_dictionary_comprehension] = STATE(2414), + [sym_set_comprehension] = STATE(2414), + [sym_generator_expression] = STATE(2414), + [sym_parenthesized_expression] = STATE(2414), + [sym__collection_elements] = STATE(5702), [sym_conditional_expression] = STATE(2421), - [sym_concatenated_string] = STATE(2418), - [sym_string] = STATE(2157), - [sym_none] = STATE(2418), - [sym_await] = STATE(2418), + [sym_concatenated_string] = STATE(2414), + [sym_string] = STATE(2147), + [sym_none] = STATE(2414), + [sym_await] = STATE(2414), [sym_new_expression] = STATE(2421), - [sym_sizeof_expression] = STATE(2418), - [sym_cast_expression] = STATE(2418), - [sym_identifier] = ACTIONS(2803), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2947), - [anon_sym_print] = ACTIONS(2807), - [anon_sym_if] = ACTIONS(2949), - [anon_sym_match] = ACTIONS(2807), - [anon_sym_async] = ACTIONS(2949), - [anon_sym_for] = ACTIONS(2949), - [anon_sym_exec] = ACTIONS(2807), - [anon_sym_LBRACK] = ACTIONS(2485), - [anon_sym_RBRACK] = ACTIONS(2951), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2523), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2525), - [anon_sym_lambda] = ACTIONS(2953), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2811), - [anon_sym_api] = ACTIONS(2807), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2533), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), + [sym_sizeof_expression] = STATE(2414), + [sym_cast_expression] = STATE(2414), + [sym_identifier] = ACTIONS(2787), + [anon_sym_LPAREN] = ACTIONS(2747), + [anon_sym_RPAREN] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1320), + [anon_sym_print] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1470), + [anon_sym_async] = ACTIONS(1470), + [anon_sym_exec] = ACTIONS(1470), + [anon_sym_LBRACK] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1326), + [anon_sym_LBRACE] = ACTIONS(1328), + [anon_sym_PLUS] = ACTIONS(1326), + [anon_sym_not] = ACTIONS(1330), + [anon_sym_AMP] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1326), + [anon_sym_LT] = ACTIONS(1332), + [anon_sym_lambda] = ACTIONS(1334), + [anon_sym_yield] = ACTIONS(1336), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1338), + [anon_sym_None] = ACTIONS(1340), + [sym_integer] = ACTIONS(1342), + [sym_float] = ACTIONS(1344), + [anon_sym_await] = ACTIONS(1474), + [anon_sym_api] = ACTIONS(1470), + [sym_true] = ACTIONS(1342), + [sym_false] = ACTIONS(1342), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1350), + [anon_sym_sizeof] = ACTIONS(1360), + [sym_string_start] = ACTIONS(1362), }, - [905] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(5153), - [sym_parenthesized_list_splat] = STATE(5153), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4178), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_yield] = STATE(5153), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), - [sym_identifier] = ACTIONS(2955), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_RPAREN] = ACTIONS(2945), - [anon_sym_STAR] = ACTIONS(2957), - [anon_sym_print] = ACTIONS(2959), - [anon_sym_match] = ACTIONS(2959), - [anon_sym_async] = ACTIONS(2959), - [anon_sym_exec] = ACTIONS(2959), + [908] = { + [sym_named_expression] = STATE(3825), + [sym__named_expression_lhs] = STATE(5410), + [sym_expression_list] = STATE(4434), + [sym_list_splat_pattern] = STATE(2284), + [sym_as_pattern] = STATE(3825), + [sym_expression] = STATE(3771), + [sym_primary_expression] = STATE(2057), + [sym_not_operator] = STATE(3825), + [sym_boolean_operator] = STATE(3825), + [sym_binary_operator] = STATE(2257), + [sym_unary_operator] = STATE(2257), + [sym_comparison_operator] = STATE(3825), + [sym_lambda] = STATE(3825), + [sym_attribute] = STATE(2257), + [sym_subscript] = STATE(2257), + [sym_ellipsis] = STATE(2257), + [sym_call] = STATE(2257), + [sym_list] = STATE(2257), + [sym_set] = STATE(2257), + [sym_tuple] = STATE(2257), + [sym_dictionary] = STATE(2257), + [sym_list_comprehension] = STATE(2257), + [sym_dictionary_comprehension] = STATE(2257), + [sym_set_comprehension] = STATE(2257), + [sym_generator_expression] = STATE(2257), + [sym_parenthesized_expression] = STATE(2257), + [sym_conditional_expression] = STATE(3825), + [sym_concatenated_string] = STATE(2257), + [sym_string] = STATE(2089), + [sym_none] = STATE(2257), + [sym_await] = STATE(2257), + [sym_new_expression] = STATE(3825), + [sym_sizeof_expression] = STATE(2257), + [sym_cast_expression] = STATE(2257), + [sym_identifier] = ACTIONS(2923), + [anon_sym_from] = ACTIONS(2925), + [anon_sym_LPAREN] = ACTIONS(1943), + [anon_sym_STAR] = ACTIONS(2661), + [anon_sym_print] = ACTIONS(2927), + [anon_sym_COLON] = ACTIONS(2929), + [anon_sym_match] = ACTIONS(2927), + [anon_sym_async] = ACTIONS(2927), + [anon_sym_exec] = ACTIONS(2927), + [anon_sym_EQ] = ACTIONS(2929), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_DASH] = ACTIONS(1951), + [anon_sym_LBRACE] = ACTIONS(1953), + [anon_sym_RBRACE] = ACTIONS(2929), + [anon_sym_PLUS] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(2667), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_LT] = ACTIONS(2669), + [anon_sym_lambda] = ACTIONS(2671), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1957), + [anon_sym_None] = ACTIONS(1959), + [sym_type_conversion] = ACTIONS(2929), + [sym_integer] = ACTIONS(1941), + [sym_float] = ACTIONS(1961), + [anon_sym_await] = ACTIONS(2931), + [anon_sym_api] = ACTIONS(2927), + [sym_true] = ACTIONS(1941), + [sym_false] = ACTIONS(1941), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2677), + [anon_sym_sizeof] = ACTIONS(1965), + [sym_string_start] = ACTIONS(1967), + }, + [909] = { + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(5299), + [sym_dictionary_splat] = STATE(5299), + [sym_parenthesized_list_splat] = STATE(5305), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4245), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(5299), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(2783), + [anon_sym_LPAREN] = ACTIONS(2785), + [anon_sym_RPAREN] = ACTIONS(2933), + [anon_sym_STAR] = ACTIONS(1376), + [anon_sym_print] = ACTIONS(1378), + [anon_sym_match] = ACTIONS(1378), + [anon_sym_async] = ACTIONS(1378), + [anon_sym_STAR_STAR] = ACTIONS(1380), + [anon_sym_exec] = ACTIONS(1378), [anon_sym_LBRACK] = ACTIONS(1382), [anon_sym_DASH] = ACTIONS(1384), [anon_sym_LBRACE] = ACTIONS(1386), @@ -109512,13 +109932,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(1384), [anon_sym_LT] = ACTIONS(1390), [anon_sym_lambda] = ACTIONS(1392), - [anon_sym_yield] = ACTIONS(1336), [anon_sym_DOT_DOT_DOT] = ACTIONS(1394), [anon_sym_None] = ACTIONS(1396), [sym_integer] = ACTIONS(1398), [sym_float] = ACTIONS(1400), - [anon_sym_await] = ACTIONS(2961), - [anon_sym_api] = ACTIONS(2959), + [anon_sym_await] = ACTIONS(1402), + [anon_sym_api] = ACTIONS(1378), [sym_true] = ACTIONS(1398), [sym_false] = ACTIONS(1398), [sym_comment] = ACTIONS(3), @@ -109527,689 +109946,413 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1406), [sym_string_start] = ACTIONS(1408), }, - [906] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5609), - [sym_list_splat] = STATE(5346), - [sym_parenthesized_list_splat] = STATE(5346), - [sym_list_splat_pattern] = STATE(2591), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(4192), - [sym_primary_expression] = STATE(2077), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2631), - [sym_unary_operator] = STATE(2631), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_yield] = STATE(5346), - [sym_attribute] = STATE(2631), - [sym_subscript] = STATE(2631), - [sym_ellipsis] = STATE(2631), - [sym_call] = STATE(2631), - [sym_list] = STATE(2631), - [sym_set] = STATE(2631), - [sym_tuple] = STATE(2631), - [sym_dictionary] = STATE(2631), - [sym_list_comprehension] = STATE(2631), - [sym_dictionary_comprehension] = STATE(2631), - [sym_set_comprehension] = STATE(2631), - [sym_generator_expression] = STATE(2631), - [sym_parenthesized_expression] = STATE(2631), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2631), - [sym_string] = STATE(2218), - [sym_none] = STATE(2631), - [sym_await] = STATE(2631), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2631), - [sym_cast_expression] = STATE(2631), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(2965), - [anon_sym_STAR] = ACTIONS(2967), - [anon_sym_print] = ACTIONS(2631), - [anon_sym_match] = ACTIONS(2631), - [anon_sym_async] = ACTIONS(2631), - [anon_sym_exec] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_RBRACK] = ACTIONS(2929), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2639), - [anon_sym_lambda] = ACTIONS(2641), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2643), - [anon_sym_api] = ACTIONS(2631), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2645), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), - }, - [907] = { - [sym_named_expression] = STATE(2421), - [sym__named_expression_lhs] = STATE(5414), - [sym_list_splat_pattern] = STATE(2523), - [sym_as_pattern] = STATE(2421), - [sym__expression_within_for_in_clause] = STATE(4460), - [sym_expression] = STATE(3939), - [sym_primary_expression] = STATE(2063), - [sym_not_operator] = STATE(2421), - [sym_boolean_operator] = STATE(2421), - [sym_binary_operator] = STATE(2418), - [sym_unary_operator] = STATE(2418), - [sym_comparison_operator] = STATE(2421), - [sym_lambda] = STATE(2421), - [sym_lambda_within_for_in_clause] = STATE(4460), - [sym_attribute] = STATE(2418), - [sym_subscript] = STATE(2418), - [sym_ellipsis] = STATE(2418), - [sym_call] = STATE(2418), - [sym_list] = STATE(2418), - [sym_set] = STATE(2418), - [sym_tuple] = STATE(2418), - [sym_dictionary] = STATE(2418), - [sym_list_comprehension] = STATE(2418), - [sym_dictionary_comprehension] = STATE(2418), - [sym_set_comprehension] = STATE(2418), - [sym_generator_expression] = STATE(2418), - [sym_parenthesized_expression] = STATE(2418), - [sym_conditional_expression] = STATE(2421), - [sym_concatenated_string] = STATE(2418), - [sym_string] = STATE(2157), - [sym_none] = STATE(2418), - [sym_await] = STATE(2418), - [sym_new_expression] = STATE(2421), - [sym_sizeof_expression] = STATE(2418), - [sym_cast_expression] = STATE(2418), - [sym_identifier] = ACTIONS(2803), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2947), - [anon_sym_print] = ACTIONS(2807), - [anon_sym_if] = ACTIONS(2941), - [anon_sym_match] = ACTIONS(2807), - [anon_sym_async] = ACTIONS(2941), - [anon_sym_for] = ACTIONS(2941), - [anon_sym_exec] = ACTIONS(2807), - [anon_sym_LBRACK] = ACTIONS(2485), - [anon_sym_RBRACK] = ACTIONS(2937), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2523), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2525), - [anon_sym_lambda] = ACTIONS(2953), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2811), - [anon_sym_api] = ACTIONS(2807), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2533), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), - }, - [908] = { - [sym_elif_clause] = STATE(1091), - [sym_else_clause] = STATE(1667), - [aux_sym_if_statement_repeat1] = STATE(918), - [sym_identifier] = ACTIONS(2969), - [anon_sym_import] = ACTIONS(2969), - [anon_sym_cimport] = ACTIONS(2969), - [anon_sym_from] = ACTIONS(2969), - [anon_sym_LPAREN] = ACTIONS(2971), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_print] = ACTIONS(2969), - [anon_sym_assert] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_del] = ACTIONS(2969), - [anon_sym_raise] = ACTIONS(2969), - [anon_sym_pass] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_elif] = ACTIONS(2973), - [anon_sym_else] = ACTIONS(2769), - [anon_sym_match] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_with] = ACTIONS(2969), - [anon_sym_def] = ACTIONS(2969), - [anon_sym_global] = ACTIONS(2969), - [anon_sym_nonlocal] = ACTIONS(2969), - [anon_sym_exec] = ACTIONS(2969), - [anon_sym_type] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2971), - [anon_sym_AT] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2971), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_PLUS] = ACTIONS(2971), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_LT] = ACTIONS(2971), - [anon_sym_lambda] = ACTIONS(2969), - [anon_sym_yield] = ACTIONS(2969), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2971), - [anon_sym_None] = ACTIONS(2969), - [sym_integer] = ACTIONS(2969), - [sym_float] = ACTIONS(2971), - [anon_sym_await] = ACTIONS(2969), - [anon_sym_api] = ACTIONS(2969), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2969), - [anon_sym_include] = ACTIONS(2969), - [anon_sym_DEF] = ACTIONS(2969), - [anon_sym_cdef] = ACTIONS(2969), - [anon_sym_cpdef] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_ctypedef] = ACTIONS(2969), - [anon_sym_public] = ACTIONS(2969), - [anon_sym_packed] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym_readonly] = ACTIONS(2969), - [anon_sym_sizeof] = ACTIONS(2969), - [sym__dedent] = ACTIONS(2971), - [sym_string_start] = ACTIONS(2971), - }, - [909] = { - [sym_elif_clause] = STATE(1081), - [sym_else_clause] = STATE(1637), - [aux_sym_if_statement_repeat1] = STATE(932), - [ts_builtin_sym_end] = ACTIONS(2975), - [sym_identifier] = ACTIONS(2977), - [anon_sym_import] = ACTIONS(2977), - [anon_sym_cimport] = ACTIONS(2977), - [anon_sym_from] = ACTIONS(2977), - [anon_sym_LPAREN] = ACTIONS(2975), - [anon_sym_STAR] = ACTIONS(2975), - [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_elif] = ACTIONS(2979), - [anon_sym_else] = ACTIONS(2695), - [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_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(2975), - [anon_sym_AT] = ACTIONS(2975), - [anon_sym_DASH] = ACTIONS(2975), - [anon_sym_LBRACE] = ACTIONS(2975), - [anon_sym_PLUS] = ACTIONS(2975), - [anon_sym_not] = ACTIONS(2977), - [anon_sym_AMP] = ACTIONS(2975), - [anon_sym_TILDE] = ACTIONS(2975), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_lambda] = ACTIONS(2977), - [anon_sym_yield] = ACTIONS(2977), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2975), - [anon_sym_None] = ACTIONS(2977), - [sym_integer] = ACTIONS(2977), - [sym_float] = ACTIONS(2975), - [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(2975), - }, [910] = { - [sym_named_expression] = STATE(2236), - [sym__named_expression_lhs] = STATE(5519), - [sym_list_splat_pattern] = STATE(2309), - [sym_as_pattern] = STATE(2236), - [sym__expression_within_for_in_clause] = STATE(4287), - [sym_expression] = STATE(3931), - [sym_primary_expression] = STATE(2054), - [sym_not_operator] = STATE(2236), - [sym_boolean_operator] = STATE(2236), - [sym_binary_operator] = STATE(2377), - [sym_unary_operator] = STATE(2377), - [sym_comparison_operator] = STATE(2236), - [sym_lambda] = STATE(2236), - [sym_lambda_within_for_in_clause] = STATE(4287), - [sym_attribute] = STATE(2377), - [sym_subscript] = STATE(2377), - [sym_ellipsis] = STATE(2377), - [sym_call] = STATE(2377), - [sym_list] = STATE(2377), - [sym_set] = STATE(2377), - [sym_tuple] = STATE(2377), - [sym_dictionary] = STATE(2377), - [sym_list_comprehension] = STATE(2377), - [sym_dictionary_comprehension] = STATE(2377), - [sym_set_comprehension] = STATE(2377), - [sym_generator_expression] = STATE(2377), - [sym_parenthesized_expression] = STATE(2377), - [sym_conditional_expression] = STATE(2236), - [sym_concatenated_string] = STATE(2377), - [sym_string] = STATE(2103), - [sym_none] = STATE(2377), - [sym_await] = STATE(2377), - [sym_new_expression] = STATE(2236), - [sym_sizeof_expression] = STATE(2377), - [sym_cast_expression] = STATE(2377), - [sym_identifier] = ACTIONS(2535), - [anon_sym_LPAREN] = ACTIONS(2401), - [anon_sym_STAR] = ACTIONS(2981), - [anon_sym_print] = ACTIONS(2543), - [anon_sym_if] = ACTIONS(2949), - [anon_sym_match] = ACTIONS(2543), - [anon_sym_async] = ACTIONS(2949), - [anon_sym_for] = ACTIONS(2949), - [anon_sym_exec] = ACTIONS(2543), - [anon_sym_LBRACK] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2409), - [anon_sym_LBRACE] = ACTIONS(2411), - [anon_sym_RBRACE] = ACTIONS(2951), - [anon_sym_PLUS] = ACTIONS(2409), - [anon_sym_not] = ACTIONS(2549), - [anon_sym_AMP] = ACTIONS(2409), - [anon_sym_TILDE] = ACTIONS(2409), - [anon_sym_LT] = ACTIONS(2551), - [anon_sym_lambda] = ACTIONS(2983), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2415), - [anon_sym_None] = ACTIONS(2417), - [sym_integer] = ACTIONS(2399), - [sym_float] = ACTIONS(2419), - [anon_sym_await] = ACTIONS(2557), - [anon_sym_api] = ACTIONS(2543), - [sym_true] = ACTIONS(2399), - [sym_false] = ACTIONS(2399), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2559), - [anon_sym_sizeof] = ACTIONS(2423), - [sym_string_start] = ACTIONS(2425), + [sym_named_expression] = STATE(2631), + [sym__named_expression_lhs] = STATE(5572), + [sym_list_splat] = STATE(5323), + [sym_parenthesized_list_splat] = STATE(5323), + [sym_list_splat_pattern] = STATE(2589), + [sym_as_pattern] = STATE(2631), + [sym_expression] = STATE(4273), + [sym_primary_expression] = STATE(2107), + [sym_not_operator] = STATE(2631), + [sym_boolean_operator] = STATE(2631), + [sym_binary_operator] = STATE(2630), + [sym_unary_operator] = STATE(2630), + [sym_comparison_operator] = STATE(2631), + [sym_lambda] = STATE(2631), + [sym_yield] = STATE(5323), + [sym_attribute] = STATE(2630), + [sym_subscript] = STATE(2630), + [sym_ellipsis] = STATE(2630), + [sym_call] = STATE(2630), + [sym_list] = STATE(2630), + [sym_set] = STATE(2630), + [sym_tuple] = STATE(2630), + [sym_dictionary] = STATE(2630), + [sym_list_comprehension] = STATE(2630), + [sym_dictionary_comprehension] = STATE(2630), + [sym_set_comprehension] = STATE(2630), + [sym_generator_expression] = STATE(2630), + [sym_parenthesized_expression] = STATE(2630), + [sym_conditional_expression] = STATE(2631), + [sym_concatenated_string] = STATE(2630), + [sym_string] = STATE(2200), + [sym_none] = STATE(2630), + [sym_await] = STATE(2630), + [sym_new_expression] = STATE(2631), + [sym_sizeof_expression] = STATE(2630), + [sym_cast_expression] = STATE(2630), + [sym_identifier] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2937), + [anon_sym_STAR] = ACTIONS(2939), + [anon_sym_print] = ACTIONS(2641), + [anon_sym_match] = ACTIONS(2641), + [anon_sym_async] = ACTIONS(2641), + [anon_sym_exec] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2467), + [anon_sym_RBRACK] = ACTIONS(2941), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_not] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2469), + [anon_sym_TILDE] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_lambda] = ACTIONS(2651), + [anon_sym_yield] = ACTIONS(2567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2475), + [anon_sym_None] = ACTIONS(2477), + [sym_integer] = ACTIONS(2459), + [sym_float] = ACTIONS(2479), + [anon_sym_await] = ACTIONS(2653), + [anon_sym_api] = ACTIONS(2641), + [sym_true] = ACTIONS(2459), + [sym_false] = ACTIONS(2459), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2655), + [anon_sym_sizeof] = ACTIONS(2483), + [sym_string_start] = ACTIONS(2485), }, [911] = { - [sym_named_expression] = STATE(2236), - [sym__named_expression_lhs] = STATE(5519), - [sym_list_splat_pattern] = STATE(2309), - [sym_as_pattern] = STATE(2236), - [sym__expression_within_for_in_clause] = STATE(4287), - [sym_expression] = STATE(3931), - [sym_primary_expression] = STATE(2054), - [sym_not_operator] = STATE(2236), - [sym_boolean_operator] = STATE(2236), - [sym_binary_operator] = STATE(2377), - [sym_unary_operator] = STATE(2377), - [sym_comparison_operator] = STATE(2236), - [sym_lambda] = STATE(2236), - [sym_lambda_within_for_in_clause] = STATE(4287), - [sym_attribute] = STATE(2377), - [sym_subscript] = STATE(2377), - [sym_ellipsis] = STATE(2377), - [sym_call] = STATE(2377), - [sym_list] = STATE(2377), - [sym_set] = STATE(2377), - [sym_tuple] = STATE(2377), - [sym_dictionary] = STATE(2377), - [sym_list_comprehension] = STATE(2377), - [sym_dictionary_comprehension] = STATE(2377), - [sym_set_comprehension] = STATE(2377), - [sym_generator_expression] = STATE(2377), - [sym_parenthesized_expression] = STATE(2377), - [sym_conditional_expression] = STATE(2236), - [sym_concatenated_string] = STATE(2377), - [sym_string] = STATE(2103), - [sym_none] = STATE(2377), - [sym_await] = STATE(2377), - [sym_new_expression] = STATE(2236), - [sym_sizeof_expression] = STATE(2377), - [sym_cast_expression] = STATE(2377), - [sym_identifier] = ACTIONS(2535), - [anon_sym_LPAREN] = ACTIONS(2401), - [anon_sym_STAR] = ACTIONS(2981), - [anon_sym_print] = ACTIONS(2543), - [anon_sym_if] = ACTIONS(2941), - [anon_sym_match] = ACTIONS(2543), - [anon_sym_async] = ACTIONS(2941), - [anon_sym_for] = ACTIONS(2941), - [anon_sym_exec] = ACTIONS(2543), - [anon_sym_LBRACK] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2409), - [anon_sym_LBRACE] = ACTIONS(2411), - [anon_sym_RBRACE] = ACTIONS(2937), - [anon_sym_PLUS] = ACTIONS(2409), - [anon_sym_not] = ACTIONS(2549), - [anon_sym_AMP] = ACTIONS(2409), - [anon_sym_TILDE] = ACTIONS(2409), - [anon_sym_LT] = ACTIONS(2551), - [anon_sym_lambda] = ACTIONS(2983), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2415), - [anon_sym_None] = ACTIONS(2417), - [sym_integer] = ACTIONS(2399), - [sym_float] = ACTIONS(2419), - [anon_sym_await] = ACTIONS(2557), - [anon_sym_api] = ACTIONS(2543), - [sym_true] = ACTIONS(2399), - [sym_false] = ACTIONS(2399), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2559), - [anon_sym_sizeof] = ACTIONS(2423), - [sym_string_start] = ACTIONS(2425), + [sym_named_expression] = STATE(2493), + [sym__named_expression_lhs] = STATE(5681), + [sym_list_splat_pattern] = STATE(2415), + [sym_as_pattern] = STATE(2493), + [sym__expression_within_for_in_clause] = STATE(4358), + [sym_expression] = STATE(3953), + [sym_primary_expression] = STATE(2070), + [sym_not_operator] = STATE(2493), + [sym_boolean_operator] = STATE(2493), + [sym_binary_operator] = STATE(2470), + [sym_unary_operator] = STATE(2470), + [sym_comparison_operator] = STATE(2493), + [sym_lambda] = STATE(2493), + [sym_lambda_within_for_in_clause] = STATE(4358), + [sym_attribute] = STATE(2470), + [sym_subscript] = STATE(2470), + [sym_ellipsis] = STATE(2470), + [sym_call] = STATE(2470), + [sym_list] = STATE(2470), + [sym_set] = STATE(2470), + [sym_tuple] = STATE(2470), + [sym_dictionary] = STATE(2470), + [sym_list_comprehension] = STATE(2470), + [sym_dictionary_comprehension] = STATE(2470), + [sym_set_comprehension] = STATE(2470), + [sym_generator_expression] = STATE(2470), + [sym_parenthesized_expression] = STATE(2470), + [sym_conditional_expression] = STATE(2493), + [sym_concatenated_string] = STATE(2470), + [sym_string] = STATE(2177), + [sym_none] = STATE(2470), + [sym_await] = STATE(2470), + [sym_new_expression] = STATE(2493), + [sym_sizeof_expression] = STATE(2470), + [sym_cast_expression] = STATE(2470), + [sym_identifier] = ACTIONS(2815), + [anon_sym_LPAREN] = ACTIONS(2489), + [anon_sym_STAR] = ACTIONS(2943), + [anon_sym_print] = ACTIONS(2819), + [anon_sym_if] = ACTIONS(2945), + [anon_sym_match] = ACTIONS(2819), + [anon_sym_async] = ACTIONS(2945), + [anon_sym_for] = ACTIONS(2945), + [anon_sym_exec] = ACTIONS(2819), + [anon_sym_LBRACK] = ACTIONS(2495), + [anon_sym_RBRACK] = ACTIONS(2947), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2499), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_not] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_TILDE] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2563), + [anon_sym_lambda] = ACTIONS(2949), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2503), + [anon_sym_None] = ACTIONS(2505), + [sym_integer] = ACTIONS(2487), + [sym_float] = ACTIONS(2507), + [anon_sym_await] = ACTIONS(2823), + [anon_sym_api] = ACTIONS(2819), + [sym_true] = ACTIONS(2487), + [sym_false] = ACTIONS(2487), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2571), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_string_start] = ACTIONS(2513), }, [912] = { - [sym_pattern] = STATE(3199), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(2718), - [sym_primary_expression] = STATE(3205), - [sym_binary_operator] = STATE(2549), - [sym_unary_operator] = STATE(2549), - [sym_attribute] = STATE(2720), - [sym_subscript] = STATE(2720), - [sym_ellipsis] = STATE(2549), - [sym_call] = STATE(2549), - [sym_list] = STATE(2549), - [sym_set] = STATE(2549), - [sym_tuple] = STATE(2549), - [sym_dictionary] = STATE(2549), - [sym_list_comprehension] = STATE(2549), - [sym_dictionary_comprehension] = STATE(2549), - [sym_set_comprehension] = STATE(2549), - [sym_generator_expression] = STATE(2549), - [sym_parenthesized_expression] = STATE(2549), - [sym_concatenated_string] = STATE(2549), - [sym_string] = STATE(2140), - [sym_none] = STATE(2549), - [sym_await] = STATE(2549), - [sym_sizeof_expression] = STATE(2549), - [sym_cast_expression] = STATE(2549), - [sym_identifier] = ACTIONS(2985), - [anon_sym_LPAREN] = ACTIONS(2987), - [anon_sym_STAR] = ACTIONS(2989), - [anon_sym_print] = ACTIONS(2991), - [anon_sym_COLON] = ACTIONS(2747), - [anon_sym_match] = ACTIONS(2991), - [anon_sym_async] = ACTIONS(2991), - [anon_sym_exec] = ACTIONS(2991), - [anon_sym_EQ] = ACTIONS(2747), - [anon_sym_LBRACK] = ACTIONS(2993), - [anon_sym_DASH] = ACTIONS(1306), + [sym_named_expression] = STATE(3088), + [sym__named_expression_lhs] = STATE(5579), + [sym_expression_list] = STATE(5533), + [sym_pattern] = STATE(4510), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(2611), + [sym_as_pattern] = STATE(3088), + [sym_expression] = STATE(3977), + [sym_primary_expression] = STATE(2072), + [sym_not_operator] = STATE(3088), + [sym_boolean_operator] = STATE(3088), + [sym_binary_operator] = STATE(2401), + [sym_unary_operator] = STATE(2401), + [sym_comparison_operator] = STATE(3088), + [sym_lambda] = STATE(3088), + [sym_pattern_list] = STATE(5176), + [sym_attribute] = STATE(2640), + [sym_subscript] = STATE(2640), + [sym_ellipsis] = STATE(2401), + [sym_call] = STATE(2401), + [sym_list] = STATE(2401), + [sym_set] = STATE(2401), + [sym_tuple] = STATE(2401), + [sym_dictionary] = STATE(2401), + [sym_list_comprehension] = STATE(2401), + [sym_dictionary_comprehension] = STATE(2401), + [sym_set_comprehension] = STATE(2401), + [sym_generator_expression] = STATE(2401), + [sym_parenthesized_expression] = STATE(2401), + [sym_conditional_expression] = STATE(3088), + [sym_concatenated_string] = STATE(2401), + [sym_string] = STATE(2161), + [sym_none] = STATE(2401), + [sym_await] = STATE(2401), + [sym_new_expression] = STATE(3088), + [sym_sizeof_expression] = STATE(2401), + [sym_cast_expression] = STATE(2401), + [sym_identifier] = ACTIONS(2951), + [anon_sym_LPAREN] = ACTIONS(2953), + [anon_sym_STAR] = ACTIONS(2955), + [anon_sym_print] = ACTIONS(2957), + [anon_sym_match] = ACTIONS(2957), + [anon_sym_async] = ACTIONS(2957), + [anon_sym_exec] = ACTIONS(2957), + [anon_sym_LBRACK] = ACTIONS(2959), + [anon_sym_DASH] = ACTIONS(1227), [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_AMP] = ACTIONS(1306), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_LT] = ACTIONS(1310), - [anon_sym_PLUS_EQ] = ACTIONS(2747), - [anon_sym_DASH_EQ] = ACTIONS(2747), - [anon_sym_STAR_EQ] = ACTIONS(2747), - [anon_sym_SLASH_EQ] = ACTIONS(2747), - [anon_sym_AT_EQ] = ACTIONS(2747), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2747), - [anon_sym_PERCENT_EQ] = ACTIONS(2747), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2747), - [anon_sym_GT_GT_EQ] = ACTIONS(2747), - [anon_sym_LT_LT_EQ] = ACTIONS(2747), - [anon_sym_AMP_EQ] = ACTIONS(2747), - [anon_sym_CARET_EQ] = ACTIONS(2747), - [anon_sym_PIPE_EQ] = ACTIONS(2747), + [anon_sym_PLUS] = ACTIONS(1227), + [anon_sym_not] = ACTIONS(1225), + [anon_sym_AMP] = ACTIONS(1227), + [anon_sym_TILDE] = ACTIONS(1227), + [anon_sym_LT] = ACTIONS(2705), + [anon_sym_lambda] = ACTIONS(1231), [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), [anon_sym_None] = ACTIONS(1235), [sym_integer] = ACTIONS(1237), [sym_float] = ACTIONS(1239), - [anon_sym_await] = ACTIONS(2995), - [anon_sym_api] = ACTIONS(2991), + [anon_sym_await] = ACTIONS(2961), + [anon_sym_api] = ACTIONS(2957), [sym_true] = ACTIONS(1237), [sym_false] = ACTIONS(1237), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1243), [anon_sym_sizeof] = ACTIONS(1245), [sym_string_start] = ACTIONS(1247), }, [913] = { - [sym_elif_clause] = STATE(1081), - [sym_else_clause] = STATE(1636), - [aux_sym_if_statement_repeat1] = STATE(962), - [ts_builtin_sym_end] = ACTIONS(2997), - [sym_identifier] = ACTIONS(2999), - [anon_sym_import] = ACTIONS(2999), - [anon_sym_cimport] = ACTIONS(2999), - [anon_sym_from] = ACTIONS(2999), - [anon_sym_LPAREN] = ACTIONS(2997), - [anon_sym_STAR] = ACTIONS(2997), - [anon_sym_print] = ACTIONS(2999), - [anon_sym_assert] = ACTIONS(2999), - [anon_sym_return] = ACTIONS(2999), - [anon_sym_del] = ACTIONS(2999), - [anon_sym_raise] = ACTIONS(2999), - [anon_sym_pass] = ACTIONS(2999), - [anon_sym_break] = ACTIONS(2999), - [anon_sym_continue] = ACTIONS(2999), - [anon_sym_if] = ACTIONS(2999), - [anon_sym_elif] = ACTIONS(2979), - [anon_sym_else] = ACTIONS(2695), - [anon_sym_match] = ACTIONS(2999), - [anon_sym_async] = ACTIONS(2999), - [anon_sym_for] = ACTIONS(2999), - [anon_sym_while] = ACTIONS(2999), - [anon_sym_try] = ACTIONS(2999), - [anon_sym_with] = ACTIONS(2999), - [anon_sym_def] = ACTIONS(2999), - [anon_sym_global] = ACTIONS(2999), - [anon_sym_nonlocal] = ACTIONS(2999), - [anon_sym_exec] = ACTIONS(2999), - [anon_sym_type] = ACTIONS(2999), - [anon_sym_class] = ACTIONS(2999), - [anon_sym_LBRACK] = ACTIONS(2997), - [anon_sym_AT] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2997), - [anon_sym_PLUS] = ACTIONS(2997), - [anon_sym_not] = ACTIONS(2999), - [anon_sym_AMP] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_LT] = ACTIONS(2997), - [anon_sym_lambda] = ACTIONS(2999), - [anon_sym_yield] = ACTIONS(2999), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2997), - [anon_sym_None] = ACTIONS(2999), - [sym_integer] = ACTIONS(2999), - [sym_float] = ACTIONS(2997), - [anon_sym_await] = ACTIONS(2999), - [anon_sym_api] = ACTIONS(2999), - [sym_true] = ACTIONS(2999), - [sym_false] = ACTIONS(2999), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2999), - [anon_sym_include] = ACTIONS(2999), - [anon_sym_DEF] = ACTIONS(2999), - [anon_sym_cdef] = ACTIONS(2999), - [anon_sym_cpdef] = ACTIONS(2999), - [anon_sym_new] = ACTIONS(2999), - [anon_sym_ctypedef] = ACTIONS(2999), - [anon_sym_public] = ACTIONS(2999), - [anon_sym_packed] = ACTIONS(2999), - [anon_sym_inline] = ACTIONS(2999), - [anon_sym_readonly] = ACTIONS(2999), - [anon_sym_sizeof] = ACTIONS(2999), - [sym_string_start] = ACTIONS(2997), + [sym_named_expression] = STATE(2421), + [sym__named_expression_lhs] = STATE(5522), + [sym_list_splat_pattern] = STATE(2472), + [sym_as_pattern] = STATE(2421), + [sym__expression_within_for_in_clause] = STATE(4462), + [sym_expression] = STATE(3915), + [sym_primary_expression] = STATE(2066), + [sym_not_operator] = STATE(2421), + [sym_boolean_operator] = STATE(2421), + [sym_binary_operator] = STATE(2414), + [sym_unary_operator] = STATE(2414), + [sym_comparison_operator] = STATE(2421), + [sym_lambda] = STATE(2421), + [sym_lambda_within_for_in_clause] = STATE(4462), + [sym_attribute] = STATE(2414), + [sym_subscript] = STATE(2414), + [sym_ellipsis] = STATE(2414), + [sym_call] = STATE(2414), + [sym_list] = STATE(2414), + [sym_set] = STATE(2414), + [sym_tuple] = STATE(2414), + [sym_dictionary] = STATE(2414), + [sym_list_comprehension] = STATE(2414), + [sym_dictionary_comprehension] = STATE(2414), + [sym_set_comprehension] = STATE(2414), + [sym_generator_expression] = STATE(2414), + [sym_parenthesized_expression] = STATE(2414), + [sym_conditional_expression] = STATE(2421), + [sym_concatenated_string] = STATE(2414), + [sym_string] = STATE(2147), + [sym_none] = STATE(2414), + [sym_await] = STATE(2414), + [sym_new_expression] = STATE(2421), + [sym_sizeof_expression] = STATE(2414), + [sym_cast_expression] = STATE(2414), + [sym_identifier] = ACTIONS(2787), + [anon_sym_LPAREN] = ACTIONS(2377), + [anon_sym_RPAREN] = ACTIONS(2963), + [anon_sym_STAR] = ACTIONS(2965), + [anon_sym_print] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(2967), + [anon_sym_match] = ACTIONS(1470), + [anon_sym_async] = ACTIONS(2967), + [anon_sym_for] = ACTIONS(2967), + [anon_sym_exec] = ACTIONS(1470), + [anon_sym_LBRACK] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1326), + [anon_sym_LBRACE] = ACTIONS(1328), + [anon_sym_PLUS] = ACTIONS(1326), + [anon_sym_not] = ACTIONS(1330), + [anon_sym_AMP] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1326), + [anon_sym_LT] = ACTIONS(1332), + [anon_sym_lambda] = ACTIONS(2969), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1338), + [anon_sym_None] = ACTIONS(1340), + [sym_integer] = ACTIONS(1342), + [sym_float] = ACTIONS(1344), + [anon_sym_await] = ACTIONS(1474), + [anon_sym_api] = ACTIONS(1470), + [sym_true] = ACTIONS(1342), + [sym_false] = ACTIONS(1342), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1350), + [anon_sym_sizeof] = ACTIONS(1360), + [sym_string_start] = ACTIONS(1362), }, [914] = { - [sym_named_expression] = STATE(2236), - [sym__named_expression_lhs] = STATE(5519), - [sym_list_splat_pattern] = STATE(2309), - [sym_as_pattern] = STATE(2236), - [sym__expression_within_for_in_clause] = STATE(4287), - [sym_expression] = STATE(3931), - [sym_primary_expression] = STATE(2054), - [sym_not_operator] = STATE(2236), - [sym_boolean_operator] = STATE(2236), - [sym_binary_operator] = STATE(2377), - [sym_unary_operator] = STATE(2377), - [sym_comparison_operator] = STATE(2236), - [sym_lambda] = STATE(2236), - [sym_lambda_within_for_in_clause] = STATE(4287), - [sym_attribute] = STATE(2377), - [sym_subscript] = STATE(2377), - [sym_ellipsis] = STATE(2377), - [sym_call] = STATE(2377), - [sym_list] = STATE(2377), - [sym_set] = STATE(2377), - [sym_tuple] = STATE(2377), - [sym_dictionary] = STATE(2377), - [sym_list_comprehension] = STATE(2377), - [sym_dictionary_comprehension] = STATE(2377), - [sym_set_comprehension] = STATE(2377), - [sym_generator_expression] = STATE(2377), - [sym_parenthesized_expression] = STATE(2377), - [sym_conditional_expression] = STATE(2236), - [sym_concatenated_string] = STATE(2377), - [sym_string] = STATE(2103), - [sym_none] = STATE(2377), - [sym_await] = STATE(2377), - [sym_new_expression] = STATE(2236), - [sym_sizeof_expression] = STATE(2377), - [sym_cast_expression] = STATE(2377), - [sym_identifier] = ACTIONS(2535), - [anon_sym_LPAREN] = ACTIONS(2401), - [anon_sym_STAR] = ACTIONS(2981), - [anon_sym_print] = ACTIONS(2543), - [anon_sym_if] = ACTIONS(3001), - [anon_sym_match] = ACTIONS(2543), - [anon_sym_async] = ACTIONS(3001), - [anon_sym_for] = ACTIONS(3001), - [anon_sym_exec] = ACTIONS(2543), - [anon_sym_LBRACK] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2409), - [anon_sym_LBRACE] = ACTIONS(2411), - [anon_sym_RBRACE] = ACTIONS(3003), - [anon_sym_PLUS] = ACTIONS(2409), - [anon_sym_not] = ACTIONS(2549), - [anon_sym_AMP] = ACTIONS(2409), - [anon_sym_TILDE] = ACTIONS(2409), - [anon_sym_LT] = ACTIONS(2551), - [anon_sym_lambda] = ACTIONS(2983), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2415), - [anon_sym_None] = ACTIONS(2417), - [sym_integer] = ACTIONS(2399), - [sym_float] = ACTIONS(2419), - [anon_sym_await] = ACTIONS(2557), - [anon_sym_api] = ACTIONS(2543), - [sym_true] = ACTIONS(2399), - [sym_false] = ACTIONS(2399), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2559), - [anon_sym_sizeof] = ACTIONS(2423), - [sym_string_start] = ACTIONS(2425), + [sym_named_expression] = STATE(2493), + [sym__named_expression_lhs] = STATE(5681), + [sym_list_splat_pattern] = STATE(2415), + [sym_as_pattern] = STATE(2493), + [sym__expression_within_for_in_clause] = STATE(4358), + [sym_expression] = STATE(3953), + [sym_primary_expression] = STATE(2070), + [sym_not_operator] = STATE(2493), + [sym_boolean_operator] = STATE(2493), + [sym_binary_operator] = STATE(2470), + [sym_unary_operator] = STATE(2470), + [sym_comparison_operator] = STATE(2493), + [sym_lambda] = STATE(2493), + [sym_lambda_within_for_in_clause] = STATE(4358), + [sym_attribute] = STATE(2470), + [sym_subscript] = STATE(2470), + [sym_ellipsis] = STATE(2470), + [sym_call] = STATE(2470), + [sym_list] = STATE(2470), + [sym_set] = STATE(2470), + [sym_tuple] = STATE(2470), + [sym_dictionary] = STATE(2470), + [sym_list_comprehension] = STATE(2470), + [sym_dictionary_comprehension] = STATE(2470), + [sym_set_comprehension] = STATE(2470), + [sym_generator_expression] = STATE(2470), + [sym_parenthesized_expression] = STATE(2470), + [sym_conditional_expression] = STATE(2493), + [sym_concatenated_string] = STATE(2470), + [sym_string] = STATE(2177), + [sym_none] = STATE(2470), + [sym_await] = STATE(2470), + [sym_new_expression] = STATE(2493), + [sym_sizeof_expression] = STATE(2470), + [sym_cast_expression] = STATE(2470), + [sym_identifier] = ACTIONS(2815), + [anon_sym_LPAREN] = ACTIONS(2489), + [anon_sym_STAR] = ACTIONS(2943), + [anon_sym_print] = ACTIONS(2819), + [anon_sym_if] = ACTIONS(2971), + [anon_sym_match] = ACTIONS(2819), + [anon_sym_async] = ACTIONS(2971), + [anon_sym_for] = ACTIONS(2971), + [anon_sym_exec] = ACTIONS(2819), + [anon_sym_LBRACK] = ACTIONS(2495), + [anon_sym_RBRACK] = ACTIONS(2973), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2499), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_not] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_TILDE] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2563), + [anon_sym_lambda] = ACTIONS(2949), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2503), + [anon_sym_None] = ACTIONS(2505), + [sym_integer] = ACTIONS(2487), + [sym_float] = ACTIONS(2507), + [anon_sym_await] = ACTIONS(2823), + [anon_sym_api] = ACTIONS(2819), + [sym_true] = ACTIONS(2487), + [sym_false] = ACTIONS(2487), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2571), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_string_start] = ACTIONS(2513), }, [915] = { - [sym_pattern] = STATE(3199), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(2718), - [sym_primary_expression] = STATE(3205), - [sym_binary_operator] = STATE(2549), - [sym_unary_operator] = STATE(2549), - [sym_attribute] = STATE(2720), - [sym_subscript] = STATE(2720), - [sym_ellipsis] = STATE(2549), - [sym_call] = STATE(2549), - [sym_list] = STATE(2549), - [sym_set] = STATE(2549), - [sym_tuple] = STATE(2549), - [sym_dictionary] = STATE(2549), - [sym_list_comprehension] = STATE(2549), - [sym_dictionary_comprehension] = STATE(2549), - [sym_set_comprehension] = STATE(2549), - [sym_generator_expression] = STATE(2549), - [sym_parenthesized_expression] = STATE(2549), - [sym_concatenated_string] = STATE(2549), - [sym_string] = STATE(2140), - [sym_none] = STATE(2549), - [sym_await] = STATE(2549), - [sym_sizeof_expression] = STATE(2549), - [sym_cast_expression] = STATE(2549), - [sym_identifier] = ACTIONS(2985), - [anon_sym_LPAREN] = ACTIONS(2987), - [anon_sym_STAR] = ACTIONS(2989), - [anon_sym_print] = ACTIONS(2991), - [anon_sym_COLON] = ACTIONS(2765), - [anon_sym_match] = ACTIONS(2991), - [anon_sym_async] = ACTIONS(2991), - [anon_sym_exec] = ACTIONS(2991), - [anon_sym_EQ] = ACTIONS(2765), - [anon_sym_LBRACK] = ACTIONS(2993), + [sym_pattern] = STATE(3204), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(2653), + [sym_primary_expression] = STATE(3220), + [sym_binary_operator] = STATE(2401), + [sym_unary_operator] = STATE(2401), + [sym_attribute] = STATE(2654), + [sym_subscript] = STATE(2654), + [sym_ellipsis] = STATE(2401), + [sym_call] = STATE(2401), + [sym_list] = STATE(2401), + [sym_set] = STATE(2401), + [sym_tuple] = STATE(2401), + [sym_dictionary] = STATE(2401), + [sym_list_comprehension] = STATE(2401), + [sym_dictionary_comprehension] = STATE(2401), + [sym_set_comprehension] = STATE(2401), + [sym_generator_expression] = STATE(2401), + [sym_parenthesized_expression] = STATE(2401), + [sym_concatenated_string] = STATE(2401), + [sym_string] = STATE(2161), + [sym_none] = STATE(2401), + [sym_await] = STATE(2401), + [sym_sizeof_expression] = STATE(2401), + [sym_cast_expression] = STATE(2401), + [sym_identifier] = ACTIONS(2975), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_STAR] = ACTIONS(2979), + [anon_sym_print] = ACTIONS(2981), + [anon_sym_COLON] = ACTIONS(2715), + [anon_sym_match] = ACTIONS(2981), + [anon_sym_async] = ACTIONS(2981), + [anon_sym_exec] = ACTIONS(2981), + [anon_sym_EQ] = ACTIONS(2715), + [anon_sym_LBRACK] = ACTIONS(2983), [anon_sym_DASH] = ACTIONS(1306), [anon_sym_LBRACE] = ACTIONS(1223), [anon_sym_PLUS] = ACTIONS(1306), [anon_sym_AMP] = ACTIONS(1306), [anon_sym_TILDE] = ACTIONS(1308), [anon_sym_LT] = ACTIONS(1310), - [anon_sym_PLUS_EQ] = ACTIONS(2765), - [anon_sym_DASH_EQ] = ACTIONS(2765), - [anon_sym_STAR_EQ] = ACTIONS(2765), - [anon_sym_SLASH_EQ] = ACTIONS(2765), - [anon_sym_AT_EQ] = ACTIONS(2765), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2765), - [anon_sym_PERCENT_EQ] = ACTIONS(2765), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2765), - [anon_sym_GT_GT_EQ] = ACTIONS(2765), - [anon_sym_LT_LT_EQ] = ACTIONS(2765), - [anon_sym_AMP_EQ] = ACTIONS(2765), - [anon_sym_CARET_EQ] = ACTIONS(2765), - [anon_sym_PIPE_EQ] = ACTIONS(2765), + [anon_sym_PLUS_EQ] = ACTIONS(2715), + [anon_sym_DASH_EQ] = ACTIONS(2715), + [anon_sym_STAR_EQ] = ACTIONS(2715), + [anon_sym_SLASH_EQ] = ACTIONS(2715), + [anon_sym_AT_EQ] = ACTIONS(2715), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2715), + [anon_sym_PERCENT_EQ] = ACTIONS(2715), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2715), + [anon_sym_GT_GT_EQ] = ACTIONS(2715), + [anon_sym_LT_LT_EQ] = ACTIONS(2715), + [anon_sym_AMP_EQ] = ACTIONS(2715), + [anon_sym_CARET_EQ] = ACTIONS(2715), + [anon_sym_PIPE_EQ] = ACTIONS(2715), [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), [anon_sym_None] = ACTIONS(1235), [sym_integer] = ACTIONS(1237), [sym_float] = ACTIONS(1239), - [anon_sym_await] = ACTIONS(2995), - [anon_sym_api] = ACTIONS(2991), + [anon_sym_await] = ACTIONS(2985), + [anon_sym_api] = ACTIONS(2981), [sym_true] = ACTIONS(1237), [sym_false] = ACTIONS(1237), [sym_comment] = ACTIONS(3), @@ -110218,135 +110361,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(1247), }, [916] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5609), - [sym_list_splat] = STATE(5346), - [sym_parenthesized_list_splat] = STATE(5346), - [sym_list_splat_pattern] = STATE(2591), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(4192), - [sym_primary_expression] = STATE(2077), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2631), - [sym_unary_operator] = STATE(2631), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_yield] = STATE(5346), - [sym_attribute] = STATE(2631), - [sym_subscript] = STATE(2631), - [sym_ellipsis] = STATE(2631), - [sym_call] = STATE(2631), - [sym_list] = STATE(2631), - [sym_set] = STATE(2631), - [sym_tuple] = STATE(2631), - [sym_dictionary] = STATE(2631), - [sym_list_comprehension] = STATE(2631), - [sym_dictionary_comprehension] = STATE(2631), - [sym_set_comprehension] = STATE(2631), - [sym_generator_expression] = STATE(2631), - [sym_parenthesized_expression] = STATE(2631), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2631), - [sym_string] = STATE(2218), - [sym_none] = STATE(2631), - [sym_await] = STATE(2631), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2631), - [sym_cast_expression] = STATE(2631), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(2965), - [anon_sym_STAR] = ACTIONS(2967), - [anon_sym_print] = ACTIONS(2631), - [anon_sym_match] = ACTIONS(2631), - [anon_sym_async] = ACTIONS(2631), - [anon_sym_exec] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_RBRACK] = ACTIONS(2945), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2639), - [anon_sym_lambda] = ACTIONS(2641), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2643), - [anon_sym_api] = ACTIONS(2631), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2645), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), - }, - [917] = { - [sym_named_expression] = STATE(3081), - [sym__named_expression_lhs] = STATE(5469), - [sym_expression_list] = STATE(5706), - [sym_pattern] = STATE(4522), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(2592), - [sym_as_pattern] = STATE(3081), - [sym_expression] = STATE(4048), - [sym_primary_expression] = STATE(2067), - [sym_not_operator] = STATE(3081), - [sym_boolean_operator] = STATE(3081), - [sym_binary_operator] = STATE(2549), - [sym_unary_operator] = STATE(2549), - [sym_comparison_operator] = STATE(3081), - [sym_lambda] = STATE(3081), - [sym_pattern_list] = STATE(5299), - [sym_attribute] = STATE(2599), - [sym_subscript] = STATE(2599), - [sym_ellipsis] = STATE(2549), - [sym_call] = STATE(2549), - [sym_list] = STATE(2549), - [sym_set] = STATE(2549), - [sym_tuple] = STATE(2549), - [sym_dictionary] = STATE(2549), - [sym_list_comprehension] = STATE(2549), - [sym_dictionary_comprehension] = STATE(2549), - [sym_set_comprehension] = STATE(2549), - [sym_generator_expression] = STATE(2549), - [sym_parenthesized_expression] = STATE(2549), - [sym_conditional_expression] = STATE(3081), - [sym_concatenated_string] = STATE(2549), - [sym_string] = STATE(2140), - [sym_none] = STATE(2549), - [sym_await] = STATE(2549), - [sym_new_expression] = STATE(3081), - [sym_sizeof_expression] = STATE(2549), - [sym_cast_expression] = STATE(2549), - [sym_identifier] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(3007), - [anon_sym_STAR] = ACTIONS(3009), - [anon_sym_print] = ACTIONS(3011), - [anon_sym_match] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(3011), - [anon_sym_exec] = ACTIONS(3011), - [anon_sym_LBRACK] = ACTIONS(3013), + [sym_named_expression] = STATE(3088), + [sym__named_expression_lhs] = STATE(5579), + [sym_expression_list] = STATE(5517), + [sym_pattern] = STATE(4504), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(2611), + [sym_as_pattern] = STATE(3088), + [sym_expression] = STATE(4064), + [sym_primary_expression] = STATE(2072), + [sym_not_operator] = STATE(3088), + [sym_boolean_operator] = STATE(3088), + [sym_binary_operator] = STATE(2401), + [sym_unary_operator] = STATE(2401), + [sym_comparison_operator] = STATE(3088), + [sym_lambda] = STATE(3088), + [sym_pattern_list] = STATE(5193), + [sym_attribute] = STATE(2640), + [sym_subscript] = STATE(2640), + [sym_ellipsis] = STATE(2401), + [sym_call] = STATE(2401), + [sym_list] = STATE(2401), + [sym_set] = STATE(2401), + [sym_tuple] = STATE(2401), + [sym_dictionary] = STATE(2401), + [sym_list_comprehension] = STATE(2401), + [sym_dictionary_comprehension] = STATE(2401), + [sym_set_comprehension] = STATE(2401), + [sym_generator_expression] = STATE(2401), + [sym_parenthesized_expression] = STATE(2401), + [sym_conditional_expression] = STATE(3088), + [sym_concatenated_string] = STATE(2401), + [sym_string] = STATE(2161), + [sym_none] = STATE(2401), + [sym_await] = STATE(2401), + [sym_new_expression] = STATE(3088), + [sym_sizeof_expression] = STATE(2401), + [sym_cast_expression] = STATE(2401), + [sym_identifier] = ACTIONS(2951), + [anon_sym_LPAREN] = ACTIONS(2953), + [anon_sym_STAR] = ACTIONS(2955), + [anon_sym_print] = ACTIONS(2957), + [anon_sym_match] = ACTIONS(2957), + [anon_sym_async] = ACTIONS(2957), + [anon_sym_exec] = ACTIONS(2957), + [anon_sym_LBRACK] = ACTIONS(2959), [anon_sym_DASH] = ACTIONS(1227), [anon_sym_LBRACE] = ACTIONS(1223), [anon_sym_PLUS] = ACTIONS(1227), [anon_sym_not] = ACTIONS(1225), [anon_sym_AMP] = ACTIONS(1227), [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(2735), + [anon_sym_LT] = ACTIONS(2705), [anon_sym_lambda] = ACTIONS(1231), [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), [anon_sym_None] = ACTIONS(1235), [sym_integer] = ACTIONS(1237), [sym_float] = ACTIONS(1239), - [anon_sym_await] = ACTIONS(3015), - [anon_sym_api] = ACTIONS(3011), + [anon_sym_await] = ACTIONS(2961), + [anon_sym_api] = ACTIONS(2957), [sym_true] = ACTIONS(1237), [sym_false] = ACTIONS(1237), [sym_comment] = ACTIONS(3), @@ -110355,291 +110429,431 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1245), [sym_string_start] = ACTIONS(1247), }, + [917] = { + [sym_named_expression] = STATE(2631), + [sym__named_expression_lhs] = STATE(5572), + [sym_list_splat] = STATE(5323), + [sym_parenthesized_list_splat] = STATE(5323), + [sym_list_splat_pattern] = STATE(2589), + [sym_as_pattern] = STATE(2631), + [sym_expression] = STATE(4273), + [sym_primary_expression] = STATE(2107), + [sym_not_operator] = STATE(2631), + [sym_boolean_operator] = STATE(2631), + [sym_binary_operator] = STATE(2630), + [sym_unary_operator] = STATE(2630), + [sym_comparison_operator] = STATE(2631), + [sym_lambda] = STATE(2631), + [sym_yield] = STATE(5323), + [sym_attribute] = STATE(2630), + [sym_subscript] = STATE(2630), + [sym_ellipsis] = STATE(2630), + [sym_call] = STATE(2630), + [sym_list] = STATE(2630), + [sym_set] = STATE(2630), + [sym_tuple] = STATE(2630), + [sym_dictionary] = STATE(2630), + [sym_list_comprehension] = STATE(2630), + [sym_dictionary_comprehension] = STATE(2630), + [sym_set_comprehension] = STATE(2630), + [sym_generator_expression] = STATE(2630), + [sym_parenthesized_expression] = STATE(2630), + [sym_conditional_expression] = STATE(2631), + [sym_concatenated_string] = STATE(2630), + [sym_string] = STATE(2200), + [sym_none] = STATE(2630), + [sym_await] = STATE(2630), + [sym_new_expression] = STATE(2631), + [sym_sizeof_expression] = STATE(2630), + [sym_cast_expression] = STATE(2630), + [sym_identifier] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2937), + [anon_sym_STAR] = ACTIONS(2939), + [anon_sym_print] = ACTIONS(2641), + [anon_sym_match] = ACTIONS(2641), + [anon_sym_async] = ACTIONS(2641), + [anon_sym_exec] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2467), + [anon_sym_RBRACK] = ACTIONS(2987), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_not] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2469), + [anon_sym_TILDE] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_lambda] = ACTIONS(2651), + [anon_sym_yield] = ACTIONS(2567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2475), + [anon_sym_None] = ACTIONS(2477), + [sym_integer] = ACTIONS(2459), + [sym_float] = ACTIONS(2479), + [anon_sym_await] = ACTIONS(2653), + [anon_sym_api] = ACTIONS(2641), + [sym_true] = ACTIONS(2459), + [sym_false] = ACTIONS(2459), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2655), + [anon_sym_sizeof] = ACTIONS(2483), + [sym_string_start] = ACTIONS(2485), + }, [918] = { - [sym_elif_clause] = STATE(1091), - [sym_else_clause] = STATE(1695), - [aux_sym_if_statement_repeat1] = STATE(965), - [sym_identifier] = ACTIONS(2999), - [anon_sym_import] = ACTIONS(2999), - [anon_sym_cimport] = ACTIONS(2999), - [anon_sym_from] = ACTIONS(2999), - [anon_sym_LPAREN] = ACTIONS(2997), - [anon_sym_STAR] = ACTIONS(2997), - [anon_sym_print] = ACTIONS(2999), - [anon_sym_assert] = ACTIONS(2999), - [anon_sym_return] = ACTIONS(2999), - [anon_sym_del] = ACTIONS(2999), - [anon_sym_raise] = ACTIONS(2999), - [anon_sym_pass] = ACTIONS(2999), - [anon_sym_break] = ACTIONS(2999), - [anon_sym_continue] = ACTIONS(2999), - [anon_sym_if] = ACTIONS(2999), - [anon_sym_elif] = ACTIONS(2973), - [anon_sym_else] = ACTIONS(2769), - [anon_sym_match] = ACTIONS(2999), - [anon_sym_async] = ACTIONS(2999), - [anon_sym_for] = ACTIONS(2999), - [anon_sym_while] = ACTIONS(2999), - [anon_sym_try] = ACTIONS(2999), - [anon_sym_with] = ACTIONS(2999), - [anon_sym_def] = ACTIONS(2999), - [anon_sym_global] = ACTIONS(2999), - [anon_sym_nonlocal] = ACTIONS(2999), - [anon_sym_exec] = ACTIONS(2999), - [anon_sym_type] = ACTIONS(2999), - [anon_sym_class] = ACTIONS(2999), - [anon_sym_LBRACK] = ACTIONS(2997), - [anon_sym_AT] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2997), - [anon_sym_PLUS] = ACTIONS(2997), - [anon_sym_not] = ACTIONS(2999), - [anon_sym_AMP] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_LT] = ACTIONS(2997), - [anon_sym_lambda] = ACTIONS(2999), - [anon_sym_yield] = ACTIONS(2999), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2997), - [anon_sym_None] = ACTIONS(2999), - [sym_integer] = ACTIONS(2999), - [sym_float] = ACTIONS(2997), - [anon_sym_await] = ACTIONS(2999), - [anon_sym_api] = ACTIONS(2999), - [sym_true] = ACTIONS(2999), - [sym_false] = ACTIONS(2999), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2999), - [anon_sym_include] = ACTIONS(2999), - [anon_sym_DEF] = ACTIONS(2999), - [anon_sym_cdef] = ACTIONS(2999), - [anon_sym_cpdef] = ACTIONS(2999), - [anon_sym_new] = ACTIONS(2999), - [anon_sym_ctypedef] = ACTIONS(2999), - [anon_sym_public] = ACTIONS(2999), - [anon_sym_packed] = ACTIONS(2999), - [anon_sym_inline] = ACTIONS(2999), - [anon_sym_readonly] = ACTIONS(2999), - [anon_sym_sizeof] = ACTIONS(2999), - [sym__dedent] = ACTIONS(2997), - [sym_string_start] = ACTIONS(2997), + [sym_except_group_clause] = STATE(918), + [aux_sym_try_statement_repeat2] = STATE(918), + [ts_builtin_sym_end] = ACTIONS(2989), + [sym_identifier] = ACTIONS(2991), + [anon_sym_import] = ACTIONS(2991), + [anon_sym_cimport] = ACTIONS(2991), + [anon_sym_from] = ACTIONS(2991), + [anon_sym_LPAREN] = ACTIONS(2989), + [anon_sym_STAR] = ACTIONS(2989), + [anon_sym_print] = ACTIONS(2991), + [anon_sym_assert] = ACTIONS(2991), + [anon_sym_return] = ACTIONS(2991), + [anon_sym_del] = ACTIONS(2991), + [anon_sym_raise] = ACTIONS(2991), + [anon_sym_pass] = ACTIONS(2991), + [anon_sym_break] = ACTIONS(2991), + [anon_sym_continue] = ACTIONS(2991), + [anon_sym_if] = ACTIONS(2991), + [anon_sym_else] = ACTIONS(2991), + [anon_sym_match] = ACTIONS(2991), + [anon_sym_async] = ACTIONS(2991), + [anon_sym_for] = ACTIONS(2991), + [anon_sym_while] = ACTIONS(2991), + [anon_sym_try] = ACTIONS(2991), + [anon_sym_except_STAR] = ACTIONS(2993), + [anon_sym_finally] = ACTIONS(2991), + [anon_sym_with] = ACTIONS(2991), + [anon_sym_def] = ACTIONS(2991), + [anon_sym_global] = ACTIONS(2991), + [anon_sym_nonlocal] = ACTIONS(2991), + [anon_sym_exec] = ACTIONS(2991), + [anon_sym_type] = ACTIONS(2991), + [anon_sym_class] = ACTIONS(2991), + [anon_sym_LBRACK] = ACTIONS(2989), + [anon_sym_AT] = ACTIONS(2989), + [anon_sym_DASH] = ACTIONS(2989), + [anon_sym_LBRACE] = ACTIONS(2989), + [anon_sym_PLUS] = ACTIONS(2989), + [anon_sym_not] = ACTIONS(2991), + [anon_sym_AMP] = ACTIONS(2989), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_LT] = ACTIONS(2989), + [anon_sym_lambda] = ACTIONS(2991), + [anon_sym_yield] = ACTIONS(2991), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2989), + [anon_sym_None] = ACTIONS(2991), + [sym_integer] = ACTIONS(2991), + [sym_float] = ACTIONS(2989), + [anon_sym_await] = ACTIONS(2991), + [anon_sym_api] = ACTIONS(2991), + [sym_true] = ACTIONS(2991), + [sym_false] = ACTIONS(2991), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2991), + [anon_sym_include] = ACTIONS(2991), + [anon_sym_DEF] = ACTIONS(2991), + [anon_sym_cdef] = ACTIONS(2991), + [anon_sym_cpdef] = ACTIONS(2991), + [anon_sym_new] = ACTIONS(2991), + [anon_sym_ctypedef] = ACTIONS(2991), + [anon_sym_public] = ACTIONS(2991), + [anon_sym_packed] = ACTIONS(2991), + [anon_sym_inline] = ACTIONS(2991), + [anon_sym_readonly] = ACTIONS(2991), + [anon_sym_sizeof] = ACTIONS(2991), + [sym_string_start] = ACTIONS(2989), }, [919] = { - [sym_elif_clause] = STATE(1091), - [sym_else_clause] = STATE(1696), - [aux_sym_if_statement_repeat1] = STATE(934), - [sym_identifier] = ACTIONS(2977), - [anon_sym_import] = ACTIONS(2977), - [anon_sym_cimport] = ACTIONS(2977), - [anon_sym_from] = ACTIONS(2977), - [anon_sym_LPAREN] = ACTIONS(2975), - [anon_sym_STAR] = ACTIONS(2975), - [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_elif] = ACTIONS(2973), - [anon_sym_else] = ACTIONS(2769), - [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_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(2975), - [anon_sym_AT] = ACTIONS(2975), - [anon_sym_DASH] = ACTIONS(2975), - [anon_sym_LBRACE] = ACTIONS(2975), - [anon_sym_PLUS] = ACTIONS(2975), - [anon_sym_not] = ACTIONS(2977), - [anon_sym_AMP] = ACTIONS(2975), - [anon_sym_TILDE] = ACTIONS(2975), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_lambda] = ACTIONS(2977), - [anon_sym_yield] = ACTIONS(2977), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2975), - [anon_sym_None] = ACTIONS(2977), - [sym_integer] = ACTIONS(2977), - [sym_float] = ACTIONS(2975), - [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(2975), - [sym_string_start] = ACTIONS(2975), + [sym_elif_clause] = STATE(1114), + [sym_else_clause] = STATE(1694), + [aux_sym_if_statement_repeat1] = STATE(937), + [ts_builtin_sym_end] = ACTIONS(2996), + [sym_identifier] = ACTIONS(2998), + [anon_sym_import] = ACTIONS(2998), + [anon_sym_cimport] = ACTIONS(2998), + [anon_sym_from] = ACTIONS(2998), + [anon_sym_LPAREN] = ACTIONS(2996), + [anon_sym_STAR] = ACTIONS(2996), + [anon_sym_print] = ACTIONS(2998), + [anon_sym_assert] = ACTIONS(2998), + [anon_sym_return] = ACTIONS(2998), + [anon_sym_del] = ACTIONS(2998), + [anon_sym_raise] = ACTIONS(2998), + [anon_sym_pass] = ACTIONS(2998), + [anon_sym_break] = ACTIONS(2998), + [anon_sym_continue] = ACTIONS(2998), + [anon_sym_if] = ACTIONS(2998), + [anon_sym_elif] = ACTIONS(3000), + [anon_sym_else] = ACTIONS(2693), + [anon_sym_match] = ACTIONS(2998), + [anon_sym_async] = ACTIONS(2998), + [anon_sym_for] = ACTIONS(2998), + [anon_sym_while] = ACTIONS(2998), + [anon_sym_try] = ACTIONS(2998), + [anon_sym_with] = ACTIONS(2998), + [anon_sym_def] = ACTIONS(2998), + [anon_sym_global] = ACTIONS(2998), + [anon_sym_nonlocal] = ACTIONS(2998), + [anon_sym_exec] = ACTIONS(2998), + [anon_sym_type] = ACTIONS(2998), + [anon_sym_class] = ACTIONS(2998), + [anon_sym_LBRACK] = ACTIONS(2996), + [anon_sym_AT] = ACTIONS(2996), + [anon_sym_DASH] = ACTIONS(2996), + [anon_sym_LBRACE] = ACTIONS(2996), + [anon_sym_PLUS] = ACTIONS(2996), + [anon_sym_not] = ACTIONS(2998), + [anon_sym_AMP] = ACTIONS(2996), + [anon_sym_TILDE] = ACTIONS(2996), + [anon_sym_LT] = ACTIONS(2996), + [anon_sym_lambda] = ACTIONS(2998), + [anon_sym_yield] = ACTIONS(2998), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2996), + [anon_sym_None] = ACTIONS(2998), + [sym_integer] = ACTIONS(2998), + [sym_float] = ACTIONS(2996), + [anon_sym_await] = ACTIONS(2998), + [anon_sym_api] = ACTIONS(2998), + [sym_true] = ACTIONS(2998), + [sym_false] = ACTIONS(2998), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2998), + [anon_sym_include] = ACTIONS(2998), + [anon_sym_DEF] = ACTIONS(2998), + [anon_sym_cdef] = ACTIONS(2998), + [anon_sym_cpdef] = ACTIONS(2998), + [anon_sym_new] = ACTIONS(2998), + [anon_sym_ctypedef] = ACTIONS(2998), + [anon_sym_public] = ACTIONS(2998), + [anon_sym_packed] = ACTIONS(2998), + [anon_sym_inline] = ACTIONS(2998), + [anon_sym_readonly] = ACTIONS(2998), + [anon_sym_sizeof] = ACTIONS(2998), + [sym_string_start] = ACTIONS(2996), }, [920] = { - [sym_named_expression] = STATE(2236), - [sym__named_expression_lhs] = STATE(5519), - [sym_list_splat_pattern] = STATE(2309), - [sym_as_pattern] = STATE(2236), - [sym__expression_within_for_in_clause] = STATE(4287), - [sym_expression] = STATE(3931), - [sym_primary_expression] = STATE(2054), - [sym_not_operator] = STATE(2236), - [sym_boolean_operator] = STATE(2236), - [sym_binary_operator] = STATE(2377), - [sym_unary_operator] = STATE(2377), - [sym_comparison_operator] = STATE(2236), - [sym_lambda] = STATE(2236), - [sym_lambda_within_for_in_clause] = STATE(4287), - [sym_attribute] = STATE(2377), - [sym_subscript] = STATE(2377), - [sym_ellipsis] = STATE(2377), - [sym_call] = STATE(2377), - [sym_list] = STATE(2377), - [sym_set] = STATE(2377), - [sym_tuple] = STATE(2377), - [sym_dictionary] = STATE(2377), - [sym_list_comprehension] = STATE(2377), - [sym_dictionary_comprehension] = STATE(2377), - [sym_set_comprehension] = STATE(2377), - [sym_generator_expression] = STATE(2377), - [sym_parenthesized_expression] = STATE(2377), - [sym_conditional_expression] = STATE(2236), - [sym_concatenated_string] = STATE(2377), - [sym_string] = STATE(2103), - [sym_none] = STATE(2377), - [sym_await] = STATE(2377), - [sym_new_expression] = STATE(2236), - [sym_sizeof_expression] = STATE(2377), - [sym_cast_expression] = STATE(2377), - [sym_identifier] = ACTIONS(2535), - [anon_sym_LPAREN] = ACTIONS(2401), - [anon_sym_STAR] = ACTIONS(2981), - [anon_sym_print] = ACTIONS(2543), - [anon_sym_if] = ACTIONS(3017), - [anon_sym_match] = ACTIONS(2543), - [anon_sym_async] = ACTIONS(3017), - [anon_sym_for] = ACTIONS(3017), - [anon_sym_exec] = ACTIONS(2543), - [anon_sym_LBRACK] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2409), - [anon_sym_LBRACE] = ACTIONS(2411), - [anon_sym_RBRACE] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(2409), - [anon_sym_not] = ACTIONS(2549), - [anon_sym_AMP] = ACTIONS(2409), - [anon_sym_TILDE] = ACTIONS(2409), - [anon_sym_LT] = ACTIONS(2551), - [anon_sym_lambda] = ACTIONS(2983), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2415), - [anon_sym_None] = ACTIONS(2417), - [sym_integer] = ACTIONS(2399), - [sym_float] = ACTIONS(2419), - [anon_sym_await] = ACTIONS(2557), - [anon_sym_api] = ACTIONS(2543), - [sym_true] = ACTIONS(2399), - [sym_false] = ACTIONS(2399), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2559), - [anon_sym_sizeof] = ACTIONS(2423), - [sym_string_start] = ACTIONS(2425), + [sym_except_clause] = STATE(920), + [aux_sym_try_statement_repeat1] = STATE(920), + [ts_builtin_sym_end] = ACTIONS(3002), + [sym_identifier] = ACTIONS(3004), + [anon_sym_import] = ACTIONS(3004), + [anon_sym_cimport] = ACTIONS(3004), + [anon_sym_from] = ACTIONS(3004), + [anon_sym_LPAREN] = ACTIONS(3002), + [anon_sym_STAR] = ACTIONS(3002), + [anon_sym_print] = ACTIONS(3004), + [anon_sym_assert] = ACTIONS(3004), + [anon_sym_return] = ACTIONS(3004), + [anon_sym_del] = ACTIONS(3004), + [anon_sym_raise] = ACTIONS(3004), + [anon_sym_pass] = ACTIONS(3004), + [anon_sym_break] = ACTIONS(3004), + [anon_sym_continue] = ACTIONS(3004), + [anon_sym_if] = ACTIONS(3004), + [anon_sym_else] = ACTIONS(3004), + [anon_sym_match] = ACTIONS(3004), + [anon_sym_async] = ACTIONS(3004), + [anon_sym_for] = ACTIONS(3004), + [anon_sym_while] = ACTIONS(3004), + [anon_sym_try] = ACTIONS(3004), + [anon_sym_except] = ACTIONS(3006), + [anon_sym_finally] = ACTIONS(3004), + [anon_sym_with] = ACTIONS(3004), + [anon_sym_def] = ACTIONS(3004), + [anon_sym_global] = ACTIONS(3004), + [anon_sym_nonlocal] = ACTIONS(3004), + [anon_sym_exec] = ACTIONS(3004), + [anon_sym_type] = ACTIONS(3004), + [anon_sym_class] = ACTIONS(3004), + [anon_sym_LBRACK] = ACTIONS(3002), + [anon_sym_AT] = ACTIONS(3002), + [anon_sym_DASH] = ACTIONS(3002), + [anon_sym_LBRACE] = ACTIONS(3002), + [anon_sym_PLUS] = ACTIONS(3002), + [anon_sym_not] = ACTIONS(3004), + [anon_sym_AMP] = ACTIONS(3002), + [anon_sym_TILDE] = ACTIONS(3002), + [anon_sym_LT] = ACTIONS(3002), + [anon_sym_lambda] = ACTIONS(3004), + [anon_sym_yield] = ACTIONS(3004), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3002), + [anon_sym_None] = ACTIONS(3004), + [sym_integer] = ACTIONS(3004), + [sym_float] = ACTIONS(3002), + [anon_sym_await] = ACTIONS(3004), + [anon_sym_api] = ACTIONS(3004), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3004), + [anon_sym_include] = ACTIONS(3004), + [anon_sym_DEF] = ACTIONS(3004), + [anon_sym_cdef] = ACTIONS(3004), + [anon_sym_cpdef] = ACTIONS(3004), + [anon_sym_new] = ACTIONS(3004), + [anon_sym_ctypedef] = ACTIONS(3004), + [anon_sym_public] = ACTIONS(3004), + [anon_sym_packed] = ACTIONS(3004), + [anon_sym_inline] = ACTIONS(3004), + [anon_sym_readonly] = ACTIONS(3004), + [anon_sym_sizeof] = ACTIONS(3004), + [sym_string_start] = ACTIONS(3002), }, [921] = { - [sym_named_expression] = STATE(2459), - [sym__named_expression_lhs] = STATE(5688), - [sym_list_splat_pattern] = STATE(2477), - [sym_as_pattern] = STATE(2459), - [sym__expression_within_for_in_clause] = STATE(4344), - [sym_expression] = STATE(3953), - [sym_primary_expression] = STATE(2060), - [sym_not_operator] = STATE(2459), - [sym_boolean_operator] = STATE(2459), - [sym_binary_operator] = STATE(2457), - [sym_unary_operator] = STATE(2457), - [sym_comparison_operator] = STATE(2459), - [sym_lambda] = STATE(2459), - [sym_lambda_within_for_in_clause] = STATE(4344), - [sym_attribute] = STATE(2457), - [sym_subscript] = STATE(2457), - [sym_ellipsis] = STATE(2457), - [sym_call] = STATE(2457), - [sym_list] = STATE(2457), - [sym_set] = STATE(2457), - [sym_tuple] = STATE(2457), - [sym_dictionary] = STATE(2457), - [sym_list_comprehension] = STATE(2457), - [sym_dictionary_comprehension] = STATE(2457), - [sym_set_comprehension] = STATE(2457), - [sym_generator_expression] = STATE(2457), - [sym_parenthesized_expression] = STATE(2457), - [sym_conditional_expression] = STATE(2459), - [sym_concatenated_string] = STATE(2457), - [sym_string] = STATE(2170), - [sym_none] = STATE(2457), - [sym_await] = STATE(2457), - [sym_new_expression] = STATE(2459), - [sym_sizeof_expression] = STATE(2457), - [sym_cast_expression] = STATE(2457), - [sym_identifier] = ACTIONS(2761), - [anon_sym_LPAREN] = ACTIONS(2427), - [anon_sym_RPAREN] = ACTIONS(2951), - [anon_sym_STAR] = ACTIONS(2939), - [anon_sym_print] = ACTIONS(1470), - [anon_sym_if] = ACTIONS(2949), - [anon_sym_match] = ACTIONS(1470), - [anon_sym_async] = ACTIONS(2949), - [anon_sym_for] = ACTIONS(2949), - [anon_sym_exec] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(1472), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1326), - [anon_sym_not] = ACTIONS(1330), - [anon_sym_AMP] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1326), - [anon_sym_LT] = ACTIONS(1332), - [anon_sym_lambda] = ACTIONS(2943), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1338), - [anon_sym_None] = ACTIONS(1340), - [sym_integer] = ACTIONS(1342), - [sym_float] = ACTIONS(1344), - [anon_sym_await] = ACTIONS(1474), - [anon_sym_api] = ACTIONS(1470), - [sym_true] = ACTIONS(1342), - [sym_false] = ACTIONS(1342), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1350), - [anon_sym_sizeof] = ACTIONS(1360), - [sym_string_start] = ACTIONS(1362), + [sym_elif_clause] = STATE(1117), + [sym_else_clause] = STATE(1466), + [aux_sym_if_statement_repeat1] = STATE(924), + [sym_identifier] = ACTIONS(2998), + [anon_sym_import] = ACTIONS(2998), + [anon_sym_cimport] = ACTIONS(2998), + [anon_sym_from] = ACTIONS(2998), + [anon_sym_LPAREN] = ACTIONS(2996), + [anon_sym_STAR] = ACTIONS(2996), + [anon_sym_print] = ACTIONS(2998), + [anon_sym_assert] = ACTIONS(2998), + [anon_sym_return] = ACTIONS(2998), + [anon_sym_del] = ACTIONS(2998), + [anon_sym_raise] = ACTIONS(2998), + [anon_sym_pass] = ACTIONS(2998), + [anon_sym_break] = ACTIONS(2998), + [anon_sym_continue] = ACTIONS(2998), + [anon_sym_if] = ACTIONS(2998), + [anon_sym_elif] = ACTIONS(3009), + [anon_sym_else] = ACTIONS(2773), + [anon_sym_match] = ACTIONS(2998), + [anon_sym_async] = ACTIONS(2998), + [anon_sym_for] = ACTIONS(2998), + [anon_sym_while] = ACTIONS(2998), + [anon_sym_try] = ACTIONS(2998), + [anon_sym_with] = ACTIONS(2998), + [anon_sym_def] = ACTIONS(2998), + [anon_sym_global] = ACTIONS(2998), + [anon_sym_nonlocal] = ACTIONS(2998), + [anon_sym_exec] = ACTIONS(2998), + [anon_sym_type] = ACTIONS(2998), + [anon_sym_class] = ACTIONS(2998), + [anon_sym_LBRACK] = ACTIONS(2996), + [anon_sym_AT] = ACTIONS(2996), + [anon_sym_DASH] = ACTIONS(2996), + [anon_sym_LBRACE] = ACTIONS(2996), + [anon_sym_PLUS] = ACTIONS(2996), + [anon_sym_not] = ACTIONS(2998), + [anon_sym_AMP] = ACTIONS(2996), + [anon_sym_TILDE] = ACTIONS(2996), + [anon_sym_LT] = ACTIONS(2996), + [anon_sym_lambda] = ACTIONS(2998), + [anon_sym_yield] = ACTIONS(2998), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2996), + [anon_sym_None] = ACTIONS(2998), + [sym_integer] = ACTIONS(2998), + [sym_float] = ACTIONS(2996), + [anon_sym_await] = ACTIONS(2998), + [anon_sym_api] = ACTIONS(2998), + [sym_true] = ACTIONS(2998), + [sym_false] = ACTIONS(2998), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2998), + [anon_sym_include] = ACTIONS(2998), + [anon_sym_DEF] = ACTIONS(2998), + [anon_sym_cdef] = ACTIONS(2998), + [anon_sym_cpdef] = ACTIONS(2998), + [anon_sym_new] = ACTIONS(2998), + [anon_sym_ctypedef] = ACTIONS(2998), + [anon_sym_public] = ACTIONS(2998), + [anon_sym_packed] = ACTIONS(2998), + [anon_sym_inline] = ACTIONS(2998), + [anon_sym_readonly] = ACTIONS(2998), + [anon_sym_sizeof] = ACTIONS(2998), + [sym__dedent] = ACTIONS(2996), + [sym_string_start] = ACTIONS(2996), }, [922] = { - [sym_except_clause] = STATE(922), - [aux_sym_try_statement_repeat1] = STATE(922), + [sym_named_expression] = STATE(2326), + [sym__named_expression_lhs] = STATE(5687), + [sym_list_splat_pattern] = STATE(2256), + [sym_as_pattern] = STATE(2326), + [sym__expression_within_for_in_clause] = STATE(4316), + [sym_expression] = STATE(3965), + [sym_primary_expression] = STATE(2061), + [sym_not_operator] = STATE(2326), + [sym_boolean_operator] = STATE(2326), + [sym_binary_operator] = STATE(2298), + [sym_unary_operator] = STATE(2298), + [sym_comparison_operator] = STATE(2326), + [sym_lambda] = STATE(2326), + [sym_lambda_within_for_in_clause] = STATE(4316), + [sym_attribute] = STATE(2298), + [sym_subscript] = STATE(2298), + [sym_ellipsis] = STATE(2298), + [sym_call] = STATE(2298), + [sym_list] = STATE(2298), + [sym_set] = STATE(2298), + [sym_tuple] = STATE(2298), + [sym_dictionary] = STATE(2298), + [sym_list_comprehension] = STATE(2298), + [sym_dictionary_comprehension] = STATE(2298), + [sym_set_comprehension] = STATE(2298), + [sym_generator_expression] = STATE(2298), + [sym_parenthesized_expression] = STATE(2298), + [sym_conditional_expression] = STATE(2326), + [sym_concatenated_string] = STATE(2298), + [sym_string] = STATE(2099), + [sym_none] = STATE(2298), + [sym_await] = STATE(2298), + [sym_new_expression] = STATE(2326), + [sym_sizeof_expression] = STATE(2298), + [sym_cast_expression] = STATE(2298), + [sym_identifier] = ACTIONS(2521), + [anon_sym_LPAREN] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(3011), + [anon_sym_print] = ACTIONS(2529), + [anon_sym_if] = ACTIONS(3013), + [anon_sym_match] = ACTIONS(2529), + [anon_sym_async] = ACTIONS(3013), + [anon_sym_for] = ACTIONS(3013), + [anon_sym_exec] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2419), + [anon_sym_DASH] = ACTIONS(2421), + [anon_sym_LBRACE] = ACTIONS(2423), + [anon_sym_RBRACE] = ACTIONS(3015), + [anon_sym_PLUS] = ACTIONS(2421), + [anon_sym_not] = ACTIONS(2535), + [anon_sym_AMP] = ACTIONS(2421), + [anon_sym_TILDE] = ACTIONS(2421), + [anon_sym_LT] = ACTIONS(2537), + [anon_sym_lambda] = ACTIONS(3017), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2427), + [anon_sym_None] = ACTIONS(2429), + [sym_integer] = ACTIONS(2411), + [sym_float] = ACTIONS(2431), + [anon_sym_await] = ACTIONS(2543), + [anon_sym_api] = ACTIONS(2529), + [sym_true] = ACTIONS(2411), + [sym_false] = ACTIONS(2411), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2545), + [anon_sym_sizeof] = ACTIONS(2435), + [sym_string_start] = ACTIONS(2437), + }, + [923] = { + [sym_elif_clause] = STATE(1114), + [sym_else_clause] = STATE(1696), + [aux_sym_if_statement_repeat1] = STATE(953), + [ts_builtin_sym_end] = ACTIONS(3019), [sym_identifier] = ACTIONS(3021), [anon_sym_import] = ACTIONS(3021), [anon_sym_cimport] = ACTIONS(3021), [anon_sym_from] = ACTIONS(3021), - [anon_sym_LPAREN] = ACTIONS(3023), - [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_LPAREN] = ACTIONS(3019), + [anon_sym_STAR] = ACTIONS(3019), [anon_sym_print] = ACTIONS(3021), [anon_sym_assert] = ACTIONS(3021), [anon_sym_return] = ACTIONS(3021), @@ -110649,14 +110863,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(3021), [anon_sym_continue] = ACTIONS(3021), [anon_sym_if] = ACTIONS(3021), - [anon_sym_else] = ACTIONS(3021), + [anon_sym_elif] = ACTIONS(3000), + [anon_sym_else] = ACTIONS(2693), [anon_sym_match] = ACTIONS(3021), [anon_sym_async] = ACTIONS(3021), [anon_sym_for] = ACTIONS(3021), [anon_sym_while] = ACTIONS(3021), [anon_sym_try] = ACTIONS(3021), - [anon_sym_except] = ACTIONS(3025), - [anon_sym_finally] = ACTIONS(3021), [anon_sym_with] = ACTIONS(3021), [anon_sym_def] = ACTIONS(3021), [anon_sym_global] = ACTIONS(3021), @@ -110664,21 +110877,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(3021), [anon_sym_type] = ACTIONS(3021), [anon_sym_class] = ACTIONS(3021), - [anon_sym_LBRACK] = ACTIONS(3023), - [anon_sym_AT] = ACTIONS(3023), - [anon_sym_DASH] = ACTIONS(3023), - [anon_sym_LBRACE] = ACTIONS(3023), - [anon_sym_PLUS] = ACTIONS(3023), + [anon_sym_LBRACK] = ACTIONS(3019), + [anon_sym_AT] = ACTIONS(3019), + [anon_sym_DASH] = ACTIONS(3019), + [anon_sym_LBRACE] = ACTIONS(3019), + [anon_sym_PLUS] = ACTIONS(3019), [anon_sym_not] = ACTIONS(3021), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_TILDE] = ACTIONS(3023), - [anon_sym_LT] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3019), + [anon_sym_TILDE] = ACTIONS(3019), + [anon_sym_LT] = ACTIONS(3019), [anon_sym_lambda] = ACTIONS(3021), [anon_sym_yield] = ACTIONS(3021), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3023), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3019), [anon_sym_None] = ACTIONS(3021), [sym_integer] = ACTIONS(3021), - [sym_float] = ACTIONS(3023), + [sym_float] = ACTIONS(3019), [anon_sym_await] = ACTIONS(3021), [anon_sym_api] = ACTIONS(3021), [sym_true] = ACTIONS(3021), @@ -110697,54 +110910,191 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3021), [anon_sym_readonly] = ACTIONS(3021), [anon_sym_sizeof] = ACTIONS(3021), - [sym__dedent] = ACTIONS(3023), - [sym_string_start] = ACTIONS(3023), + [sym_string_start] = ACTIONS(3019), }, - [923] = { - [sym_named_expression] = STATE(2459), - [sym__named_expression_lhs] = STATE(5688), - [sym_list_splat_pattern] = STATE(2477), - [sym_as_pattern] = STATE(2459), - [sym__expression_within_for_in_clause] = STATE(4344), - [sym_expression] = STATE(3953), - [sym_primary_expression] = STATE(2060), - [sym_not_operator] = STATE(2459), - [sym_boolean_operator] = STATE(2459), - [sym_binary_operator] = STATE(2457), - [sym_unary_operator] = STATE(2457), - [sym_comparison_operator] = STATE(2459), - [sym_lambda] = STATE(2459), - [sym_lambda_within_for_in_clause] = STATE(4344), - [sym_attribute] = STATE(2457), - [sym_subscript] = STATE(2457), - [sym_ellipsis] = STATE(2457), - [sym_call] = STATE(2457), - [sym_list] = STATE(2457), - [sym_set] = STATE(2457), - [sym_tuple] = STATE(2457), - [sym_dictionary] = STATE(2457), - [sym_list_comprehension] = STATE(2457), - [sym_dictionary_comprehension] = STATE(2457), - [sym_set_comprehension] = STATE(2457), - [sym_generator_expression] = STATE(2457), - [sym_parenthesized_expression] = STATE(2457), - [sym_conditional_expression] = STATE(2459), - [sym_concatenated_string] = STATE(2457), - [sym_string] = STATE(2170), - [sym_none] = STATE(2457), - [sym_await] = STATE(2457), - [sym_new_expression] = STATE(2459), - [sym_sizeof_expression] = STATE(2457), - [sym_cast_expression] = STATE(2457), - [sym_identifier] = ACTIONS(2761), - [anon_sym_LPAREN] = ACTIONS(2427), - [anon_sym_RPAREN] = ACTIONS(3019), - [anon_sym_STAR] = ACTIONS(2939), + [924] = { + [sym_elif_clause] = STATE(1117), + [sym_else_clause] = STATE(1491), + [aux_sym_if_statement_repeat1] = STATE(952), + [sym_identifier] = ACTIONS(3023), + [anon_sym_import] = ACTIONS(3023), + [anon_sym_cimport] = ACTIONS(3023), + [anon_sym_from] = ACTIONS(3023), + [anon_sym_LPAREN] = ACTIONS(3025), + [anon_sym_STAR] = ACTIONS(3025), + [anon_sym_print] = ACTIONS(3023), + [anon_sym_assert] = ACTIONS(3023), + [anon_sym_return] = ACTIONS(3023), + [anon_sym_del] = ACTIONS(3023), + [anon_sym_raise] = ACTIONS(3023), + [anon_sym_pass] = ACTIONS(3023), + [anon_sym_break] = ACTIONS(3023), + [anon_sym_continue] = ACTIONS(3023), + [anon_sym_if] = ACTIONS(3023), + [anon_sym_elif] = ACTIONS(3009), + [anon_sym_else] = ACTIONS(2773), + [anon_sym_match] = ACTIONS(3023), + [anon_sym_async] = ACTIONS(3023), + [anon_sym_for] = ACTIONS(3023), + [anon_sym_while] = ACTIONS(3023), + [anon_sym_try] = ACTIONS(3023), + [anon_sym_with] = ACTIONS(3023), + [anon_sym_def] = ACTIONS(3023), + [anon_sym_global] = ACTIONS(3023), + [anon_sym_nonlocal] = ACTIONS(3023), + [anon_sym_exec] = ACTIONS(3023), + [anon_sym_type] = ACTIONS(3023), + [anon_sym_class] = ACTIONS(3023), + [anon_sym_LBRACK] = ACTIONS(3025), + [anon_sym_AT] = ACTIONS(3025), + [anon_sym_DASH] = ACTIONS(3025), + [anon_sym_LBRACE] = ACTIONS(3025), + [anon_sym_PLUS] = ACTIONS(3025), + [anon_sym_not] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3025), + [anon_sym_TILDE] = ACTIONS(3025), + [anon_sym_LT] = ACTIONS(3025), + [anon_sym_lambda] = ACTIONS(3023), + [anon_sym_yield] = ACTIONS(3023), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3025), + [anon_sym_None] = ACTIONS(3023), + [sym_integer] = ACTIONS(3023), + [sym_float] = ACTIONS(3025), + [anon_sym_await] = ACTIONS(3023), + [anon_sym_api] = ACTIONS(3023), + [sym_true] = ACTIONS(3023), + [sym_false] = ACTIONS(3023), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3023), + [anon_sym_include] = ACTIONS(3023), + [anon_sym_DEF] = ACTIONS(3023), + [anon_sym_cdef] = ACTIONS(3023), + [anon_sym_cpdef] = ACTIONS(3023), + [anon_sym_new] = ACTIONS(3023), + [anon_sym_ctypedef] = ACTIONS(3023), + [anon_sym_public] = ACTIONS(3023), + [anon_sym_packed] = ACTIONS(3023), + [anon_sym_inline] = ACTIONS(3023), + [anon_sym_readonly] = ACTIONS(3023), + [anon_sym_sizeof] = ACTIONS(3023), + [sym__dedent] = ACTIONS(3025), + [sym_string_start] = ACTIONS(3025), + }, + [925] = { + [sym_elif_clause] = STATE(1117), + [sym_else_clause] = STATE(1492), + [aux_sym_if_statement_repeat1] = STATE(933), + [sym_identifier] = ACTIONS(3027), + [anon_sym_import] = ACTIONS(3027), + [anon_sym_cimport] = ACTIONS(3027), + [anon_sym_from] = ACTIONS(3027), + [anon_sym_LPAREN] = ACTIONS(3029), + [anon_sym_STAR] = ACTIONS(3029), + [anon_sym_print] = ACTIONS(3027), + [anon_sym_assert] = ACTIONS(3027), + [anon_sym_return] = ACTIONS(3027), + [anon_sym_del] = ACTIONS(3027), + [anon_sym_raise] = ACTIONS(3027), + [anon_sym_pass] = ACTIONS(3027), + [anon_sym_break] = ACTIONS(3027), + [anon_sym_continue] = ACTIONS(3027), + [anon_sym_if] = ACTIONS(3027), + [anon_sym_elif] = ACTIONS(3009), + [anon_sym_else] = ACTIONS(2773), + [anon_sym_match] = ACTIONS(3027), + [anon_sym_async] = ACTIONS(3027), + [anon_sym_for] = ACTIONS(3027), + [anon_sym_while] = ACTIONS(3027), + [anon_sym_try] = ACTIONS(3027), + [anon_sym_with] = ACTIONS(3027), + [anon_sym_def] = ACTIONS(3027), + [anon_sym_global] = ACTIONS(3027), + [anon_sym_nonlocal] = ACTIONS(3027), + [anon_sym_exec] = ACTIONS(3027), + [anon_sym_type] = ACTIONS(3027), + [anon_sym_class] = ACTIONS(3027), + [anon_sym_LBRACK] = ACTIONS(3029), + [anon_sym_AT] = ACTIONS(3029), + [anon_sym_DASH] = ACTIONS(3029), + [anon_sym_LBRACE] = ACTIONS(3029), + [anon_sym_PLUS] = ACTIONS(3029), + [anon_sym_not] = ACTIONS(3027), + [anon_sym_AMP] = ACTIONS(3029), + [anon_sym_TILDE] = ACTIONS(3029), + [anon_sym_LT] = ACTIONS(3029), + [anon_sym_lambda] = ACTIONS(3027), + [anon_sym_yield] = ACTIONS(3027), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3029), + [anon_sym_None] = ACTIONS(3027), + [sym_integer] = ACTIONS(3027), + [sym_float] = ACTIONS(3029), + [anon_sym_await] = ACTIONS(3027), + [anon_sym_api] = ACTIONS(3027), + [sym_true] = ACTIONS(3027), + [sym_false] = ACTIONS(3027), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3027), + [anon_sym_include] = ACTIONS(3027), + [anon_sym_DEF] = ACTIONS(3027), + [anon_sym_cdef] = ACTIONS(3027), + [anon_sym_cpdef] = ACTIONS(3027), + [anon_sym_new] = ACTIONS(3027), + [anon_sym_ctypedef] = ACTIONS(3027), + [anon_sym_public] = ACTIONS(3027), + [anon_sym_packed] = ACTIONS(3027), + [anon_sym_inline] = ACTIONS(3027), + [anon_sym_readonly] = ACTIONS(3027), + [anon_sym_sizeof] = ACTIONS(3027), + [sym__dedent] = ACTIONS(3029), + [sym_string_start] = ACTIONS(3029), + }, + [926] = { + [sym_named_expression] = STATE(2421), + [sym__named_expression_lhs] = STATE(5522), + [sym_list_splat_pattern] = STATE(2472), + [sym_as_pattern] = STATE(2421), + [sym__expression_within_for_in_clause] = STATE(4462), + [sym_expression] = STATE(3915), + [sym_primary_expression] = STATE(2066), + [sym_not_operator] = STATE(2421), + [sym_boolean_operator] = STATE(2421), + [sym_binary_operator] = STATE(2414), + [sym_unary_operator] = STATE(2414), + [sym_comparison_operator] = STATE(2421), + [sym_lambda] = STATE(2421), + [sym_lambda_within_for_in_clause] = STATE(4462), + [sym_attribute] = STATE(2414), + [sym_subscript] = STATE(2414), + [sym_ellipsis] = STATE(2414), + [sym_call] = STATE(2414), + [sym_list] = STATE(2414), + [sym_set] = STATE(2414), + [sym_tuple] = STATE(2414), + [sym_dictionary] = STATE(2414), + [sym_list_comprehension] = STATE(2414), + [sym_dictionary_comprehension] = STATE(2414), + [sym_set_comprehension] = STATE(2414), + [sym_generator_expression] = STATE(2414), + [sym_parenthesized_expression] = STATE(2414), + [sym_conditional_expression] = STATE(2421), + [sym_concatenated_string] = STATE(2414), + [sym_string] = STATE(2147), + [sym_none] = STATE(2414), + [sym_await] = STATE(2414), + [sym_new_expression] = STATE(2421), + [sym_sizeof_expression] = STATE(2414), + [sym_cast_expression] = STATE(2414), + [sym_identifier] = ACTIONS(2787), + [anon_sym_LPAREN] = ACTIONS(2377), + [anon_sym_RPAREN] = ACTIONS(3015), + [anon_sym_STAR] = ACTIONS(2965), [anon_sym_print] = ACTIONS(1470), - [anon_sym_if] = ACTIONS(3017), + [anon_sym_if] = ACTIONS(3013), [anon_sym_match] = ACTIONS(1470), - [anon_sym_async] = ACTIONS(3017), - [anon_sym_for] = ACTIONS(3017), + [anon_sym_async] = ACTIONS(3013), + [anon_sym_for] = ACTIONS(3013), [anon_sym_exec] = ACTIONS(1470), [anon_sym_LBRACK] = ACTIONS(1472), [anon_sym_DASH] = ACTIONS(1326), @@ -110754,7 +111104,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1326), [anon_sym_TILDE] = ACTIONS(1326), [anon_sym_LT] = ACTIONS(1332), - [anon_sym_lambda] = ACTIONS(2943), + [anon_sym_lambda] = ACTIONS(2969), [anon_sym_DOT_DOT_DOT] = ACTIONS(1338), [anon_sym_None] = ACTIONS(1340), [sym_integer] = ACTIONS(1342), @@ -110769,223 +111119,430 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1360), [sym_string_start] = ACTIONS(1362), }, - [924] = { - [sym_named_expression] = STATE(2421), - [sym__named_expression_lhs] = STATE(5414), - [sym_list_splat_pattern] = STATE(2523), - [sym_as_pattern] = STATE(2421), - [sym__expression_within_for_in_clause] = STATE(4460), - [sym_expression] = STATE(3939), - [sym_primary_expression] = STATE(2063), - [sym_not_operator] = STATE(2421), - [sym_boolean_operator] = STATE(2421), - [sym_binary_operator] = STATE(2418), - [sym_unary_operator] = STATE(2418), - [sym_comparison_operator] = STATE(2421), - [sym_lambda] = STATE(2421), - [sym_lambda_within_for_in_clause] = STATE(4460), - [sym_attribute] = STATE(2418), - [sym_subscript] = STATE(2418), - [sym_ellipsis] = STATE(2418), - [sym_call] = STATE(2418), - [sym_list] = STATE(2418), - [sym_set] = STATE(2418), - [sym_tuple] = STATE(2418), - [sym_dictionary] = STATE(2418), - [sym_list_comprehension] = STATE(2418), - [sym_dictionary_comprehension] = STATE(2418), - [sym_set_comprehension] = STATE(2418), - [sym_generator_expression] = STATE(2418), - [sym_parenthesized_expression] = STATE(2418), - [sym_conditional_expression] = STATE(2421), - [sym_concatenated_string] = STATE(2418), - [sym_string] = STATE(2157), - [sym_none] = STATE(2418), - [sym_await] = STATE(2418), - [sym_new_expression] = STATE(2421), - [sym_sizeof_expression] = STATE(2418), - [sym_cast_expression] = STATE(2418), - [sym_identifier] = ACTIONS(2803), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2947), - [anon_sym_print] = ACTIONS(2807), - [anon_sym_if] = ACTIONS(3001), - [anon_sym_match] = ACTIONS(2807), - [anon_sym_async] = ACTIONS(3001), - [anon_sym_for] = ACTIONS(3001), - [anon_sym_exec] = ACTIONS(2807), - [anon_sym_LBRACK] = ACTIONS(2485), - [anon_sym_RBRACK] = ACTIONS(3003), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2523), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2525), - [anon_sym_lambda] = ACTIONS(2953), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2811), - [anon_sym_api] = ACTIONS(2807), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2533), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), + [927] = { + [sym_except_clause] = STATE(927), + [aux_sym_try_statement_repeat1] = STATE(927), + [sym_identifier] = ACTIONS(3004), + [anon_sym_import] = ACTIONS(3004), + [anon_sym_cimport] = ACTIONS(3004), + [anon_sym_from] = ACTIONS(3004), + [anon_sym_LPAREN] = ACTIONS(3002), + [anon_sym_STAR] = ACTIONS(3002), + [anon_sym_print] = ACTIONS(3004), + [anon_sym_assert] = ACTIONS(3004), + [anon_sym_return] = ACTIONS(3004), + [anon_sym_del] = ACTIONS(3004), + [anon_sym_raise] = ACTIONS(3004), + [anon_sym_pass] = ACTIONS(3004), + [anon_sym_break] = ACTIONS(3004), + [anon_sym_continue] = ACTIONS(3004), + [anon_sym_if] = ACTIONS(3004), + [anon_sym_else] = ACTIONS(3004), + [anon_sym_match] = ACTIONS(3004), + [anon_sym_async] = ACTIONS(3004), + [anon_sym_for] = ACTIONS(3004), + [anon_sym_while] = ACTIONS(3004), + [anon_sym_try] = ACTIONS(3004), + [anon_sym_except] = ACTIONS(3031), + [anon_sym_finally] = ACTIONS(3004), + [anon_sym_with] = ACTIONS(3004), + [anon_sym_def] = ACTIONS(3004), + [anon_sym_global] = ACTIONS(3004), + [anon_sym_nonlocal] = ACTIONS(3004), + [anon_sym_exec] = ACTIONS(3004), + [anon_sym_type] = ACTIONS(3004), + [anon_sym_class] = ACTIONS(3004), + [anon_sym_LBRACK] = ACTIONS(3002), + [anon_sym_AT] = ACTIONS(3002), + [anon_sym_DASH] = ACTIONS(3002), + [anon_sym_LBRACE] = ACTIONS(3002), + [anon_sym_PLUS] = ACTIONS(3002), + [anon_sym_not] = ACTIONS(3004), + [anon_sym_AMP] = ACTIONS(3002), + [anon_sym_TILDE] = ACTIONS(3002), + [anon_sym_LT] = ACTIONS(3002), + [anon_sym_lambda] = ACTIONS(3004), + [anon_sym_yield] = ACTIONS(3004), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3002), + [anon_sym_None] = ACTIONS(3004), + [sym_integer] = ACTIONS(3004), + [sym_float] = ACTIONS(3002), + [anon_sym_await] = ACTIONS(3004), + [anon_sym_api] = ACTIONS(3004), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3004), + [anon_sym_include] = ACTIONS(3004), + [anon_sym_DEF] = ACTIONS(3004), + [anon_sym_cdef] = ACTIONS(3004), + [anon_sym_cpdef] = ACTIONS(3004), + [anon_sym_new] = ACTIONS(3004), + [anon_sym_ctypedef] = ACTIONS(3004), + [anon_sym_public] = ACTIONS(3004), + [anon_sym_packed] = ACTIONS(3004), + [anon_sym_inline] = ACTIONS(3004), + [anon_sym_readonly] = ACTIONS(3004), + [anon_sym_sizeof] = ACTIONS(3004), + [sym__dedent] = ACTIONS(3002), + [sym_string_start] = ACTIONS(3002), }, - [925] = { + [928] = { + [sym_except_group_clause] = STATE(928), + [aux_sym_try_statement_repeat2] = STATE(928), + [sym_identifier] = ACTIONS(2991), + [anon_sym_import] = ACTIONS(2991), + [anon_sym_cimport] = ACTIONS(2991), + [anon_sym_from] = ACTIONS(2991), + [anon_sym_LPAREN] = ACTIONS(2989), + [anon_sym_STAR] = ACTIONS(2989), + [anon_sym_print] = ACTIONS(2991), + [anon_sym_assert] = ACTIONS(2991), + [anon_sym_return] = ACTIONS(2991), + [anon_sym_del] = ACTIONS(2991), + [anon_sym_raise] = ACTIONS(2991), + [anon_sym_pass] = ACTIONS(2991), + [anon_sym_break] = ACTIONS(2991), + [anon_sym_continue] = ACTIONS(2991), + [anon_sym_if] = ACTIONS(2991), + [anon_sym_else] = ACTIONS(2991), + [anon_sym_match] = ACTIONS(2991), + [anon_sym_async] = ACTIONS(2991), + [anon_sym_for] = ACTIONS(2991), + [anon_sym_while] = ACTIONS(2991), + [anon_sym_try] = ACTIONS(2991), + [anon_sym_except_STAR] = ACTIONS(3034), + [anon_sym_finally] = ACTIONS(2991), + [anon_sym_with] = ACTIONS(2991), + [anon_sym_def] = ACTIONS(2991), + [anon_sym_global] = ACTIONS(2991), + [anon_sym_nonlocal] = ACTIONS(2991), + [anon_sym_exec] = ACTIONS(2991), + [anon_sym_type] = ACTIONS(2991), + [anon_sym_class] = ACTIONS(2991), + [anon_sym_LBRACK] = ACTIONS(2989), + [anon_sym_AT] = ACTIONS(2989), + [anon_sym_DASH] = ACTIONS(2989), + [anon_sym_LBRACE] = ACTIONS(2989), + [anon_sym_PLUS] = ACTIONS(2989), + [anon_sym_not] = ACTIONS(2991), + [anon_sym_AMP] = ACTIONS(2989), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_LT] = ACTIONS(2989), + [anon_sym_lambda] = ACTIONS(2991), + [anon_sym_yield] = ACTIONS(2991), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2989), + [anon_sym_None] = ACTIONS(2991), + [sym_integer] = ACTIONS(2991), + [sym_float] = ACTIONS(2989), + [anon_sym_await] = ACTIONS(2991), + [anon_sym_api] = ACTIONS(2991), + [sym_true] = ACTIONS(2991), + [sym_false] = ACTIONS(2991), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2991), + [anon_sym_include] = ACTIONS(2991), + [anon_sym_DEF] = ACTIONS(2991), + [anon_sym_cdef] = ACTIONS(2991), + [anon_sym_cpdef] = ACTIONS(2991), + [anon_sym_new] = ACTIONS(2991), + [anon_sym_ctypedef] = ACTIONS(2991), + [anon_sym_public] = ACTIONS(2991), + [anon_sym_packed] = ACTIONS(2991), + [anon_sym_inline] = ACTIONS(2991), + [anon_sym_readonly] = ACTIONS(2991), + [anon_sym_sizeof] = ACTIONS(2991), + [sym__dedent] = ACTIONS(2989), + [sym_string_start] = ACTIONS(2989), + }, + [929] = { + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(5207), + [sym_parenthesized_list_splat] = STATE(5207), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4184), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_yield] = STATE(5207), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(3037), + [anon_sym_LPAREN] = ACTIONS(2785), + [anon_sym_RPAREN] = ACTIONS(2941), + [anon_sym_STAR] = ACTIONS(3039), + [anon_sym_print] = ACTIONS(2399), + [anon_sym_match] = ACTIONS(2399), + [anon_sym_async] = ACTIONS(2399), + [anon_sym_exec] = ACTIONS(2399), + [anon_sym_LBRACK] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_LBRACE] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(1384), + [anon_sym_not] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_TILDE] = ACTIONS(1384), + [anon_sym_LT] = ACTIONS(1390), + [anon_sym_lambda] = ACTIONS(1392), + [anon_sym_yield] = ACTIONS(1336), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1394), + [anon_sym_None] = ACTIONS(1396), + [sym_integer] = ACTIONS(1398), + [sym_float] = ACTIONS(1400), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_api] = ACTIONS(2399), + [sym_true] = ACTIONS(1398), + [sym_false] = ACTIONS(1398), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1404), + [anon_sym_sizeof] = ACTIONS(1406), + [sym_string_start] = ACTIONS(1408), + }, + [930] = { + [sym_named_expression] = STATE(2326), + [sym__named_expression_lhs] = STATE(5687), + [sym_list_splat_pattern] = STATE(2256), + [sym_as_pattern] = STATE(2326), + [sym__expression_within_for_in_clause] = STATE(4316), + [sym_expression] = STATE(3965), + [sym_primary_expression] = STATE(2061), + [sym_not_operator] = STATE(2326), + [sym_boolean_operator] = STATE(2326), + [sym_binary_operator] = STATE(2298), + [sym_unary_operator] = STATE(2298), + [sym_comparison_operator] = STATE(2326), + [sym_lambda] = STATE(2326), + [sym_lambda_within_for_in_clause] = STATE(4316), + [sym_attribute] = STATE(2298), + [sym_subscript] = STATE(2298), + [sym_ellipsis] = STATE(2298), + [sym_call] = STATE(2298), + [sym_list] = STATE(2298), + [sym_set] = STATE(2298), + [sym_tuple] = STATE(2298), + [sym_dictionary] = STATE(2298), + [sym_list_comprehension] = STATE(2298), + [sym_dictionary_comprehension] = STATE(2298), + [sym_set_comprehension] = STATE(2298), + [sym_generator_expression] = STATE(2298), + [sym_parenthesized_expression] = STATE(2298), + [sym_conditional_expression] = STATE(2326), + [sym_concatenated_string] = STATE(2298), + [sym_string] = STATE(2099), + [sym_none] = STATE(2298), + [sym_await] = STATE(2298), + [sym_new_expression] = STATE(2326), + [sym_sizeof_expression] = STATE(2298), + [sym_cast_expression] = STATE(2298), + [sym_identifier] = ACTIONS(2521), + [anon_sym_LPAREN] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(3011), + [anon_sym_print] = ACTIONS(2529), + [anon_sym_if] = ACTIONS(2945), + [anon_sym_match] = ACTIONS(2529), + [anon_sym_async] = ACTIONS(2945), + [anon_sym_for] = ACTIONS(2945), + [anon_sym_exec] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2419), + [anon_sym_DASH] = ACTIONS(2421), + [anon_sym_LBRACE] = ACTIONS(2423), + [anon_sym_RBRACE] = ACTIONS(2947), + [anon_sym_PLUS] = ACTIONS(2421), + [anon_sym_not] = ACTIONS(2535), + [anon_sym_AMP] = ACTIONS(2421), + [anon_sym_TILDE] = ACTIONS(2421), + [anon_sym_LT] = ACTIONS(2537), + [anon_sym_lambda] = ACTIONS(3017), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2427), + [anon_sym_None] = ACTIONS(2429), + [sym_integer] = ACTIONS(2411), + [sym_float] = ACTIONS(2431), + [anon_sym_await] = ACTIONS(2543), + [anon_sym_api] = ACTIONS(2529), + [sym_true] = ACTIONS(2411), + [sym_false] = ACTIONS(2411), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2545), + [anon_sym_sizeof] = ACTIONS(2435), + [sym_string_start] = ACTIONS(2437), + }, + [931] = { [sym_named_expression] = STATE(2421), - [sym__named_expression_lhs] = STATE(5414), - [sym_list_splat_pattern] = STATE(2523), + [sym__named_expression_lhs] = STATE(5522), + [sym_list_splat_pattern] = STATE(2472), [sym_as_pattern] = STATE(2421), - [sym__expression_within_for_in_clause] = STATE(4460), - [sym_expression] = STATE(3939), - [sym_primary_expression] = STATE(2063), + [sym__expression_within_for_in_clause] = STATE(4462), + [sym_expression] = STATE(3915), + [sym_primary_expression] = STATE(2066), [sym_not_operator] = STATE(2421), [sym_boolean_operator] = STATE(2421), - [sym_binary_operator] = STATE(2418), - [sym_unary_operator] = STATE(2418), + [sym_binary_operator] = STATE(2414), + [sym_unary_operator] = STATE(2414), [sym_comparison_operator] = STATE(2421), [sym_lambda] = STATE(2421), - [sym_lambda_within_for_in_clause] = STATE(4460), - [sym_attribute] = STATE(2418), - [sym_subscript] = STATE(2418), - [sym_ellipsis] = STATE(2418), - [sym_call] = STATE(2418), - [sym_list] = STATE(2418), - [sym_set] = STATE(2418), - [sym_tuple] = STATE(2418), - [sym_dictionary] = STATE(2418), - [sym_list_comprehension] = STATE(2418), - [sym_dictionary_comprehension] = STATE(2418), - [sym_set_comprehension] = STATE(2418), - [sym_generator_expression] = STATE(2418), - [sym_parenthesized_expression] = STATE(2418), + [sym_lambda_within_for_in_clause] = STATE(4462), + [sym_attribute] = STATE(2414), + [sym_subscript] = STATE(2414), + [sym_ellipsis] = STATE(2414), + [sym_call] = STATE(2414), + [sym_list] = STATE(2414), + [sym_set] = STATE(2414), + [sym_tuple] = STATE(2414), + [sym_dictionary] = STATE(2414), + [sym_list_comprehension] = STATE(2414), + [sym_dictionary_comprehension] = STATE(2414), + [sym_set_comprehension] = STATE(2414), + [sym_generator_expression] = STATE(2414), + [sym_parenthesized_expression] = STATE(2414), [sym_conditional_expression] = STATE(2421), - [sym_concatenated_string] = STATE(2418), - [sym_string] = STATE(2157), - [sym_none] = STATE(2418), - [sym_await] = STATE(2418), + [sym_concatenated_string] = STATE(2414), + [sym_string] = STATE(2147), + [sym_none] = STATE(2414), + [sym_await] = STATE(2414), [sym_new_expression] = STATE(2421), - [sym_sizeof_expression] = STATE(2418), - [sym_cast_expression] = STATE(2418), - [sym_identifier] = ACTIONS(2803), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2947), - [anon_sym_print] = ACTIONS(2807), - [anon_sym_if] = ACTIONS(3017), - [anon_sym_match] = ACTIONS(2807), - [anon_sym_async] = ACTIONS(3017), - [anon_sym_for] = ACTIONS(3017), - [anon_sym_exec] = ACTIONS(2807), - [anon_sym_LBRACK] = ACTIONS(2485), - [anon_sym_RBRACK] = ACTIONS(3019), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2523), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2525), - [anon_sym_lambda] = ACTIONS(2953), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2811), - [anon_sym_api] = ACTIONS(2807), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2533), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), + [sym_sizeof_expression] = STATE(2414), + [sym_cast_expression] = STATE(2414), + [sym_identifier] = ACTIONS(2787), + [anon_sym_LPAREN] = ACTIONS(2377), + [anon_sym_RPAREN] = ACTIONS(2973), + [anon_sym_STAR] = ACTIONS(2965), + [anon_sym_print] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(2971), + [anon_sym_match] = ACTIONS(1470), + [anon_sym_async] = ACTIONS(2971), + [anon_sym_for] = ACTIONS(2971), + [anon_sym_exec] = ACTIONS(1470), + [anon_sym_LBRACK] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1326), + [anon_sym_LBRACE] = ACTIONS(1328), + [anon_sym_PLUS] = ACTIONS(1326), + [anon_sym_not] = ACTIONS(1330), + [anon_sym_AMP] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1326), + [anon_sym_LT] = ACTIONS(1332), + [anon_sym_lambda] = ACTIONS(2969), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1338), + [anon_sym_None] = ACTIONS(1340), + [sym_integer] = ACTIONS(1342), + [sym_float] = ACTIONS(1344), + [anon_sym_await] = ACTIONS(1474), + [anon_sym_api] = ACTIONS(1470), + [sym_true] = ACTIONS(1342), + [sym_false] = ACTIONS(1342), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1350), + [anon_sym_sizeof] = ACTIONS(1360), + [sym_string_start] = ACTIONS(1362), }, - [926] = { - [sym_except_group_clause] = STATE(926), - [aux_sym_try_statement_repeat2] = STATE(926), - [sym_identifier] = ACTIONS(3028), - [anon_sym_import] = ACTIONS(3028), - [anon_sym_cimport] = ACTIONS(3028), - [anon_sym_from] = ACTIONS(3028), - [anon_sym_LPAREN] = ACTIONS(3030), - [anon_sym_STAR] = ACTIONS(3030), - [anon_sym_print] = ACTIONS(3028), - [anon_sym_assert] = ACTIONS(3028), - [anon_sym_return] = ACTIONS(3028), - [anon_sym_del] = ACTIONS(3028), - [anon_sym_raise] = ACTIONS(3028), - [anon_sym_pass] = ACTIONS(3028), - [anon_sym_break] = ACTIONS(3028), - [anon_sym_continue] = ACTIONS(3028), - [anon_sym_if] = ACTIONS(3028), - [anon_sym_else] = ACTIONS(3028), - [anon_sym_match] = ACTIONS(3028), - [anon_sym_async] = ACTIONS(3028), - [anon_sym_for] = ACTIONS(3028), - [anon_sym_while] = ACTIONS(3028), - [anon_sym_try] = ACTIONS(3028), - [anon_sym_except_STAR] = ACTIONS(3032), - [anon_sym_finally] = ACTIONS(3028), - [anon_sym_with] = ACTIONS(3028), - [anon_sym_def] = ACTIONS(3028), - [anon_sym_global] = ACTIONS(3028), - [anon_sym_nonlocal] = ACTIONS(3028), - [anon_sym_exec] = ACTIONS(3028), - [anon_sym_type] = ACTIONS(3028), - [anon_sym_class] = ACTIONS(3028), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_AT] = ACTIONS(3030), - [anon_sym_DASH] = ACTIONS(3030), - [anon_sym_LBRACE] = ACTIONS(3030), - [anon_sym_PLUS] = ACTIONS(3030), - [anon_sym_not] = ACTIONS(3028), - [anon_sym_AMP] = ACTIONS(3030), - [anon_sym_TILDE] = ACTIONS(3030), - [anon_sym_LT] = ACTIONS(3030), - [anon_sym_lambda] = ACTIONS(3028), - [anon_sym_yield] = ACTIONS(3028), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3030), - [anon_sym_None] = ACTIONS(3028), - [sym_integer] = ACTIONS(3028), - [sym_float] = ACTIONS(3030), - [anon_sym_await] = ACTIONS(3028), - [anon_sym_api] = ACTIONS(3028), - [sym_true] = ACTIONS(3028), - [sym_false] = ACTIONS(3028), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(3028), - [anon_sym_include] = ACTIONS(3028), - [anon_sym_DEF] = ACTIONS(3028), - [anon_sym_cdef] = ACTIONS(3028), - [anon_sym_cpdef] = ACTIONS(3028), - [anon_sym_new] = ACTIONS(3028), - [anon_sym_ctypedef] = ACTIONS(3028), - [anon_sym_public] = ACTIONS(3028), - [anon_sym_packed] = ACTIONS(3028), - [anon_sym_inline] = ACTIONS(3028), - [anon_sym_readonly] = ACTIONS(3028), - [anon_sym_sizeof] = ACTIONS(3028), - [sym__dedent] = ACTIONS(3030), - [sym_string_start] = ACTIONS(3030), + [932] = { + [sym_named_expression] = STATE(3825), + [sym__named_expression_lhs] = STATE(5675), + [sym_list_splat] = STATE(5353), + [sym_parenthesized_list_splat] = STATE(5353), + [sym_list_splat_pattern] = STATE(2284), + [sym_as_pattern] = STATE(3825), + [sym_expression] = STATE(4265), + [sym_primary_expression] = STATE(2057), + [sym_not_operator] = STATE(3825), + [sym_boolean_operator] = STATE(3825), + [sym_binary_operator] = STATE(2257), + [sym_unary_operator] = STATE(2257), + [sym_comparison_operator] = STATE(3825), + [sym_lambda] = STATE(3825), + [sym_yield] = STATE(5353), + [sym_attribute] = STATE(2257), + [sym_subscript] = STATE(2257), + [sym_ellipsis] = STATE(2257), + [sym_call] = STATE(2257), + [sym_list] = STATE(2257), + [sym_set] = STATE(2257), + [sym_tuple] = STATE(2257), + [sym_dictionary] = STATE(2257), + [sym_list_comprehension] = STATE(2257), + [sym_dictionary_comprehension] = STATE(2257), + [sym_set_comprehension] = STATE(2257), + [sym_generator_expression] = STATE(2257), + [sym_parenthesized_expression] = STATE(2257), + [sym_conditional_expression] = STATE(3825), + [sym_concatenated_string] = STATE(2257), + [sym_string] = STATE(2089), + [sym_none] = STATE(2257), + [sym_await] = STATE(2257), + [sym_new_expression] = STATE(3825), + [sym_sizeof_expression] = STATE(2257), + [sym_cast_expression] = STATE(2257), + [sym_identifier] = ACTIONS(2923), + [anon_sym_LPAREN] = ACTIONS(3041), + [anon_sym_STAR] = ACTIONS(3043), + [anon_sym_print] = ACTIONS(2927), + [anon_sym_match] = ACTIONS(2927), + [anon_sym_async] = ACTIONS(2927), + [anon_sym_exec] = ACTIONS(2927), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_DASH] = ACTIONS(1951), + [anon_sym_LBRACE] = ACTIONS(1953), + [anon_sym_RBRACE] = ACTIONS(2987), + [anon_sym_PLUS] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3045), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_LT] = ACTIONS(2669), + [anon_sym_lambda] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(2541), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1957), + [anon_sym_None] = ACTIONS(1959), + [sym_integer] = ACTIONS(1941), + [sym_float] = ACTIONS(1961), + [anon_sym_await] = ACTIONS(2931), + [anon_sym_api] = ACTIONS(2927), + [sym_true] = ACTIONS(1941), + [sym_false] = ACTIONS(1941), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3049), + [anon_sym_sizeof] = ACTIONS(1965), + [sym_string_start] = ACTIONS(1967), }, - [927] = { - [sym_except_clause] = STATE(927), - [aux_sym_try_statement_repeat1] = STATE(927), - [ts_builtin_sym_end] = ACTIONS(3023), + [933] = { + [sym_elif_clause] = STATE(1117), + [sym_else_clause] = STATE(1520), + [aux_sym_if_statement_repeat1] = STATE(952), [sym_identifier] = ACTIONS(3021), [anon_sym_import] = ACTIONS(3021), [anon_sym_cimport] = ACTIONS(3021), [anon_sym_from] = ACTIONS(3021), - [anon_sym_LPAREN] = ACTIONS(3023), - [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_LPAREN] = ACTIONS(3019), + [anon_sym_STAR] = ACTIONS(3019), [anon_sym_print] = ACTIONS(3021), [anon_sym_assert] = ACTIONS(3021), [anon_sym_return] = ACTIONS(3021), @@ -110995,14 +111552,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(3021), [anon_sym_continue] = ACTIONS(3021), [anon_sym_if] = ACTIONS(3021), - [anon_sym_else] = ACTIONS(3021), + [anon_sym_elif] = ACTIONS(3009), + [anon_sym_else] = ACTIONS(2773), [anon_sym_match] = ACTIONS(3021), [anon_sym_async] = ACTIONS(3021), [anon_sym_for] = ACTIONS(3021), [anon_sym_while] = ACTIONS(3021), [anon_sym_try] = ACTIONS(3021), - [anon_sym_except] = ACTIONS(3035), - [anon_sym_finally] = ACTIONS(3021), [anon_sym_with] = ACTIONS(3021), [anon_sym_def] = ACTIONS(3021), [anon_sym_global] = ACTIONS(3021), @@ -111010,21 +111566,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(3021), [anon_sym_type] = ACTIONS(3021), [anon_sym_class] = ACTIONS(3021), - [anon_sym_LBRACK] = ACTIONS(3023), - [anon_sym_AT] = ACTIONS(3023), - [anon_sym_DASH] = ACTIONS(3023), - [anon_sym_LBRACE] = ACTIONS(3023), - [anon_sym_PLUS] = ACTIONS(3023), + [anon_sym_LBRACK] = ACTIONS(3019), + [anon_sym_AT] = ACTIONS(3019), + [anon_sym_DASH] = ACTIONS(3019), + [anon_sym_LBRACE] = ACTIONS(3019), + [anon_sym_PLUS] = ACTIONS(3019), [anon_sym_not] = ACTIONS(3021), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_TILDE] = ACTIONS(3023), - [anon_sym_LT] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3019), + [anon_sym_TILDE] = ACTIONS(3019), + [anon_sym_LT] = ACTIONS(3019), [anon_sym_lambda] = ACTIONS(3021), [anon_sym_yield] = ACTIONS(3021), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3023), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3019), [anon_sym_None] = ACTIONS(3021), [sym_integer] = ACTIONS(3021), - [sym_float] = ACTIONS(3023), + [sym_float] = ACTIONS(3019), [anon_sym_await] = ACTIONS(3021), [anon_sym_api] = ACTIONS(3021), [sym_true] = ACTIONS(3021), @@ -111043,398 +111599,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3021), [anon_sym_readonly] = ACTIONS(3021), [anon_sym_sizeof] = ACTIONS(3021), - [sym_string_start] = ACTIONS(3023), - }, - [928] = { - [sym_except_group_clause] = STATE(928), - [aux_sym_try_statement_repeat2] = STATE(928), - [ts_builtin_sym_end] = ACTIONS(3030), - [sym_identifier] = ACTIONS(3028), - [anon_sym_import] = ACTIONS(3028), - [anon_sym_cimport] = ACTIONS(3028), - [anon_sym_from] = ACTIONS(3028), - [anon_sym_LPAREN] = ACTIONS(3030), - [anon_sym_STAR] = ACTIONS(3030), - [anon_sym_print] = ACTIONS(3028), - [anon_sym_assert] = ACTIONS(3028), - [anon_sym_return] = ACTIONS(3028), - [anon_sym_del] = ACTIONS(3028), - [anon_sym_raise] = ACTIONS(3028), - [anon_sym_pass] = ACTIONS(3028), - [anon_sym_break] = ACTIONS(3028), - [anon_sym_continue] = ACTIONS(3028), - [anon_sym_if] = ACTIONS(3028), - [anon_sym_else] = ACTIONS(3028), - [anon_sym_match] = ACTIONS(3028), - [anon_sym_async] = ACTIONS(3028), - [anon_sym_for] = ACTIONS(3028), - [anon_sym_while] = ACTIONS(3028), - [anon_sym_try] = ACTIONS(3028), - [anon_sym_except_STAR] = ACTIONS(3038), - [anon_sym_finally] = ACTIONS(3028), - [anon_sym_with] = ACTIONS(3028), - [anon_sym_def] = ACTIONS(3028), - [anon_sym_global] = ACTIONS(3028), - [anon_sym_nonlocal] = ACTIONS(3028), - [anon_sym_exec] = ACTIONS(3028), - [anon_sym_type] = ACTIONS(3028), - [anon_sym_class] = ACTIONS(3028), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_AT] = ACTIONS(3030), - [anon_sym_DASH] = ACTIONS(3030), - [anon_sym_LBRACE] = ACTIONS(3030), - [anon_sym_PLUS] = ACTIONS(3030), - [anon_sym_not] = ACTIONS(3028), - [anon_sym_AMP] = ACTIONS(3030), - [anon_sym_TILDE] = ACTIONS(3030), - [anon_sym_LT] = ACTIONS(3030), - [anon_sym_lambda] = ACTIONS(3028), - [anon_sym_yield] = ACTIONS(3028), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3030), - [anon_sym_None] = ACTIONS(3028), - [sym_integer] = ACTIONS(3028), - [sym_float] = ACTIONS(3030), - [anon_sym_await] = ACTIONS(3028), - [anon_sym_api] = ACTIONS(3028), - [sym_true] = ACTIONS(3028), - [sym_false] = ACTIONS(3028), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(3028), - [anon_sym_include] = ACTIONS(3028), - [anon_sym_DEF] = ACTIONS(3028), - [anon_sym_cdef] = ACTIONS(3028), - [anon_sym_cpdef] = ACTIONS(3028), - [anon_sym_new] = ACTIONS(3028), - [anon_sym_ctypedef] = ACTIONS(3028), - [anon_sym_public] = ACTIONS(3028), - [anon_sym_packed] = ACTIONS(3028), - [anon_sym_inline] = ACTIONS(3028), - [anon_sym_readonly] = ACTIONS(3028), - [anon_sym_sizeof] = ACTIONS(3028), - [sym_string_start] = ACTIONS(3030), - }, - [929] = { - [sym_named_expression] = STATE(2459), - [sym__named_expression_lhs] = STATE(5688), - [sym_list_splat_pattern] = STATE(2477), - [sym_as_pattern] = STATE(2459), - [sym__expression_within_for_in_clause] = STATE(4344), - [sym_expression] = STATE(3953), - [sym_primary_expression] = STATE(2060), - [sym_not_operator] = STATE(2459), - [sym_boolean_operator] = STATE(2459), - [sym_binary_operator] = STATE(2457), - [sym_unary_operator] = STATE(2457), - [sym_comparison_operator] = STATE(2459), - [sym_lambda] = STATE(2459), - [sym_lambda_within_for_in_clause] = STATE(4344), - [sym_attribute] = STATE(2457), - [sym_subscript] = STATE(2457), - [sym_ellipsis] = STATE(2457), - [sym_call] = STATE(2457), - [sym_list] = STATE(2457), - [sym_set] = STATE(2457), - [sym_tuple] = STATE(2457), - [sym_dictionary] = STATE(2457), - [sym_list_comprehension] = STATE(2457), - [sym_dictionary_comprehension] = STATE(2457), - [sym_set_comprehension] = STATE(2457), - [sym_generator_expression] = STATE(2457), - [sym_parenthesized_expression] = STATE(2457), - [sym_conditional_expression] = STATE(2459), - [sym_concatenated_string] = STATE(2457), - [sym_string] = STATE(2170), - [sym_none] = STATE(2457), - [sym_await] = STATE(2457), - [sym_new_expression] = STATE(2459), - [sym_sizeof_expression] = STATE(2457), - [sym_cast_expression] = STATE(2457), - [sym_identifier] = ACTIONS(2761), - [anon_sym_LPAREN] = ACTIONS(2427), - [anon_sym_RPAREN] = ACTIONS(3003), - [anon_sym_STAR] = ACTIONS(2939), - [anon_sym_print] = ACTIONS(1470), - [anon_sym_if] = ACTIONS(3001), - [anon_sym_match] = ACTIONS(1470), - [anon_sym_async] = ACTIONS(3001), - [anon_sym_for] = ACTIONS(3001), - [anon_sym_exec] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(1472), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1326), - [anon_sym_not] = ACTIONS(1330), - [anon_sym_AMP] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1326), - [anon_sym_LT] = ACTIONS(1332), - [anon_sym_lambda] = ACTIONS(2943), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1338), - [anon_sym_None] = ACTIONS(1340), - [sym_integer] = ACTIONS(1342), - [sym_float] = ACTIONS(1344), - [anon_sym_await] = ACTIONS(1474), - [anon_sym_api] = ACTIONS(1470), - [sym_true] = ACTIONS(1342), - [sym_false] = ACTIONS(1342), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1350), - [anon_sym_sizeof] = ACTIONS(1360), - [sym_string_start] = ACTIONS(1362), - }, - [930] = { - [sym_named_expression] = STATE(3081), - [sym__named_expression_lhs] = STATE(5469), - [sym_expression_list] = STATE(5509), - [sym_pattern] = STATE(4623), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(2592), - [sym_as_pattern] = STATE(3081), - [sym_expression] = STATE(4072), - [sym_primary_expression] = STATE(2067), - [sym_not_operator] = STATE(3081), - [sym_boolean_operator] = STATE(3081), - [sym_binary_operator] = STATE(2549), - [sym_unary_operator] = STATE(2549), - [sym_comparison_operator] = STATE(3081), - [sym_lambda] = STATE(3081), - [sym_pattern_list] = STATE(5362), - [sym_attribute] = STATE(2599), - [sym_subscript] = STATE(2599), - [sym_ellipsis] = STATE(2549), - [sym_call] = STATE(2549), - [sym_list] = STATE(2549), - [sym_set] = STATE(2549), - [sym_tuple] = STATE(2549), - [sym_dictionary] = STATE(2549), - [sym_list_comprehension] = STATE(2549), - [sym_dictionary_comprehension] = STATE(2549), - [sym_set_comprehension] = STATE(2549), - [sym_generator_expression] = STATE(2549), - [sym_parenthesized_expression] = STATE(2549), - [sym_conditional_expression] = STATE(3081), - [sym_concatenated_string] = STATE(2549), - [sym_string] = STATE(2140), - [sym_none] = STATE(2549), - [sym_await] = STATE(2549), - [sym_new_expression] = STATE(3081), - [sym_sizeof_expression] = STATE(2549), - [sym_cast_expression] = STATE(2549), - [sym_identifier] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(3007), - [anon_sym_STAR] = ACTIONS(3009), - [anon_sym_print] = ACTIONS(3011), - [anon_sym_match] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(3011), - [anon_sym_exec] = ACTIONS(3011), - [anon_sym_LBRACK] = ACTIONS(3013), - [anon_sym_DASH] = ACTIONS(1227), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_PLUS] = ACTIONS(1227), - [anon_sym_not] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1227), - [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(2735), - [anon_sym_lambda] = ACTIONS(1231), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), - [anon_sym_None] = ACTIONS(1235), - [sym_integer] = ACTIONS(1237), - [sym_float] = ACTIONS(1239), - [anon_sym_await] = ACTIONS(3015), - [anon_sym_api] = ACTIONS(3011), - [sym_true] = ACTIONS(1237), - [sym_false] = ACTIONS(1237), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1243), - [anon_sym_sizeof] = ACTIONS(1245), - [sym_string_start] = ACTIONS(1247), + [sym__dedent] = ACTIONS(3019), + [sym_string_start] = ACTIONS(3019), }, - [931] = { - [sym_named_expression] = STATE(3081), - [sym__named_expression_lhs] = STATE(5469), - [sym_expression_list] = STATE(5550), - [sym_pattern] = STATE(4628), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(2592), - [sym_as_pattern] = STATE(3081), - [sym_expression] = STATE(4079), - [sym_primary_expression] = STATE(2067), - [sym_not_operator] = STATE(3081), - [sym_boolean_operator] = STATE(3081), - [sym_binary_operator] = STATE(2549), - [sym_unary_operator] = STATE(2549), - [sym_comparison_operator] = STATE(3081), - [sym_lambda] = STATE(3081), - [sym_pattern_list] = STATE(5366), - [sym_attribute] = STATE(2599), - [sym_subscript] = STATE(2599), - [sym_ellipsis] = STATE(2549), - [sym_call] = STATE(2549), - [sym_list] = STATE(2549), - [sym_set] = STATE(2549), - [sym_tuple] = STATE(2549), - [sym_dictionary] = STATE(2549), - [sym_list_comprehension] = STATE(2549), - [sym_dictionary_comprehension] = STATE(2549), - [sym_set_comprehension] = STATE(2549), - [sym_generator_expression] = STATE(2549), - [sym_parenthesized_expression] = STATE(2549), - [sym_conditional_expression] = STATE(3081), - [sym_concatenated_string] = STATE(2549), - [sym_string] = STATE(2140), - [sym_none] = STATE(2549), - [sym_await] = STATE(2549), - [sym_new_expression] = STATE(3081), - [sym_sizeof_expression] = STATE(2549), - [sym_cast_expression] = STATE(2549), - [sym_identifier] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(3007), - [anon_sym_STAR] = ACTIONS(3009), - [anon_sym_print] = ACTIONS(3011), - [anon_sym_match] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(3011), - [anon_sym_exec] = ACTIONS(3011), - [anon_sym_LBRACK] = ACTIONS(3013), - [anon_sym_DASH] = ACTIONS(1227), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_PLUS] = ACTIONS(1227), - [anon_sym_not] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1227), - [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(2735), - [anon_sym_lambda] = ACTIONS(1231), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), - [anon_sym_None] = ACTIONS(1235), - [sym_integer] = ACTIONS(1237), - [sym_float] = ACTIONS(1239), - [anon_sym_await] = ACTIONS(3015), - [anon_sym_api] = ACTIONS(3011), - [sym_true] = ACTIONS(1237), - [sym_false] = ACTIONS(1237), + [934] = { + [sym_named_expression] = STATE(3825), + [sym__named_expression_lhs] = STATE(5675), + [sym_list_splat] = STATE(5353), + [sym_parenthesized_list_splat] = STATE(5353), + [sym_list_splat_pattern] = STATE(2284), + [sym_as_pattern] = STATE(3825), + [sym_expression] = STATE(4265), + [sym_primary_expression] = STATE(2057), + [sym_not_operator] = STATE(3825), + [sym_boolean_operator] = STATE(3825), + [sym_binary_operator] = STATE(2257), + [sym_unary_operator] = STATE(2257), + [sym_comparison_operator] = STATE(3825), + [sym_lambda] = STATE(3825), + [sym_yield] = STATE(5353), + [sym_attribute] = STATE(2257), + [sym_subscript] = STATE(2257), + [sym_ellipsis] = STATE(2257), + [sym_call] = STATE(2257), + [sym_list] = STATE(2257), + [sym_set] = STATE(2257), + [sym_tuple] = STATE(2257), + [sym_dictionary] = STATE(2257), + [sym_list_comprehension] = STATE(2257), + [sym_dictionary_comprehension] = STATE(2257), + [sym_set_comprehension] = STATE(2257), + [sym_generator_expression] = STATE(2257), + [sym_parenthesized_expression] = STATE(2257), + [sym_conditional_expression] = STATE(3825), + [sym_concatenated_string] = STATE(2257), + [sym_string] = STATE(2089), + [sym_none] = STATE(2257), + [sym_await] = STATE(2257), + [sym_new_expression] = STATE(3825), + [sym_sizeof_expression] = STATE(2257), + [sym_cast_expression] = STATE(2257), + [sym_identifier] = ACTIONS(2923), + [anon_sym_LPAREN] = ACTIONS(3041), + [anon_sym_STAR] = ACTIONS(3043), + [anon_sym_print] = ACTIONS(2927), + [anon_sym_match] = ACTIONS(2927), + [anon_sym_async] = ACTIONS(2927), + [anon_sym_exec] = ACTIONS(2927), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_DASH] = ACTIONS(1951), + [anon_sym_LBRACE] = ACTIONS(1953), + [anon_sym_RBRACE] = ACTIONS(2941), + [anon_sym_PLUS] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3045), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_LT] = ACTIONS(2669), + [anon_sym_lambda] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(2541), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1957), + [anon_sym_None] = ACTIONS(1959), + [sym_integer] = ACTIONS(1941), + [sym_float] = ACTIONS(1961), + [anon_sym_await] = ACTIONS(2931), + [anon_sym_api] = ACTIONS(2927), + [sym_true] = ACTIONS(1941), + [sym_false] = ACTIONS(1941), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1243), - [anon_sym_sizeof] = ACTIONS(1245), - [sym_string_start] = ACTIONS(1247), - }, - [932] = { - [sym_elif_clause] = STATE(1081), - [sym_else_clause] = STATE(1399), - [aux_sym_if_statement_repeat1] = STATE(962), - [ts_builtin_sym_end] = ACTIONS(3041), - [sym_identifier] = ACTIONS(3043), - [anon_sym_import] = ACTIONS(3043), - [anon_sym_cimport] = ACTIONS(3043), - [anon_sym_from] = ACTIONS(3043), - [anon_sym_LPAREN] = ACTIONS(3041), - [anon_sym_STAR] = ACTIONS(3041), - [anon_sym_print] = ACTIONS(3043), - [anon_sym_assert] = ACTIONS(3043), - [anon_sym_return] = ACTIONS(3043), - [anon_sym_del] = ACTIONS(3043), - [anon_sym_raise] = ACTIONS(3043), - [anon_sym_pass] = ACTIONS(3043), - [anon_sym_break] = ACTIONS(3043), - [anon_sym_continue] = ACTIONS(3043), - [anon_sym_if] = ACTIONS(3043), - [anon_sym_elif] = ACTIONS(2979), - [anon_sym_else] = ACTIONS(2695), - [anon_sym_match] = ACTIONS(3043), - [anon_sym_async] = ACTIONS(3043), - [anon_sym_for] = ACTIONS(3043), - [anon_sym_while] = ACTIONS(3043), - [anon_sym_try] = ACTIONS(3043), - [anon_sym_with] = ACTIONS(3043), - [anon_sym_def] = ACTIONS(3043), - [anon_sym_global] = ACTIONS(3043), - [anon_sym_nonlocal] = ACTIONS(3043), - [anon_sym_exec] = ACTIONS(3043), - [anon_sym_type] = ACTIONS(3043), - [anon_sym_class] = ACTIONS(3043), - [anon_sym_LBRACK] = ACTIONS(3041), - [anon_sym_AT] = ACTIONS(3041), - [anon_sym_DASH] = ACTIONS(3041), - [anon_sym_LBRACE] = ACTIONS(3041), - [anon_sym_PLUS] = ACTIONS(3041), - [anon_sym_not] = ACTIONS(3043), - [anon_sym_AMP] = ACTIONS(3041), - [anon_sym_TILDE] = ACTIONS(3041), - [anon_sym_LT] = ACTIONS(3041), - [anon_sym_lambda] = ACTIONS(3043), - [anon_sym_yield] = ACTIONS(3043), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3041), - [anon_sym_None] = ACTIONS(3043), - [sym_integer] = ACTIONS(3043), - [sym_float] = ACTIONS(3041), - [anon_sym_await] = ACTIONS(3043), - [anon_sym_api] = ACTIONS(3043), - [sym_true] = ACTIONS(3043), - [sym_false] = ACTIONS(3043), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(3043), - [anon_sym_include] = ACTIONS(3043), - [anon_sym_DEF] = ACTIONS(3043), - [anon_sym_cdef] = ACTIONS(3043), - [anon_sym_cpdef] = ACTIONS(3043), - [anon_sym_new] = ACTIONS(3043), - [anon_sym_ctypedef] = ACTIONS(3043), - [anon_sym_public] = ACTIONS(3043), - [anon_sym_packed] = ACTIONS(3043), - [anon_sym_inline] = ACTIONS(3043), - [anon_sym_readonly] = ACTIONS(3043), - [anon_sym_sizeof] = ACTIONS(3043), - [sym_string_start] = ACTIONS(3041), + [anon_sym_new] = ACTIONS(3049), + [anon_sym_sizeof] = ACTIONS(1965), + [sym_string_start] = ACTIONS(1967), }, - [933] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(5153), - [sym_parenthesized_list_splat] = STATE(5153), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4178), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_yield] = STATE(5153), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), - [sym_identifier] = ACTIONS(2955), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_RPAREN] = ACTIONS(2929), - [anon_sym_STAR] = ACTIONS(2957), - [anon_sym_print] = ACTIONS(2959), - [anon_sym_match] = ACTIONS(2959), - [anon_sym_async] = ACTIONS(2959), - [anon_sym_exec] = ACTIONS(2959), + [935] = { + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(5207), + [sym_parenthesized_list_splat] = STATE(5207), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4184), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_yield] = STATE(5207), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(3037), + [anon_sym_LPAREN] = ACTIONS(2785), + [anon_sym_RPAREN] = ACTIONS(2987), + [anon_sym_STAR] = ACTIONS(3039), + [anon_sym_print] = ACTIONS(2399), + [anon_sym_match] = ACTIONS(2399), + [anon_sym_async] = ACTIONS(2399), + [anon_sym_exec] = ACTIONS(2399), [anon_sym_LBRACK] = ACTIONS(1382), [anon_sym_DASH] = ACTIONS(1384), [anon_sym_LBRACE] = ACTIONS(1386), @@ -111449,8 +111730,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_None] = ACTIONS(1396), [sym_integer] = ACTIONS(1398), [sym_float] = ACTIONS(1400), - [anon_sym_await] = ACTIONS(2961), - [anon_sym_api] = ACTIONS(2959), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_api] = ACTIONS(2399), [sym_true] = ACTIONS(1398), [sym_false] = ACTIONS(1398), [sym_comment] = ACTIONS(3), @@ -111459,115 +111740,253 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1406), [sym_string_start] = ACTIONS(1408), }, - [934] = { - [sym_elif_clause] = STATE(1091), - [sym_else_clause] = STATE(1723), - [aux_sym_if_statement_repeat1] = STATE(965), - [sym_identifier] = ACTIONS(3043), - [anon_sym_import] = ACTIONS(3043), - [anon_sym_cimport] = ACTIONS(3043), - [anon_sym_from] = ACTIONS(3043), - [anon_sym_LPAREN] = ACTIONS(3041), - [anon_sym_STAR] = ACTIONS(3041), - [anon_sym_print] = ACTIONS(3043), - [anon_sym_assert] = ACTIONS(3043), - [anon_sym_return] = ACTIONS(3043), - [anon_sym_del] = ACTIONS(3043), - [anon_sym_raise] = ACTIONS(3043), - [anon_sym_pass] = ACTIONS(3043), - [anon_sym_break] = ACTIONS(3043), - [anon_sym_continue] = ACTIONS(3043), - [anon_sym_if] = ACTIONS(3043), - [anon_sym_elif] = ACTIONS(2973), - [anon_sym_else] = ACTIONS(2769), - [anon_sym_match] = ACTIONS(3043), - [anon_sym_async] = ACTIONS(3043), - [anon_sym_for] = ACTIONS(3043), - [anon_sym_while] = ACTIONS(3043), - [anon_sym_try] = ACTIONS(3043), - [anon_sym_with] = ACTIONS(3043), - [anon_sym_def] = ACTIONS(3043), - [anon_sym_global] = ACTIONS(3043), - [anon_sym_nonlocal] = ACTIONS(3043), - [anon_sym_exec] = ACTIONS(3043), - [anon_sym_type] = ACTIONS(3043), - [anon_sym_class] = ACTIONS(3043), - [anon_sym_LBRACK] = ACTIONS(3041), - [anon_sym_AT] = ACTIONS(3041), - [anon_sym_DASH] = ACTIONS(3041), - [anon_sym_LBRACE] = ACTIONS(3041), - [anon_sym_PLUS] = ACTIONS(3041), - [anon_sym_not] = ACTIONS(3043), - [anon_sym_AMP] = ACTIONS(3041), - [anon_sym_TILDE] = ACTIONS(3041), - [anon_sym_LT] = ACTIONS(3041), - [anon_sym_lambda] = ACTIONS(3043), - [anon_sym_yield] = ACTIONS(3043), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3041), - [anon_sym_None] = ACTIONS(3043), - [sym_integer] = ACTIONS(3043), - [sym_float] = ACTIONS(3041), - [anon_sym_await] = ACTIONS(3043), - [anon_sym_api] = ACTIONS(3043), - [sym_true] = ACTIONS(3043), - [sym_false] = ACTIONS(3043), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(3043), - [anon_sym_include] = ACTIONS(3043), - [anon_sym_DEF] = ACTIONS(3043), - [anon_sym_cdef] = ACTIONS(3043), - [anon_sym_cpdef] = ACTIONS(3043), - [anon_sym_new] = ACTIONS(3043), - [anon_sym_ctypedef] = ACTIONS(3043), - [anon_sym_public] = ACTIONS(3043), - [anon_sym_packed] = ACTIONS(3043), - [anon_sym_inline] = ACTIONS(3043), - [anon_sym_readonly] = ACTIONS(3043), - [anon_sym_sizeof] = ACTIONS(3043), - [sym__dedent] = ACTIONS(3041), - [sym_string_start] = ACTIONS(3041), + [936] = { + [sym_named_expression] = STATE(2493), + [sym__named_expression_lhs] = STATE(5681), + [sym_list_splat_pattern] = STATE(2415), + [sym_as_pattern] = STATE(2493), + [sym__expression_within_for_in_clause] = STATE(4358), + [sym_expression] = STATE(3953), + [sym_primary_expression] = STATE(2070), + [sym_not_operator] = STATE(2493), + [sym_boolean_operator] = STATE(2493), + [sym_binary_operator] = STATE(2470), + [sym_unary_operator] = STATE(2470), + [sym_comparison_operator] = STATE(2493), + [sym_lambda] = STATE(2493), + [sym_lambda_within_for_in_clause] = STATE(4358), + [sym_attribute] = STATE(2470), + [sym_subscript] = STATE(2470), + [sym_ellipsis] = STATE(2470), + [sym_call] = STATE(2470), + [sym_list] = STATE(2470), + [sym_set] = STATE(2470), + [sym_tuple] = STATE(2470), + [sym_dictionary] = STATE(2470), + [sym_list_comprehension] = STATE(2470), + [sym_dictionary_comprehension] = STATE(2470), + [sym_set_comprehension] = STATE(2470), + [sym_generator_expression] = STATE(2470), + [sym_parenthesized_expression] = STATE(2470), + [sym_conditional_expression] = STATE(2493), + [sym_concatenated_string] = STATE(2470), + [sym_string] = STATE(2177), + [sym_none] = STATE(2470), + [sym_await] = STATE(2470), + [sym_new_expression] = STATE(2493), + [sym_sizeof_expression] = STATE(2470), + [sym_cast_expression] = STATE(2470), + [sym_identifier] = ACTIONS(2815), + [anon_sym_LPAREN] = ACTIONS(2489), + [anon_sym_STAR] = ACTIONS(2943), + [anon_sym_print] = ACTIONS(2819), + [anon_sym_if] = ACTIONS(2967), + [anon_sym_match] = ACTIONS(2819), + [anon_sym_async] = ACTIONS(2967), + [anon_sym_for] = ACTIONS(2967), + [anon_sym_exec] = ACTIONS(2819), + [anon_sym_LBRACK] = ACTIONS(2495), + [anon_sym_RBRACK] = ACTIONS(2963), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2499), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_not] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_TILDE] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2563), + [anon_sym_lambda] = ACTIONS(2949), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2503), + [anon_sym_None] = ACTIONS(2505), + [sym_integer] = ACTIONS(2487), + [sym_float] = ACTIONS(2507), + [anon_sym_await] = ACTIONS(2823), + [anon_sym_api] = ACTIONS(2819), + [sym_true] = ACTIONS(2487), + [sym_false] = ACTIONS(2487), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2571), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_string_start] = ACTIONS(2513), }, - [935] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(5170), - [sym_dictionary_splat] = STATE(5170), + [937] = { + [sym_elif_clause] = STATE(1114), + [sym_else_clause] = STATE(1542), + [aux_sym_if_statement_repeat1] = STATE(953), + [ts_builtin_sym_end] = ACTIONS(3025), + [sym_identifier] = ACTIONS(3023), + [anon_sym_import] = ACTIONS(3023), + [anon_sym_cimport] = ACTIONS(3023), + [anon_sym_from] = ACTIONS(3023), + [anon_sym_LPAREN] = ACTIONS(3025), + [anon_sym_STAR] = ACTIONS(3025), + [anon_sym_print] = ACTIONS(3023), + [anon_sym_assert] = ACTIONS(3023), + [anon_sym_return] = ACTIONS(3023), + [anon_sym_del] = ACTIONS(3023), + [anon_sym_raise] = ACTIONS(3023), + [anon_sym_pass] = ACTIONS(3023), + [anon_sym_break] = ACTIONS(3023), + [anon_sym_continue] = ACTIONS(3023), + [anon_sym_if] = ACTIONS(3023), + [anon_sym_elif] = ACTIONS(3000), + [anon_sym_else] = ACTIONS(2693), + [anon_sym_match] = ACTIONS(3023), + [anon_sym_async] = ACTIONS(3023), + [anon_sym_for] = ACTIONS(3023), + [anon_sym_while] = ACTIONS(3023), + [anon_sym_try] = ACTIONS(3023), + [anon_sym_with] = ACTIONS(3023), + [anon_sym_def] = ACTIONS(3023), + [anon_sym_global] = ACTIONS(3023), + [anon_sym_nonlocal] = ACTIONS(3023), + [anon_sym_exec] = ACTIONS(3023), + [anon_sym_type] = ACTIONS(3023), + [anon_sym_class] = ACTIONS(3023), + [anon_sym_LBRACK] = ACTIONS(3025), + [anon_sym_AT] = ACTIONS(3025), + [anon_sym_DASH] = ACTIONS(3025), + [anon_sym_LBRACE] = ACTIONS(3025), + [anon_sym_PLUS] = ACTIONS(3025), + [anon_sym_not] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3025), + [anon_sym_TILDE] = ACTIONS(3025), + [anon_sym_LT] = ACTIONS(3025), + [anon_sym_lambda] = ACTIONS(3023), + [anon_sym_yield] = ACTIONS(3023), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3025), + [anon_sym_None] = ACTIONS(3023), + [sym_integer] = ACTIONS(3023), + [sym_float] = ACTIONS(3025), + [anon_sym_await] = ACTIONS(3023), + [anon_sym_api] = ACTIONS(3023), + [sym_true] = ACTIONS(3023), + [sym_false] = ACTIONS(3023), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3023), + [anon_sym_include] = ACTIONS(3023), + [anon_sym_DEF] = ACTIONS(3023), + [anon_sym_cdef] = ACTIONS(3023), + [anon_sym_cpdef] = ACTIONS(3023), + [anon_sym_new] = ACTIONS(3023), + [anon_sym_ctypedef] = ACTIONS(3023), + [anon_sym_public] = ACTIONS(3023), + [anon_sym_packed] = ACTIONS(3023), + [anon_sym_inline] = ACTIONS(3023), + [anon_sym_readonly] = ACTIONS(3023), + [anon_sym_sizeof] = ACTIONS(3023), + [sym_string_start] = ACTIONS(3025), + }, + [938] = { + [sym_elif_clause] = STATE(1114), + [sym_else_clause] = STATE(1543), + [aux_sym_if_statement_repeat1] = STATE(923), + [ts_builtin_sym_end] = ACTIONS(3029), + [sym_identifier] = ACTIONS(3027), + [anon_sym_import] = ACTIONS(3027), + [anon_sym_cimport] = ACTIONS(3027), + [anon_sym_from] = ACTIONS(3027), + [anon_sym_LPAREN] = ACTIONS(3029), + [anon_sym_STAR] = ACTIONS(3029), + [anon_sym_print] = ACTIONS(3027), + [anon_sym_assert] = ACTIONS(3027), + [anon_sym_return] = ACTIONS(3027), + [anon_sym_del] = ACTIONS(3027), + [anon_sym_raise] = ACTIONS(3027), + [anon_sym_pass] = ACTIONS(3027), + [anon_sym_break] = ACTIONS(3027), + [anon_sym_continue] = ACTIONS(3027), + [anon_sym_if] = ACTIONS(3027), + [anon_sym_elif] = ACTIONS(3000), + [anon_sym_else] = ACTIONS(2693), + [anon_sym_match] = ACTIONS(3027), + [anon_sym_async] = ACTIONS(3027), + [anon_sym_for] = ACTIONS(3027), + [anon_sym_while] = ACTIONS(3027), + [anon_sym_try] = ACTIONS(3027), + [anon_sym_with] = ACTIONS(3027), + [anon_sym_def] = ACTIONS(3027), + [anon_sym_global] = ACTIONS(3027), + [anon_sym_nonlocal] = ACTIONS(3027), + [anon_sym_exec] = ACTIONS(3027), + [anon_sym_type] = ACTIONS(3027), + [anon_sym_class] = ACTIONS(3027), + [anon_sym_LBRACK] = ACTIONS(3029), + [anon_sym_AT] = ACTIONS(3029), + [anon_sym_DASH] = ACTIONS(3029), + [anon_sym_LBRACE] = ACTIONS(3029), + [anon_sym_PLUS] = ACTIONS(3029), + [anon_sym_not] = ACTIONS(3027), + [anon_sym_AMP] = ACTIONS(3029), + [anon_sym_TILDE] = ACTIONS(3029), + [anon_sym_LT] = ACTIONS(3029), + [anon_sym_lambda] = ACTIONS(3027), + [anon_sym_yield] = ACTIONS(3027), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3029), + [anon_sym_None] = ACTIONS(3027), + [sym_integer] = ACTIONS(3027), + [sym_float] = ACTIONS(3029), + [anon_sym_await] = ACTIONS(3027), + [anon_sym_api] = ACTIONS(3027), + [sym_true] = ACTIONS(3027), + [sym_false] = ACTIONS(3027), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3027), + [anon_sym_include] = ACTIONS(3027), + [anon_sym_DEF] = ACTIONS(3027), + [anon_sym_cdef] = ACTIONS(3027), + [anon_sym_cpdef] = ACTIONS(3027), + [anon_sym_new] = ACTIONS(3027), + [anon_sym_ctypedef] = ACTIONS(3027), + [anon_sym_public] = ACTIONS(3027), + [anon_sym_packed] = ACTIONS(3027), + [anon_sym_inline] = ACTIONS(3027), + [anon_sym_readonly] = ACTIONS(3027), + [anon_sym_sizeof] = ACTIONS(3027), + [sym_string_start] = ACTIONS(3029), + }, + [939] = { + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(5299), + [sym_dictionary_splat] = STATE(5299), [sym_parenthesized_list_splat] = STATE(5305), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4169), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_keyword_argument] = STATE(5170), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), - [sym_identifier] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2791), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4245), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_keyword_argument] = STATE(5299), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(2783), + [anon_sym_LPAREN] = ACTIONS(2785), [anon_sym_STAR] = ACTIONS(1376), [anon_sym_print] = ACTIONS(1378), [anon_sym_match] = ACTIONS(1378), @@ -111597,136 +112016,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1406), [sym_string_start] = ACTIONS(1408), }, - [936] = { - [sym_elif_clause] = STATE(1081), - [sym_else_clause] = STATE(1477), - [aux_sym_if_statement_repeat1] = STATE(913), - [ts_builtin_sym_end] = ACTIONS(2971), - [sym_identifier] = ACTIONS(2969), - [anon_sym_import] = ACTIONS(2969), - [anon_sym_cimport] = ACTIONS(2969), - [anon_sym_from] = ACTIONS(2969), - [anon_sym_LPAREN] = ACTIONS(2971), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_print] = ACTIONS(2969), - [anon_sym_assert] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_del] = ACTIONS(2969), - [anon_sym_raise] = ACTIONS(2969), - [anon_sym_pass] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_elif] = ACTIONS(2979), - [anon_sym_else] = ACTIONS(2695), - [anon_sym_match] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_with] = ACTIONS(2969), - [anon_sym_def] = ACTIONS(2969), - [anon_sym_global] = ACTIONS(2969), - [anon_sym_nonlocal] = ACTIONS(2969), - [anon_sym_exec] = ACTIONS(2969), - [anon_sym_type] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2971), - [anon_sym_AT] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2971), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_PLUS] = ACTIONS(2971), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_LT] = ACTIONS(2971), - [anon_sym_lambda] = ACTIONS(2969), - [anon_sym_yield] = ACTIONS(2969), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2971), - [anon_sym_None] = ACTIONS(2969), - [sym_integer] = ACTIONS(2969), - [sym_float] = ACTIONS(2971), - [anon_sym_await] = ACTIONS(2969), - [anon_sym_api] = ACTIONS(2969), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2969), - [anon_sym_include] = ACTIONS(2969), - [anon_sym_DEF] = ACTIONS(2969), - [anon_sym_cdef] = ACTIONS(2969), - [anon_sym_cpdef] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_ctypedef] = ACTIONS(2969), - [anon_sym_public] = ACTIONS(2969), - [anon_sym_packed] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym_readonly] = ACTIONS(2969), - [anon_sym_sizeof] = ACTIONS(2969), - [sym_string_start] = ACTIONS(2971), + [940] = { + [sym_named_expression] = STATE(2326), + [sym__named_expression_lhs] = STATE(5687), + [sym_list_splat_pattern] = STATE(2256), + [sym_as_pattern] = STATE(2326), + [sym__expression_within_for_in_clause] = STATE(4316), + [sym_expression] = STATE(3965), + [sym_primary_expression] = STATE(2061), + [sym_not_operator] = STATE(2326), + [sym_boolean_operator] = STATE(2326), + [sym_binary_operator] = STATE(2298), + [sym_unary_operator] = STATE(2298), + [sym_comparison_operator] = STATE(2326), + [sym_lambda] = STATE(2326), + [sym_lambda_within_for_in_clause] = STATE(4316), + [sym_attribute] = STATE(2298), + [sym_subscript] = STATE(2298), + [sym_ellipsis] = STATE(2298), + [sym_call] = STATE(2298), + [sym_list] = STATE(2298), + [sym_set] = STATE(2298), + [sym_tuple] = STATE(2298), + [sym_dictionary] = STATE(2298), + [sym_list_comprehension] = STATE(2298), + [sym_dictionary_comprehension] = STATE(2298), + [sym_set_comprehension] = STATE(2298), + [sym_generator_expression] = STATE(2298), + [sym_parenthesized_expression] = STATE(2298), + [sym_conditional_expression] = STATE(2326), + [sym_concatenated_string] = STATE(2298), + [sym_string] = STATE(2099), + [sym_none] = STATE(2298), + [sym_await] = STATE(2298), + [sym_new_expression] = STATE(2326), + [sym_sizeof_expression] = STATE(2298), + [sym_cast_expression] = STATE(2298), + [sym_identifier] = ACTIONS(2521), + [anon_sym_LPAREN] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(3011), + [anon_sym_print] = ACTIONS(2529), + [anon_sym_if] = ACTIONS(2971), + [anon_sym_match] = ACTIONS(2529), + [anon_sym_async] = ACTIONS(2971), + [anon_sym_for] = ACTIONS(2971), + [anon_sym_exec] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2419), + [anon_sym_DASH] = ACTIONS(2421), + [anon_sym_LBRACE] = ACTIONS(2423), + [anon_sym_RBRACE] = ACTIONS(2973), + [anon_sym_PLUS] = ACTIONS(2421), + [anon_sym_not] = ACTIONS(2535), + [anon_sym_AMP] = ACTIONS(2421), + [anon_sym_TILDE] = ACTIONS(2421), + [anon_sym_LT] = ACTIONS(2537), + [anon_sym_lambda] = ACTIONS(3017), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2427), + [anon_sym_None] = ACTIONS(2429), + [sym_integer] = ACTIONS(2411), + [sym_float] = ACTIONS(2431), + [anon_sym_await] = ACTIONS(2543), + [anon_sym_api] = ACTIONS(2529), + [sym_true] = ACTIONS(2411), + [sym_false] = ACTIONS(2411), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2545), + [anon_sym_sizeof] = ACTIONS(2435), + [sym_string_start] = ACTIONS(2437), }, - [937] = { - [sym_named_expression] = STATE(3081), - [sym__named_expression_lhs] = STATE(5469), - [sym_expression_list] = STATE(5639), - [sym_pattern] = STATE(4617), - [sym_tuple_pattern] = STATE(3176), - [sym_list_pattern] = STATE(3176), - [sym_list_splat_pattern] = STATE(2592), - [sym_as_pattern] = STATE(3081), - [sym_expression] = STATE(4137), - [sym_primary_expression] = STATE(2067), - [sym_not_operator] = STATE(3081), - [sym_boolean_operator] = STATE(3081), - [sym_binary_operator] = STATE(2549), - [sym_unary_operator] = STATE(2549), - [sym_comparison_operator] = STATE(3081), - [sym_lambda] = STATE(3081), - [sym_pattern_list] = STATE(5168), - [sym_attribute] = STATE(2599), - [sym_subscript] = STATE(2599), - [sym_ellipsis] = STATE(2549), - [sym_call] = STATE(2549), - [sym_list] = STATE(2549), - [sym_set] = STATE(2549), - [sym_tuple] = STATE(2549), - [sym_dictionary] = STATE(2549), - [sym_list_comprehension] = STATE(2549), - [sym_dictionary_comprehension] = STATE(2549), - [sym_set_comprehension] = STATE(2549), - [sym_generator_expression] = STATE(2549), - [sym_parenthesized_expression] = STATE(2549), - [sym_conditional_expression] = STATE(3081), - [sym_concatenated_string] = STATE(2549), - [sym_string] = STATE(2140), - [sym_none] = STATE(2549), - [sym_await] = STATE(2549), - [sym_new_expression] = STATE(3081), - [sym_sizeof_expression] = STATE(2549), - [sym_cast_expression] = STATE(2549), - [sym_identifier] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(3007), - [anon_sym_STAR] = ACTIONS(3009), - [anon_sym_print] = ACTIONS(3011), - [anon_sym_match] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(3011), - [anon_sym_exec] = ACTIONS(3011), - [anon_sym_LBRACK] = ACTIONS(3013), + [941] = { + [sym_named_expression] = STATE(3088), + [sym__named_expression_lhs] = STATE(5579), + [sym_expression_list] = STATE(5527), + [sym_pattern] = STATE(4642), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(2611), + [sym_as_pattern] = STATE(3088), + [sym_expression] = STATE(4103), + [sym_primary_expression] = STATE(2072), + [sym_not_operator] = STATE(3088), + [sym_boolean_operator] = STATE(3088), + [sym_binary_operator] = STATE(2401), + [sym_unary_operator] = STATE(2401), + [sym_comparison_operator] = STATE(3088), + [sym_lambda] = STATE(3088), + [sym_pattern_list] = STATE(5374), + [sym_attribute] = STATE(2640), + [sym_subscript] = STATE(2640), + [sym_ellipsis] = STATE(2401), + [sym_call] = STATE(2401), + [sym_list] = STATE(2401), + [sym_set] = STATE(2401), + [sym_tuple] = STATE(2401), + [sym_dictionary] = STATE(2401), + [sym_list_comprehension] = STATE(2401), + [sym_dictionary_comprehension] = STATE(2401), + [sym_set_comprehension] = STATE(2401), + [sym_generator_expression] = STATE(2401), + [sym_parenthesized_expression] = STATE(2401), + [sym_conditional_expression] = STATE(3088), + [sym_concatenated_string] = STATE(2401), + [sym_string] = STATE(2161), + [sym_none] = STATE(2401), + [sym_await] = STATE(2401), + [sym_new_expression] = STATE(3088), + [sym_sizeof_expression] = STATE(2401), + [sym_cast_expression] = STATE(2401), + [sym_identifier] = ACTIONS(2951), + [anon_sym_LPAREN] = ACTIONS(2953), + [anon_sym_STAR] = ACTIONS(2955), + [anon_sym_print] = ACTIONS(2957), + [anon_sym_match] = ACTIONS(2957), + [anon_sym_async] = ACTIONS(2957), + [anon_sym_exec] = ACTIONS(2957), + [anon_sym_LBRACK] = ACTIONS(2959), [anon_sym_DASH] = ACTIONS(1227), [anon_sym_LBRACE] = ACTIONS(1223), [anon_sym_PLUS] = ACTIONS(1227), [anon_sym_not] = ACTIONS(1225), [anon_sym_AMP] = ACTIONS(1227), [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(2735), + [anon_sym_LT] = ACTIONS(2705), [anon_sym_lambda] = ACTIONS(1231), [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), [anon_sym_None] = ACTIONS(1235), [sym_integer] = ACTIONS(1237), [sym_float] = ACTIONS(1239), - [anon_sym_await] = ACTIONS(3015), - [anon_sym_api] = ACTIONS(3011), + [anon_sym_await] = ACTIONS(2961), + [anon_sym_api] = ACTIONS(2957), [sym_true] = ACTIONS(1237), [sym_false] = ACTIONS(1237), [sym_comment] = ACTIONS(3), @@ -111735,59 +112154,472 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1245), [sym_string_start] = ACTIONS(1247), }, - [938] = { - [sym_named_expression] = STATE(3081), - [sym__named_expression_lhs] = STATE(5469), - [sym_dictionary_splat] = STATE(5160), - [sym_list_splat_pattern] = STATE(2432), - [sym_as_pattern] = STATE(3081), - [sym_expression] = STATE(4296), - [sym_primary_expression] = STATE(2067), - [sym_not_operator] = STATE(3081), - [sym_boolean_operator] = STATE(3081), - [sym_binary_operator] = STATE(2549), - [sym_unary_operator] = STATE(2549), - [sym_comparison_operator] = STATE(3081), - [sym_lambda] = STATE(3081), - [sym_attribute] = STATE(2549), - [sym_subscript] = STATE(2549), - [sym_ellipsis] = STATE(2549), - [sym_call] = STATE(2549), - [sym_list] = STATE(2549), - [sym_set] = STATE(2549), - [sym_tuple] = STATE(2549), - [sym_dictionary] = STATE(2549), - [sym_pair] = STATE(5160), - [sym_list_comprehension] = STATE(2549), - [sym_dictionary_comprehension] = STATE(2549), - [sym_set_comprehension] = STATE(2549), - [sym_generator_expression] = STATE(2549), - [sym_parenthesized_expression] = STATE(2549), - [sym_conditional_expression] = STATE(3081), - [sym_concatenated_string] = STATE(2549), - [sym_string] = STATE(2140), - [sym_none] = STATE(2549), - [sym_await] = STATE(2549), - [sym_new_expression] = STATE(3081), - [sym_sizeof_expression] = STATE(2549), - [sym_cast_expression] = STATE(2549), + [942] = { + [sym_named_expression] = STATE(3088), + [sym__named_expression_lhs] = STATE(5579), + [sym_expression_list] = STATE(5570), + [sym_pattern] = STATE(4643), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(2611), + [sym_as_pattern] = STATE(3088), + [sym_expression] = STATE(4104), + [sym_primary_expression] = STATE(2072), + [sym_not_operator] = STATE(3088), + [sym_boolean_operator] = STATE(3088), + [sym_binary_operator] = STATE(2401), + [sym_unary_operator] = STATE(2401), + [sym_comparison_operator] = STATE(3088), + [sym_lambda] = STATE(3088), + [sym_pattern_list] = STATE(5380), + [sym_attribute] = STATE(2640), + [sym_subscript] = STATE(2640), + [sym_ellipsis] = STATE(2401), + [sym_call] = STATE(2401), + [sym_list] = STATE(2401), + [sym_set] = STATE(2401), + [sym_tuple] = STATE(2401), + [sym_dictionary] = STATE(2401), + [sym_list_comprehension] = STATE(2401), + [sym_dictionary_comprehension] = STATE(2401), + [sym_set_comprehension] = STATE(2401), + [sym_generator_expression] = STATE(2401), + [sym_parenthesized_expression] = STATE(2401), + [sym_conditional_expression] = STATE(3088), + [sym_concatenated_string] = STATE(2401), + [sym_string] = STATE(2161), + [sym_none] = STATE(2401), + [sym_await] = STATE(2401), + [sym_new_expression] = STATE(3088), + [sym_sizeof_expression] = STATE(2401), + [sym_cast_expression] = STATE(2401), + [sym_identifier] = ACTIONS(2951), + [anon_sym_LPAREN] = ACTIONS(2953), + [anon_sym_STAR] = ACTIONS(2955), + [anon_sym_print] = ACTIONS(2957), + [anon_sym_match] = ACTIONS(2957), + [anon_sym_async] = ACTIONS(2957), + [anon_sym_exec] = ACTIONS(2957), + [anon_sym_LBRACK] = ACTIONS(2959), + [anon_sym_DASH] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_PLUS] = ACTIONS(1227), + [anon_sym_not] = ACTIONS(1225), + [anon_sym_AMP] = ACTIONS(1227), + [anon_sym_TILDE] = ACTIONS(1227), + [anon_sym_LT] = ACTIONS(2705), + [anon_sym_lambda] = ACTIONS(1231), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), + [anon_sym_None] = ACTIONS(1235), + [sym_integer] = ACTIONS(1237), + [sym_float] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(2961), + [anon_sym_api] = ACTIONS(2957), + [sym_true] = ACTIONS(1237), + [sym_false] = ACTIONS(1237), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1243), + [anon_sym_sizeof] = ACTIONS(1245), + [sym_string_start] = ACTIONS(1247), + }, + [943] = { + [sym_pattern] = STATE(3204), + [sym_tuple_pattern] = STATE(3207), + [sym_list_pattern] = STATE(3207), + [sym_list_splat_pattern] = STATE(2653), + [sym_primary_expression] = STATE(3220), + [sym_binary_operator] = STATE(2401), + [sym_unary_operator] = STATE(2401), + [sym_attribute] = STATE(2654), + [sym_subscript] = STATE(2654), + [sym_ellipsis] = STATE(2401), + [sym_call] = STATE(2401), + [sym_list] = STATE(2401), + [sym_set] = STATE(2401), + [sym_tuple] = STATE(2401), + [sym_dictionary] = STATE(2401), + [sym_list_comprehension] = STATE(2401), + [sym_dictionary_comprehension] = STATE(2401), + [sym_set_comprehension] = STATE(2401), + [sym_generator_expression] = STATE(2401), + [sym_parenthesized_expression] = STATE(2401), + [sym_concatenated_string] = STATE(2401), + [sym_string] = STATE(2161), + [sym_none] = STATE(2401), + [sym_await] = STATE(2401), + [sym_sizeof_expression] = STATE(2401), + [sym_cast_expression] = STATE(2401), + [sym_identifier] = ACTIONS(2975), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_STAR] = ACTIONS(2979), + [anon_sym_print] = ACTIONS(2981), + [anon_sym_COLON] = ACTIONS(2727), + [anon_sym_match] = ACTIONS(2981), + [anon_sym_async] = ACTIONS(2981), + [anon_sym_exec] = ACTIONS(2981), + [anon_sym_EQ] = ACTIONS(2727), + [anon_sym_LBRACK] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_AMP] = ACTIONS(1306), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_LT] = ACTIONS(1310), + [anon_sym_PLUS_EQ] = ACTIONS(2727), + [anon_sym_DASH_EQ] = ACTIONS(2727), + [anon_sym_STAR_EQ] = ACTIONS(2727), + [anon_sym_SLASH_EQ] = ACTIONS(2727), + [anon_sym_AT_EQ] = ACTIONS(2727), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2727), + [anon_sym_PERCENT_EQ] = ACTIONS(2727), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2727), + [anon_sym_GT_GT_EQ] = ACTIONS(2727), + [anon_sym_LT_LT_EQ] = ACTIONS(2727), + [anon_sym_AMP_EQ] = ACTIONS(2727), + [anon_sym_CARET_EQ] = ACTIONS(2727), + [anon_sym_PIPE_EQ] = ACTIONS(2727), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), + [anon_sym_None] = ACTIONS(1235), + [sym_integer] = ACTIONS(1237), + [sym_float] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(2985), + [anon_sym_api] = ACTIONS(2981), + [sym_true] = ACTIONS(1237), + [sym_false] = ACTIONS(1237), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1245), + [sym_string_start] = ACTIONS(1247), + }, + [944] = { + [sym_named_expression] = STATE(2326), + [sym__named_expression_lhs] = STATE(5687), + [sym_list_splat_pattern] = STATE(2256), + [sym_as_pattern] = STATE(2326), + [sym__expression_within_for_in_clause] = STATE(4316), + [sym_expression] = STATE(3965), + [sym_primary_expression] = STATE(2061), + [sym_not_operator] = STATE(2326), + [sym_boolean_operator] = STATE(2326), + [sym_binary_operator] = STATE(2298), + [sym_unary_operator] = STATE(2298), + [sym_comparison_operator] = STATE(2326), + [sym_lambda] = STATE(2326), + [sym_lambda_within_for_in_clause] = STATE(4316), + [sym_attribute] = STATE(2298), + [sym_subscript] = STATE(2298), + [sym_ellipsis] = STATE(2298), + [sym_call] = STATE(2298), + [sym_list] = STATE(2298), + [sym_set] = STATE(2298), + [sym_tuple] = STATE(2298), + [sym_dictionary] = STATE(2298), + [sym_list_comprehension] = STATE(2298), + [sym_dictionary_comprehension] = STATE(2298), + [sym_set_comprehension] = STATE(2298), + [sym_generator_expression] = STATE(2298), + [sym_parenthesized_expression] = STATE(2298), + [sym_conditional_expression] = STATE(2326), + [sym_concatenated_string] = STATE(2298), + [sym_string] = STATE(2099), + [sym_none] = STATE(2298), + [sym_await] = STATE(2298), + [sym_new_expression] = STATE(2326), + [sym_sizeof_expression] = STATE(2298), + [sym_cast_expression] = STATE(2298), + [sym_identifier] = ACTIONS(2521), + [anon_sym_LPAREN] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(3011), + [anon_sym_print] = ACTIONS(2529), + [anon_sym_if] = ACTIONS(2967), + [anon_sym_match] = ACTIONS(2529), + [anon_sym_async] = ACTIONS(2967), + [anon_sym_for] = ACTIONS(2967), + [anon_sym_exec] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2419), + [anon_sym_DASH] = ACTIONS(2421), + [anon_sym_LBRACE] = ACTIONS(2423), + [anon_sym_RBRACE] = ACTIONS(2963), + [anon_sym_PLUS] = ACTIONS(2421), + [anon_sym_not] = ACTIONS(2535), + [anon_sym_AMP] = ACTIONS(2421), + [anon_sym_TILDE] = ACTIONS(2421), + [anon_sym_LT] = ACTIONS(2537), + [anon_sym_lambda] = ACTIONS(3017), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2427), + [anon_sym_None] = ACTIONS(2429), + [sym_integer] = ACTIONS(2411), + [sym_float] = ACTIONS(2431), + [anon_sym_await] = ACTIONS(2543), + [anon_sym_api] = ACTIONS(2529), + [sym_true] = ACTIONS(2411), + [sym_false] = ACTIONS(2411), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2545), + [anon_sym_sizeof] = ACTIONS(2435), + [sym_string_start] = ACTIONS(2437), + }, + [945] = { + [sym_named_expression] = STATE(2493), + [sym__named_expression_lhs] = STATE(5681), + [sym_list_splat_pattern] = STATE(2415), + [sym_as_pattern] = STATE(2493), + [sym__expression_within_for_in_clause] = STATE(4358), + [sym_expression] = STATE(3953), + [sym_primary_expression] = STATE(2070), + [sym_not_operator] = STATE(2493), + [sym_boolean_operator] = STATE(2493), + [sym_binary_operator] = STATE(2470), + [sym_unary_operator] = STATE(2470), + [sym_comparison_operator] = STATE(2493), + [sym_lambda] = STATE(2493), + [sym_lambda_within_for_in_clause] = STATE(4358), + [sym_attribute] = STATE(2470), + [sym_subscript] = STATE(2470), + [sym_ellipsis] = STATE(2470), + [sym_call] = STATE(2470), + [sym_list] = STATE(2470), + [sym_set] = STATE(2470), + [sym_tuple] = STATE(2470), + [sym_dictionary] = STATE(2470), + [sym_list_comprehension] = STATE(2470), + [sym_dictionary_comprehension] = STATE(2470), + [sym_set_comprehension] = STATE(2470), + [sym_generator_expression] = STATE(2470), + [sym_parenthesized_expression] = STATE(2470), + [sym_conditional_expression] = STATE(2493), + [sym_concatenated_string] = STATE(2470), + [sym_string] = STATE(2177), + [sym_none] = STATE(2470), + [sym_await] = STATE(2470), + [sym_new_expression] = STATE(2493), + [sym_sizeof_expression] = STATE(2470), + [sym_cast_expression] = STATE(2470), + [sym_identifier] = ACTIONS(2815), + [anon_sym_LPAREN] = ACTIONS(2489), + [anon_sym_STAR] = ACTIONS(2943), + [anon_sym_print] = ACTIONS(2819), + [anon_sym_if] = ACTIONS(3013), + [anon_sym_match] = ACTIONS(2819), + [anon_sym_async] = ACTIONS(3013), + [anon_sym_for] = ACTIONS(3013), + [anon_sym_exec] = ACTIONS(2819), + [anon_sym_LBRACK] = ACTIONS(2495), + [anon_sym_RBRACK] = ACTIONS(3015), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2499), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_not] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_TILDE] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2563), + [anon_sym_lambda] = ACTIONS(2949), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2503), + [anon_sym_None] = ACTIONS(2505), + [sym_integer] = ACTIONS(2487), + [sym_float] = ACTIONS(2507), + [anon_sym_await] = ACTIONS(2823), + [anon_sym_api] = ACTIONS(2819), + [sym_true] = ACTIONS(2487), + [sym_false] = ACTIONS(2487), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2571), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_string_start] = ACTIONS(2513), + }, + [946] = { + [sym_named_expression] = STATE(2421), + [sym__named_expression_lhs] = STATE(5522), + [sym_list_splat_pattern] = STATE(2472), + [sym_as_pattern] = STATE(2421), + [sym__expression_within_for_in_clause] = STATE(4462), + [sym_expression] = STATE(3915), + [sym_primary_expression] = STATE(2066), + [sym_not_operator] = STATE(2421), + [sym_boolean_operator] = STATE(2421), + [sym_binary_operator] = STATE(2414), + [sym_unary_operator] = STATE(2414), + [sym_comparison_operator] = STATE(2421), + [sym_lambda] = STATE(2421), + [sym_lambda_within_for_in_clause] = STATE(4462), + [sym_attribute] = STATE(2414), + [sym_subscript] = STATE(2414), + [sym_ellipsis] = STATE(2414), + [sym_call] = STATE(2414), + [sym_list] = STATE(2414), + [sym_set] = STATE(2414), + [sym_tuple] = STATE(2414), + [sym_dictionary] = STATE(2414), + [sym_list_comprehension] = STATE(2414), + [sym_dictionary_comprehension] = STATE(2414), + [sym_set_comprehension] = STATE(2414), + [sym_generator_expression] = STATE(2414), + [sym_parenthesized_expression] = STATE(2414), + [sym_conditional_expression] = STATE(2421), + [sym_concatenated_string] = STATE(2414), + [sym_string] = STATE(2147), + [sym_none] = STATE(2414), + [sym_await] = STATE(2414), + [sym_new_expression] = STATE(2421), + [sym_sizeof_expression] = STATE(2414), + [sym_cast_expression] = STATE(2414), + [sym_identifier] = ACTIONS(2787), + [anon_sym_LPAREN] = ACTIONS(2377), + [anon_sym_RPAREN] = ACTIONS(2947), + [anon_sym_STAR] = ACTIONS(2965), + [anon_sym_print] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(2945), + [anon_sym_match] = ACTIONS(1470), + [anon_sym_async] = ACTIONS(2945), + [anon_sym_for] = ACTIONS(2945), + [anon_sym_exec] = ACTIONS(1470), + [anon_sym_LBRACK] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1326), + [anon_sym_LBRACE] = ACTIONS(1328), + [anon_sym_PLUS] = ACTIONS(1326), + [anon_sym_not] = ACTIONS(1330), + [anon_sym_AMP] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1326), + [anon_sym_LT] = ACTIONS(1332), + [anon_sym_lambda] = ACTIONS(2969), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1338), + [anon_sym_None] = ACTIONS(1340), + [sym_integer] = ACTIONS(1342), + [sym_float] = ACTIONS(1344), + [anon_sym_await] = ACTIONS(1474), + [anon_sym_api] = ACTIONS(1470), + [sym_true] = ACTIONS(1342), + [sym_false] = ACTIONS(1342), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1350), + [anon_sym_sizeof] = ACTIONS(1360), + [sym_string_start] = ACTIONS(1362), + }, + [947] = { + [ts_builtin_sym_end] = ACTIONS(1488), + [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_elif] = ACTIONS(1486), + [anon_sym_else] = 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_finally] = 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), + [anon_sym_DOT_DOT_DOT] = 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_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_new] = ACTIONS(1486), + [anon_sym_ctypedef] = 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_string_start] = ACTIONS(1488), + }, + [948] = { + [sym_named_expression] = STATE(3088), + [sym__named_expression_lhs] = STATE(5579), + [sym_dictionary_splat] = STATE(5359), + [sym_list_splat_pattern] = STATE(2536), + [sym_as_pattern] = STATE(3088), + [sym_expression] = STATE(4290), + [sym_primary_expression] = STATE(2072), + [sym_not_operator] = STATE(3088), + [sym_boolean_operator] = STATE(3088), + [sym_binary_operator] = STATE(2401), + [sym_unary_operator] = STATE(2401), + [sym_comparison_operator] = STATE(3088), + [sym_lambda] = STATE(3088), + [sym_attribute] = STATE(2401), + [sym_subscript] = STATE(2401), + [sym_ellipsis] = STATE(2401), + [sym_call] = STATE(2401), + [sym_list] = STATE(2401), + [sym_set] = STATE(2401), + [sym_tuple] = STATE(2401), + [sym_dictionary] = STATE(2401), + [sym_pair] = STATE(5359), + [sym_list_comprehension] = STATE(2401), + [sym_dictionary_comprehension] = STATE(2401), + [sym_set_comprehension] = STATE(2401), + [sym_generator_expression] = STATE(2401), + [sym_parenthesized_expression] = STATE(2401), + [sym_conditional_expression] = STATE(3088), + [sym_concatenated_string] = STATE(2401), + [sym_string] = STATE(2161), + [sym_none] = STATE(2401), + [sym_await] = STATE(2401), + [sym_new_expression] = STATE(3088), + [sym_sizeof_expression] = STATE(2401), + [sym_cast_expression] = STATE(2401), [sym_identifier] = ACTIONS(1211), [anon_sym_LPAREN] = ACTIONS(1213), [anon_sym_STAR] = ACTIONS(1215), [anon_sym_print] = ACTIONS(1217), [anon_sym_match] = ACTIONS(1217), [anon_sym_async] = ACTIONS(1217), - [anon_sym_STAR_STAR] = ACTIONS(2545), + [anon_sym_STAR_STAR] = ACTIONS(2531), [anon_sym_exec] = ACTIONS(1217), [anon_sym_LBRACK] = ACTIONS(1219), [anon_sym_DASH] = ACTIONS(1227), [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_RBRACE] = ACTIONS(3045), + [anon_sym_RBRACE] = ACTIONS(3051), [anon_sym_PLUS] = ACTIONS(1227), [anon_sym_not] = ACTIONS(1225), [anon_sym_AMP] = ACTIONS(1227), [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(2735), + [anon_sym_LT] = ACTIONS(2705), [anon_sym_lambda] = ACTIONS(1231), [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), [anon_sym_None] = ACTIONS(1235), @@ -111803,59 +112635,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1245), [sym_string_start] = ACTIONS(1247), }, - [939] = { - [sym_named_expression] = STATE(3081), - [sym__named_expression_lhs] = STATE(5469), - [sym_dictionary_splat] = STATE(5160), - [sym_list_splat_pattern] = STATE(2432), - [sym_as_pattern] = STATE(3081), - [sym_expression] = STATE(4296), - [sym_primary_expression] = STATE(2067), - [sym_not_operator] = STATE(3081), - [sym_boolean_operator] = STATE(3081), - [sym_binary_operator] = STATE(2549), - [sym_unary_operator] = STATE(2549), - [sym_comparison_operator] = STATE(3081), - [sym_lambda] = STATE(3081), - [sym_attribute] = STATE(2549), - [sym_subscript] = STATE(2549), - [sym_ellipsis] = STATE(2549), - [sym_call] = STATE(2549), - [sym_list] = STATE(2549), - [sym_set] = STATE(2549), - [sym_tuple] = STATE(2549), - [sym_dictionary] = STATE(2549), - [sym_pair] = STATE(5160), - [sym_list_comprehension] = STATE(2549), - [sym_dictionary_comprehension] = STATE(2549), - [sym_set_comprehension] = STATE(2549), - [sym_generator_expression] = STATE(2549), - [sym_parenthesized_expression] = STATE(2549), - [sym_conditional_expression] = STATE(3081), - [sym_concatenated_string] = STATE(2549), - [sym_string] = STATE(2140), - [sym_none] = STATE(2549), - [sym_await] = STATE(2549), - [sym_new_expression] = STATE(3081), - [sym_sizeof_expression] = STATE(2549), - [sym_cast_expression] = STATE(2549), + [949] = { + [sym_named_expression] = STATE(3088), + [sym__named_expression_lhs] = STATE(5579), + [sym_dictionary_splat] = STATE(5359), + [sym_list_splat_pattern] = STATE(2536), + [sym_as_pattern] = STATE(3088), + [sym_expression] = STATE(4290), + [sym_primary_expression] = STATE(2072), + [sym_not_operator] = STATE(3088), + [sym_boolean_operator] = STATE(3088), + [sym_binary_operator] = STATE(2401), + [sym_unary_operator] = STATE(2401), + [sym_comparison_operator] = STATE(3088), + [sym_lambda] = STATE(3088), + [sym_attribute] = STATE(2401), + [sym_subscript] = STATE(2401), + [sym_ellipsis] = STATE(2401), + [sym_call] = STATE(2401), + [sym_list] = STATE(2401), + [sym_set] = STATE(2401), + [sym_tuple] = STATE(2401), + [sym_dictionary] = STATE(2401), + [sym_pair] = STATE(5359), + [sym_list_comprehension] = STATE(2401), + [sym_dictionary_comprehension] = STATE(2401), + [sym_set_comprehension] = STATE(2401), + [sym_generator_expression] = STATE(2401), + [sym_parenthesized_expression] = STATE(2401), + [sym_conditional_expression] = STATE(3088), + [sym_concatenated_string] = STATE(2401), + [sym_string] = STATE(2161), + [sym_none] = STATE(2401), + [sym_await] = STATE(2401), + [sym_new_expression] = STATE(3088), + [sym_sizeof_expression] = STATE(2401), + [sym_cast_expression] = STATE(2401), [sym_identifier] = ACTIONS(1211), [anon_sym_LPAREN] = ACTIONS(1213), [anon_sym_STAR] = ACTIONS(1215), [anon_sym_print] = ACTIONS(1217), [anon_sym_match] = ACTIONS(1217), [anon_sym_async] = ACTIONS(1217), - [anon_sym_STAR_STAR] = ACTIONS(2545), + [anon_sym_STAR_STAR] = ACTIONS(2531), [anon_sym_exec] = ACTIONS(1217), [anon_sym_LBRACK] = ACTIONS(1219), [anon_sym_DASH] = ACTIONS(1227), [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_RBRACE] = ACTIONS(3047), + [anon_sym_RBRACE] = ACTIONS(3053), [anon_sym_PLUS] = ACTIONS(1227), [anon_sym_not] = ACTIONS(1225), [anon_sym_AMP] = ACTIONS(1227), [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(2735), + [anon_sym_LT] = ACTIONS(2705), [anon_sym_lambda] = ACTIONS(1231), [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), [anon_sym_None] = ACTIONS(1235), @@ -111871,59 +112703,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1245), [sym_string_start] = ACTIONS(1247), }, - [940] = { - [sym_named_expression] = STATE(3081), - [sym__named_expression_lhs] = STATE(5469), - [sym_dictionary_splat] = STATE(5160), - [sym_list_splat_pattern] = STATE(2432), - [sym_as_pattern] = STATE(3081), - [sym_expression] = STATE(4296), - [sym_primary_expression] = STATE(2067), - [sym_not_operator] = STATE(3081), - [sym_boolean_operator] = STATE(3081), - [sym_binary_operator] = STATE(2549), - [sym_unary_operator] = STATE(2549), - [sym_comparison_operator] = STATE(3081), - [sym_lambda] = STATE(3081), - [sym_attribute] = STATE(2549), - [sym_subscript] = STATE(2549), - [sym_ellipsis] = STATE(2549), - [sym_call] = STATE(2549), - [sym_list] = STATE(2549), - [sym_set] = STATE(2549), - [sym_tuple] = STATE(2549), - [sym_dictionary] = STATE(2549), - [sym_pair] = STATE(5160), - [sym_list_comprehension] = STATE(2549), - [sym_dictionary_comprehension] = STATE(2549), - [sym_set_comprehension] = STATE(2549), - [sym_generator_expression] = STATE(2549), - [sym_parenthesized_expression] = STATE(2549), - [sym_conditional_expression] = STATE(3081), - [sym_concatenated_string] = STATE(2549), - [sym_string] = STATE(2140), - [sym_none] = STATE(2549), - [sym_await] = STATE(2549), - [sym_new_expression] = STATE(3081), - [sym_sizeof_expression] = STATE(2549), - [sym_cast_expression] = STATE(2549), + [950] = { + [sym_named_expression] = STATE(3825), + [sym__named_expression_lhs] = STATE(5410), + [sym_list_splat_pattern] = STATE(2284), + [sym_as_pattern] = STATE(3825), + [sym_expression] = STATE(3855), + [sym_primary_expression] = STATE(2057), + [sym_not_operator] = STATE(3825), + [sym_boolean_operator] = STATE(3825), + [sym_binary_operator] = STATE(2257), + [sym_unary_operator] = STATE(2257), + [sym_comparison_operator] = STATE(3825), + [sym_lambda] = STATE(3825), + [sym_attribute] = STATE(2257), + [sym_subscript] = STATE(2257), + [sym_ellipsis] = STATE(2257), + [sym_call] = STATE(2257), + [sym_list] = STATE(2257), + [sym_set] = STATE(2257), + [sym_tuple] = STATE(2257), + [sym_dictionary] = STATE(2257), + [sym_list_comprehension] = STATE(2257), + [sym_dictionary_comprehension] = STATE(2257), + [sym_set_comprehension] = STATE(2257), + [sym_generator_expression] = STATE(2257), + [sym_parenthesized_expression] = STATE(2257), + [sym_conditional_expression] = STATE(3825), + [sym_concatenated_string] = STATE(2257), + [sym_string] = STATE(2089), + [sym_none] = STATE(2257), + [sym_await] = STATE(2257), + [sym_new_expression] = STATE(3825), + [sym_sizeof_expression] = STATE(2257), + [sym_cast_expression] = STATE(2257), + [sym_identifier] = ACTIONS(2923), + [anon_sym_LPAREN] = ACTIONS(1943), + [anon_sym_STAR] = ACTIONS(2661), + [anon_sym_print] = ACTIONS(2927), + [anon_sym_COLON] = ACTIONS(3055), + [anon_sym_match] = ACTIONS(2927), + [anon_sym_async] = ACTIONS(2927), + [anon_sym_exec] = ACTIONS(2927), + [anon_sym_EQ] = ACTIONS(3055), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_DASH] = ACTIONS(1951), + [anon_sym_LBRACE] = ACTIONS(1953), + [anon_sym_RBRACE] = ACTIONS(3055), + [anon_sym_PLUS] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(2667), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_LT] = ACTIONS(2669), + [anon_sym_lambda] = ACTIONS(2671), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1957), + [anon_sym_None] = ACTIONS(1959), + [sym_type_conversion] = ACTIONS(3055), + [sym_integer] = ACTIONS(1941), + [sym_float] = ACTIONS(1961), + [anon_sym_await] = ACTIONS(2931), + [anon_sym_api] = ACTIONS(2927), + [sym_true] = ACTIONS(1941), + [sym_false] = ACTIONS(1941), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2677), + [anon_sym_sizeof] = ACTIONS(1965), + [sym_string_start] = ACTIONS(1967), + }, + [951] = { + [sym_named_expression] = STATE(3088), + [sym__named_expression_lhs] = STATE(5579), + [sym_dictionary_splat] = STATE(5359), + [sym_list_splat_pattern] = STATE(2536), + [sym_as_pattern] = STATE(3088), + [sym_expression] = STATE(4290), + [sym_primary_expression] = STATE(2072), + [sym_not_operator] = STATE(3088), + [sym_boolean_operator] = STATE(3088), + [sym_binary_operator] = STATE(2401), + [sym_unary_operator] = STATE(2401), + [sym_comparison_operator] = STATE(3088), + [sym_lambda] = STATE(3088), + [sym_attribute] = STATE(2401), + [sym_subscript] = STATE(2401), + [sym_ellipsis] = STATE(2401), + [sym_call] = STATE(2401), + [sym_list] = STATE(2401), + [sym_set] = STATE(2401), + [sym_tuple] = STATE(2401), + [sym_dictionary] = STATE(2401), + [sym_pair] = STATE(5359), + [sym_list_comprehension] = STATE(2401), + [sym_dictionary_comprehension] = STATE(2401), + [sym_set_comprehension] = STATE(2401), + [sym_generator_expression] = STATE(2401), + [sym_parenthesized_expression] = STATE(2401), + [sym_conditional_expression] = STATE(3088), + [sym_concatenated_string] = STATE(2401), + [sym_string] = STATE(2161), + [sym_none] = STATE(2401), + [sym_await] = STATE(2401), + [sym_new_expression] = STATE(3088), + [sym_sizeof_expression] = STATE(2401), + [sym_cast_expression] = STATE(2401), [sym_identifier] = ACTIONS(1211), [anon_sym_LPAREN] = ACTIONS(1213), [anon_sym_STAR] = ACTIONS(1215), [anon_sym_print] = ACTIONS(1217), [anon_sym_match] = ACTIONS(1217), [anon_sym_async] = ACTIONS(1217), - [anon_sym_STAR_STAR] = ACTIONS(2545), + [anon_sym_STAR_STAR] = ACTIONS(2531), [anon_sym_exec] = ACTIONS(1217), [anon_sym_LBRACK] = ACTIONS(1219), [anon_sym_DASH] = ACTIONS(1227), [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_RBRACE] = ACTIONS(3049), + [anon_sym_RBRACE] = ACTIONS(3057), [anon_sym_PLUS] = ACTIONS(1227), [anon_sym_not] = ACTIONS(1225), [anon_sym_AMP] = ACTIONS(1227), [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(2735), + [anon_sym_LT] = ACTIONS(2705), [anon_sym_lambda] = ACTIONS(1231), [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), [anon_sym_None] = ACTIONS(1235), @@ -111939,119 +112839,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1245), [sym_string_start] = ACTIONS(1247), }, - [941] = { - [sym_named_expression] = STATE(3846), - [sym__named_expression_lhs] = STATE(5557), - [sym_list_splat_pattern] = STATE(2357), - [sym_as_pattern] = STATE(3846), - [sym_expression] = STATE(3800), - [sym_primary_expression] = STATE(2046), - [sym_not_operator] = STATE(3846), - [sym_boolean_operator] = STATE(3846), - [sym_binary_operator] = STATE(2255), - [sym_unary_operator] = STATE(2255), - [sym_comparison_operator] = STATE(3846), - [sym_lambda] = STATE(3846), - [sym_attribute] = STATE(2255), - [sym_subscript] = STATE(2255), - [sym_ellipsis] = STATE(2255), - [sym_call] = STATE(2255), - [sym_list] = STATE(2255), - [sym_set] = STATE(2255), - [sym_tuple] = STATE(2255), - [sym_dictionary] = STATE(2255), - [sym_list_comprehension] = STATE(2255), - [sym_dictionary_comprehension] = STATE(2255), - [sym_set_comprehension] = STATE(2255), - [sym_generator_expression] = STATE(2255), - [sym_parenthesized_expression] = STATE(2255), - [sym_conditional_expression] = STATE(3846), - [sym_concatenated_string] = STATE(2255), - [sym_string] = STATE(2073), - [sym_none] = STATE(2255), - [sym_await] = STATE(2255), - [sym_new_expression] = STATE(3846), - [sym_sizeof_expression] = STATE(2255), - [sym_cast_expression] = STATE(2255), - [sym_identifier] = ACTIONS(2793), - [anon_sym_LPAREN] = ACTIONS(1907), - [anon_sym_STAR] = ACTIONS(2653), - [anon_sym_print] = ACTIONS(2797), - [anon_sym_COLON] = ACTIONS(3051), - [anon_sym_match] = ACTIONS(2797), - [anon_sym_async] = ACTIONS(2797), - [anon_sym_exec] = ACTIONS(2797), - [anon_sym_EQ] = ACTIONS(3051), - [anon_sym_LBRACK] = ACTIONS(1913), - [anon_sym_DASH] = ACTIONS(1915), - [anon_sym_LBRACE] = ACTIONS(1917), - [anon_sym_RBRACE] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(1915), - [anon_sym_not] = ACTIONS(2659), - [anon_sym_AMP] = ACTIONS(1915), - [anon_sym_TILDE] = ACTIONS(1915), - [anon_sym_LT] = ACTIONS(2661), - [anon_sym_lambda] = ACTIONS(2663), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1921), - [anon_sym_None] = ACTIONS(1923), - [sym_type_conversion] = ACTIONS(3051), - [sym_integer] = ACTIONS(1905), - [sym_float] = ACTIONS(1925), - [anon_sym_await] = ACTIONS(2801), - [anon_sym_api] = ACTIONS(2797), - [sym_true] = ACTIONS(1905), - [sym_false] = ACTIONS(1905), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2669), - [anon_sym_sizeof] = ACTIONS(1929), - [sym_string_start] = ACTIONS(1931), + [952] = { + [sym_elif_clause] = STATE(1117), + [aux_sym_if_statement_repeat1] = STATE(952), + [sym_identifier] = ACTIONS(3059), + [anon_sym_import] = ACTIONS(3059), + [anon_sym_cimport] = ACTIONS(3059), + [anon_sym_from] = ACTIONS(3059), + [anon_sym_LPAREN] = ACTIONS(3061), + [anon_sym_STAR] = ACTIONS(3061), + [anon_sym_print] = ACTIONS(3059), + [anon_sym_assert] = ACTIONS(3059), + [anon_sym_return] = ACTIONS(3059), + [anon_sym_del] = ACTIONS(3059), + [anon_sym_raise] = ACTIONS(3059), + [anon_sym_pass] = ACTIONS(3059), + [anon_sym_break] = ACTIONS(3059), + [anon_sym_continue] = ACTIONS(3059), + [anon_sym_if] = ACTIONS(3059), + [anon_sym_elif] = ACTIONS(3063), + [anon_sym_else] = ACTIONS(3059), + [anon_sym_match] = ACTIONS(3059), + [anon_sym_async] = ACTIONS(3059), + [anon_sym_for] = ACTIONS(3059), + [anon_sym_while] = ACTIONS(3059), + [anon_sym_try] = ACTIONS(3059), + [anon_sym_with] = ACTIONS(3059), + [anon_sym_def] = ACTIONS(3059), + [anon_sym_global] = ACTIONS(3059), + [anon_sym_nonlocal] = ACTIONS(3059), + [anon_sym_exec] = ACTIONS(3059), + [anon_sym_type] = ACTIONS(3059), + [anon_sym_class] = ACTIONS(3059), + [anon_sym_LBRACK] = ACTIONS(3061), + [anon_sym_AT] = ACTIONS(3061), + [anon_sym_DASH] = ACTIONS(3061), + [anon_sym_LBRACE] = ACTIONS(3061), + [anon_sym_PLUS] = ACTIONS(3061), + [anon_sym_not] = ACTIONS(3059), + [anon_sym_AMP] = ACTIONS(3061), + [anon_sym_TILDE] = ACTIONS(3061), + [anon_sym_LT] = ACTIONS(3061), + [anon_sym_lambda] = ACTIONS(3059), + [anon_sym_yield] = ACTIONS(3059), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3061), + [anon_sym_None] = ACTIONS(3059), + [sym_integer] = ACTIONS(3059), + [sym_float] = ACTIONS(3061), + [anon_sym_await] = ACTIONS(3059), + [anon_sym_api] = ACTIONS(3059), + [sym_true] = ACTIONS(3059), + [sym_false] = ACTIONS(3059), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3059), + [anon_sym_include] = ACTIONS(3059), + [anon_sym_DEF] = ACTIONS(3059), + [anon_sym_cdef] = ACTIONS(3059), + [anon_sym_cpdef] = ACTIONS(3059), + [anon_sym_new] = ACTIONS(3059), + [anon_sym_ctypedef] = ACTIONS(3059), + [anon_sym_public] = ACTIONS(3059), + [anon_sym_packed] = ACTIONS(3059), + [anon_sym_inline] = ACTIONS(3059), + [anon_sym_readonly] = ACTIONS(3059), + [anon_sym_sizeof] = ACTIONS(3059), + [sym__dedent] = ACTIONS(3061), + [sym_string_start] = ACTIONS(3061), }, - [942] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_expression_list] = STATE(5364), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4143), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), - [sym_identifier] = ACTIONS(2955), - [anon_sym_from] = ACTIONS(3053), - [anon_sym_LPAREN] = ACTIONS(2439), - [anon_sym_RPAREN] = ACTIONS(2799), - [anon_sym_COMMA] = ACTIONS(2799), - [anon_sym_STAR] = ACTIONS(3055), - [anon_sym_print] = ACTIONS(2959), - [anon_sym_match] = ACTIONS(2959), - [anon_sym_async] = ACTIONS(2959), - [anon_sym_exec] = ACTIONS(2959), + [953] = { + [sym_elif_clause] = STATE(1114), + [aux_sym_if_statement_repeat1] = STATE(953), + [ts_builtin_sym_end] = ACTIONS(3061), + [sym_identifier] = ACTIONS(3059), + [anon_sym_import] = ACTIONS(3059), + [anon_sym_cimport] = ACTIONS(3059), + [anon_sym_from] = ACTIONS(3059), + [anon_sym_LPAREN] = ACTIONS(3061), + [anon_sym_STAR] = ACTIONS(3061), + [anon_sym_print] = ACTIONS(3059), + [anon_sym_assert] = ACTIONS(3059), + [anon_sym_return] = ACTIONS(3059), + [anon_sym_del] = ACTIONS(3059), + [anon_sym_raise] = ACTIONS(3059), + [anon_sym_pass] = ACTIONS(3059), + [anon_sym_break] = ACTIONS(3059), + [anon_sym_continue] = ACTIONS(3059), + [anon_sym_if] = ACTIONS(3059), + [anon_sym_elif] = ACTIONS(3066), + [anon_sym_else] = ACTIONS(3059), + [anon_sym_match] = ACTIONS(3059), + [anon_sym_async] = ACTIONS(3059), + [anon_sym_for] = ACTIONS(3059), + [anon_sym_while] = ACTIONS(3059), + [anon_sym_try] = ACTIONS(3059), + [anon_sym_with] = ACTIONS(3059), + [anon_sym_def] = ACTIONS(3059), + [anon_sym_global] = ACTIONS(3059), + [anon_sym_nonlocal] = ACTIONS(3059), + [anon_sym_exec] = ACTIONS(3059), + [anon_sym_type] = ACTIONS(3059), + [anon_sym_class] = ACTIONS(3059), + [anon_sym_LBRACK] = ACTIONS(3061), + [anon_sym_AT] = ACTIONS(3061), + [anon_sym_DASH] = ACTIONS(3061), + [anon_sym_LBRACE] = ACTIONS(3061), + [anon_sym_PLUS] = ACTIONS(3061), + [anon_sym_not] = ACTIONS(3059), + [anon_sym_AMP] = ACTIONS(3061), + [anon_sym_TILDE] = ACTIONS(3061), + [anon_sym_LT] = ACTIONS(3061), + [anon_sym_lambda] = ACTIONS(3059), + [anon_sym_yield] = ACTIONS(3059), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3061), + [anon_sym_None] = ACTIONS(3059), + [sym_integer] = ACTIONS(3059), + [sym_float] = ACTIONS(3061), + [anon_sym_await] = ACTIONS(3059), + [anon_sym_api] = ACTIONS(3059), + [sym_true] = ACTIONS(3059), + [sym_false] = ACTIONS(3059), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3059), + [anon_sym_include] = ACTIONS(3059), + [anon_sym_DEF] = ACTIONS(3059), + [anon_sym_cdef] = ACTIONS(3059), + [anon_sym_cpdef] = ACTIONS(3059), + [anon_sym_new] = ACTIONS(3059), + [anon_sym_ctypedef] = ACTIONS(3059), + [anon_sym_public] = ACTIONS(3059), + [anon_sym_packed] = ACTIONS(3059), + [anon_sym_inline] = ACTIONS(3059), + [anon_sym_readonly] = ACTIONS(3059), + [anon_sym_sizeof] = ACTIONS(3059), + [sym_string_start] = ACTIONS(3061), + }, + [954] = { + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_list_splat] = STATE(5207), + [sym_parenthesized_list_splat] = STATE(5207), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4184), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_yield] = STATE(5207), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(3037), + [anon_sym_LPAREN] = ACTIONS(2785), + [anon_sym_STAR] = ACTIONS(3039), + [anon_sym_print] = ACTIONS(2399), + [anon_sym_match] = ACTIONS(2399), + [anon_sym_async] = ACTIONS(2399), + [anon_sym_exec] = ACTIONS(2399), [anon_sym_LBRACK] = ACTIONS(1382), [anon_sym_DASH] = ACTIONS(1384), [anon_sym_LBRACE] = ACTIONS(1386), @@ -112061,12 +113028,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(1384), [anon_sym_LT] = ACTIONS(1390), [anon_sym_lambda] = ACTIONS(1392), + [anon_sym_yield] = ACTIONS(1336), [anon_sym_DOT_DOT_DOT] = ACTIONS(1394), [anon_sym_None] = ACTIONS(1396), [sym_integer] = ACTIONS(1398), [sym_float] = ACTIONS(1400), - [anon_sym_await] = ACTIONS(2961), - [anon_sym_api] = ACTIONS(2959), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_api] = ACTIONS(2399), [sym_true] = ACTIONS(1398), [sym_false] = ACTIONS(1398), [sym_comment] = ACTIONS(3), @@ -112075,59 +113043,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1406), [sym_string_start] = ACTIONS(1408), }, - [943] = { - [sym_named_expression] = STATE(3081), - [sym__named_expression_lhs] = STATE(5469), - [sym_dictionary_splat] = STATE(5160), - [sym_list_splat_pattern] = STATE(2432), - [sym_as_pattern] = STATE(3081), - [sym_expression] = STATE(4296), - [sym_primary_expression] = STATE(2067), - [sym_not_operator] = STATE(3081), - [sym_boolean_operator] = STATE(3081), - [sym_binary_operator] = STATE(2549), - [sym_unary_operator] = STATE(2549), - [sym_comparison_operator] = STATE(3081), - [sym_lambda] = STATE(3081), - [sym_attribute] = STATE(2549), - [sym_subscript] = STATE(2549), - [sym_ellipsis] = STATE(2549), - [sym_call] = STATE(2549), - [sym_list] = STATE(2549), - [sym_set] = STATE(2549), - [sym_tuple] = STATE(2549), - [sym_dictionary] = STATE(2549), - [sym_pair] = STATE(5160), - [sym_list_comprehension] = STATE(2549), - [sym_dictionary_comprehension] = STATE(2549), - [sym_set_comprehension] = STATE(2549), - [sym_generator_expression] = STATE(2549), - [sym_parenthesized_expression] = STATE(2549), - [sym_conditional_expression] = STATE(3081), - [sym_concatenated_string] = STATE(2549), - [sym_string] = STATE(2140), - [sym_none] = STATE(2549), - [sym_await] = STATE(2549), - [sym_new_expression] = STATE(3081), - [sym_sizeof_expression] = STATE(2549), - [sym_cast_expression] = STATE(2549), + [955] = { + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_expression_list] = STATE(5006), + [sym_list_splat_pattern] = STATE(2088), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3849), + [sym_primary_expression] = STATE(2032), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_attribute] = STATE(2111), + [sym_subscript] = STATE(2111), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [sym_identifier] = ACTIONS(1001), + [anon_sym_SEMI] = ACTIONS(3069), + [anon_sym_from] = ACTIONS(3071), + [anon_sym_LPAREN] = ACTIONS(1281), + [anon_sym_STAR] = ACTIONS(3073), + [anon_sym_print] = ACTIONS(1016), + [anon_sym_match] = ACTIONS(1016), + [anon_sym_async] = ACTIONS(1016), + [anon_sym_exec] = ACTIONS(1016), + [anon_sym_LBRACK] = ACTIONS(1287), + [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(1041), + [anon_sym_api] = ACTIONS(1016), + [sym_true] = ACTIONS(81), + [sym_false] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(3069), + [sym_string_start] = ACTIONS(107), + }, + [956] = { + [sym_named_expression] = STATE(3088), + [sym__named_expression_lhs] = STATE(5579), + [sym_dictionary_splat] = STATE(5359), + [sym_list_splat_pattern] = STATE(2536), + [sym_as_pattern] = STATE(3088), + [sym_expression] = STATE(4290), + [sym_primary_expression] = STATE(2072), + [sym_not_operator] = STATE(3088), + [sym_boolean_operator] = STATE(3088), + [sym_binary_operator] = STATE(2401), + [sym_unary_operator] = STATE(2401), + [sym_comparison_operator] = STATE(3088), + [sym_lambda] = STATE(3088), + [sym_attribute] = STATE(2401), + [sym_subscript] = STATE(2401), + [sym_ellipsis] = STATE(2401), + [sym_call] = STATE(2401), + [sym_list] = STATE(2401), + [sym_set] = STATE(2401), + [sym_tuple] = STATE(2401), + [sym_dictionary] = STATE(2401), + [sym_pair] = STATE(5359), + [sym_list_comprehension] = STATE(2401), + [sym_dictionary_comprehension] = STATE(2401), + [sym_set_comprehension] = STATE(2401), + [sym_generator_expression] = STATE(2401), + [sym_parenthesized_expression] = STATE(2401), + [sym_conditional_expression] = STATE(3088), + [sym_concatenated_string] = STATE(2401), + [sym_string] = STATE(2161), + [sym_none] = STATE(2401), + [sym_await] = STATE(2401), + [sym_new_expression] = STATE(3088), + [sym_sizeof_expression] = STATE(2401), + [sym_cast_expression] = STATE(2401), [sym_identifier] = ACTIONS(1211), [anon_sym_LPAREN] = ACTIONS(1213), [anon_sym_STAR] = ACTIONS(1215), [anon_sym_print] = ACTIONS(1217), [anon_sym_match] = ACTIONS(1217), [anon_sym_async] = ACTIONS(1217), - [anon_sym_STAR_STAR] = ACTIONS(2545), + [anon_sym_STAR_STAR] = ACTIONS(2531), [anon_sym_exec] = ACTIONS(1217), [anon_sym_LBRACK] = ACTIONS(1219), [anon_sym_DASH] = ACTIONS(1227), [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_RBRACE] = ACTIONS(3057), + [anon_sym_RBRACE] = ACTIONS(3075), [anon_sym_PLUS] = ACTIONS(1227), [anon_sym_not] = ACTIONS(1225), [anon_sym_AMP] = ACTIONS(1227), [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(2735), + [anon_sym_LT] = ACTIONS(2705), [anon_sym_lambda] = ACTIONS(1231), [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), [anon_sym_None] = ACTIONS(1235), @@ -112143,59 +113179,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1245), [sym_string_start] = ACTIONS(1247), }, - [944] = { - [sym_named_expression] = STATE(3081), - [sym__named_expression_lhs] = STATE(5469), - [sym_dictionary_splat] = STATE(5160), - [sym_list_splat_pattern] = STATE(2432), - [sym_as_pattern] = STATE(3081), - [sym_expression] = STATE(4296), - [sym_primary_expression] = STATE(2067), - [sym_not_operator] = STATE(3081), - [sym_boolean_operator] = STATE(3081), - [sym_binary_operator] = STATE(2549), - [sym_unary_operator] = STATE(2549), - [sym_comparison_operator] = STATE(3081), - [sym_lambda] = STATE(3081), - [sym_attribute] = STATE(2549), - [sym_subscript] = STATE(2549), - [sym_ellipsis] = STATE(2549), - [sym_call] = STATE(2549), - [sym_list] = STATE(2549), - [sym_set] = STATE(2549), - [sym_tuple] = STATE(2549), - [sym_dictionary] = STATE(2549), - [sym_pair] = STATE(5160), - [sym_list_comprehension] = STATE(2549), - [sym_dictionary_comprehension] = STATE(2549), - [sym_set_comprehension] = STATE(2549), - [sym_generator_expression] = STATE(2549), - [sym_parenthesized_expression] = STATE(2549), - [sym_conditional_expression] = STATE(3081), - [sym_concatenated_string] = STATE(2549), - [sym_string] = STATE(2140), - [sym_none] = STATE(2549), - [sym_await] = STATE(2549), - [sym_new_expression] = STATE(3081), - [sym_sizeof_expression] = STATE(2549), - [sym_cast_expression] = STATE(2549), + [957] = { + [sym_named_expression] = STATE(3088), + [sym__named_expression_lhs] = STATE(5579), + [sym_dictionary_splat] = STATE(5359), + [sym_list_splat_pattern] = STATE(2536), + [sym_as_pattern] = STATE(3088), + [sym_expression] = STATE(4290), + [sym_primary_expression] = STATE(2072), + [sym_not_operator] = STATE(3088), + [sym_boolean_operator] = STATE(3088), + [sym_binary_operator] = STATE(2401), + [sym_unary_operator] = STATE(2401), + [sym_comparison_operator] = STATE(3088), + [sym_lambda] = STATE(3088), + [sym_attribute] = STATE(2401), + [sym_subscript] = STATE(2401), + [sym_ellipsis] = STATE(2401), + [sym_call] = STATE(2401), + [sym_list] = STATE(2401), + [sym_set] = STATE(2401), + [sym_tuple] = STATE(2401), + [sym_dictionary] = STATE(2401), + [sym_pair] = STATE(5359), + [sym_list_comprehension] = STATE(2401), + [sym_dictionary_comprehension] = STATE(2401), + [sym_set_comprehension] = STATE(2401), + [sym_generator_expression] = STATE(2401), + [sym_parenthesized_expression] = STATE(2401), + [sym_conditional_expression] = STATE(3088), + [sym_concatenated_string] = STATE(2401), + [sym_string] = STATE(2161), + [sym_none] = STATE(2401), + [sym_await] = STATE(2401), + [sym_new_expression] = STATE(3088), + [sym_sizeof_expression] = STATE(2401), + [sym_cast_expression] = STATE(2401), [sym_identifier] = ACTIONS(1211), [anon_sym_LPAREN] = ACTIONS(1213), [anon_sym_STAR] = ACTIONS(1215), [anon_sym_print] = ACTIONS(1217), [anon_sym_match] = ACTIONS(1217), [anon_sym_async] = ACTIONS(1217), - [anon_sym_STAR_STAR] = ACTIONS(2545), + [anon_sym_STAR_STAR] = ACTIONS(2531), [anon_sym_exec] = ACTIONS(1217), [anon_sym_LBRACK] = ACTIONS(1219), [anon_sym_DASH] = ACTIONS(1227), [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_RBRACE] = ACTIONS(3059), + [anon_sym_RBRACE] = ACTIONS(3077), [anon_sym_PLUS] = ACTIONS(1227), [anon_sym_not] = ACTIONS(1225), [anon_sym_AMP] = ACTIONS(1227), [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(2735), + [anon_sym_LT] = ACTIONS(2705), [anon_sym_lambda] = ACTIONS(1231), [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), [anon_sym_None] = ACTIONS(1235), @@ -112211,59 +113247,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1245), [sym_string_start] = ACTIONS(1247), }, - [945] = { - [sym_named_expression] = STATE(3081), - [sym__named_expression_lhs] = STATE(5469), - [sym_dictionary_splat] = STATE(5160), - [sym_list_splat_pattern] = STATE(2432), - [sym_as_pattern] = STATE(3081), - [sym_expression] = STATE(4296), - [sym_primary_expression] = STATE(2067), - [sym_not_operator] = STATE(3081), - [sym_boolean_operator] = STATE(3081), - [sym_binary_operator] = STATE(2549), - [sym_unary_operator] = STATE(2549), - [sym_comparison_operator] = STATE(3081), - [sym_lambda] = STATE(3081), - [sym_attribute] = STATE(2549), - [sym_subscript] = STATE(2549), - [sym_ellipsis] = STATE(2549), - [sym_call] = STATE(2549), - [sym_list] = STATE(2549), - [sym_set] = STATE(2549), - [sym_tuple] = STATE(2549), - [sym_dictionary] = STATE(2549), - [sym_pair] = STATE(5160), - [sym_list_comprehension] = STATE(2549), - [sym_dictionary_comprehension] = STATE(2549), - [sym_set_comprehension] = STATE(2549), - [sym_generator_expression] = STATE(2549), - [sym_parenthesized_expression] = STATE(2549), - [sym_conditional_expression] = STATE(3081), - [sym_concatenated_string] = STATE(2549), - [sym_string] = STATE(2140), - [sym_none] = STATE(2549), - [sym_await] = STATE(2549), - [sym_new_expression] = STATE(3081), - [sym_sizeof_expression] = STATE(2549), - [sym_cast_expression] = STATE(2549), + [958] = { + [sym_named_expression] = STATE(3825), + [sym__named_expression_lhs] = STATE(5410), + [sym_list_splat_pattern] = STATE(2284), + [sym_as_pattern] = STATE(3825), + [sym_expression] = STATE(3855), + [sym_primary_expression] = STATE(2057), + [sym_not_operator] = STATE(3825), + [sym_boolean_operator] = STATE(3825), + [sym_binary_operator] = STATE(2257), + [sym_unary_operator] = STATE(2257), + [sym_comparison_operator] = STATE(3825), + [sym_lambda] = STATE(3825), + [sym_attribute] = STATE(2257), + [sym_subscript] = STATE(2257), + [sym_ellipsis] = STATE(2257), + [sym_call] = STATE(2257), + [sym_list] = STATE(2257), + [sym_set] = STATE(2257), + [sym_tuple] = STATE(2257), + [sym_dictionary] = STATE(2257), + [sym_list_comprehension] = STATE(2257), + [sym_dictionary_comprehension] = STATE(2257), + [sym_set_comprehension] = STATE(2257), + [sym_generator_expression] = STATE(2257), + [sym_parenthesized_expression] = STATE(2257), + [sym_conditional_expression] = STATE(3825), + [sym_concatenated_string] = STATE(2257), + [sym_string] = STATE(2089), + [sym_none] = STATE(2257), + [sym_await] = STATE(2257), + [sym_new_expression] = STATE(3825), + [sym_sizeof_expression] = STATE(2257), + [sym_cast_expression] = STATE(2257), + [sym_identifier] = ACTIONS(2923), + [anon_sym_LPAREN] = ACTIONS(1943), + [anon_sym_STAR] = ACTIONS(2661), + [anon_sym_print] = ACTIONS(2927), + [anon_sym_COLON] = ACTIONS(3079), + [anon_sym_match] = ACTIONS(2927), + [anon_sym_async] = ACTIONS(2927), + [anon_sym_exec] = ACTIONS(2927), + [anon_sym_EQ] = ACTIONS(3079), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_DASH] = ACTIONS(1951), + [anon_sym_LBRACE] = ACTIONS(1953), + [anon_sym_RBRACE] = ACTIONS(3079), + [anon_sym_PLUS] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(2667), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_LT] = ACTIONS(2669), + [anon_sym_lambda] = ACTIONS(2671), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1957), + [anon_sym_None] = ACTIONS(1959), + [sym_type_conversion] = ACTIONS(3079), + [sym_integer] = ACTIONS(1941), + [sym_float] = ACTIONS(1961), + [anon_sym_await] = ACTIONS(2931), + [anon_sym_api] = ACTIONS(2927), + [sym_true] = ACTIONS(1941), + [sym_false] = ACTIONS(1941), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2677), + [anon_sym_sizeof] = ACTIONS(1965), + [sym_string_start] = ACTIONS(1967), + }, + [959] = { + [sym_named_expression] = STATE(3088), + [sym__named_expression_lhs] = STATE(5579), + [sym_dictionary_splat] = STATE(5359), + [sym_list_splat_pattern] = STATE(2536), + [sym_as_pattern] = STATE(3088), + [sym_expression] = STATE(4290), + [sym_primary_expression] = STATE(2072), + [sym_not_operator] = STATE(3088), + [sym_boolean_operator] = STATE(3088), + [sym_binary_operator] = STATE(2401), + [sym_unary_operator] = STATE(2401), + [sym_comparison_operator] = STATE(3088), + [sym_lambda] = STATE(3088), + [sym_attribute] = STATE(2401), + [sym_subscript] = STATE(2401), + [sym_ellipsis] = STATE(2401), + [sym_call] = STATE(2401), + [sym_list] = STATE(2401), + [sym_set] = STATE(2401), + [sym_tuple] = STATE(2401), + [sym_dictionary] = STATE(2401), + [sym_pair] = STATE(5359), + [sym_list_comprehension] = STATE(2401), + [sym_dictionary_comprehension] = STATE(2401), + [sym_set_comprehension] = STATE(2401), + [sym_generator_expression] = STATE(2401), + [sym_parenthesized_expression] = STATE(2401), + [sym_conditional_expression] = STATE(3088), + [sym_concatenated_string] = STATE(2401), + [sym_string] = STATE(2161), + [sym_none] = STATE(2401), + [sym_await] = STATE(2401), + [sym_new_expression] = STATE(3088), + [sym_sizeof_expression] = STATE(2401), + [sym_cast_expression] = STATE(2401), [sym_identifier] = ACTIONS(1211), [anon_sym_LPAREN] = ACTIONS(1213), [anon_sym_STAR] = ACTIONS(1215), [anon_sym_print] = ACTIONS(1217), [anon_sym_match] = ACTIONS(1217), [anon_sym_async] = ACTIONS(1217), - [anon_sym_STAR_STAR] = ACTIONS(2545), + [anon_sym_STAR_STAR] = ACTIONS(2531), [anon_sym_exec] = ACTIONS(1217), [anon_sym_LBRACK] = ACTIONS(1219), [anon_sym_DASH] = ACTIONS(1227), [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_RBRACE] = ACTIONS(3061), + [anon_sym_RBRACE] = ACTIONS(3081), [anon_sym_PLUS] = ACTIONS(1227), [anon_sym_not] = ACTIONS(1225), [anon_sym_AMP] = ACTIONS(1227), [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(2735), + [anon_sym_LT] = ACTIONS(2705), [anon_sym_lambda] = ACTIONS(1231), [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), [anon_sym_None] = ACTIONS(1235), @@ -112279,59 +113383,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1245), [sym_string_start] = ACTIONS(1247), }, - [946] = { - [sym_named_expression] = STATE(3081), - [sym__named_expression_lhs] = STATE(5469), - [sym_dictionary_splat] = STATE(5160), - [sym_list_splat_pattern] = STATE(2432), - [sym_as_pattern] = STATE(3081), - [sym_expression] = STATE(4296), - [sym_primary_expression] = STATE(2067), - [sym_not_operator] = STATE(3081), - [sym_boolean_operator] = STATE(3081), - [sym_binary_operator] = STATE(2549), - [sym_unary_operator] = STATE(2549), - [sym_comparison_operator] = STATE(3081), - [sym_lambda] = STATE(3081), - [sym_attribute] = STATE(2549), - [sym_subscript] = STATE(2549), - [sym_ellipsis] = STATE(2549), - [sym_call] = STATE(2549), - [sym_list] = STATE(2549), - [sym_set] = STATE(2549), - [sym_tuple] = STATE(2549), - [sym_dictionary] = STATE(2549), - [sym_pair] = STATE(5160), - [sym_list_comprehension] = STATE(2549), - [sym_dictionary_comprehension] = STATE(2549), - [sym_set_comprehension] = STATE(2549), - [sym_generator_expression] = STATE(2549), - [sym_parenthesized_expression] = STATE(2549), - [sym_conditional_expression] = STATE(3081), - [sym_concatenated_string] = STATE(2549), - [sym_string] = STATE(2140), - [sym_none] = STATE(2549), - [sym_await] = STATE(2549), - [sym_new_expression] = STATE(3081), - [sym_sizeof_expression] = STATE(2549), - [sym_cast_expression] = STATE(2549), + [960] = { + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_expression_list] = STATE(5190), + [sym_list_splat_pattern] = STATE(2088), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3882), + [sym_primary_expression] = STATE(2032), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_attribute] = STATE(2111), + [sym_subscript] = STATE(2111), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [sym_identifier] = ACTIONS(1001), + [anon_sym_SEMI] = ACTIONS(2929), + [anon_sym_from] = ACTIONS(3083), + [anon_sym_LPAREN] = ACTIONS(1281), + [anon_sym_STAR] = ACTIONS(3073), + [anon_sym_print] = ACTIONS(1016), + [anon_sym_match] = ACTIONS(1016), + [anon_sym_async] = ACTIONS(1016), + [anon_sym_exec] = ACTIONS(1016), + [anon_sym_LBRACK] = ACTIONS(1287), + [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(1041), + [anon_sym_api] = ACTIONS(1016), + [sym_true] = ACTIONS(81), + [sym_false] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(2929), + [sym_string_start] = ACTIONS(107), + }, + [961] = { + [ts_builtin_sym_end] = ACTIONS(1484), + [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_elif] = ACTIONS(1482), + [anon_sym_else] = 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_finally] = 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), + [anon_sym_DOT_DOT_DOT] = 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_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_new] = ACTIONS(1482), + [anon_sym_ctypedef] = 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_string_start] = ACTIONS(1484), + }, + [962] = { + [sym_named_expression] = STATE(3088), + [sym__named_expression_lhs] = STATE(5579), + [sym_dictionary_splat] = STATE(5359), + [sym_list_splat_pattern] = STATE(2536), + [sym_as_pattern] = STATE(3088), + [sym_expression] = STATE(4290), + [sym_primary_expression] = STATE(2072), + [sym_not_operator] = STATE(3088), + [sym_boolean_operator] = STATE(3088), + [sym_binary_operator] = STATE(2401), + [sym_unary_operator] = STATE(2401), + [sym_comparison_operator] = STATE(3088), + [sym_lambda] = STATE(3088), + [sym_attribute] = STATE(2401), + [sym_subscript] = STATE(2401), + [sym_ellipsis] = STATE(2401), + [sym_call] = STATE(2401), + [sym_list] = STATE(2401), + [sym_set] = STATE(2401), + [sym_tuple] = STATE(2401), + [sym_dictionary] = STATE(2401), + [sym_pair] = STATE(5359), + [sym_list_comprehension] = STATE(2401), + [sym_dictionary_comprehension] = STATE(2401), + [sym_set_comprehension] = STATE(2401), + [sym_generator_expression] = STATE(2401), + [sym_parenthesized_expression] = STATE(2401), + [sym_conditional_expression] = STATE(3088), + [sym_concatenated_string] = STATE(2401), + [sym_string] = STATE(2161), + [sym_none] = STATE(2401), + [sym_await] = STATE(2401), + [sym_new_expression] = STATE(3088), + [sym_sizeof_expression] = STATE(2401), + [sym_cast_expression] = STATE(2401), [sym_identifier] = ACTIONS(1211), [anon_sym_LPAREN] = ACTIONS(1213), [anon_sym_STAR] = ACTIONS(1215), [anon_sym_print] = ACTIONS(1217), [anon_sym_match] = ACTIONS(1217), [anon_sym_async] = ACTIONS(1217), - [anon_sym_STAR_STAR] = ACTIONS(2545), + [anon_sym_STAR_STAR] = ACTIONS(2531), [anon_sym_exec] = ACTIONS(1217), [anon_sym_LBRACK] = ACTIONS(1219), [anon_sym_DASH] = ACTIONS(1227), [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_RBRACE] = ACTIONS(3063), + [anon_sym_RBRACE] = ACTIONS(3085), [anon_sym_PLUS] = ACTIONS(1227), [anon_sym_not] = ACTIONS(1225), [anon_sym_AMP] = ACTIONS(1227), [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(2735), + [anon_sym_LT] = ACTIONS(2705), [anon_sym_lambda] = ACTIONS(1231), [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), [anon_sym_None] = ACTIONS(1235), @@ -112347,59 +113587,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1245), [sym_string_start] = ACTIONS(1247), }, - [947] = { - [sym_named_expression] = STATE(3081), - [sym__named_expression_lhs] = STATE(5469), - [sym_dictionary_splat] = STATE(5160), - [sym_list_splat_pattern] = STATE(2432), - [sym_as_pattern] = STATE(3081), - [sym_expression] = STATE(4296), - [sym_primary_expression] = STATE(2067), - [sym_not_operator] = STATE(3081), - [sym_boolean_operator] = STATE(3081), - [sym_binary_operator] = STATE(2549), - [sym_unary_operator] = STATE(2549), - [sym_comparison_operator] = STATE(3081), - [sym_lambda] = STATE(3081), - [sym_attribute] = STATE(2549), - [sym_subscript] = STATE(2549), - [sym_ellipsis] = STATE(2549), - [sym_call] = STATE(2549), - [sym_list] = STATE(2549), - [sym_set] = STATE(2549), - [sym_tuple] = STATE(2549), - [sym_dictionary] = STATE(2549), - [sym_pair] = STATE(5160), - [sym_list_comprehension] = STATE(2549), - [sym_dictionary_comprehension] = STATE(2549), - [sym_set_comprehension] = STATE(2549), - [sym_generator_expression] = STATE(2549), - [sym_parenthesized_expression] = STATE(2549), - [sym_conditional_expression] = STATE(3081), - [sym_concatenated_string] = STATE(2549), - [sym_string] = STATE(2140), - [sym_none] = STATE(2549), - [sym_await] = STATE(2549), - [sym_new_expression] = STATE(3081), - [sym_sizeof_expression] = STATE(2549), - [sym_cast_expression] = STATE(2549), + [963] = { + [sym_named_expression] = STATE(3088), + [sym__named_expression_lhs] = STATE(5579), + [sym_dictionary_splat] = STATE(5359), + [sym_list_splat_pattern] = STATE(2536), + [sym_as_pattern] = STATE(3088), + [sym_expression] = STATE(4290), + [sym_primary_expression] = STATE(2072), + [sym_not_operator] = STATE(3088), + [sym_boolean_operator] = STATE(3088), + [sym_binary_operator] = STATE(2401), + [sym_unary_operator] = STATE(2401), + [sym_comparison_operator] = STATE(3088), + [sym_lambda] = STATE(3088), + [sym_attribute] = STATE(2401), + [sym_subscript] = STATE(2401), + [sym_ellipsis] = STATE(2401), + [sym_call] = STATE(2401), + [sym_list] = STATE(2401), + [sym_set] = STATE(2401), + [sym_tuple] = STATE(2401), + [sym_dictionary] = STATE(2401), + [sym_pair] = STATE(5359), + [sym_list_comprehension] = STATE(2401), + [sym_dictionary_comprehension] = STATE(2401), + [sym_set_comprehension] = STATE(2401), + [sym_generator_expression] = STATE(2401), + [sym_parenthesized_expression] = STATE(2401), + [sym_conditional_expression] = STATE(3088), + [sym_concatenated_string] = STATE(2401), + [sym_string] = STATE(2161), + [sym_none] = STATE(2401), + [sym_await] = STATE(2401), + [sym_new_expression] = STATE(3088), + [sym_sizeof_expression] = STATE(2401), + [sym_cast_expression] = STATE(2401), [sym_identifier] = ACTIONS(1211), [anon_sym_LPAREN] = ACTIONS(1213), [anon_sym_STAR] = ACTIONS(1215), [anon_sym_print] = ACTIONS(1217), [anon_sym_match] = ACTIONS(1217), [anon_sym_async] = ACTIONS(1217), - [anon_sym_STAR_STAR] = ACTIONS(2545), + [anon_sym_STAR_STAR] = ACTIONS(2531), [anon_sym_exec] = ACTIONS(1217), [anon_sym_LBRACK] = ACTIONS(1219), [anon_sym_DASH] = ACTIONS(1227), [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_RBRACE] = ACTIONS(3065), + [anon_sym_RBRACE] = ACTIONS(3087), [anon_sym_PLUS] = ACTIONS(1227), [anon_sym_not] = ACTIONS(1225), [anon_sym_AMP] = ACTIONS(1227), [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(2735), + [anon_sym_LT] = ACTIONS(2705), [anon_sym_lambda] = ACTIONS(1231), [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), [anon_sym_None] = ACTIONS(1235), @@ -112415,127 +113655,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1245), [sym_string_start] = ACTIONS(1247), }, - [948] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5609), - [sym_list_splat] = STATE(5346), - [sym_parenthesized_list_splat] = STATE(5346), - [sym_list_splat_pattern] = STATE(2591), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(4192), - [sym_primary_expression] = STATE(2077), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2631), - [sym_unary_operator] = STATE(2631), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_yield] = STATE(5346), - [sym_attribute] = STATE(2631), - [sym_subscript] = STATE(2631), - [sym_ellipsis] = STATE(2631), - [sym_call] = STATE(2631), - [sym_list] = STATE(2631), - [sym_set] = STATE(2631), - [sym_tuple] = STATE(2631), - [sym_dictionary] = STATE(2631), - [sym_list_comprehension] = STATE(2631), - [sym_dictionary_comprehension] = STATE(2631), - [sym_set_comprehension] = STATE(2631), - [sym_generator_expression] = STATE(2631), - [sym_parenthesized_expression] = STATE(2631), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2631), - [sym_string] = STATE(2218), - [sym_none] = STATE(2631), - [sym_await] = STATE(2631), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2631), - [sym_cast_expression] = STATE(2631), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(2965), - [anon_sym_STAR] = ACTIONS(2967), - [anon_sym_print] = ACTIONS(2631), - [anon_sym_match] = ACTIONS(2631), - [anon_sym_async] = ACTIONS(2631), - [anon_sym_exec] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2639), - [anon_sym_lambda] = ACTIONS(2641), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2643), - [anon_sym_api] = ACTIONS(2631), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2645), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), + [964] = { + [sym_named_expression] = STATE(3825), + [sym__named_expression_lhs] = STATE(5675), + [sym_expression_list] = STATE(4434), + [sym_list_splat_pattern] = STATE(2284), + [sym_as_pattern] = STATE(3825), + [sym_expression] = STATE(4099), + [sym_primary_expression] = STATE(2057), + [sym_not_operator] = STATE(3825), + [sym_boolean_operator] = STATE(3825), + [sym_binary_operator] = STATE(2257), + [sym_unary_operator] = STATE(2257), + [sym_comparison_operator] = STATE(3825), + [sym_lambda] = STATE(3825), + [sym_attribute] = STATE(2257), + [sym_subscript] = STATE(2257), + [sym_ellipsis] = STATE(2257), + [sym_call] = STATE(2257), + [sym_list] = STATE(2257), + [sym_set] = STATE(2257), + [sym_tuple] = STATE(2257), + [sym_dictionary] = STATE(2257), + [sym_list_comprehension] = STATE(2257), + [sym_dictionary_comprehension] = STATE(2257), + [sym_set_comprehension] = STATE(2257), + [sym_generator_expression] = STATE(2257), + [sym_parenthesized_expression] = STATE(2257), + [sym_conditional_expression] = STATE(3825), + [sym_concatenated_string] = STATE(2257), + [sym_string] = STATE(2089), + [sym_none] = STATE(2257), + [sym_await] = STATE(2257), + [sym_new_expression] = STATE(3825), + [sym_sizeof_expression] = STATE(2257), + [sym_cast_expression] = STATE(2257), + [sym_identifier] = ACTIONS(2923), + [anon_sym_from] = ACTIONS(3089), + [anon_sym_LPAREN] = ACTIONS(1943), + [anon_sym_COMMA] = ACTIONS(2929), + [anon_sym_STAR] = ACTIONS(2661), + [anon_sym_print] = ACTIONS(2927), + [anon_sym_match] = ACTIONS(2927), + [anon_sym_async] = ACTIONS(2927), + [anon_sym_exec] = ACTIONS(2927), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_DASH] = ACTIONS(1951), + [anon_sym_LBRACE] = ACTIONS(1953), + [anon_sym_RBRACE] = ACTIONS(2929), + [anon_sym_PLUS] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3045), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_LT] = ACTIONS(2669), + [anon_sym_lambda] = ACTIONS(3047), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1957), + [anon_sym_None] = ACTIONS(1959), + [sym_integer] = ACTIONS(1941), + [sym_float] = ACTIONS(1961), + [anon_sym_await] = ACTIONS(2931), + [anon_sym_api] = ACTIONS(2927), + [sym_true] = ACTIONS(1941), + [sym_false] = ACTIONS(1941), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3049), + [anon_sym_sizeof] = ACTIONS(1965), + [sym_string_start] = ACTIONS(1967), }, - [949] = { - [sym_named_expression] = STATE(3081), - [sym__named_expression_lhs] = STATE(5469), - [sym_dictionary_splat] = STATE(5160), - [sym_list_splat_pattern] = STATE(2432), - [sym_as_pattern] = STATE(3081), - [sym_expression] = STATE(4296), - [sym_primary_expression] = STATE(2067), - [sym_not_operator] = STATE(3081), - [sym_boolean_operator] = STATE(3081), - [sym_binary_operator] = STATE(2549), - [sym_unary_operator] = STATE(2549), - [sym_comparison_operator] = STATE(3081), - [sym_lambda] = STATE(3081), - [sym_attribute] = STATE(2549), - [sym_subscript] = STATE(2549), - [sym_ellipsis] = STATE(2549), - [sym_call] = STATE(2549), - [sym_list] = STATE(2549), - [sym_set] = STATE(2549), - [sym_tuple] = STATE(2549), - [sym_dictionary] = STATE(2549), - [sym_pair] = STATE(5160), - [sym_list_comprehension] = STATE(2549), - [sym_dictionary_comprehension] = STATE(2549), - [sym_set_comprehension] = STATE(2549), - [sym_generator_expression] = STATE(2549), - [sym_parenthesized_expression] = STATE(2549), - [sym_conditional_expression] = STATE(3081), - [sym_concatenated_string] = STATE(2549), - [sym_string] = STATE(2140), - [sym_none] = STATE(2549), - [sym_await] = STATE(2549), - [sym_new_expression] = STATE(3081), - [sym_sizeof_expression] = STATE(2549), - [sym_cast_expression] = STATE(2549), + [965] = { + [sym_named_expression] = STATE(2652), + [sym__named_expression_lhs] = STATE(5398), + [sym_expression_list] = STATE(5216), + [sym_list_splat_pattern] = STATE(2644), + [sym_as_pattern] = STATE(2652), + [sym_expression] = STATE(4062), + [sym_primary_expression] = STATE(2163), + [sym_not_operator] = STATE(2652), + [sym_boolean_operator] = STATE(2652), + [sym_binary_operator] = STATE(2651), + [sym_unary_operator] = STATE(2651), + [sym_comparison_operator] = STATE(2652), + [sym_lambda] = STATE(2652), + [sym_attribute] = STATE(2651), + [sym_subscript] = STATE(2651), + [sym_ellipsis] = STATE(2651), + [sym_call] = STATE(2651), + [sym_list] = STATE(2651), + [sym_set] = STATE(2651), + [sym_tuple] = STATE(2651), + [sym_dictionary] = STATE(2651), + [sym_list_comprehension] = STATE(2651), + [sym_dictionary_comprehension] = STATE(2651), + [sym_set_comprehension] = STATE(2651), + [sym_generator_expression] = STATE(2651), + [sym_parenthesized_expression] = STATE(2651), + [sym_conditional_expression] = STATE(2652), + [sym_concatenated_string] = STATE(2651), + [sym_string] = STATE(2393), + [sym_none] = STATE(2651), + [sym_await] = STATE(2651), + [sym_new_expression] = STATE(2652), + [sym_sizeof_expression] = STATE(2651), + [sym_cast_expression] = STATE(2651), + [sym_identifier] = ACTIONS(3037), + [anon_sym_from] = ACTIONS(3091), + [anon_sym_LPAREN] = ACTIONS(2449), + [anon_sym_RPAREN] = ACTIONS(2929), + [anon_sym_COMMA] = ACTIONS(2929), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_print] = ACTIONS(2399), + [anon_sym_match] = ACTIONS(2399), + [anon_sym_async] = ACTIONS(2399), + [anon_sym_exec] = ACTIONS(2399), + [anon_sym_LBRACK] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_LBRACE] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(1384), + [anon_sym_not] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_TILDE] = ACTIONS(1384), + [anon_sym_LT] = ACTIONS(1390), + [anon_sym_lambda] = ACTIONS(1392), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1394), + [anon_sym_None] = ACTIONS(1396), + [sym_integer] = ACTIONS(1398), + [sym_float] = ACTIONS(1400), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_api] = ACTIONS(2399), + [sym_true] = ACTIONS(1398), + [sym_false] = ACTIONS(1398), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1404), + [anon_sym_sizeof] = ACTIONS(1406), + [sym_string_start] = ACTIONS(1408), + }, + [966] = { + [sym_named_expression] = STATE(3088), + [sym__named_expression_lhs] = STATE(5579), + [sym_dictionary_splat] = STATE(5359), + [sym_list_splat_pattern] = STATE(2536), + [sym_as_pattern] = STATE(3088), + [sym_expression] = STATE(4290), + [sym_primary_expression] = STATE(2072), + [sym_not_operator] = STATE(3088), + [sym_boolean_operator] = STATE(3088), + [sym_binary_operator] = STATE(2401), + [sym_unary_operator] = STATE(2401), + [sym_comparison_operator] = STATE(3088), + [sym_lambda] = STATE(3088), + [sym_attribute] = STATE(2401), + [sym_subscript] = STATE(2401), + [sym_ellipsis] = STATE(2401), + [sym_call] = STATE(2401), + [sym_list] = STATE(2401), + [sym_set] = STATE(2401), + [sym_tuple] = STATE(2401), + [sym_dictionary] = STATE(2401), + [sym_pair] = STATE(5359), + [sym_list_comprehension] = STATE(2401), + [sym_dictionary_comprehension] = STATE(2401), + [sym_set_comprehension] = STATE(2401), + [sym_generator_expression] = STATE(2401), + [sym_parenthesized_expression] = STATE(2401), + [sym_conditional_expression] = STATE(3088), + [sym_concatenated_string] = STATE(2401), + [sym_string] = STATE(2161), + [sym_none] = STATE(2401), + [sym_await] = STATE(2401), + [sym_new_expression] = STATE(3088), + [sym_sizeof_expression] = STATE(2401), + [sym_cast_expression] = STATE(2401), [sym_identifier] = ACTIONS(1211), [anon_sym_LPAREN] = ACTIONS(1213), [anon_sym_STAR] = ACTIONS(1215), [anon_sym_print] = ACTIONS(1217), [anon_sym_match] = ACTIONS(1217), [anon_sym_async] = ACTIONS(1217), - [anon_sym_STAR_STAR] = ACTIONS(2545), + [anon_sym_STAR_STAR] = ACTIONS(2531), [anon_sym_exec] = ACTIONS(1217), [anon_sym_LBRACK] = ACTIONS(1219), [anon_sym_DASH] = ACTIONS(1227), [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_RBRACE] = ACTIONS(3067), + [anon_sym_RBRACE] = ACTIONS(3093), [anon_sym_PLUS] = ACTIONS(1227), [anon_sym_not] = ACTIONS(1225), [anon_sym_AMP] = ACTIONS(1227), [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(2735), + [anon_sym_LT] = ACTIONS(2705), [anon_sym_lambda] = ACTIONS(1231), [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), [anon_sym_None] = ACTIONS(1235), @@ -112551,127 +113859,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1245), [sym_string_start] = ACTIONS(1247), }, - [950] = { - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_expression_list] = STATE(5264), - [sym_list_splat_pattern] = STATE(2088), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3892), - [sym_primary_expression] = STATE(2024), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_attribute] = STATE(2123), - [sym_subscript] = STATE(2123), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [sym_identifier] = ACTIONS(577), - [anon_sym_SEMI] = ACTIONS(2799), - [anon_sym_from] = ACTIONS(3069), - [anon_sym_LPAREN] = ACTIONS(1281), - [anon_sym_STAR] = ACTIONS(3071), - [anon_sym_print] = ACTIONS(592), - [anon_sym_match] = ACTIONS(592), - [anon_sym_async] = ACTIONS(592), - [anon_sym_exec] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(1287), - [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(614), - [anon_sym_api] = ACTIONS(592), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(2799), - [sym_string_start] = ACTIONS(107), - }, - [951] = { - [sym_named_expression] = STATE(3081), - [sym__named_expression_lhs] = STATE(5469), - [sym_dictionary_splat] = STATE(5160), - [sym_list_splat_pattern] = STATE(2432), - [sym_as_pattern] = STATE(3081), - [sym_expression] = STATE(4296), - [sym_primary_expression] = STATE(2067), - [sym_not_operator] = STATE(3081), - [sym_boolean_operator] = STATE(3081), - [sym_binary_operator] = STATE(2549), - [sym_unary_operator] = STATE(2549), - [sym_comparison_operator] = STATE(3081), - [sym_lambda] = STATE(3081), - [sym_attribute] = STATE(2549), - [sym_subscript] = STATE(2549), - [sym_ellipsis] = STATE(2549), - [sym_call] = STATE(2549), - [sym_list] = STATE(2549), - [sym_set] = STATE(2549), - [sym_tuple] = STATE(2549), - [sym_dictionary] = STATE(2549), - [sym_pair] = STATE(5160), - [sym_list_comprehension] = STATE(2549), - [sym_dictionary_comprehension] = STATE(2549), - [sym_set_comprehension] = STATE(2549), - [sym_generator_expression] = STATE(2549), - [sym_parenthesized_expression] = STATE(2549), - [sym_conditional_expression] = STATE(3081), - [sym_concatenated_string] = STATE(2549), - [sym_string] = STATE(2140), - [sym_none] = STATE(2549), - [sym_await] = STATE(2549), - [sym_new_expression] = STATE(3081), - [sym_sizeof_expression] = STATE(2549), - [sym_cast_expression] = STATE(2549), + [967] = { + [sym_named_expression] = STATE(3088), + [sym__named_expression_lhs] = STATE(5579), + [sym_dictionary_splat] = STATE(5359), + [sym_list_splat_pattern] = STATE(2536), + [sym_as_pattern] = STATE(3088), + [sym_expression] = STATE(4290), + [sym_primary_expression] = STATE(2072), + [sym_not_operator] = STATE(3088), + [sym_boolean_operator] = STATE(3088), + [sym_binary_operator] = STATE(2401), + [sym_unary_operator] = STATE(2401), + [sym_comparison_operator] = STATE(3088), + [sym_lambda] = STATE(3088), + [sym_attribute] = STATE(2401), + [sym_subscript] = STATE(2401), + [sym_ellipsis] = STATE(2401), + [sym_call] = STATE(2401), + [sym_list] = STATE(2401), + [sym_set] = STATE(2401), + [sym_tuple] = STATE(2401), + [sym_dictionary] = STATE(2401), + [sym_pair] = STATE(5359), + [sym_list_comprehension] = STATE(2401), + [sym_dictionary_comprehension] = STATE(2401), + [sym_set_comprehension] = STATE(2401), + [sym_generator_expression] = STATE(2401), + [sym_parenthesized_expression] = STATE(2401), + [sym_conditional_expression] = STATE(3088), + [sym_concatenated_string] = STATE(2401), + [sym_string] = STATE(2161), + [sym_none] = STATE(2401), + [sym_await] = STATE(2401), + [sym_new_expression] = STATE(3088), + [sym_sizeof_expression] = STATE(2401), + [sym_cast_expression] = STATE(2401), [sym_identifier] = ACTIONS(1211), [anon_sym_LPAREN] = ACTIONS(1213), [anon_sym_STAR] = ACTIONS(1215), [anon_sym_print] = ACTIONS(1217), [anon_sym_match] = ACTIONS(1217), [anon_sym_async] = ACTIONS(1217), - [anon_sym_STAR_STAR] = ACTIONS(2545), + [anon_sym_STAR_STAR] = ACTIONS(2531), [anon_sym_exec] = ACTIONS(1217), [anon_sym_LBRACK] = ACTIONS(1219), [anon_sym_DASH] = ACTIONS(1227), [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_RBRACE] = ACTIONS(3073), + [anon_sym_RBRACE] = ACTIONS(3095), [anon_sym_PLUS] = ACTIONS(1227), [anon_sym_not] = ACTIONS(1225), [anon_sym_AMP] = ACTIONS(1227), [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(2735), + [anon_sym_LT] = ACTIONS(2705), [anon_sym_lambda] = ACTIONS(1231), [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), [anon_sym_None] = ACTIONS(1235), @@ -112687,59 +113927,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1245), [sym_string_start] = ACTIONS(1247), }, - [952] = { - [sym_named_expression] = STATE(3081), - [sym__named_expression_lhs] = STATE(5469), - [sym_dictionary_splat] = STATE(5160), - [sym_list_splat_pattern] = STATE(2432), - [sym_as_pattern] = STATE(3081), - [sym_expression] = STATE(4296), - [sym_primary_expression] = STATE(2067), - [sym_not_operator] = STATE(3081), - [sym_boolean_operator] = STATE(3081), - [sym_binary_operator] = STATE(2549), - [sym_unary_operator] = STATE(2549), - [sym_comparison_operator] = STATE(3081), - [sym_lambda] = STATE(3081), - [sym_attribute] = STATE(2549), - [sym_subscript] = STATE(2549), - [sym_ellipsis] = STATE(2549), - [sym_call] = STATE(2549), - [sym_list] = STATE(2549), - [sym_set] = STATE(2549), - [sym_tuple] = STATE(2549), - [sym_dictionary] = STATE(2549), - [sym_pair] = STATE(5160), - [sym_list_comprehension] = STATE(2549), - [sym_dictionary_comprehension] = STATE(2549), - [sym_set_comprehension] = STATE(2549), - [sym_generator_expression] = STATE(2549), - [sym_parenthesized_expression] = STATE(2549), - [sym_conditional_expression] = STATE(3081), - [sym_concatenated_string] = STATE(2549), - [sym_string] = STATE(2140), - [sym_none] = STATE(2549), - [sym_await] = STATE(2549), - [sym_new_expression] = STATE(3081), - [sym_sizeof_expression] = STATE(2549), - [sym_cast_expression] = STATE(2549), + [968] = { + [sym_named_expression] = STATE(3825), + [sym__named_expression_lhs] = STATE(5675), + [sym_list_splat] = STATE(5353), + [sym_parenthesized_list_splat] = STATE(5353), + [sym_list_splat_pattern] = STATE(2284), + [sym_as_pattern] = STATE(3825), + [sym_expression] = STATE(4265), + [sym_primary_expression] = STATE(2057), + [sym_not_operator] = STATE(3825), + [sym_boolean_operator] = STATE(3825), + [sym_binary_operator] = STATE(2257), + [sym_unary_operator] = STATE(2257), + [sym_comparison_operator] = STATE(3825), + [sym_lambda] = STATE(3825), + [sym_yield] = STATE(5353), + [sym_attribute] = STATE(2257), + [sym_subscript] = STATE(2257), + [sym_ellipsis] = STATE(2257), + [sym_call] = STATE(2257), + [sym_list] = STATE(2257), + [sym_set] = STATE(2257), + [sym_tuple] = STATE(2257), + [sym_dictionary] = STATE(2257), + [sym_list_comprehension] = STATE(2257), + [sym_dictionary_comprehension] = STATE(2257), + [sym_set_comprehension] = STATE(2257), + [sym_generator_expression] = STATE(2257), + [sym_parenthesized_expression] = STATE(2257), + [sym_conditional_expression] = STATE(3825), + [sym_concatenated_string] = STATE(2257), + [sym_string] = STATE(2089), + [sym_none] = STATE(2257), + [sym_await] = STATE(2257), + [sym_new_expression] = STATE(3825), + [sym_sizeof_expression] = STATE(2257), + [sym_cast_expression] = STATE(2257), + [sym_identifier] = ACTIONS(2923), + [anon_sym_LPAREN] = ACTIONS(3041), + [anon_sym_STAR] = ACTIONS(3043), + [anon_sym_print] = ACTIONS(2927), + [anon_sym_match] = ACTIONS(2927), + [anon_sym_async] = ACTIONS(2927), + [anon_sym_exec] = ACTIONS(2927), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_DASH] = ACTIONS(1951), + [anon_sym_LBRACE] = ACTIONS(1953), + [anon_sym_PLUS] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3045), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_LT] = ACTIONS(2669), + [anon_sym_lambda] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(2541), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1957), + [anon_sym_None] = ACTIONS(1959), + [sym_integer] = ACTIONS(1941), + [sym_float] = ACTIONS(1961), + [anon_sym_await] = ACTIONS(2931), + [anon_sym_api] = ACTIONS(2927), + [sym_true] = ACTIONS(1941), + [sym_false] = ACTIONS(1941), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3049), + [anon_sym_sizeof] = ACTIONS(1965), + [sym_string_start] = ACTIONS(1967), + }, + [969] = { + [sym_named_expression] = STATE(3088), + [sym__named_expression_lhs] = STATE(5579), + [sym_dictionary_splat] = STATE(5359), + [sym_list_splat_pattern] = STATE(2536), + [sym_as_pattern] = STATE(3088), + [sym_expression] = STATE(4290), + [sym_primary_expression] = STATE(2072), + [sym_not_operator] = STATE(3088), + [sym_boolean_operator] = STATE(3088), + [sym_binary_operator] = STATE(2401), + [sym_unary_operator] = STATE(2401), + [sym_comparison_operator] = STATE(3088), + [sym_lambda] = STATE(3088), + [sym_attribute] = STATE(2401), + [sym_subscript] = STATE(2401), + [sym_ellipsis] = STATE(2401), + [sym_call] = STATE(2401), + [sym_list] = STATE(2401), + [sym_set] = STATE(2401), + [sym_tuple] = STATE(2401), + [sym_dictionary] = STATE(2401), + [sym_pair] = STATE(5359), + [sym_list_comprehension] = STATE(2401), + [sym_dictionary_comprehension] = STATE(2401), + [sym_set_comprehension] = STATE(2401), + [sym_generator_expression] = STATE(2401), + [sym_parenthesized_expression] = STATE(2401), + [sym_conditional_expression] = STATE(3088), + [sym_concatenated_string] = STATE(2401), + [sym_string] = STATE(2161), + [sym_none] = STATE(2401), + [sym_await] = STATE(2401), + [sym_new_expression] = STATE(3088), + [sym_sizeof_expression] = STATE(2401), + [sym_cast_expression] = STATE(2401), [sym_identifier] = ACTIONS(1211), [anon_sym_LPAREN] = ACTIONS(1213), [anon_sym_STAR] = ACTIONS(1215), [anon_sym_print] = ACTIONS(1217), [anon_sym_match] = ACTIONS(1217), [anon_sym_async] = ACTIONS(1217), - [anon_sym_STAR_STAR] = ACTIONS(2545), + [anon_sym_STAR_STAR] = ACTIONS(2531), [anon_sym_exec] = ACTIONS(1217), [anon_sym_LBRACK] = ACTIONS(1219), [anon_sym_DASH] = ACTIONS(1227), [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_RBRACE] = ACTIONS(3075), + [anon_sym_RBRACE] = ACTIONS(3097), [anon_sym_PLUS] = ACTIONS(1227), [anon_sym_not] = ACTIONS(1225), [anon_sym_AMP] = ACTIONS(1227), [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(2735), + [anon_sym_LT] = ACTIONS(2705), [anon_sym_lambda] = ACTIONS(1231), [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), [anon_sym_None] = ACTIONS(1235), @@ -112755,331 +114063,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1245), [sym_string_start] = ACTIONS(1247), }, - [953] = { - [sym_named_expression] = STATE(3846), - [sym__named_expression_lhs] = STATE(5657), - [sym_list_splat] = STATE(5159), - [sym_parenthesized_list_splat] = STATE(5159), - [sym_list_splat_pattern] = STATE(2357), - [sym_as_pattern] = STATE(3846), - [sym_expression] = STATE(4183), - [sym_primary_expression] = STATE(2046), - [sym_not_operator] = STATE(3846), - [sym_boolean_operator] = STATE(3846), - [sym_binary_operator] = STATE(2255), - [sym_unary_operator] = STATE(2255), - [sym_comparison_operator] = STATE(3846), - [sym_lambda] = STATE(3846), - [sym_yield] = STATE(5159), - [sym_attribute] = STATE(2255), - [sym_subscript] = STATE(2255), - [sym_ellipsis] = STATE(2255), - [sym_call] = STATE(2255), - [sym_list] = STATE(2255), - [sym_set] = STATE(2255), - [sym_tuple] = STATE(2255), - [sym_dictionary] = STATE(2255), - [sym_list_comprehension] = STATE(2255), - [sym_dictionary_comprehension] = STATE(2255), - [sym_set_comprehension] = STATE(2255), - [sym_generator_expression] = STATE(2255), - [sym_parenthesized_expression] = STATE(2255), - [sym_conditional_expression] = STATE(3846), - [sym_concatenated_string] = STATE(2255), - [sym_string] = STATE(2073), - [sym_none] = STATE(2255), - [sym_await] = STATE(2255), - [sym_new_expression] = STATE(3846), - [sym_sizeof_expression] = STATE(2255), - [sym_cast_expression] = STATE(2255), - [sym_identifier] = ACTIONS(2793), - [anon_sym_LPAREN] = ACTIONS(2925), - [anon_sym_STAR] = ACTIONS(2927), - [anon_sym_print] = ACTIONS(2797), - [anon_sym_match] = ACTIONS(2797), - [anon_sym_async] = ACTIONS(2797), - [anon_sym_exec] = ACTIONS(2797), - [anon_sym_LBRACK] = ACTIONS(1913), - [anon_sym_DASH] = ACTIONS(1915), - [anon_sym_LBRACE] = ACTIONS(1917), - [anon_sym_PLUS] = ACTIONS(1915), - [anon_sym_not] = ACTIONS(2931), - [anon_sym_AMP] = ACTIONS(1915), - [anon_sym_TILDE] = ACTIONS(1915), - [anon_sym_LT] = ACTIONS(2661), - [anon_sym_lambda] = ACTIONS(2933), - [anon_sym_yield] = ACTIONS(2555), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1921), - [anon_sym_None] = ACTIONS(1923), - [sym_integer] = ACTIONS(1905), - [sym_float] = ACTIONS(1925), - [anon_sym_await] = ACTIONS(2801), - [anon_sym_api] = ACTIONS(2797), - [sym_true] = ACTIONS(1905), - [sym_false] = ACTIONS(1905), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2935), - [anon_sym_sizeof] = ACTIONS(1929), - [sym_string_start] = ACTIONS(1931), - }, - [954] = { - [sym_named_expression] = STATE(3846), - [sym__named_expression_lhs] = STATE(5557), - [sym_list_splat_pattern] = STATE(2357), - [sym_as_pattern] = STATE(3846), - [sym_expression] = STATE(3800), - [sym_primary_expression] = STATE(2046), - [sym_not_operator] = STATE(3846), - [sym_boolean_operator] = STATE(3846), - [sym_binary_operator] = STATE(2255), - [sym_unary_operator] = STATE(2255), - [sym_comparison_operator] = STATE(3846), - [sym_lambda] = STATE(3846), - [sym_attribute] = STATE(2255), - [sym_subscript] = STATE(2255), - [sym_ellipsis] = STATE(2255), - [sym_call] = STATE(2255), - [sym_list] = STATE(2255), - [sym_set] = STATE(2255), - [sym_tuple] = STATE(2255), - [sym_dictionary] = STATE(2255), - [sym_list_comprehension] = STATE(2255), - [sym_dictionary_comprehension] = STATE(2255), - [sym_set_comprehension] = STATE(2255), - [sym_generator_expression] = STATE(2255), - [sym_parenthesized_expression] = STATE(2255), - [sym_conditional_expression] = STATE(3846), - [sym_concatenated_string] = STATE(2255), - [sym_string] = STATE(2073), - [sym_none] = STATE(2255), - [sym_await] = STATE(2255), - [sym_new_expression] = STATE(3846), - [sym_sizeof_expression] = STATE(2255), - [sym_cast_expression] = STATE(2255), - [sym_identifier] = ACTIONS(2793), - [anon_sym_LPAREN] = ACTIONS(1907), - [anon_sym_STAR] = ACTIONS(2653), - [anon_sym_print] = ACTIONS(2797), - [anon_sym_COLON] = ACTIONS(3077), - [anon_sym_match] = ACTIONS(2797), - [anon_sym_async] = ACTIONS(2797), - [anon_sym_exec] = ACTIONS(2797), - [anon_sym_EQ] = ACTIONS(3077), - [anon_sym_LBRACK] = ACTIONS(1913), - [anon_sym_DASH] = ACTIONS(1915), - [anon_sym_LBRACE] = ACTIONS(1917), - [anon_sym_RBRACE] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(1915), - [anon_sym_not] = ACTIONS(2659), - [anon_sym_AMP] = ACTIONS(1915), - [anon_sym_TILDE] = ACTIONS(1915), - [anon_sym_LT] = ACTIONS(2661), - [anon_sym_lambda] = ACTIONS(2663), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1921), - [anon_sym_None] = ACTIONS(1923), - [sym_type_conversion] = ACTIONS(3077), - [sym_integer] = ACTIONS(1905), - [sym_float] = ACTIONS(1925), - [anon_sym_await] = ACTIONS(2801), - [anon_sym_api] = ACTIONS(2797), - [sym_true] = ACTIONS(1905), - [sym_false] = ACTIONS(1905), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2669), - [anon_sym_sizeof] = ACTIONS(1929), - [sym_string_start] = ACTIONS(1931), - }, - [955] = { - [ts_builtin_sym_end] = ACTIONS(1496), - [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_elif] = ACTIONS(1494), - [anon_sym_else] = 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_finally] = 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), - [anon_sym_DOT_DOT_DOT] = 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_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_new] = ACTIONS(1494), - [anon_sym_ctypedef] = 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_string_start] = ACTIONS(1496), - }, - [956] = { - [ts_builtin_sym_end] = ACTIONS(1484), - [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_elif] = ACTIONS(1482), - [anon_sym_else] = 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_finally] = 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), - [anon_sym_DOT_DOT_DOT] = 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_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_new] = ACTIONS(1482), - [anon_sym_ctypedef] = 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_string_start] = ACTIONS(1484), - }, - [957] = { - [sym_named_expression] = STATE(3081), - [sym__named_expression_lhs] = STATE(5469), - [sym_dictionary_splat] = STATE(5160), - [sym_list_splat_pattern] = STATE(2432), - [sym_as_pattern] = STATE(3081), - [sym_expression] = STATE(4296), - [sym_primary_expression] = STATE(2067), - [sym_not_operator] = STATE(3081), - [sym_boolean_operator] = STATE(3081), - [sym_binary_operator] = STATE(2549), - [sym_unary_operator] = STATE(2549), - [sym_comparison_operator] = STATE(3081), - [sym_lambda] = STATE(3081), - [sym_attribute] = STATE(2549), - [sym_subscript] = STATE(2549), - [sym_ellipsis] = STATE(2549), - [sym_call] = STATE(2549), - [sym_list] = STATE(2549), - [sym_set] = STATE(2549), - [sym_tuple] = STATE(2549), - [sym_dictionary] = STATE(2549), - [sym_pair] = STATE(5160), - [sym_list_comprehension] = STATE(2549), - [sym_dictionary_comprehension] = STATE(2549), - [sym_set_comprehension] = STATE(2549), - [sym_generator_expression] = STATE(2549), - [sym_parenthesized_expression] = STATE(2549), - [sym_conditional_expression] = STATE(3081), - [sym_concatenated_string] = STATE(2549), - [sym_string] = STATE(2140), - [sym_none] = STATE(2549), - [sym_await] = STATE(2549), - [sym_new_expression] = STATE(3081), - [sym_sizeof_expression] = STATE(2549), - [sym_cast_expression] = STATE(2549), + [970] = { + [sym_named_expression] = STATE(3088), + [sym__named_expression_lhs] = STATE(5579), + [sym_dictionary_splat] = STATE(5359), + [sym_list_splat_pattern] = STATE(2536), + [sym_as_pattern] = STATE(3088), + [sym_expression] = STATE(4290), + [sym_primary_expression] = STATE(2072), + [sym_not_operator] = STATE(3088), + [sym_boolean_operator] = STATE(3088), + [sym_binary_operator] = STATE(2401), + [sym_unary_operator] = STATE(2401), + [sym_comparison_operator] = STATE(3088), + [sym_lambda] = STATE(3088), + [sym_attribute] = STATE(2401), + [sym_subscript] = STATE(2401), + [sym_ellipsis] = STATE(2401), + [sym_call] = STATE(2401), + [sym_list] = STATE(2401), + [sym_set] = STATE(2401), + [sym_tuple] = STATE(2401), + [sym_dictionary] = STATE(2401), + [sym_pair] = STATE(5359), + [sym_list_comprehension] = STATE(2401), + [sym_dictionary_comprehension] = STATE(2401), + [sym_set_comprehension] = STATE(2401), + [sym_generator_expression] = STATE(2401), + [sym_parenthesized_expression] = STATE(2401), + [sym_conditional_expression] = STATE(3088), + [sym_concatenated_string] = STATE(2401), + [sym_string] = STATE(2161), + [sym_none] = STATE(2401), + [sym_await] = STATE(2401), + [sym_new_expression] = STATE(3088), + [sym_sizeof_expression] = STATE(2401), + [sym_cast_expression] = STATE(2401), [sym_identifier] = ACTIONS(1211), [anon_sym_LPAREN] = ACTIONS(1213), [anon_sym_STAR] = ACTIONS(1215), [anon_sym_print] = ACTIONS(1217), [anon_sym_match] = ACTIONS(1217), [anon_sym_async] = ACTIONS(1217), - [anon_sym_STAR_STAR] = ACTIONS(2545), + [anon_sym_STAR_STAR] = ACTIONS(2531), [anon_sym_exec] = ACTIONS(1217), [anon_sym_LBRACK] = ACTIONS(1219), [anon_sym_DASH] = ACTIONS(1227), [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_RBRACE] = ACTIONS(3079), + [anon_sym_RBRACE] = ACTIONS(3099), [anon_sym_PLUS] = ACTIONS(1227), [anon_sym_not] = ACTIONS(1225), [anon_sym_AMP] = ACTIONS(1227), [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(2735), + [anon_sym_LT] = ACTIONS(2705), [anon_sym_lambda] = ACTIONS(1231), [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), [anon_sym_None] = ACTIONS(1235), @@ -113095,7 +114131,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1245), [sym_string_start] = ACTIONS(1247), }, - [958] = { + [971] = { + [sym_named_expression] = STATE(2631), + [sym__named_expression_lhs] = STATE(5572), + [sym_expression_list] = STATE(5217), + [sym_list_splat_pattern] = STATE(2589), + [sym_as_pattern] = STATE(2631), + [sym_expression] = STATE(4105), + [sym_primary_expression] = STATE(2107), + [sym_not_operator] = STATE(2631), + [sym_boolean_operator] = STATE(2631), + [sym_binary_operator] = STATE(2630), + [sym_unary_operator] = STATE(2630), + [sym_comparison_operator] = STATE(2631), + [sym_lambda] = STATE(2631), + [sym_attribute] = STATE(2630), + [sym_subscript] = STATE(2630), + [sym_ellipsis] = STATE(2630), + [sym_call] = STATE(2630), + [sym_list] = STATE(2630), + [sym_set] = STATE(2630), + [sym_tuple] = STATE(2630), + [sym_dictionary] = STATE(2630), + [sym_list_comprehension] = STATE(2630), + [sym_dictionary_comprehension] = STATE(2630), + [sym_set_comprehension] = STATE(2630), + [sym_generator_expression] = STATE(2630), + [sym_parenthesized_expression] = STATE(2630), + [sym_conditional_expression] = STATE(2631), + [sym_concatenated_string] = STATE(2630), + [sym_string] = STATE(2200), + [sym_none] = STATE(2630), + [sym_await] = STATE(2630), + [sym_new_expression] = STATE(2631), + [sym_sizeof_expression] = STATE(2630), + [sym_cast_expression] = STATE(2630), + [sym_identifier] = ACTIONS(2935), + [anon_sym_from] = ACTIONS(3101), + [anon_sym_LPAREN] = ACTIONS(2461), + [anon_sym_COMMA] = ACTIONS(2929), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_print] = ACTIONS(2641), + [anon_sym_match] = ACTIONS(2641), + [anon_sym_async] = ACTIONS(2641), + [anon_sym_exec] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2467), + [anon_sym_RBRACK] = ACTIONS(2929), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_not] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2469), + [anon_sym_TILDE] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_lambda] = ACTIONS(2651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2475), + [anon_sym_None] = ACTIONS(2477), + [sym_integer] = ACTIONS(2459), + [sym_float] = ACTIONS(2479), + [anon_sym_await] = ACTIONS(2653), + [anon_sym_api] = ACTIONS(2641), + [sym_true] = ACTIONS(2459), + [sym_false] = ACTIONS(2459), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2655), + [anon_sym_sizeof] = ACTIONS(2483), + [sym_string_start] = ACTIONS(2485), + }, + [972] = { [ts_builtin_sym_end] = ACTIONS(1492), [sym_identifier] = ACTIONS(1490), [anon_sym_SEMI] = ACTIONS(1492), @@ -113163,127 +114267,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1490), [sym_string_start] = ACTIONS(1492), }, - [959] = { - [ts_builtin_sym_end] = ACTIONS(1480), - [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_elif] = ACTIONS(1478), - [anon_sym_else] = 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_finally] = 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), - [anon_sym_DOT_DOT_DOT] = 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_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_new] = ACTIONS(1478), - [anon_sym_ctypedef] = 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_string_start] = ACTIONS(1480), - }, - [960] = { - [sym_named_expression] = STATE(3081), - [sym__named_expression_lhs] = STATE(5469), - [sym_dictionary_splat] = STATE(5160), - [sym_list_splat_pattern] = STATE(2432), - [sym_as_pattern] = STATE(3081), - [sym_expression] = STATE(4296), - [sym_primary_expression] = STATE(2067), - [sym_not_operator] = STATE(3081), - [sym_boolean_operator] = STATE(3081), - [sym_binary_operator] = STATE(2549), - [sym_unary_operator] = STATE(2549), - [sym_comparison_operator] = STATE(3081), - [sym_lambda] = STATE(3081), - [sym_attribute] = STATE(2549), - [sym_subscript] = STATE(2549), - [sym_ellipsis] = STATE(2549), - [sym_call] = STATE(2549), - [sym_list] = STATE(2549), - [sym_set] = STATE(2549), - [sym_tuple] = STATE(2549), - [sym_dictionary] = STATE(2549), - [sym_pair] = STATE(5160), - [sym_list_comprehension] = STATE(2549), - [sym_dictionary_comprehension] = STATE(2549), - [sym_set_comprehension] = STATE(2549), - [sym_generator_expression] = STATE(2549), - [sym_parenthesized_expression] = STATE(2549), - [sym_conditional_expression] = STATE(3081), - [sym_concatenated_string] = STATE(2549), - [sym_string] = STATE(2140), - [sym_none] = STATE(2549), - [sym_await] = STATE(2549), - [sym_new_expression] = STATE(3081), - [sym_sizeof_expression] = STATE(2549), - [sym_cast_expression] = STATE(2549), + [973] = { + [sym_named_expression] = STATE(3088), + [sym__named_expression_lhs] = STATE(5579), + [sym_dictionary_splat] = STATE(5359), + [sym_list_splat_pattern] = STATE(2536), + [sym_as_pattern] = STATE(3088), + [sym_expression] = STATE(4290), + [sym_primary_expression] = STATE(2072), + [sym_not_operator] = STATE(3088), + [sym_boolean_operator] = STATE(3088), + [sym_binary_operator] = STATE(2401), + [sym_unary_operator] = STATE(2401), + [sym_comparison_operator] = STATE(3088), + [sym_lambda] = STATE(3088), + [sym_attribute] = STATE(2401), + [sym_subscript] = STATE(2401), + [sym_ellipsis] = STATE(2401), + [sym_call] = STATE(2401), + [sym_list] = STATE(2401), + [sym_set] = STATE(2401), + [sym_tuple] = STATE(2401), + [sym_dictionary] = STATE(2401), + [sym_pair] = STATE(5359), + [sym_list_comprehension] = STATE(2401), + [sym_dictionary_comprehension] = STATE(2401), + [sym_set_comprehension] = STATE(2401), + [sym_generator_expression] = STATE(2401), + [sym_parenthesized_expression] = STATE(2401), + [sym_conditional_expression] = STATE(3088), + [sym_concatenated_string] = STATE(2401), + [sym_string] = STATE(2161), + [sym_none] = STATE(2401), + [sym_await] = STATE(2401), + [sym_new_expression] = STATE(3088), + [sym_sizeof_expression] = STATE(2401), + [sym_cast_expression] = STATE(2401), [sym_identifier] = ACTIONS(1211), [anon_sym_LPAREN] = ACTIONS(1213), [anon_sym_STAR] = ACTIONS(1215), [anon_sym_print] = ACTIONS(1217), [anon_sym_match] = ACTIONS(1217), [anon_sym_async] = ACTIONS(1217), - [anon_sym_STAR_STAR] = ACTIONS(2545), + [anon_sym_STAR_STAR] = ACTIONS(2531), [anon_sym_exec] = ACTIONS(1217), [anon_sym_LBRACK] = ACTIONS(1219), [anon_sym_DASH] = ACTIONS(1227), [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_RBRACE] = ACTIONS(3081), + [anon_sym_RBRACE] = ACTIONS(3105), [anon_sym_PLUS] = ACTIONS(1227), [anon_sym_not] = ACTIONS(1225), [anon_sym_AMP] = ACTIONS(1227), [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(2735), + [anon_sym_LT] = ACTIONS(2705), [anon_sym_lambda] = ACTIONS(1231), [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), [anon_sym_None] = ACTIONS(1235), @@ -113299,59 +114335,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1245), [sym_string_start] = ACTIONS(1247), }, - [961] = { - [sym_named_expression] = STATE(3081), - [sym__named_expression_lhs] = STATE(5469), - [sym_dictionary_splat] = STATE(5160), - [sym_list_splat_pattern] = STATE(2432), - [sym_as_pattern] = STATE(3081), - [sym_expression] = STATE(4296), - [sym_primary_expression] = STATE(2067), - [sym_not_operator] = STATE(3081), - [sym_boolean_operator] = STATE(3081), - [sym_binary_operator] = STATE(2549), - [sym_unary_operator] = STATE(2549), - [sym_comparison_operator] = STATE(3081), - [sym_lambda] = STATE(3081), - [sym_attribute] = STATE(2549), - [sym_subscript] = STATE(2549), - [sym_ellipsis] = STATE(2549), - [sym_call] = STATE(2549), - [sym_list] = STATE(2549), - [sym_set] = STATE(2549), - [sym_tuple] = STATE(2549), - [sym_dictionary] = STATE(2549), - [sym_pair] = STATE(5160), - [sym_list_comprehension] = STATE(2549), - [sym_dictionary_comprehension] = STATE(2549), - [sym_set_comprehension] = STATE(2549), - [sym_generator_expression] = STATE(2549), - [sym_parenthesized_expression] = STATE(2549), - [sym_conditional_expression] = STATE(3081), - [sym_concatenated_string] = STATE(2549), - [sym_string] = STATE(2140), - [sym_none] = STATE(2549), - [sym_await] = STATE(2549), - [sym_new_expression] = STATE(3081), - [sym_sizeof_expression] = STATE(2549), - [sym_cast_expression] = STATE(2549), + [974] = { + [ts_builtin_sym_end] = ACTIONS(1496), + [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_elif] = ACTIONS(1494), + [anon_sym_else] = 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_finally] = 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), + [anon_sym_DOT_DOT_DOT] = 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_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_new] = ACTIONS(1494), + [anon_sym_ctypedef] = 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_string_start] = ACTIONS(1496), + }, + [975] = { + [sym_named_expression] = STATE(3088), + [sym__named_expression_lhs] = STATE(5579), + [sym_dictionary_splat] = STATE(5359), + [sym_list_splat_pattern] = STATE(2536), + [sym_as_pattern] = STATE(3088), + [sym_expression] = STATE(4290), + [sym_primary_expression] = STATE(2072), + [sym_not_operator] = STATE(3088), + [sym_boolean_operator] = STATE(3088), + [sym_binary_operator] = STATE(2401), + [sym_unary_operator] = STATE(2401), + [sym_comparison_operator] = STATE(3088), + [sym_lambda] = STATE(3088), + [sym_attribute] = STATE(2401), + [sym_subscript] = STATE(2401), + [sym_ellipsis] = STATE(2401), + [sym_call] = STATE(2401), + [sym_list] = STATE(2401), + [sym_set] = STATE(2401), + [sym_tuple] = STATE(2401), + [sym_dictionary] = STATE(2401), + [sym_pair] = STATE(5359), + [sym_list_comprehension] = STATE(2401), + [sym_dictionary_comprehension] = STATE(2401), + [sym_set_comprehension] = STATE(2401), + [sym_generator_expression] = STATE(2401), + [sym_parenthesized_expression] = STATE(2401), + [sym_conditional_expression] = STATE(3088), + [sym_concatenated_string] = STATE(2401), + [sym_string] = STATE(2161), + [sym_none] = STATE(2401), + [sym_await] = STATE(2401), + [sym_new_expression] = STATE(3088), + [sym_sizeof_expression] = STATE(2401), + [sym_cast_expression] = STATE(2401), [sym_identifier] = ACTIONS(1211), [anon_sym_LPAREN] = ACTIONS(1213), [anon_sym_STAR] = ACTIONS(1215), [anon_sym_print] = ACTIONS(1217), [anon_sym_match] = ACTIONS(1217), [anon_sym_async] = ACTIONS(1217), - [anon_sym_STAR_STAR] = ACTIONS(2545), + [anon_sym_STAR_STAR] = ACTIONS(2531), [anon_sym_exec] = ACTIONS(1217), [anon_sym_LBRACK] = ACTIONS(1219), [anon_sym_DASH] = ACTIONS(1227), [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_RBRACE] = ACTIONS(3083), + [anon_sym_RBRACE] = ACTIONS(3107), [anon_sym_PLUS] = ACTIONS(1227), [anon_sym_not] = ACTIONS(1225), [anon_sym_AMP] = ACTIONS(1227), [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(2735), + [anon_sym_LT] = ACTIONS(2705), [anon_sym_lambda] = ACTIONS(1231), [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), [anon_sym_None] = ACTIONS(1235), @@ -113367,127 +114471,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1245), [sym_string_start] = ACTIONS(1247), }, - [962] = { - [sym_elif_clause] = STATE(1081), - [aux_sym_if_statement_repeat1] = STATE(962), - [ts_builtin_sym_end] = ACTIONS(3085), - [sym_identifier] = ACTIONS(3087), - [anon_sym_import] = ACTIONS(3087), - [anon_sym_cimport] = ACTIONS(3087), - [anon_sym_from] = ACTIONS(3087), - [anon_sym_LPAREN] = ACTIONS(3085), - [anon_sym_STAR] = ACTIONS(3085), - [anon_sym_print] = ACTIONS(3087), - [anon_sym_assert] = ACTIONS(3087), - [anon_sym_return] = ACTIONS(3087), - [anon_sym_del] = ACTIONS(3087), - [anon_sym_raise] = ACTIONS(3087), - [anon_sym_pass] = ACTIONS(3087), - [anon_sym_break] = ACTIONS(3087), - [anon_sym_continue] = ACTIONS(3087), - [anon_sym_if] = ACTIONS(3087), - [anon_sym_elif] = ACTIONS(3089), - [anon_sym_else] = ACTIONS(3087), - [anon_sym_match] = ACTIONS(3087), - [anon_sym_async] = ACTIONS(3087), - [anon_sym_for] = ACTIONS(3087), - [anon_sym_while] = ACTIONS(3087), - [anon_sym_try] = ACTIONS(3087), - [anon_sym_with] = ACTIONS(3087), - [anon_sym_def] = ACTIONS(3087), - [anon_sym_global] = ACTIONS(3087), - [anon_sym_nonlocal] = ACTIONS(3087), - [anon_sym_exec] = ACTIONS(3087), - [anon_sym_type] = ACTIONS(3087), - [anon_sym_class] = ACTIONS(3087), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_AT] = ACTIONS(3085), - [anon_sym_DASH] = ACTIONS(3085), - [anon_sym_LBRACE] = ACTIONS(3085), - [anon_sym_PLUS] = ACTIONS(3085), - [anon_sym_not] = ACTIONS(3087), - [anon_sym_AMP] = ACTIONS(3085), - [anon_sym_TILDE] = ACTIONS(3085), - [anon_sym_LT] = ACTIONS(3085), - [anon_sym_lambda] = ACTIONS(3087), - [anon_sym_yield] = ACTIONS(3087), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3085), - [anon_sym_None] = ACTIONS(3087), - [sym_integer] = ACTIONS(3087), - [sym_float] = ACTIONS(3085), - [anon_sym_await] = ACTIONS(3087), - [anon_sym_api] = ACTIONS(3087), - [sym_true] = ACTIONS(3087), - [sym_false] = ACTIONS(3087), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(3087), - [anon_sym_include] = ACTIONS(3087), - [anon_sym_DEF] = ACTIONS(3087), - [anon_sym_cdef] = ACTIONS(3087), - [anon_sym_cpdef] = ACTIONS(3087), - [anon_sym_new] = ACTIONS(3087), - [anon_sym_ctypedef] = ACTIONS(3087), - [anon_sym_public] = ACTIONS(3087), - [anon_sym_packed] = ACTIONS(3087), - [anon_sym_inline] = ACTIONS(3087), - [anon_sym_readonly] = ACTIONS(3087), - [anon_sym_sizeof] = ACTIONS(3087), - [sym_string_start] = ACTIONS(3085), - }, - [963] = { - [sym_named_expression] = STATE(3081), - [sym__named_expression_lhs] = STATE(5469), - [sym_dictionary_splat] = STATE(5160), - [sym_list_splat_pattern] = STATE(2432), - [sym_as_pattern] = STATE(3081), - [sym_expression] = STATE(4296), - [sym_primary_expression] = STATE(2067), - [sym_not_operator] = STATE(3081), - [sym_boolean_operator] = STATE(3081), - [sym_binary_operator] = STATE(2549), - [sym_unary_operator] = STATE(2549), - [sym_comparison_operator] = STATE(3081), - [sym_lambda] = STATE(3081), - [sym_attribute] = STATE(2549), - [sym_subscript] = STATE(2549), - [sym_ellipsis] = STATE(2549), - [sym_call] = STATE(2549), - [sym_list] = STATE(2549), - [sym_set] = STATE(2549), - [sym_tuple] = STATE(2549), - [sym_dictionary] = STATE(2549), - [sym_pair] = STATE(5160), - [sym_list_comprehension] = STATE(2549), - [sym_dictionary_comprehension] = STATE(2549), - [sym_set_comprehension] = STATE(2549), - [sym_generator_expression] = STATE(2549), - [sym_parenthesized_expression] = STATE(2549), - [sym_conditional_expression] = STATE(3081), - [sym_concatenated_string] = STATE(2549), - [sym_string] = STATE(2140), - [sym_none] = STATE(2549), - [sym_await] = STATE(2549), - [sym_new_expression] = STATE(3081), - [sym_sizeof_expression] = STATE(2549), - [sym_cast_expression] = STATE(2549), + [976] = { + [sym_named_expression] = STATE(3088), + [sym__named_expression_lhs] = STATE(5579), + [sym_dictionary_splat] = STATE(5359), + [sym_list_splat_pattern] = STATE(2536), + [sym_as_pattern] = STATE(3088), + [sym_expression] = STATE(4290), + [sym_primary_expression] = STATE(2072), + [sym_not_operator] = STATE(3088), + [sym_boolean_operator] = STATE(3088), + [sym_binary_operator] = STATE(2401), + [sym_unary_operator] = STATE(2401), + [sym_comparison_operator] = STATE(3088), + [sym_lambda] = STATE(3088), + [sym_attribute] = STATE(2401), + [sym_subscript] = STATE(2401), + [sym_ellipsis] = STATE(2401), + [sym_call] = STATE(2401), + [sym_list] = STATE(2401), + [sym_set] = STATE(2401), + [sym_tuple] = STATE(2401), + [sym_dictionary] = STATE(2401), + [sym_pair] = STATE(5359), + [sym_list_comprehension] = STATE(2401), + [sym_dictionary_comprehension] = STATE(2401), + [sym_set_comprehension] = STATE(2401), + [sym_generator_expression] = STATE(2401), + [sym_parenthesized_expression] = STATE(2401), + [sym_conditional_expression] = STATE(3088), + [sym_concatenated_string] = STATE(2401), + [sym_string] = STATE(2161), + [sym_none] = STATE(2401), + [sym_await] = STATE(2401), + [sym_new_expression] = STATE(3088), + [sym_sizeof_expression] = STATE(2401), + [sym_cast_expression] = STATE(2401), [sym_identifier] = ACTIONS(1211), [anon_sym_LPAREN] = ACTIONS(1213), [anon_sym_STAR] = ACTIONS(1215), [anon_sym_print] = ACTIONS(1217), [anon_sym_match] = ACTIONS(1217), [anon_sym_async] = ACTIONS(1217), - [anon_sym_STAR_STAR] = ACTIONS(2545), + [anon_sym_STAR_STAR] = ACTIONS(2531), [anon_sym_exec] = ACTIONS(1217), [anon_sym_LBRACK] = ACTIONS(1219), [anon_sym_DASH] = ACTIONS(1227), [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_RBRACE] = ACTIONS(3092), + [anon_sym_RBRACE] = ACTIONS(3109), [anon_sym_PLUS] = ACTIONS(1227), [anon_sym_not] = ACTIONS(1225), [anon_sym_AMP] = ACTIONS(1227), [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(2735), + [anon_sym_LT] = ACTIONS(2705), [anon_sym_lambda] = ACTIONS(1231), [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), [anon_sym_None] = ACTIONS(1235), @@ -113503,467 +114539,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1245), [sym_string_start] = ACTIONS(1247), }, - [964] = { - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_expression_list] = STATE(5061), - [sym_list_splat_pattern] = STATE(2088), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3865), - [sym_primary_expression] = STATE(2024), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_attribute] = STATE(2123), - [sym_subscript] = STATE(2123), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [sym_identifier] = ACTIONS(577), - [anon_sym_SEMI] = ACTIONS(3094), - [anon_sym_from] = ACTIONS(3096), - [anon_sym_LPAREN] = ACTIONS(1281), - [anon_sym_STAR] = ACTIONS(3071), - [anon_sym_print] = ACTIONS(592), - [anon_sym_match] = ACTIONS(592), - [anon_sym_async] = ACTIONS(592), - [anon_sym_exec] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(1287), - [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(614), - [anon_sym_api] = ACTIONS(592), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(3094), - [sym_string_start] = ACTIONS(107), - }, - [965] = { - [sym_elif_clause] = STATE(1091), - [aux_sym_if_statement_repeat1] = STATE(965), - [sym_identifier] = ACTIONS(3087), - [anon_sym_import] = ACTIONS(3087), - [anon_sym_cimport] = ACTIONS(3087), - [anon_sym_from] = ACTIONS(3087), - [anon_sym_LPAREN] = ACTIONS(3085), - [anon_sym_STAR] = ACTIONS(3085), - [anon_sym_print] = ACTIONS(3087), - [anon_sym_assert] = ACTIONS(3087), - [anon_sym_return] = ACTIONS(3087), - [anon_sym_del] = ACTIONS(3087), - [anon_sym_raise] = ACTIONS(3087), - [anon_sym_pass] = ACTIONS(3087), - [anon_sym_break] = ACTIONS(3087), - [anon_sym_continue] = ACTIONS(3087), - [anon_sym_if] = ACTIONS(3087), - [anon_sym_elif] = ACTIONS(3098), - [anon_sym_else] = ACTIONS(3087), - [anon_sym_match] = ACTIONS(3087), - [anon_sym_async] = ACTIONS(3087), - [anon_sym_for] = ACTIONS(3087), - [anon_sym_while] = ACTIONS(3087), - [anon_sym_try] = ACTIONS(3087), - [anon_sym_with] = ACTIONS(3087), - [anon_sym_def] = ACTIONS(3087), - [anon_sym_global] = ACTIONS(3087), - [anon_sym_nonlocal] = ACTIONS(3087), - [anon_sym_exec] = ACTIONS(3087), - [anon_sym_type] = ACTIONS(3087), - [anon_sym_class] = ACTIONS(3087), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_AT] = ACTIONS(3085), - [anon_sym_DASH] = ACTIONS(3085), - [anon_sym_LBRACE] = ACTIONS(3085), - [anon_sym_PLUS] = ACTIONS(3085), - [anon_sym_not] = ACTIONS(3087), - [anon_sym_AMP] = ACTIONS(3085), - [anon_sym_TILDE] = ACTIONS(3085), - [anon_sym_LT] = ACTIONS(3085), - [anon_sym_lambda] = ACTIONS(3087), - [anon_sym_yield] = ACTIONS(3087), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3085), - [anon_sym_None] = ACTIONS(3087), - [sym_integer] = ACTIONS(3087), - [sym_float] = ACTIONS(3085), - [anon_sym_await] = ACTIONS(3087), - [anon_sym_api] = ACTIONS(3087), - [sym_true] = ACTIONS(3087), - [sym_false] = ACTIONS(3087), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(3087), - [anon_sym_include] = ACTIONS(3087), - [anon_sym_DEF] = ACTIONS(3087), - [anon_sym_cdef] = ACTIONS(3087), - [anon_sym_cpdef] = ACTIONS(3087), - [anon_sym_new] = ACTIONS(3087), - [anon_sym_ctypedef] = ACTIONS(3087), - [anon_sym_public] = ACTIONS(3087), - [anon_sym_packed] = ACTIONS(3087), - [anon_sym_inline] = ACTIONS(3087), - [anon_sym_readonly] = ACTIONS(3087), - [anon_sym_sizeof] = ACTIONS(3087), - [sym__dedent] = ACTIONS(3085), - [sym_string_start] = ACTIONS(3085), - }, - [966] = { - [sym_named_expression] = STATE(3846), - [sym__named_expression_lhs] = STATE(5657), - [sym_expression_list] = STATE(4328), - [sym_list_splat_pattern] = STATE(2357), - [sym_as_pattern] = STATE(3846), - [sym_expression] = STATE(4131), - [sym_primary_expression] = STATE(2046), - [sym_not_operator] = STATE(3846), - [sym_boolean_operator] = STATE(3846), - [sym_binary_operator] = STATE(2255), - [sym_unary_operator] = STATE(2255), - [sym_comparison_operator] = STATE(3846), - [sym_lambda] = STATE(3846), - [sym_attribute] = STATE(2255), - [sym_subscript] = STATE(2255), - [sym_ellipsis] = STATE(2255), - [sym_call] = STATE(2255), - [sym_list] = STATE(2255), - [sym_set] = STATE(2255), - [sym_tuple] = STATE(2255), - [sym_dictionary] = STATE(2255), - [sym_list_comprehension] = STATE(2255), - [sym_dictionary_comprehension] = STATE(2255), - [sym_set_comprehension] = STATE(2255), - [sym_generator_expression] = STATE(2255), - [sym_parenthesized_expression] = STATE(2255), - [sym_conditional_expression] = STATE(3846), - [sym_concatenated_string] = STATE(2255), - [sym_string] = STATE(2073), - [sym_none] = STATE(2255), - [sym_await] = STATE(2255), - [sym_new_expression] = STATE(3846), - [sym_sizeof_expression] = STATE(2255), - [sym_cast_expression] = STATE(2255), - [sym_identifier] = ACTIONS(2793), - [anon_sym_from] = ACTIONS(3101), - [anon_sym_LPAREN] = ACTIONS(1907), - [anon_sym_COMMA] = ACTIONS(2799), - [anon_sym_STAR] = ACTIONS(2653), - [anon_sym_print] = ACTIONS(2797), - [anon_sym_match] = ACTIONS(2797), - [anon_sym_async] = ACTIONS(2797), - [anon_sym_exec] = ACTIONS(2797), - [anon_sym_LBRACK] = ACTIONS(1913), - [anon_sym_DASH] = ACTIONS(1915), - [anon_sym_LBRACE] = ACTIONS(1917), - [anon_sym_RBRACE] = ACTIONS(2799), - [anon_sym_PLUS] = ACTIONS(1915), - [anon_sym_not] = ACTIONS(2931), - [anon_sym_AMP] = ACTIONS(1915), - [anon_sym_TILDE] = ACTIONS(1915), - [anon_sym_LT] = ACTIONS(2661), - [anon_sym_lambda] = ACTIONS(2933), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1921), - [anon_sym_None] = ACTIONS(1923), - [sym_integer] = ACTIONS(1905), - [sym_float] = ACTIONS(1925), - [anon_sym_await] = ACTIONS(2801), - [anon_sym_api] = ACTIONS(2797), - [sym_true] = ACTIONS(1905), - [sym_false] = ACTIONS(1905), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2935), - [anon_sym_sizeof] = ACTIONS(1929), - [sym_string_start] = ACTIONS(1931), - }, - [967] = { - [sym_named_expression] = STATE(2716), - [sym__named_expression_lhs] = STATE(5468), - [sym_list_splat] = STATE(5153), - [sym_parenthesized_list_splat] = STATE(5153), - [sym_list_splat_pattern] = STATE(2671), - [sym_as_pattern] = STATE(2716), - [sym_expression] = STATE(4178), - [sym_primary_expression] = STATE(2151), - [sym_not_operator] = STATE(2716), - [sym_boolean_operator] = STATE(2716), - [sym_binary_operator] = STATE(2715), - [sym_unary_operator] = STATE(2715), - [sym_comparison_operator] = STATE(2716), - [sym_lambda] = STATE(2716), - [sym_yield] = STATE(5153), - [sym_attribute] = STATE(2715), - [sym_subscript] = STATE(2715), - [sym_ellipsis] = STATE(2715), - [sym_call] = STATE(2715), - [sym_list] = STATE(2715), - [sym_set] = STATE(2715), - [sym_tuple] = STATE(2715), - [sym_dictionary] = STATE(2715), - [sym_list_comprehension] = STATE(2715), - [sym_dictionary_comprehension] = STATE(2715), - [sym_set_comprehension] = STATE(2715), - [sym_generator_expression] = STATE(2715), - [sym_parenthesized_expression] = STATE(2715), - [sym_conditional_expression] = STATE(2716), - [sym_concatenated_string] = STATE(2715), - [sym_string] = STATE(2302), - [sym_none] = STATE(2715), - [sym_await] = STATE(2715), - [sym_new_expression] = STATE(2716), - [sym_sizeof_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), - [sym_identifier] = ACTIONS(2955), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_STAR] = ACTIONS(2957), - [anon_sym_print] = ACTIONS(2959), - [anon_sym_match] = ACTIONS(2959), - [anon_sym_async] = ACTIONS(2959), - [anon_sym_exec] = ACTIONS(2959), - [anon_sym_LBRACK] = ACTIONS(1382), - [anon_sym_DASH] = ACTIONS(1384), - [anon_sym_LBRACE] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1384), - [anon_sym_not] = ACTIONS(1388), - [anon_sym_AMP] = ACTIONS(1384), - [anon_sym_TILDE] = ACTIONS(1384), - [anon_sym_LT] = ACTIONS(1390), - [anon_sym_lambda] = ACTIONS(1392), - [anon_sym_yield] = ACTIONS(1336), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1394), - [anon_sym_None] = ACTIONS(1396), - [sym_integer] = ACTIONS(1398), - [sym_float] = ACTIONS(1400), - [anon_sym_await] = ACTIONS(2961), - [anon_sym_api] = ACTIONS(2959), - [sym_true] = ACTIONS(1398), - [sym_false] = ACTIONS(1398), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1404), - [anon_sym_sizeof] = ACTIONS(1406), - [sym_string_start] = ACTIONS(1408), + [977] = { + [sym_named_expression] = STATE(2631), + [sym__named_expression_lhs] = STATE(5572), + [sym_list_splat] = STATE(5323), + [sym_parenthesized_list_splat] = STATE(5323), + [sym_list_splat_pattern] = STATE(2589), + [sym_as_pattern] = STATE(2631), + [sym_expression] = STATE(4273), + [sym_primary_expression] = STATE(2107), + [sym_not_operator] = STATE(2631), + [sym_boolean_operator] = STATE(2631), + [sym_binary_operator] = STATE(2630), + [sym_unary_operator] = STATE(2630), + [sym_comparison_operator] = STATE(2631), + [sym_lambda] = STATE(2631), + [sym_yield] = STATE(5323), + [sym_attribute] = STATE(2630), + [sym_subscript] = STATE(2630), + [sym_ellipsis] = STATE(2630), + [sym_call] = STATE(2630), + [sym_list] = STATE(2630), + [sym_set] = STATE(2630), + [sym_tuple] = STATE(2630), + [sym_dictionary] = STATE(2630), + [sym_list_comprehension] = STATE(2630), + [sym_dictionary_comprehension] = STATE(2630), + [sym_set_comprehension] = STATE(2630), + [sym_generator_expression] = STATE(2630), + [sym_parenthesized_expression] = STATE(2630), + [sym_conditional_expression] = STATE(2631), + [sym_concatenated_string] = STATE(2630), + [sym_string] = STATE(2200), + [sym_none] = STATE(2630), + [sym_await] = STATE(2630), + [sym_new_expression] = STATE(2631), + [sym_sizeof_expression] = STATE(2630), + [sym_cast_expression] = STATE(2630), + [sym_identifier] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2937), + [anon_sym_STAR] = ACTIONS(2939), + [anon_sym_print] = ACTIONS(2641), + [anon_sym_match] = ACTIONS(2641), + [anon_sym_async] = ACTIONS(2641), + [anon_sym_exec] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2467), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_not] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2469), + [anon_sym_TILDE] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_lambda] = ACTIONS(2651), + [anon_sym_yield] = ACTIONS(2567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2475), + [anon_sym_None] = ACTIONS(2477), + [sym_integer] = ACTIONS(2459), + [sym_float] = ACTIONS(2479), + [anon_sym_await] = ACTIONS(2653), + [anon_sym_api] = ACTIONS(2641), + [sym_true] = ACTIONS(2459), + [sym_false] = ACTIONS(2459), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2655), + [anon_sym_sizeof] = ACTIONS(2483), + [sym_string_start] = ACTIONS(2485), }, - [968] = { - [ts_builtin_sym_end] = ACTIONS(1488), - [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_elif] = ACTIONS(1486), - [anon_sym_else] = 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_finally] = 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), - [anon_sym_DOT_DOT_DOT] = 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), + [978] = { + [ts_builtin_sym_end] = ACTIONS(1480), + [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_elif] = ACTIONS(1478), + [anon_sym_else] = 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_finally] = 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), + [anon_sym_DOT_DOT_DOT] = 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_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_new] = ACTIONS(1486), - [anon_sym_ctypedef] = 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_string_start] = ACTIONS(1488), - }, - [969] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5609), - [sym_expression_list] = STATE(5355), - [sym_list_splat_pattern] = STATE(2591), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(4100), - [sym_primary_expression] = STATE(2077), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2631), - [sym_unary_operator] = STATE(2631), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2631), - [sym_subscript] = STATE(2631), - [sym_ellipsis] = STATE(2631), - [sym_call] = STATE(2631), - [sym_list] = STATE(2631), - [sym_set] = STATE(2631), - [sym_tuple] = STATE(2631), - [sym_dictionary] = STATE(2631), - [sym_list_comprehension] = STATE(2631), - [sym_dictionary_comprehension] = STATE(2631), - [sym_set_comprehension] = STATE(2631), - [sym_generator_expression] = STATE(2631), - [sym_parenthesized_expression] = STATE(2631), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2631), - [sym_string] = STATE(2218), - [sym_none] = STATE(2631), - [sym_await] = STATE(2631), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2631), - [sym_cast_expression] = STATE(2631), - [sym_identifier] = ACTIONS(2963), - [anon_sym_from] = ACTIONS(3103), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_COMMA] = ACTIONS(2799), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_print] = ACTIONS(2631), - [anon_sym_match] = ACTIONS(2631), - [anon_sym_async] = ACTIONS(2631), - [anon_sym_exec] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_RBRACK] = ACTIONS(2799), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2639), - [anon_sym_lambda] = ACTIONS(2641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2643), - [anon_sym_api] = ACTIONS(2631), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2645), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), + [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_new] = ACTIONS(1478), + [anon_sym_ctypedef] = 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_string_start] = ACTIONS(1480), }, - [970] = { - [sym_named_expression] = STATE(3081), - [sym__named_expression_lhs] = STATE(5469), - [sym_dictionary_splat] = STATE(5160), - [sym_list_splat_pattern] = STATE(2432), - [sym_as_pattern] = STATE(3081), - [sym_expression] = STATE(4296), - [sym_primary_expression] = STATE(2067), - [sym_not_operator] = STATE(3081), - [sym_boolean_operator] = STATE(3081), - [sym_binary_operator] = STATE(2549), - [sym_unary_operator] = STATE(2549), - [sym_comparison_operator] = STATE(3081), - [sym_lambda] = STATE(3081), - [sym_attribute] = STATE(2549), - [sym_subscript] = STATE(2549), - [sym_ellipsis] = STATE(2549), - [sym_call] = STATE(2549), - [sym_list] = STATE(2549), - [sym_set] = STATE(2549), - [sym_tuple] = STATE(2549), - [sym_dictionary] = STATE(2549), - [sym_pair] = STATE(5160), - [sym_list_comprehension] = STATE(2549), - [sym_dictionary_comprehension] = STATE(2549), - [sym_set_comprehension] = STATE(2549), - [sym_generator_expression] = STATE(2549), - [sym_parenthesized_expression] = STATE(2549), - [sym_conditional_expression] = STATE(3081), - [sym_concatenated_string] = STATE(2549), - [sym_string] = STATE(2140), - [sym_none] = STATE(2549), - [sym_await] = STATE(2549), - [sym_new_expression] = STATE(3081), - [sym_sizeof_expression] = STATE(2549), - [sym_cast_expression] = STATE(2549), + [979] = { + [sym_named_expression] = STATE(3088), + [sym__named_expression_lhs] = STATE(5579), + [sym_dictionary_splat] = STATE(5359), + [sym_list_splat_pattern] = STATE(2536), + [sym_as_pattern] = STATE(3088), + [sym_expression] = STATE(4290), + [sym_primary_expression] = STATE(2072), + [sym_not_operator] = STATE(3088), + [sym_boolean_operator] = STATE(3088), + [sym_binary_operator] = STATE(2401), + [sym_unary_operator] = STATE(2401), + [sym_comparison_operator] = STATE(3088), + [sym_lambda] = STATE(3088), + [sym_attribute] = STATE(2401), + [sym_subscript] = STATE(2401), + [sym_ellipsis] = STATE(2401), + [sym_call] = STATE(2401), + [sym_list] = STATE(2401), + [sym_set] = STATE(2401), + [sym_tuple] = STATE(2401), + [sym_dictionary] = STATE(2401), + [sym_pair] = STATE(5359), + [sym_list_comprehension] = STATE(2401), + [sym_dictionary_comprehension] = STATE(2401), + [sym_set_comprehension] = STATE(2401), + [sym_generator_expression] = STATE(2401), + [sym_parenthesized_expression] = STATE(2401), + [sym_conditional_expression] = STATE(3088), + [sym_concatenated_string] = STATE(2401), + [sym_string] = STATE(2161), + [sym_none] = STATE(2401), + [sym_await] = STATE(2401), + [sym_new_expression] = STATE(3088), + [sym_sizeof_expression] = STATE(2401), + [sym_cast_expression] = STATE(2401), [sym_identifier] = ACTIONS(1211), [anon_sym_LPAREN] = ACTIONS(1213), [anon_sym_STAR] = ACTIONS(1215), [anon_sym_print] = ACTIONS(1217), [anon_sym_match] = ACTIONS(1217), [anon_sym_async] = ACTIONS(1217), - [anon_sym_STAR_STAR] = ACTIONS(2545), + [anon_sym_STAR_STAR] = ACTIONS(2531), [anon_sym_exec] = ACTIONS(1217), [anon_sym_LBRACK] = ACTIONS(1219), [anon_sym_DASH] = ACTIONS(1227), [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_RBRACE] = ACTIONS(3107), + [anon_sym_RBRACE] = ACTIONS(3111), [anon_sym_PLUS] = ACTIONS(1227), [anon_sym_not] = ACTIONS(1225), [anon_sym_AMP] = ACTIONS(1227), [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(2735), + [anon_sym_LT] = ACTIONS(2705), [anon_sym_lambda] = ACTIONS(1231), [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), [anon_sym_None] = ACTIONS(1235), @@ -113979,142 +114743,208 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1245), [sym_string_start] = ACTIONS(1247), }, - [971] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5609), - [sym_list_splat_pattern] = STATE(2591), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(4053), - [sym_primary_expression] = STATE(2077), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2631), - [sym_unary_operator] = STATE(2631), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2631), - [sym_subscript] = STATE(2631), - [sym_slice] = STATE(5361), - [sym_ellipsis] = STATE(2631), - [sym_call] = STATE(2631), - [sym_list] = STATE(2631), - [sym_set] = STATE(2631), - [sym_tuple] = STATE(2631), - [sym_dictionary] = STATE(2631), - [sym_list_comprehension] = STATE(2631), - [sym_dictionary_comprehension] = STATE(2631), - [sym_set_comprehension] = STATE(2631), - [sym_generator_expression] = STATE(2631), - [sym_parenthesized_expression] = STATE(2631), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2631), - [sym_string] = STATE(2218), - [sym_none] = STATE(2631), - [sym_await] = STATE(2631), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2631), - [sym_cast_expression] = STATE(2631), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_print] = ACTIONS(2631), - [anon_sym_COLON] = ACTIONS(3109), - [anon_sym_match] = ACTIONS(2631), - [anon_sym_async] = ACTIONS(2631), - [anon_sym_exec] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_RBRACK] = ACTIONS(3111), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2639), - [anon_sym_lambda] = ACTIONS(2641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2643), - [anon_sym_api] = ACTIONS(2631), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2645), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), + [980] = { + [sym_named_expression] = STATE(2631), + [sym__named_expression_lhs] = STATE(5572), + [sym_list_splat_pattern] = STATE(2589), + [sym_as_pattern] = STATE(2631), + [sym_expression] = STATE(4127), + [sym_primary_expression] = STATE(2107), + [sym_not_operator] = STATE(2631), + [sym_boolean_operator] = STATE(2631), + [sym_binary_operator] = STATE(2630), + [sym_unary_operator] = STATE(2630), + [sym_comparison_operator] = STATE(2631), + [sym_lambda] = STATE(2631), + [sym_attribute] = STATE(2630), + [sym_subscript] = STATE(2630), + [sym_slice] = STATE(5318), + [sym_ellipsis] = STATE(2630), + [sym_call] = STATE(2630), + [sym_list] = STATE(2630), + [sym_set] = STATE(2630), + [sym_tuple] = STATE(2630), + [sym_dictionary] = STATE(2630), + [sym_list_comprehension] = STATE(2630), + [sym_dictionary_comprehension] = STATE(2630), + [sym_set_comprehension] = STATE(2630), + [sym_generator_expression] = STATE(2630), + [sym_parenthesized_expression] = STATE(2630), + [sym_conditional_expression] = STATE(2631), + [sym_concatenated_string] = STATE(2630), + [sym_string] = STATE(2200), + [sym_none] = STATE(2630), + [sym_await] = STATE(2630), + [sym_new_expression] = STATE(2631), + [sym_sizeof_expression] = STATE(2630), + [sym_cast_expression] = STATE(2630), + [sym_identifier] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2461), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_print] = ACTIONS(2641), + [anon_sym_COLON] = ACTIONS(3113), + [anon_sym_match] = ACTIONS(2641), + [anon_sym_async] = ACTIONS(2641), + [anon_sym_exec] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2467), + [anon_sym_RBRACK] = ACTIONS(3115), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_not] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2469), + [anon_sym_TILDE] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_lambda] = ACTIONS(2651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2475), + [anon_sym_None] = ACTIONS(2477), + [sym_integer] = ACTIONS(2459), + [sym_float] = ACTIONS(2479), + [anon_sym_await] = ACTIONS(2653), + [anon_sym_api] = ACTIONS(2641), + [sym_true] = ACTIONS(2459), + [sym_false] = ACTIONS(2459), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2655), + [anon_sym_sizeof] = ACTIONS(2483), + [sym_string_start] = ACTIONS(2485), }, - [972] = { - [sym_identifier] = ACTIONS(3113), - [anon_sym_import] = ACTIONS(3113), - [anon_sym_cimport] = ACTIONS(3113), - [anon_sym_from] = ACTIONS(3113), - [anon_sym_LPAREN] = ACTIONS(3115), - [anon_sym_STAR] = ACTIONS(3115), - [anon_sym_print] = ACTIONS(3113), - [anon_sym_assert] = ACTIONS(3113), - [anon_sym_return] = ACTIONS(3113), - [anon_sym_del] = ACTIONS(3113), - [anon_sym_raise] = ACTIONS(3113), - [anon_sym_pass] = ACTIONS(3113), - [anon_sym_break] = ACTIONS(3113), - [anon_sym_continue] = ACTIONS(3113), - [anon_sym_if] = ACTIONS(3113), - [anon_sym_else] = ACTIONS(3113), - [anon_sym_match] = ACTIONS(3113), - [anon_sym_async] = ACTIONS(3113), - [anon_sym_for] = ACTIONS(3113), - [anon_sym_while] = ACTIONS(3113), - [anon_sym_try] = ACTIONS(3113), - [anon_sym_except_STAR] = ACTIONS(3115), - [anon_sym_finally] = ACTIONS(3113), - [anon_sym_with] = ACTIONS(3113), - [anon_sym_def] = ACTIONS(3113), - [anon_sym_global] = ACTIONS(3113), - [anon_sym_nonlocal] = ACTIONS(3113), - [anon_sym_exec] = ACTIONS(3113), - [anon_sym_type] = ACTIONS(3113), - [anon_sym_class] = ACTIONS(3113), - [anon_sym_LBRACK] = ACTIONS(3115), - [anon_sym_AT] = ACTIONS(3115), - [anon_sym_DASH] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3115), - [anon_sym_PLUS] = ACTIONS(3115), - [anon_sym_not] = ACTIONS(3113), - [anon_sym_AMP] = ACTIONS(3115), - [anon_sym_TILDE] = ACTIONS(3115), - [anon_sym_LT] = ACTIONS(3115), - [anon_sym_lambda] = ACTIONS(3113), - [anon_sym_yield] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3115), - [anon_sym_None] = ACTIONS(3113), - [sym_integer] = ACTIONS(3113), - [sym_float] = ACTIONS(3115), - [anon_sym_await] = ACTIONS(3113), - [anon_sym_api] = ACTIONS(3113), - [sym_true] = ACTIONS(3113), - [sym_false] = ACTIONS(3113), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(3113), - [anon_sym_include] = ACTIONS(3113), - [anon_sym_DEF] = ACTIONS(3113), - [anon_sym_cdef] = ACTIONS(3113), - [anon_sym_cpdef] = ACTIONS(3113), - [anon_sym_new] = ACTIONS(3113), - [anon_sym_ctypedef] = ACTIONS(3113), - [anon_sym_public] = ACTIONS(3113), - [anon_sym_packed] = ACTIONS(3113), - [anon_sym_inline] = ACTIONS(3113), - [anon_sym_readonly] = ACTIONS(3113), - [anon_sym_sizeof] = ACTIONS(3113), - [sym__dedent] = ACTIONS(3115), - [sym_string_start] = ACTIONS(3115), + [981] = { + [sym_named_expression] = STATE(2631), + [sym__named_expression_lhs] = STATE(5572), + [sym_list_splat_pattern] = STATE(2589), + [sym_as_pattern] = STATE(2631), + [sym_expression] = STATE(4127), + [sym_primary_expression] = STATE(2107), + [sym_not_operator] = STATE(2631), + [sym_boolean_operator] = STATE(2631), + [sym_binary_operator] = STATE(2630), + [sym_unary_operator] = STATE(2630), + [sym_comparison_operator] = STATE(2631), + [sym_lambda] = STATE(2631), + [sym_attribute] = STATE(2630), + [sym_subscript] = STATE(2630), + [sym_slice] = STATE(5318), + [sym_ellipsis] = STATE(2630), + [sym_call] = STATE(2630), + [sym_list] = STATE(2630), + [sym_set] = STATE(2630), + [sym_tuple] = STATE(2630), + [sym_dictionary] = STATE(2630), + [sym_list_comprehension] = STATE(2630), + [sym_dictionary_comprehension] = STATE(2630), + [sym_set_comprehension] = STATE(2630), + [sym_generator_expression] = STATE(2630), + [sym_parenthesized_expression] = STATE(2630), + [sym_conditional_expression] = STATE(2631), + [sym_concatenated_string] = STATE(2630), + [sym_string] = STATE(2200), + [sym_none] = STATE(2630), + [sym_await] = STATE(2630), + [sym_new_expression] = STATE(2631), + [sym_sizeof_expression] = STATE(2630), + [sym_cast_expression] = STATE(2630), + [sym_identifier] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2461), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_print] = ACTIONS(2641), + [anon_sym_COLON] = ACTIONS(3113), + [anon_sym_match] = ACTIONS(2641), + [anon_sym_async] = ACTIONS(2641), + [anon_sym_exec] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2467), + [anon_sym_RBRACK] = ACTIONS(3117), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_not] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2469), + [anon_sym_TILDE] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_lambda] = ACTIONS(2651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2475), + [anon_sym_None] = ACTIONS(2477), + [sym_integer] = ACTIONS(2459), + [sym_float] = ACTIONS(2479), + [anon_sym_await] = ACTIONS(2653), + [anon_sym_api] = ACTIONS(2641), + [sym_true] = ACTIONS(2459), + [sym_false] = ACTIONS(2459), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2655), + [anon_sym_sizeof] = ACTIONS(2483), + [sym_string_start] = ACTIONS(2485), }, - [973] = { - [ts_builtin_sym_end] = ACTIONS(1488), + [982] = { + [sym_named_expression] = STATE(2631), + [sym__named_expression_lhs] = STATE(5572), + [sym_list_splat_pattern] = STATE(2589), + [sym_as_pattern] = STATE(2631), + [sym_expression] = STATE(4127), + [sym_primary_expression] = STATE(2107), + [sym_not_operator] = STATE(2631), + [sym_boolean_operator] = STATE(2631), + [sym_binary_operator] = STATE(2630), + [sym_unary_operator] = STATE(2630), + [sym_comparison_operator] = STATE(2631), + [sym_lambda] = STATE(2631), + [sym_attribute] = STATE(2630), + [sym_subscript] = STATE(2630), + [sym_slice] = STATE(5318), + [sym_ellipsis] = STATE(2630), + [sym_call] = STATE(2630), + [sym_list] = STATE(2630), + [sym_set] = STATE(2630), + [sym_tuple] = STATE(2630), + [sym_dictionary] = STATE(2630), + [sym_list_comprehension] = STATE(2630), + [sym_dictionary_comprehension] = STATE(2630), + [sym_set_comprehension] = STATE(2630), + [sym_generator_expression] = STATE(2630), + [sym_parenthesized_expression] = STATE(2630), + [sym_conditional_expression] = STATE(2631), + [sym_concatenated_string] = STATE(2630), + [sym_string] = STATE(2200), + [sym_none] = STATE(2630), + [sym_await] = STATE(2630), + [sym_new_expression] = STATE(2631), + [sym_sizeof_expression] = STATE(2630), + [sym_cast_expression] = STATE(2630), + [sym_identifier] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2461), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_print] = ACTIONS(2641), + [anon_sym_COLON] = ACTIONS(3113), + [anon_sym_match] = ACTIONS(2641), + [anon_sym_async] = ACTIONS(2641), + [anon_sym_exec] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2467), + [anon_sym_RBRACK] = ACTIONS(3119), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_not] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2469), + [anon_sym_TILDE] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_lambda] = ACTIONS(2651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2475), + [anon_sym_None] = ACTIONS(2477), + [sym_integer] = ACTIONS(2459), + [sym_float] = ACTIONS(2479), + [anon_sym_await] = ACTIONS(2653), + [anon_sym_api] = ACTIONS(2641), + [sym_true] = ACTIONS(2459), + [sym_false] = ACTIONS(2459), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2655), + [anon_sym_sizeof] = ACTIONS(2483), + [sym_string_start] = ACTIONS(2485), + }, + [983] = { [sym_identifier] = ACTIONS(1486), [anon_sym_import] = ACTIONS(1486), [anon_sym_cimport] = ACTIONS(1486), @@ -114136,7 +114966,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(1486), [anon_sym_while] = ACTIONS(1486), [anon_sym_try] = ACTIONS(1486), - [anon_sym_except] = ACTIONS(1486), + [anon_sym_except_STAR] = ACTIONS(1488), [anon_sym_finally] = ACTIONS(1486), [anon_sym_with] = ACTIONS(1486), [anon_sym_def] = ACTIONS(1486), @@ -114178,211 +115008,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(1486), [anon_sym_readonly] = ACTIONS(1486), [anon_sym_sizeof] = ACTIONS(1486), + [sym__dedent] = ACTIONS(1488), [sym_string_start] = ACTIONS(1488), }, - [974] = { - [ts_builtin_sym_end] = ACTIONS(3117), - [sym_identifier] = ACTIONS(3119), - [anon_sym_import] = ACTIONS(3119), - [anon_sym_cimport] = ACTIONS(3119), - [anon_sym_from] = ACTIONS(3119), - [anon_sym_LPAREN] = ACTIONS(3117), - [anon_sym_STAR] = ACTIONS(3117), - [anon_sym_print] = ACTIONS(3119), - [anon_sym_assert] = ACTIONS(3119), - [anon_sym_return] = ACTIONS(3119), - [anon_sym_del] = ACTIONS(3119), - [anon_sym_raise] = ACTIONS(3119), - [anon_sym_pass] = ACTIONS(3119), - [anon_sym_break] = ACTIONS(3119), - [anon_sym_continue] = ACTIONS(3119), - [anon_sym_if] = ACTIONS(3119), - [anon_sym_else] = ACTIONS(3119), - [anon_sym_match] = ACTIONS(3119), - [anon_sym_async] = ACTIONS(3119), - [anon_sym_for] = ACTIONS(3119), - [anon_sym_while] = ACTIONS(3119), - [anon_sym_try] = ACTIONS(3119), - [anon_sym_except] = ACTIONS(3119), - [anon_sym_finally] = ACTIONS(3119), - [anon_sym_with] = ACTIONS(3119), - [anon_sym_def] = ACTIONS(3119), - [anon_sym_global] = ACTIONS(3119), - [anon_sym_nonlocal] = ACTIONS(3119), - [anon_sym_exec] = ACTIONS(3119), - [anon_sym_type] = ACTIONS(3119), - [anon_sym_class] = ACTIONS(3119), - [anon_sym_LBRACK] = ACTIONS(3117), - [anon_sym_AT] = ACTIONS(3117), - [anon_sym_DASH] = ACTIONS(3117), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_PLUS] = ACTIONS(3117), - [anon_sym_not] = ACTIONS(3119), - [anon_sym_AMP] = ACTIONS(3117), - [anon_sym_TILDE] = ACTIONS(3117), - [anon_sym_LT] = ACTIONS(3117), - [anon_sym_lambda] = ACTIONS(3119), - [anon_sym_yield] = ACTIONS(3119), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3117), - [anon_sym_None] = ACTIONS(3119), - [sym_integer] = ACTIONS(3119), - [sym_float] = ACTIONS(3117), - [anon_sym_await] = ACTIONS(3119), - [anon_sym_api] = ACTIONS(3119), - [sym_true] = ACTIONS(3119), - [sym_false] = ACTIONS(3119), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(3119), - [anon_sym_include] = ACTIONS(3119), - [anon_sym_DEF] = ACTIONS(3119), - [anon_sym_cdef] = ACTIONS(3119), - [anon_sym_cpdef] = ACTIONS(3119), - [anon_sym_new] = ACTIONS(3119), - [anon_sym_ctypedef] = ACTIONS(3119), - [anon_sym_public] = ACTIONS(3119), - [anon_sym_packed] = ACTIONS(3119), - [anon_sym_inline] = ACTIONS(3119), - [anon_sym_readonly] = ACTIONS(3119), - [anon_sym_sizeof] = ACTIONS(3119), - [sym_string_start] = ACTIONS(3117), - }, - [975] = { - [sym_identifier] = ACTIONS(3121), - [anon_sym_import] = ACTIONS(3121), - [anon_sym_cimport] = ACTIONS(3121), - [anon_sym_from] = ACTIONS(3121), - [anon_sym_LPAREN] = ACTIONS(3123), - [anon_sym_STAR] = ACTIONS(3123), - [anon_sym_print] = ACTIONS(3121), - [anon_sym_assert] = ACTIONS(3121), - [anon_sym_return] = ACTIONS(3121), - [anon_sym_del] = ACTIONS(3121), - [anon_sym_raise] = ACTIONS(3121), - [anon_sym_pass] = ACTIONS(3121), - [anon_sym_break] = ACTIONS(3121), - [anon_sym_continue] = ACTIONS(3121), - [anon_sym_if] = ACTIONS(3121), - [anon_sym_else] = ACTIONS(3121), - [anon_sym_match] = ACTIONS(3121), - [anon_sym_async] = ACTIONS(3121), - [anon_sym_for] = ACTIONS(3121), - [anon_sym_while] = ACTIONS(3121), - [anon_sym_try] = ACTIONS(3121), - [anon_sym_except] = ACTIONS(3121), - [anon_sym_finally] = ACTIONS(3121), - [anon_sym_with] = ACTIONS(3121), - [anon_sym_def] = ACTIONS(3121), - [anon_sym_global] = ACTIONS(3121), - [anon_sym_nonlocal] = ACTIONS(3121), - [anon_sym_exec] = ACTIONS(3121), - [anon_sym_type] = ACTIONS(3121), - [anon_sym_class] = ACTIONS(3121), - [anon_sym_LBRACK] = ACTIONS(3123), - [anon_sym_AT] = ACTIONS(3123), - [anon_sym_DASH] = ACTIONS(3123), - [anon_sym_LBRACE] = ACTIONS(3123), - [anon_sym_PLUS] = ACTIONS(3123), - [anon_sym_not] = ACTIONS(3121), - [anon_sym_AMP] = ACTIONS(3123), - [anon_sym_TILDE] = ACTIONS(3123), - [anon_sym_LT] = ACTIONS(3123), - [anon_sym_lambda] = ACTIONS(3121), - [anon_sym_yield] = ACTIONS(3121), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3123), - [anon_sym_None] = ACTIONS(3121), - [sym_integer] = ACTIONS(3121), - [sym_float] = ACTIONS(3123), - [anon_sym_await] = ACTIONS(3121), - [anon_sym_api] = ACTIONS(3121), - [sym_true] = ACTIONS(3121), - [sym_false] = ACTIONS(3121), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(3121), - [anon_sym_include] = ACTIONS(3121), - [anon_sym_DEF] = ACTIONS(3121), - [anon_sym_cdef] = ACTIONS(3121), - [anon_sym_cpdef] = ACTIONS(3121), - [anon_sym_new] = ACTIONS(3121), - [anon_sym_ctypedef] = ACTIONS(3121), - [anon_sym_public] = ACTIONS(3121), - [anon_sym_packed] = ACTIONS(3121), - [anon_sym_inline] = ACTIONS(3121), - [anon_sym_readonly] = ACTIONS(3121), - [anon_sym_sizeof] = ACTIONS(3121), - [sym__dedent] = ACTIONS(3123), - [sym_string_start] = ACTIONS(3123), + [984] = { + [ts_builtin_sym_end] = ACTIONS(3121), + [sym_identifier] = ACTIONS(3123), + [anon_sym_import] = ACTIONS(3123), + [anon_sym_cimport] = ACTIONS(3123), + [anon_sym_from] = ACTIONS(3123), + [anon_sym_LPAREN] = ACTIONS(3121), + [anon_sym_STAR] = ACTIONS(3121), + [anon_sym_print] = ACTIONS(3123), + [anon_sym_assert] = ACTIONS(3123), + [anon_sym_return] = ACTIONS(3123), + [anon_sym_del] = ACTIONS(3123), + [anon_sym_raise] = ACTIONS(3123), + [anon_sym_pass] = ACTIONS(3123), + [anon_sym_break] = ACTIONS(3123), + [anon_sym_continue] = ACTIONS(3123), + [anon_sym_if] = ACTIONS(3123), + [anon_sym_else] = ACTIONS(3123), + [anon_sym_match] = ACTIONS(3123), + [anon_sym_async] = ACTIONS(3123), + [anon_sym_for] = ACTIONS(3123), + [anon_sym_while] = ACTIONS(3123), + [anon_sym_try] = ACTIONS(3123), + [anon_sym_except] = ACTIONS(3123), + [anon_sym_finally] = ACTIONS(3123), + [anon_sym_with] = ACTIONS(3123), + [anon_sym_def] = ACTIONS(3123), + [anon_sym_global] = ACTIONS(3123), + [anon_sym_nonlocal] = ACTIONS(3123), + [anon_sym_exec] = ACTIONS(3123), + [anon_sym_type] = ACTIONS(3123), + [anon_sym_class] = ACTIONS(3123), + [anon_sym_LBRACK] = ACTIONS(3121), + [anon_sym_AT] = ACTIONS(3121), + [anon_sym_DASH] = ACTIONS(3121), + [anon_sym_LBRACE] = ACTIONS(3121), + [anon_sym_PLUS] = ACTIONS(3121), + [anon_sym_not] = ACTIONS(3123), + [anon_sym_AMP] = ACTIONS(3121), + [anon_sym_TILDE] = ACTIONS(3121), + [anon_sym_LT] = ACTIONS(3121), + [anon_sym_lambda] = ACTIONS(3123), + [anon_sym_yield] = ACTIONS(3123), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3121), + [anon_sym_None] = ACTIONS(3123), + [sym_integer] = ACTIONS(3123), + [sym_float] = ACTIONS(3121), + [anon_sym_await] = ACTIONS(3123), + [anon_sym_api] = ACTIONS(3123), + [sym_true] = ACTIONS(3123), + [sym_false] = ACTIONS(3123), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3123), + [anon_sym_include] = ACTIONS(3123), + [anon_sym_DEF] = ACTIONS(3123), + [anon_sym_cdef] = ACTIONS(3123), + [anon_sym_cpdef] = ACTIONS(3123), + [anon_sym_new] = ACTIONS(3123), + [anon_sym_ctypedef] = ACTIONS(3123), + [anon_sym_public] = ACTIONS(3123), + [anon_sym_packed] = ACTIONS(3123), + [anon_sym_inline] = ACTIONS(3123), + [anon_sym_readonly] = ACTIONS(3123), + [anon_sym_sizeof] = ACTIONS(3123), + [sym_string_start] = ACTIONS(3121), }, - [976] = { - [sym_identifier] = ACTIONS(3125), - [anon_sym_import] = ACTIONS(3125), - [anon_sym_cimport] = ACTIONS(3125), - [anon_sym_from] = ACTIONS(3125), - [anon_sym_LPAREN] = ACTIONS(3127), - [anon_sym_STAR] = ACTIONS(3127), - [anon_sym_print] = ACTIONS(3125), - [anon_sym_assert] = ACTIONS(3125), - [anon_sym_return] = ACTIONS(3125), - [anon_sym_del] = ACTIONS(3125), - [anon_sym_raise] = ACTIONS(3125), - [anon_sym_pass] = ACTIONS(3125), - [anon_sym_break] = ACTIONS(3125), - [anon_sym_continue] = ACTIONS(3125), - [anon_sym_if] = ACTIONS(3125), - [anon_sym_else] = ACTIONS(3125), - [anon_sym_match] = ACTIONS(3125), - [anon_sym_async] = ACTIONS(3125), - [anon_sym_for] = ACTIONS(3125), - [anon_sym_while] = ACTIONS(3125), - [anon_sym_try] = ACTIONS(3125), - [anon_sym_except_STAR] = ACTIONS(3127), - [anon_sym_finally] = ACTIONS(3125), - [anon_sym_with] = ACTIONS(3125), - [anon_sym_def] = ACTIONS(3125), - [anon_sym_global] = ACTIONS(3125), - [anon_sym_nonlocal] = ACTIONS(3125), - [anon_sym_exec] = ACTIONS(3125), - [anon_sym_type] = ACTIONS(3125), - [anon_sym_class] = ACTIONS(3125), - [anon_sym_LBRACK] = ACTIONS(3127), - [anon_sym_AT] = ACTIONS(3127), - [anon_sym_DASH] = ACTIONS(3127), - [anon_sym_LBRACE] = ACTIONS(3127), - [anon_sym_PLUS] = ACTIONS(3127), - [anon_sym_not] = ACTIONS(3125), - [anon_sym_AMP] = ACTIONS(3127), - [anon_sym_TILDE] = ACTIONS(3127), - [anon_sym_LT] = ACTIONS(3127), - [anon_sym_lambda] = ACTIONS(3125), - [anon_sym_yield] = ACTIONS(3125), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3127), - [anon_sym_None] = ACTIONS(3125), - [sym_integer] = ACTIONS(3125), - [sym_float] = ACTIONS(3127), - [anon_sym_await] = ACTIONS(3125), - [anon_sym_api] = ACTIONS(3125), - [sym_true] = ACTIONS(3125), - [sym_false] = ACTIONS(3125), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(3125), - [anon_sym_include] = ACTIONS(3125), - [anon_sym_DEF] = ACTIONS(3125), - [anon_sym_cdef] = ACTIONS(3125), - [anon_sym_cpdef] = ACTIONS(3125), - [anon_sym_new] = ACTIONS(3125), - [anon_sym_ctypedef] = ACTIONS(3125), - [anon_sym_public] = ACTIONS(3125), - [anon_sym_packed] = ACTIONS(3125), - [anon_sym_inline] = ACTIONS(3125), - [anon_sym_readonly] = ACTIONS(3125), - [anon_sym_sizeof] = ACTIONS(3125), - [sym__dedent] = ACTIONS(3127), - [sym_string_start] = ACTIONS(3127), + [985] = { + [sym_named_expression] = STATE(2631), + [sym__named_expression_lhs] = STATE(5572), + [sym_list_splat_pattern] = STATE(2589), + [sym_as_pattern] = STATE(2631), + [sym_expression] = STATE(4127), + [sym_primary_expression] = STATE(2107), + [sym_not_operator] = STATE(2631), + [sym_boolean_operator] = STATE(2631), + [sym_binary_operator] = STATE(2630), + [sym_unary_operator] = STATE(2630), + [sym_comparison_operator] = STATE(2631), + [sym_lambda] = STATE(2631), + [sym_attribute] = STATE(2630), + [sym_subscript] = STATE(2630), + [sym_slice] = STATE(5318), + [sym_ellipsis] = STATE(2630), + [sym_call] = STATE(2630), + [sym_list] = STATE(2630), + [sym_set] = STATE(2630), + [sym_tuple] = STATE(2630), + [sym_dictionary] = STATE(2630), + [sym_list_comprehension] = STATE(2630), + [sym_dictionary_comprehension] = STATE(2630), + [sym_set_comprehension] = STATE(2630), + [sym_generator_expression] = STATE(2630), + [sym_parenthesized_expression] = STATE(2630), + [sym_conditional_expression] = STATE(2631), + [sym_concatenated_string] = STATE(2630), + [sym_string] = STATE(2200), + [sym_none] = STATE(2630), + [sym_await] = STATE(2630), + [sym_new_expression] = STATE(2631), + [sym_sizeof_expression] = STATE(2630), + [sym_cast_expression] = STATE(2630), + [sym_identifier] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2461), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_print] = ACTIONS(2641), + [anon_sym_COLON] = ACTIONS(3113), + [anon_sym_match] = ACTIONS(2641), + [anon_sym_async] = ACTIONS(2641), + [anon_sym_exec] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2467), + [anon_sym_RBRACK] = ACTIONS(3125), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_not] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2469), + [anon_sym_TILDE] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_lambda] = ACTIONS(2651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2475), + [anon_sym_None] = ACTIONS(2477), + [sym_integer] = ACTIONS(2459), + [sym_float] = ACTIONS(2479), + [anon_sym_await] = ACTIONS(2653), + [anon_sym_api] = ACTIONS(2641), + [sym_true] = ACTIONS(2459), + [sym_false] = ACTIONS(2459), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2655), + [anon_sym_sizeof] = ACTIONS(2483), + [sym_string_start] = ACTIONS(2485), }, - [977] = { - [ts_builtin_sym_end] = ACTIONS(1496), + [986] = { [sym_identifier] = ACTIONS(1494), [anon_sym_import] = ACTIONS(1494), [anon_sym_cimport] = ACTIONS(1494), @@ -114446,412 +115209,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(1494), [anon_sym_readonly] = ACTIONS(1494), [anon_sym_sizeof] = ACTIONS(1494), + [sym__dedent] = ACTIONS(1496), [sym_string_start] = ACTIONS(1496), }, - [978] = { - [ts_builtin_sym_end] = ACTIONS(3129), - [sym_identifier] = ACTIONS(3131), - [anon_sym_import] = ACTIONS(3131), - [anon_sym_cimport] = ACTIONS(3131), - [anon_sym_from] = ACTIONS(3131), + [987] = { + [sym_identifier] = ACTIONS(3127), + [anon_sym_import] = ACTIONS(3127), + [anon_sym_cimport] = ACTIONS(3127), + [anon_sym_from] = ACTIONS(3127), [anon_sym_LPAREN] = ACTIONS(3129), [anon_sym_STAR] = ACTIONS(3129), - [anon_sym_print] = ACTIONS(3131), - [anon_sym_assert] = ACTIONS(3131), - [anon_sym_return] = ACTIONS(3131), - [anon_sym_del] = ACTIONS(3131), - [anon_sym_raise] = ACTIONS(3131), - [anon_sym_pass] = ACTIONS(3131), - [anon_sym_break] = ACTIONS(3131), - [anon_sym_continue] = ACTIONS(3131), - [anon_sym_if] = ACTIONS(3131), - [anon_sym_else] = ACTIONS(3131), - [anon_sym_match] = ACTIONS(3131), - [anon_sym_async] = ACTIONS(3131), - [anon_sym_for] = ACTIONS(3131), - [anon_sym_while] = ACTIONS(3131), - [anon_sym_try] = ACTIONS(3131), - [anon_sym_except] = ACTIONS(3131), - [anon_sym_finally] = ACTIONS(3131), - [anon_sym_with] = ACTIONS(3131), - [anon_sym_def] = ACTIONS(3131), - [anon_sym_global] = ACTIONS(3131), - [anon_sym_nonlocal] = ACTIONS(3131), - [anon_sym_exec] = ACTIONS(3131), - [anon_sym_type] = ACTIONS(3131), - [anon_sym_class] = ACTIONS(3131), + [anon_sym_print] = ACTIONS(3127), + [anon_sym_assert] = ACTIONS(3127), + [anon_sym_return] = ACTIONS(3127), + [anon_sym_del] = ACTIONS(3127), + [anon_sym_raise] = ACTIONS(3127), + [anon_sym_pass] = ACTIONS(3127), + [anon_sym_break] = ACTIONS(3127), + [anon_sym_continue] = ACTIONS(3127), + [anon_sym_if] = ACTIONS(3127), + [anon_sym_else] = ACTIONS(3127), + [anon_sym_match] = ACTIONS(3127), + [anon_sym_async] = ACTIONS(3127), + [anon_sym_for] = ACTIONS(3127), + [anon_sym_while] = ACTIONS(3127), + [anon_sym_try] = ACTIONS(3127), + [anon_sym_except_STAR] = ACTIONS(3129), + [anon_sym_finally] = ACTIONS(3127), + [anon_sym_with] = ACTIONS(3127), + [anon_sym_def] = ACTIONS(3127), + [anon_sym_global] = ACTIONS(3127), + [anon_sym_nonlocal] = ACTIONS(3127), + [anon_sym_exec] = ACTIONS(3127), + [anon_sym_type] = ACTIONS(3127), + [anon_sym_class] = ACTIONS(3127), [anon_sym_LBRACK] = ACTIONS(3129), [anon_sym_AT] = ACTIONS(3129), [anon_sym_DASH] = ACTIONS(3129), [anon_sym_LBRACE] = ACTIONS(3129), [anon_sym_PLUS] = ACTIONS(3129), - [anon_sym_not] = ACTIONS(3131), + [anon_sym_not] = ACTIONS(3127), [anon_sym_AMP] = ACTIONS(3129), [anon_sym_TILDE] = ACTIONS(3129), [anon_sym_LT] = ACTIONS(3129), - [anon_sym_lambda] = ACTIONS(3131), - [anon_sym_yield] = ACTIONS(3131), + [anon_sym_lambda] = ACTIONS(3127), + [anon_sym_yield] = ACTIONS(3127), [anon_sym_DOT_DOT_DOT] = ACTIONS(3129), - [anon_sym_None] = ACTIONS(3131), - [sym_integer] = ACTIONS(3131), + [anon_sym_None] = ACTIONS(3127), + [sym_integer] = ACTIONS(3127), [sym_float] = ACTIONS(3129), - [anon_sym_await] = ACTIONS(3131), - [anon_sym_api] = ACTIONS(3131), - [sym_true] = ACTIONS(3131), - [sym_false] = ACTIONS(3131), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(3131), - [anon_sym_include] = ACTIONS(3131), - [anon_sym_DEF] = ACTIONS(3131), - [anon_sym_cdef] = ACTIONS(3131), - [anon_sym_cpdef] = ACTIONS(3131), - [anon_sym_new] = ACTIONS(3131), - [anon_sym_ctypedef] = ACTIONS(3131), - [anon_sym_public] = ACTIONS(3131), - [anon_sym_packed] = ACTIONS(3131), - [anon_sym_inline] = ACTIONS(3131), - [anon_sym_readonly] = ACTIONS(3131), - [anon_sym_sizeof] = ACTIONS(3131), + [anon_sym_await] = ACTIONS(3127), + [anon_sym_api] = ACTIONS(3127), + [sym_true] = ACTIONS(3127), + [sym_false] = ACTIONS(3127), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3127), + [anon_sym_include] = ACTIONS(3127), + [anon_sym_DEF] = ACTIONS(3127), + [anon_sym_cdef] = ACTIONS(3127), + [anon_sym_cpdef] = ACTIONS(3127), + [anon_sym_new] = ACTIONS(3127), + [anon_sym_ctypedef] = ACTIONS(3127), + [anon_sym_public] = ACTIONS(3127), + [anon_sym_packed] = ACTIONS(3127), + [anon_sym_inline] = ACTIONS(3127), + [anon_sym_readonly] = ACTIONS(3127), + [anon_sym_sizeof] = ACTIONS(3127), + [sym__dedent] = ACTIONS(3129), [sym_string_start] = ACTIONS(3129), }, - [979] = { - [ts_builtin_sym_end] = ACTIONS(3133), - [sym_identifier] = ACTIONS(3135), - [anon_sym_import] = ACTIONS(3135), - [anon_sym_cimport] = ACTIONS(3135), - [anon_sym_from] = ACTIONS(3135), - [anon_sym_LPAREN] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(3133), - [anon_sym_print] = ACTIONS(3135), - [anon_sym_assert] = ACTIONS(3135), - [anon_sym_return] = ACTIONS(3135), - [anon_sym_del] = ACTIONS(3135), - [anon_sym_raise] = ACTIONS(3135), - [anon_sym_pass] = ACTIONS(3135), - [anon_sym_break] = ACTIONS(3135), - [anon_sym_continue] = ACTIONS(3135), - [anon_sym_if] = ACTIONS(3135), - [anon_sym_else] = ACTIONS(3135), - [anon_sym_match] = ACTIONS(3135), - [anon_sym_async] = ACTIONS(3135), - [anon_sym_for] = ACTIONS(3135), - [anon_sym_while] = ACTIONS(3135), - [anon_sym_try] = ACTIONS(3135), - [anon_sym_except] = ACTIONS(3135), - [anon_sym_finally] = ACTIONS(3135), - [anon_sym_with] = ACTIONS(3135), - [anon_sym_def] = ACTIONS(3135), - [anon_sym_global] = ACTIONS(3135), - [anon_sym_nonlocal] = ACTIONS(3135), - [anon_sym_exec] = ACTIONS(3135), - [anon_sym_type] = ACTIONS(3135), - [anon_sym_class] = ACTIONS(3135), - [anon_sym_LBRACK] = ACTIONS(3133), - [anon_sym_AT] = ACTIONS(3133), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_LBRACE] = ACTIONS(3133), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_not] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3133), - [anon_sym_TILDE] = ACTIONS(3133), - [anon_sym_LT] = ACTIONS(3133), - [anon_sym_lambda] = ACTIONS(3135), - [anon_sym_yield] = ACTIONS(3135), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3133), - [anon_sym_None] = ACTIONS(3135), - [sym_integer] = ACTIONS(3135), - [sym_float] = ACTIONS(3133), - [anon_sym_await] = ACTIONS(3135), - [anon_sym_api] = ACTIONS(3135), - [sym_true] = ACTIONS(3135), - [sym_false] = ACTIONS(3135), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(3135), - [anon_sym_include] = ACTIONS(3135), - [anon_sym_DEF] = ACTIONS(3135), - [anon_sym_cdef] = ACTIONS(3135), - [anon_sym_cpdef] = ACTIONS(3135), - [anon_sym_new] = ACTIONS(3135), - [anon_sym_ctypedef] = ACTIONS(3135), - [anon_sym_public] = ACTIONS(3135), - [anon_sym_packed] = ACTIONS(3135), - [anon_sym_inline] = ACTIONS(3135), - [anon_sym_readonly] = ACTIONS(3135), - [anon_sym_sizeof] = ACTIONS(3135), - [sym_string_start] = ACTIONS(3133), - }, - [980] = { - [ts_builtin_sym_end] = ACTIONS(1492), - [sym_identifier] = ACTIONS(1490), - [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_else] = 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_except_STAR] = ACTIONS(1492), - [anon_sym_finally] = 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), - [anon_sym_DOT_DOT_DOT] = 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_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_new] = ACTIONS(1490), - [anon_sym_ctypedef] = 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_string_start] = ACTIONS(1492), - }, - [981] = { - [ts_builtin_sym_end] = ACTIONS(3137), - [sym_identifier] = ACTIONS(3139), - [anon_sym_import] = ACTIONS(3139), - [anon_sym_cimport] = ACTIONS(3139), - [anon_sym_from] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(3137), - [anon_sym_STAR] = ACTIONS(3137), - [anon_sym_print] = ACTIONS(3139), - [anon_sym_assert] = ACTIONS(3139), - [anon_sym_return] = ACTIONS(3139), - [anon_sym_del] = ACTIONS(3139), - [anon_sym_raise] = ACTIONS(3139), - [anon_sym_pass] = ACTIONS(3139), - [anon_sym_break] = ACTIONS(3139), - [anon_sym_continue] = ACTIONS(3139), - [anon_sym_if] = ACTIONS(3139), - [anon_sym_else] = ACTIONS(3139), - [anon_sym_match] = ACTIONS(3139), - [anon_sym_async] = ACTIONS(3139), - [anon_sym_for] = ACTIONS(3139), - [anon_sym_while] = ACTIONS(3139), - [anon_sym_try] = ACTIONS(3139), - [anon_sym_except_STAR] = ACTIONS(3137), - [anon_sym_finally] = ACTIONS(3139), - [anon_sym_with] = ACTIONS(3139), - [anon_sym_def] = ACTIONS(3139), - [anon_sym_global] = ACTIONS(3139), - [anon_sym_nonlocal] = ACTIONS(3139), - [anon_sym_exec] = ACTIONS(3139), - [anon_sym_type] = ACTIONS(3139), - [anon_sym_class] = ACTIONS(3139), - [anon_sym_LBRACK] = ACTIONS(3137), - [anon_sym_AT] = ACTIONS(3137), - [anon_sym_DASH] = ACTIONS(3137), - [anon_sym_LBRACE] = ACTIONS(3137), - [anon_sym_PLUS] = ACTIONS(3137), - [anon_sym_not] = ACTIONS(3139), - [anon_sym_AMP] = ACTIONS(3137), - [anon_sym_TILDE] = ACTIONS(3137), - [anon_sym_LT] = ACTIONS(3137), - [anon_sym_lambda] = ACTIONS(3139), - [anon_sym_yield] = ACTIONS(3139), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3137), - [anon_sym_None] = ACTIONS(3139), - [sym_integer] = ACTIONS(3139), - [sym_float] = ACTIONS(3137), - [anon_sym_await] = ACTIONS(3139), - [anon_sym_api] = ACTIONS(3139), - [sym_true] = ACTIONS(3139), - [sym_false] = ACTIONS(3139), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(3139), - [anon_sym_include] = ACTIONS(3139), - [anon_sym_DEF] = ACTIONS(3139), - [anon_sym_cdef] = ACTIONS(3139), - [anon_sym_cpdef] = ACTIONS(3139), - [anon_sym_new] = ACTIONS(3139), - [anon_sym_ctypedef] = ACTIONS(3139), - [anon_sym_public] = ACTIONS(3139), - [anon_sym_packed] = ACTIONS(3139), - [anon_sym_inline] = ACTIONS(3139), - [anon_sym_readonly] = ACTIONS(3139), - [anon_sym_sizeof] = ACTIONS(3139), - [sym_string_start] = ACTIONS(3137), - }, - [982] = { - [ts_builtin_sym_end] = ACTIONS(3115), - [sym_identifier] = ACTIONS(3113), - [anon_sym_import] = ACTIONS(3113), - [anon_sym_cimport] = ACTIONS(3113), - [anon_sym_from] = ACTIONS(3113), - [anon_sym_LPAREN] = ACTIONS(3115), - [anon_sym_STAR] = ACTIONS(3115), - [anon_sym_print] = ACTIONS(3113), - [anon_sym_assert] = ACTIONS(3113), - [anon_sym_return] = ACTIONS(3113), - [anon_sym_del] = ACTIONS(3113), - [anon_sym_raise] = ACTIONS(3113), - [anon_sym_pass] = ACTIONS(3113), - [anon_sym_break] = ACTIONS(3113), - [anon_sym_continue] = ACTIONS(3113), - [anon_sym_if] = ACTIONS(3113), - [anon_sym_else] = ACTIONS(3113), - [anon_sym_match] = ACTIONS(3113), - [anon_sym_async] = ACTIONS(3113), - [anon_sym_for] = ACTIONS(3113), - [anon_sym_while] = ACTIONS(3113), - [anon_sym_try] = ACTIONS(3113), - [anon_sym_except_STAR] = ACTIONS(3115), - [anon_sym_finally] = ACTIONS(3113), - [anon_sym_with] = ACTIONS(3113), - [anon_sym_def] = ACTIONS(3113), - [anon_sym_global] = ACTIONS(3113), - [anon_sym_nonlocal] = ACTIONS(3113), - [anon_sym_exec] = ACTIONS(3113), - [anon_sym_type] = ACTIONS(3113), - [anon_sym_class] = ACTIONS(3113), - [anon_sym_LBRACK] = ACTIONS(3115), - [anon_sym_AT] = ACTIONS(3115), - [anon_sym_DASH] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3115), - [anon_sym_PLUS] = ACTIONS(3115), - [anon_sym_not] = ACTIONS(3113), - [anon_sym_AMP] = ACTIONS(3115), - [anon_sym_TILDE] = ACTIONS(3115), - [anon_sym_LT] = ACTIONS(3115), - [anon_sym_lambda] = ACTIONS(3113), - [anon_sym_yield] = ACTIONS(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3115), - [anon_sym_None] = ACTIONS(3113), - [sym_integer] = ACTIONS(3113), - [sym_float] = ACTIONS(3115), - [anon_sym_await] = ACTIONS(3113), - [anon_sym_api] = ACTIONS(3113), - [sym_true] = ACTIONS(3113), - [sym_false] = ACTIONS(3113), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(3113), - [anon_sym_include] = ACTIONS(3113), - [anon_sym_DEF] = ACTIONS(3113), - [anon_sym_cdef] = ACTIONS(3113), - [anon_sym_cpdef] = ACTIONS(3113), - [anon_sym_new] = ACTIONS(3113), - [anon_sym_ctypedef] = ACTIONS(3113), - [anon_sym_public] = ACTIONS(3113), - [anon_sym_packed] = ACTIONS(3113), - [anon_sym_inline] = ACTIONS(3113), - [anon_sym_readonly] = ACTIONS(3113), - [anon_sym_sizeof] = ACTIONS(3113), - [sym_string_start] = ACTIONS(3115), + [988] = { + [sym_named_expression] = STATE(2631), + [sym__named_expression_lhs] = STATE(5572), + [sym_list_splat_pattern] = STATE(2589), + [sym_as_pattern] = STATE(2631), + [sym_expression] = STATE(4127), + [sym_primary_expression] = STATE(2107), + [sym_not_operator] = STATE(2631), + [sym_boolean_operator] = STATE(2631), + [sym_binary_operator] = STATE(2630), + [sym_unary_operator] = STATE(2630), + [sym_comparison_operator] = STATE(2631), + [sym_lambda] = STATE(2631), + [sym_attribute] = STATE(2630), + [sym_subscript] = STATE(2630), + [sym_slice] = STATE(5318), + [sym_ellipsis] = STATE(2630), + [sym_call] = STATE(2630), + [sym_list] = STATE(2630), + [sym_set] = STATE(2630), + [sym_tuple] = STATE(2630), + [sym_dictionary] = STATE(2630), + [sym_list_comprehension] = STATE(2630), + [sym_dictionary_comprehension] = STATE(2630), + [sym_set_comprehension] = STATE(2630), + [sym_generator_expression] = STATE(2630), + [sym_parenthesized_expression] = STATE(2630), + [sym_conditional_expression] = STATE(2631), + [sym_concatenated_string] = STATE(2630), + [sym_string] = STATE(2200), + [sym_none] = STATE(2630), + [sym_await] = STATE(2630), + [sym_new_expression] = STATE(2631), + [sym_sizeof_expression] = STATE(2630), + [sym_cast_expression] = STATE(2630), + [sym_identifier] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2461), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_print] = ACTIONS(2641), + [anon_sym_COLON] = ACTIONS(3113), + [anon_sym_match] = ACTIONS(2641), + [anon_sym_async] = ACTIONS(2641), + [anon_sym_exec] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2467), + [anon_sym_RBRACK] = ACTIONS(3131), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_not] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2469), + [anon_sym_TILDE] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_lambda] = ACTIONS(2651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2475), + [anon_sym_None] = ACTIONS(2477), + [sym_integer] = ACTIONS(2459), + [sym_float] = ACTIONS(2479), + [anon_sym_await] = ACTIONS(2653), + [anon_sym_api] = ACTIONS(2641), + [sym_true] = ACTIONS(2459), + [sym_false] = ACTIONS(2459), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2655), + [anon_sym_sizeof] = ACTIONS(2483), + [sym_string_start] = ACTIONS(2485), }, - [983] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5609), - [sym_list_splat_pattern] = STATE(2591), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(4115), - [sym_primary_expression] = STATE(2077), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2631), - [sym_unary_operator] = STATE(2631), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2631), - [sym_subscript] = STATE(2631), - [sym_ellipsis] = STATE(2631), - [sym_call] = STATE(2631), - [sym_list] = STATE(2631), - [sym_set] = STATE(2631), - [sym_tuple] = STATE(2631), - [sym_dictionary] = STATE(2631), - [sym_list_comprehension] = STATE(2631), - [sym_dictionary_comprehension] = STATE(2631), - [sym_set_comprehension] = STATE(2631), - [sym_generator_expression] = STATE(2631), - [sym_parenthesized_expression] = STATE(2631), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2631), - [sym_string] = STATE(2218), - [sym_none] = STATE(2631), - [sym_await] = STATE(2631), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2631), - [sym_cast_expression] = STATE(2631), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_COMMA] = ACTIONS(3141), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_print] = ACTIONS(2631), - [anon_sym_COLON] = ACTIONS(3143), - [anon_sym_match] = ACTIONS(2631), - [anon_sym_async] = ACTIONS(2631), - [anon_sym_exec] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_RBRACK] = ACTIONS(3141), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2639), - [anon_sym_lambda] = ACTIONS(2641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2643), - [anon_sym_api] = ACTIONS(2631), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2645), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), + [989] = { + [sym_named_expression] = STATE(2631), + [sym__named_expression_lhs] = STATE(5572), + [sym_list_splat_pattern] = STATE(2589), + [sym_as_pattern] = STATE(2631), + [sym_expression] = STATE(4127), + [sym_primary_expression] = STATE(2107), + [sym_not_operator] = STATE(2631), + [sym_boolean_operator] = STATE(2631), + [sym_binary_operator] = STATE(2630), + [sym_unary_operator] = STATE(2630), + [sym_comparison_operator] = STATE(2631), + [sym_lambda] = STATE(2631), + [sym_attribute] = STATE(2630), + [sym_subscript] = STATE(2630), + [sym_slice] = STATE(5318), + [sym_ellipsis] = STATE(2630), + [sym_call] = STATE(2630), + [sym_list] = STATE(2630), + [sym_set] = STATE(2630), + [sym_tuple] = STATE(2630), + [sym_dictionary] = STATE(2630), + [sym_list_comprehension] = STATE(2630), + [sym_dictionary_comprehension] = STATE(2630), + [sym_set_comprehension] = STATE(2630), + [sym_generator_expression] = STATE(2630), + [sym_parenthesized_expression] = STATE(2630), + [sym_conditional_expression] = STATE(2631), + [sym_concatenated_string] = STATE(2630), + [sym_string] = STATE(2200), + [sym_none] = STATE(2630), + [sym_await] = STATE(2630), + [sym_new_expression] = STATE(2631), + [sym_sizeof_expression] = STATE(2630), + [sym_cast_expression] = STATE(2630), + [sym_identifier] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2461), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_print] = ACTIONS(2641), + [anon_sym_COLON] = ACTIONS(3113), + [anon_sym_match] = ACTIONS(2641), + [anon_sym_async] = ACTIONS(2641), + [anon_sym_exec] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2467), + [anon_sym_RBRACK] = ACTIONS(3133), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_not] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2469), + [anon_sym_TILDE] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_lambda] = ACTIONS(2651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2475), + [anon_sym_None] = ACTIONS(2477), + [sym_integer] = ACTIONS(2459), + [sym_float] = ACTIONS(2479), + [anon_sym_await] = ACTIONS(2653), + [anon_sym_api] = ACTIONS(2641), + [sym_true] = ACTIONS(2459), + [sym_false] = ACTIONS(2459), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2655), + [anon_sym_sizeof] = ACTIONS(2483), + [sym_string_start] = ACTIONS(2485), }, - [984] = { - [ts_builtin_sym_end] = ACTIONS(1484), + [990] = { [sym_identifier] = ACTIONS(1482), [anon_sym_import] = ACTIONS(1482), [anon_sym_cimport] = ACTIONS(1482), @@ -114915,411 +115477,346 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(1482), [anon_sym_readonly] = ACTIONS(1482), [anon_sym_sizeof] = ACTIONS(1482), + [sym__dedent] = ACTIONS(1484), [sym_string_start] = ACTIONS(1484), }, - [985] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5609), - [sym_list_splat_pattern] = STATE(2591), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(4053), - [sym_primary_expression] = STATE(2077), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2631), - [sym_unary_operator] = STATE(2631), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2631), - [sym_subscript] = STATE(2631), - [sym_slice] = STATE(5361), - [sym_ellipsis] = STATE(2631), - [sym_call] = STATE(2631), - [sym_list] = STATE(2631), - [sym_set] = STATE(2631), - [sym_tuple] = STATE(2631), - [sym_dictionary] = STATE(2631), - [sym_list_comprehension] = STATE(2631), - [sym_dictionary_comprehension] = STATE(2631), - [sym_set_comprehension] = STATE(2631), - [sym_generator_expression] = STATE(2631), - [sym_parenthesized_expression] = STATE(2631), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2631), - [sym_string] = STATE(2218), - [sym_none] = STATE(2631), - [sym_await] = STATE(2631), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2631), - [sym_cast_expression] = STATE(2631), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_print] = ACTIONS(2631), - [anon_sym_COLON] = ACTIONS(3109), - [anon_sym_match] = ACTIONS(2631), - [anon_sym_async] = ACTIONS(2631), - [anon_sym_exec] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_RBRACK] = ACTIONS(3145), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2639), - [anon_sym_lambda] = ACTIONS(2641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2643), - [anon_sym_api] = ACTIONS(2631), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2645), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), - }, - [986] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5609), - [sym_list_splat_pattern] = STATE(2591), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(4053), - [sym_primary_expression] = STATE(2077), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2631), - [sym_unary_operator] = STATE(2631), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2631), - [sym_subscript] = STATE(2631), - [sym_slice] = STATE(5361), - [sym_ellipsis] = STATE(2631), - [sym_call] = STATE(2631), - [sym_list] = STATE(2631), - [sym_set] = STATE(2631), - [sym_tuple] = STATE(2631), - [sym_dictionary] = STATE(2631), - [sym_list_comprehension] = STATE(2631), - [sym_dictionary_comprehension] = STATE(2631), - [sym_set_comprehension] = STATE(2631), - [sym_generator_expression] = STATE(2631), - [sym_parenthesized_expression] = STATE(2631), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2631), - [sym_string] = STATE(2218), - [sym_none] = STATE(2631), - [sym_await] = STATE(2631), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2631), - [sym_cast_expression] = STATE(2631), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_print] = ACTIONS(2631), - [anon_sym_COLON] = ACTIONS(3109), - [anon_sym_match] = ACTIONS(2631), - [anon_sym_async] = ACTIONS(2631), - [anon_sym_exec] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_RBRACK] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2639), - [anon_sym_lambda] = ACTIONS(2641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2643), - [anon_sym_api] = ACTIONS(2631), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2645), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), + [991] = { + [sym_named_expression] = STATE(2631), + [sym__named_expression_lhs] = STATE(5572), + [sym_list_splat_pattern] = STATE(2589), + [sym_as_pattern] = STATE(2631), + [sym_expression] = STATE(4127), + [sym_primary_expression] = STATE(2107), + [sym_not_operator] = STATE(2631), + [sym_boolean_operator] = STATE(2631), + [sym_binary_operator] = STATE(2630), + [sym_unary_operator] = STATE(2630), + [sym_comparison_operator] = STATE(2631), + [sym_lambda] = STATE(2631), + [sym_attribute] = STATE(2630), + [sym_subscript] = STATE(2630), + [sym_slice] = STATE(5318), + [sym_ellipsis] = STATE(2630), + [sym_call] = STATE(2630), + [sym_list] = STATE(2630), + [sym_set] = STATE(2630), + [sym_tuple] = STATE(2630), + [sym_dictionary] = STATE(2630), + [sym_list_comprehension] = STATE(2630), + [sym_dictionary_comprehension] = STATE(2630), + [sym_set_comprehension] = STATE(2630), + [sym_generator_expression] = STATE(2630), + [sym_parenthesized_expression] = STATE(2630), + [sym_conditional_expression] = STATE(2631), + [sym_concatenated_string] = STATE(2630), + [sym_string] = STATE(2200), + [sym_none] = STATE(2630), + [sym_await] = STATE(2630), + [sym_new_expression] = STATE(2631), + [sym_sizeof_expression] = STATE(2630), + [sym_cast_expression] = STATE(2630), + [sym_identifier] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2461), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_print] = ACTIONS(2641), + [anon_sym_COLON] = ACTIONS(3113), + [anon_sym_match] = ACTIONS(2641), + [anon_sym_async] = ACTIONS(2641), + [anon_sym_exec] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2467), + [anon_sym_RBRACK] = ACTIONS(3135), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_not] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2469), + [anon_sym_TILDE] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_lambda] = ACTIONS(2651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2475), + [anon_sym_None] = ACTIONS(2477), + [sym_integer] = ACTIONS(2459), + [sym_float] = ACTIONS(2479), + [anon_sym_await] = ACTIONS(2653), + [anon_sym_api] = ACTIONS(2641), + [sym_true] = ACTIONS(2459), + [sym_false] = ACTIONS(2459), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2655), + [anon_sym_sizeof] = ACTIONS(2483), + [sym_string_start] = ACTIONS(2485), }, - [987] = { - [ts_builtin_sym_end] = ACTIONS(1480), - [sym_identifier] = ACTIONS(1478), - [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_else] = 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_except_STAR] = ACTIONS(1480), - [anon_sym_finally] = 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), - [anon_sym_DOT_DOT_DOT] = 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), + [992] = { + [ts_builtin_sym_end] = ACTIONS(1484), + [sym_identifier] = ACTIONS(1482), + [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_else] = 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_except_STAR] = ACTIONS(1484), + [anon_sym_finally] = 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), + [anon_sym_DOT_DOT_DOT] = 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_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_new] = ACTIONS(1478), - [anon_sym_ctypedef] = 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_string_start] = ACTIONS(1480), + [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_new] = ACTIONS(1482), + [anon_sym_ctypedef] = 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_string_start] = ACTIONS(1484), }, - [988] = { - [ts_builtin_sym_end] = ACTIONS(1488), - [sym_identifier] = ACTIONS(1486), - [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_else] = 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_except_STAR] = ACTIONS(1488), - [anon_sym_finally] = 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), - [anon_sym_DOT_DOT_DOT] = 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_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_new] = ACTIONS(1486), - [anon_sym_ctypedef] = 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_string_start] = ACTIONS(1488), + [993] = { + [sym_named_expression] = STATE(2631), + [sym__named_expression_lhs] = STATE(5572), + [sym_list_splat_pattern] = STATE(2589), + [sym_as_pattern] = STATE(2631), + [sym_expression] = STATE(4127), + [sym_primary_expression] = STATE(2107), + [sym_not_operator] = STATE(2631), + [sym_boolean_operator] = STATE(2631), + [sym_binary_operator] = STATE(2630), + [sym_unary_operator] = STATE(2630), + [sym_comparison_operator] = STATE(2631), + [sym_lambda] = STATE(2631), + [sym_attribute] = STATE(2630), + [sym_subscript] = STATE(2630), + [sym_slice] = STATE(5318), + [sym_ellipsis] = STATE(2630), + [sym_call] = STATE(2630), + [sym_list] = STATE(2630), + [sym_set] = STATE(2630), + [sym_tuple] = STATE(2630), + [sym_dictionary] = STATE(2630), + [sym_list_comprehension] = STATE(2630), + [sym_dictionary_comprehension] = STATE(2630), + [sym_set_comprehension] = STATE(2630), + [sym_generator_expression] = STATE(2630), + [sym_parenthesized_expression] = STATE(2630), + [sym_conditional_expression] = STATE(2631), + [sym_concatenated_string] = STATE(2630), + [sym_string] = STATE(2200), + [sym_none] = STATE(2630), + [sym_await] = STATE(2630), + [sym_new_expression] = STATE(2631), + [sym_sizeof_expression] = STATE(2630), + [sym_cast_expression] = STATE(2630), + [sym_identifier] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2461), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_print] = ACTIONS(2641), + [anon_sym_COLON] = ACTIONS(3113), + [anon_sym_match] = ACTIONS(2641), + [anon_sym_async] = ACTIONS(2641), + [anon_sym_exec] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2467), + [anon_sym_RBRACK] = ACTIONS(3137), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_not] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2469), + [anon_sym_TILDE] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_lambda] = ACTIONS(2651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2475), + [anon_sym_None] = ACTIONS(2477), + [sym_integer] = ACTIONS(2459), + [sym_float] = ACTIONS(2479), + [anon_sym_await] = ACTIONS(2653), + [anon_sym_api] = ACTIONS(2641), + [sym_true] = ACTIONS(2459), + [sym_false] = ACTIONS(2459), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2655), + [anon_sym_sizeof] = ACTIONS(2483), + [sym_string_start] = ACTIONS(2485), }, - [989] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5609), - [sym_list_splat_pattern] = STATE(2591), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(4053), - [sym_primary_expression] = STATE(2077), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2631), - [sym_unary_operator] = STATE(2631), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2631), - [sym_subscript] = STATE(2631), - [sym_slice] = STATE(5361), - [sym_ellipsis] = STATE(2631), - [sym_call] = STATE(2631), - [sym_list] = STATE(2631), - [sym_set] = STATE(2631), - [sym_tuple] = STATE(2631), - [sym_dictionary] = STATE(2631), - [sym_list_comprehension] = STATE(2631), - [sym_dictionary_comprehension] = STATE(2631), - [sym_set_comprehension] = STATE(2631), - [sym_generator_expression] = STATE(2631), - [sym_parenthesized_expression] = STATE(2631), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2631), - [sym_string] = STATE(2218), - [sym_none] = STATE(2631), - [sym_await] = STATE(2631), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2631), - [sym_cast_expression] = STATE(2631), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_print] = ACTIONS(2631), - [anon_sym_COLON] = ACTIONS(3109), - [anon_sym_match] = ACTIONS(2631), - [anon_sym_async] = ACTIONS(2631), - [anon_sym_exec] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_RBRACK] = ACTIONS(3149), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2639), - [anon_sym_lambda] = ACTIONS(2641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2643), - [anon_sym_api] = ACTIONS(2631), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2645), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), + [994] = { + [sym_named_expression] = STATE(2631), + [sym__named_expression_lhs] = STATE(5572), + [sym_list_splat_pattern] = STATE(2589), + [sym_as_pattern] = STATE(2631), + [sym_expression] = STATE(4127), + [sym_primary_expression] = STATE(2107), + [sym_not_operator] = STATE(2631), + [sym_boolean_operator] = STATE(2631), + [sym_binary_operator] = STATE(2630), + [sym_unary_operator] = STATE(2630), + [sym_comparison_operator] = STATE(2631), + [sym_lambda] = STATE(2631), + [sym_attribute] = STATE(2630), + [sym_subscript] = STATE(2630), + [sym_slice] = STATE(5318), + [sym_ellipsis] = STATE(2630), + [sym_call] = STATE(2630), + [sym_list] = STATE(2630), + [sym_set] = STATE(2630), + [sym_tuple] = STATE(2630), + [sym_dictionary] = STATE(2630), + [sym_list_comprehension] = STATE(2630), + [sym_dictionary_comprehension] = STATE(2630), + [sym_set_comprehension] = STATE(2630), + [sym_generator_expression] = STATE(2630), + [sym_parenthesized_expression] = STATE(2630), + [sym_conditional_expression] = STATE(2631), + [sym_concatenated_string] = STATE(2630), + [sym_string] = STATE(2200), + [sym_none] = STATE(2630), + [sym_await] = STATE(2630), + [sym_new_expression] = STATE(2631), + [sym_sizeof_expression] = STATE(2630), + [sym_cast_expression] = STATE(2630), + [sym_identifier] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2461), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_print] = ACTIONS(2641), + [anon_sym_COLON] = ACTIONS(3113), + [anon_sym_match] = ACTIONS(2641), + [anon_sym_async] = ACTIONS(2641), + [anon_sym_exec] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2467), + [anon_sym_RBRACK] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_not] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2469), + [anon_sym_TILDE] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_lambda] = ACTIONS(2651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2475), + [anon_sym_None] = ACTIONS(2477), + [sym_integer] = ACTIONS(2459), + [sym_float] = ACTIONS(2479), + [anon_sym_await] = ACTIONS(2653), + [anon_sym_api] = ACTIONS(2641), + [sym_true] = ACTIONS(2459), + [sym_false] = ACTIONS(2459), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2655), + [anon_sym_sizeof] = ACTIONS(2483), + [sym_string_start] = ACTIONS(2485), }, - [990] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5609), - [sym_list_splat_pattern] = STATE(2591), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(4053), - [sym_primary_expression] = STATE(2077), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2631), - [sym_unary_operator] = STATE(2631), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2631), - [sym_subscript] = STATE(2631), - [sym_slice] = STATE(5361), - [sym_ellipsis] = STATE(2631), - [sym_call] = STATE(2631), - [sym_list] = STATE(2631), - [sym_set] = STATE(2631), - [sym_tuple] = STATE(2631), - [sym_dictionary] = STATE(2631), - [sym_list_comprehension] = STATE(2631), - [sym_dictionary_comprehension] = STATE(2631), - [sym_set_comprehension] = STATE(2631), - [sym_generator_expression] = STATE(2631), - [sym_parenthesized_expression] = STATE(2631), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2631), - [sym_string] = STATE(2218), - [sym_none] = STATE(2631), - [sym_await] = STATE(2631), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2631), - [sym_cast_expression] = STATE(2631), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_print] = ACTIONS(2631), - [anon_sym_COLON] = ACTIONS(3109), - [anon_sym_match] = ACTIONS(2631), - [anon_sym_async] = ACTIONS(2631), - [anon_sym_exec] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_RBRACK] = ACTIONS(3151), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2639), - [anon_sym_lambda] = ACTIONS(2641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2643), - [anon_sym_api] = ACTIONS(2631), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2645), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), + [995] = { + [sym_identifier] = ACTIONS(3123), + [anon_sym_import] = ACTIONS(3123), + [anon_sym_cimport] = ACTIONS(3123), + [anon_sym_from] = ACTIONS(3123), + [anon_sym_LPAREN] = ACTIONS(3121), + [anon_sym_STAR] = ACTIONS(3121), + [anon_sym_print] = ACTIONS(3123), + [anon_sym_assert] = ACTIONS(3123), + [anon_sym_return] = ACTIONS(3123), + [anon_sym_del] = ACTIONS(3123), + [anon_sym_raise] = ACTIONS(3123), + [anon_sym_pass] = ACTIONS(3123), + [anon_sym_break] = ACTIONS(3123), + [anon_sym_continue] = ACTIONS(3123), + [anon_sym_if] = ACTIONS(3123), + [anon_sym_else] = ACTIONS(3123), + [anon_sym_match] = ACTIONS(3123), + [anon_sym_async] = ACTIONS(3123), + [anon_sym_for] = ACTIONS(3123), + [anon_sym_while] = ACTIONS(3123), + [anon_sym_try] = ACTIONS(3123), + [anon_sym_except] = ACTIONS(3123), + [anon_sym_finally] = ACTIONS(3123), + [anon_sym_with] = ACTIONS(3123), + [anon_sym_def] = ACTIONS(3123), + [anon_sym_global] = ACTIONS(3123), + [anon_sym_nonlocal] = ACTIONS(3123), + [anon_sym_exec] = ACTIONS(3123), + [anon_sym_type] = ACTIONS(3123), + [anon_sym_class] = ACTIONS(3123), + [anon_sym_LBRACK] = ACTIONS(3121), + [anon_sym_AT] = ACTIONS(3121), + [anon_sym_DASH] = ACTIONS(3121), + [anon_sym_LBRACE] = ACTIONS(3121), + [anon_sym_PLUS] = ACTIONS(3121), + [anon_sym_not] = ACTIONS(3123), + [anon_sym_AMP] = ACTIONS(3121), + [anon_sym_TILDE] = ACTIONS(3121), + [anon_sym_LT] = ACTIONS(3121), + [anon_sym_lambda] = ACTIONS(3123), + [anon_sym_yield] = ACTIONS(3123), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3121), + [anon_sym_None] = ACTIONS(3123), + [sym_integer] = ACTIONS(3123), + [sym_float] = ACTIONS(3121), + [anon_sym_await] = ACTIONS(3123), + [anon_sym_api] = ACTIONS(3123), + [sym_true] = ACTIONS(3123), + [sym_false] = ACTIONS(3123), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3123), + [anon_sym_include] = ACTIONS(3123), + [anon_sym_DEF] = ACTIONS(3123), + [anon_sym_cdef] = ACTIONS(3123), + [anon_sym_cpdef] = ACTIONS(3123), + [anon_sym_new] = ACTIONS(3123), + [anon_sym_ctypedef] = ACTIONS(3123), + [anon_sym_public] = ACTIONS(3123), + [anon_sym_packed] = ACTIONS(3123), + [anon_sym_inline] = ACTIONS(3123), + [anon_sym_readonly] = ACTIONS(3123), + [anon_sym_sizeof] = ACTIONS(3123), + [sym__dedent] = ACTIONS(3121), + [sym_string_start] = ACTIONS(3121), }, - [991] = { + [996] = { + [ts_builtin_sym_end] = ACTIONS(1484), [sym_identifier] = ACTIONS(1482), [anon_sym_import] = ACTIONS(1482), [anon_sym_cimport] = ACTIONS(1482), @@ -115383,144 +115880,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(1482), [anon_sym_readonly] = ACTIONS(1482), [anon_sym_sizeof] = ACTIONS(1482), - [sym__dedent] = ACTIONS(1484), [sym_string_start] = ACTIONS(1484), }, - [992] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5609), - [sym_list_splat_pattern] = STATE(2591), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(4053), - [sym_primary_expression] = STATE(2077), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2631), - [sym_unary_operator] = STATE(2631), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2631), - [sym_subscript] = STATE(2631), - [sym_slice] = STATE(5361), - [sym_ellipsis] = STATE(2631), - [sym_call] = STATE(2631), - [sym_list] = STATE(2631), - [sym_set] = STATE(2631), - [sym_tuple] = STATE(2631), - [sym_dictionary] = STATE(2631), - [sym_list_comprehension] = STATE(2631), - [sym_dictionary_comprehension] = STATE(2631), - [sym_set_comprehension] = STATE(2631), - [sym_generator_expression] = STATE(2631), - [sym_parenthesized_expression] = STATE(2631), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2631), - [sym_string] = STATE(2218), - [sym_none] = STATE(2631), - [sym_await] = STATE(2631), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2631), - [sym_cast_expression] = STATE(2631), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_print] = ACTIONS(2631), - [anon_sym_COLON] = ACTIONS(3109), - [anon_sym_match] = ACTIONS(2631), - [anon_sym_async] = ACTIONS(2631), - [anon_sym_exec] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_RBRACK] = ACTIONS(3153), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2639), - [anon_sym_lambda] = ACTIONS(2641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2643), - [anon_sym_api] = ACTIONS(2631), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2645), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), + [997] = { + [sym_named_expression] = STATE(2631), + [sym__named_expression_lhs] = STATE(5572), + [sym_list_splat_pattern] = STATE(2589), + [sym_as_pattern] = STATE(2631), + [sym_expression] = STATE(4127), + [sym_primary_expression] = STATE(2107), + [sym_not_operator] = STATE(2631), + [sym_boolean_operator] = STATE(2631), + [sym_binary_operator] = STATE(2630), + [sym_unary_operator] = STATE(2630), + [sym_comparison_operator] = STATE(2631), + [sym_lambda] = STATE(2631), + [sym_attribute] = STATE(2630), + [sym_subscript] = STATE(2630), + [sym_slice] = STATE(5318), + [sym_ellipsis] = STATE(2630), + [sym_call] = STATE(2630), + [sym_list] = STATE(2630), + [sym_set] = STATE(2630), + [sym_tuple] = STATE(2630), + [sym_dictionary] = STATE(2630), + [sym_list_comprehension] = STATE(2630), + [sym_dictionary_comprehension] = STATE(2630), + [sym_set_comprehension] = STATE(2630), + [sym_generator_expression] = STATE(2630), + [sym_parenthesized_expression] = STATE(2630), + [sym_conditional_expression] = STATE(2631), + [sym_concatenated_string] = STATE(2630), + [sym_string] = STATE(2200), + [sym_none] = STATE(2630), + [sym_await] = STATE(2630), + [sym_new_expression] = STATE(2631), + [sym_sizeof_expression] = STATE(2630), + [sym_cast_expression] = STATE(2630), + [sym_identifier] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2461), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_print] = ACTIONS(2641), + [anon_sym_COLON] = ACTIONS(3113), + [anon_sym_match] = ACTIONS(2641), + [anon_sym_async] = ACTIONS(2641), + [anon_sym_exec] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2467), + [anon_sym_RBRACK] = ACTIONS(3141), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_not] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2469), + [anon_sym_TILDE] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_lambda] = ACTIONS(2651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2475), + [anon_sym_None] = ACTIONS(2477), + [sym_integer] = ACTIONS(2459), + [sym_float] = ACTIONS(2479), + [anon_sym_await] = ACTIONS(2653), + [anon_sym_api] = ACTIONS(2641), + [sym_true] = ACTIONS(2459), + [sym_false] = ACTIONS(2459), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2655), + [anon_sym_sizeof] = ACTIONS(2483), + [sym_string_start] = ACTIONS(2485), }, - [993] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5609), - [sym_list_splat_pattern] = STATE(2591), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(4053), - [sym_primary_expression] = STATE(2077), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2631), - [sym_unary_operator] = STATE(2631), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2631), - [sym_subscript] = STATE(2631), - [sym_slice] = STATE(5361), - [sym_ellipsis] = STATE(2631), - [sym_call] = STATE(2631), - [sym_list] = STATE(2631), - [sym_set] = STATE(2631), - [sym_tuple] = STATE(2631), - [sym_dictionary] = STATE(2631), - [sym_list_comprehension] = STATE(2631), - [sym_dictionary_comprehension] = STATE(2631), - [sym_set_comprehension] = STATE(2631), - [sym_generator_expression] = STATE(2631), - [sym_parenthesized_expression] = STATE(2631), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2631), - [sym_string] = STATE(2218), - [sym_none] = STATE(2631), - [sym_await] = STATE(2631), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2631), - [sym_cast_expression] = STATE(2631), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_print] = ACTIONS(2631), - [anon_sym_COLON] = ACTIONS(3109), - [anon_sym_match] = ACTIONS(2631), - [anon_sym_async] = ACTIONS(2631), - [anon_sym_exec] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_RBRACK] = ACTIONS(3155), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2639), - [anon_sym_lambda] = ACTIONS(2641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2643), - [anon_sym_api] = ACTIONS(2631), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2645), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), + [998] = { + [sym_named_expression] = STATE(2631), + [sym__named_expression_lhs] = STATE(5572), + [sym_list_splat_pattern] = STATE(2589), + [sym_as_pattern] = STATE(2631), + [sym_expression] = STATE(4127), + [sym_primary_expression] = STATE(2107), + [sym_not_operator] = STATE(2631), + [sym_boolean_operator] = STATE(2631), + [sym_binary_operator] = STATE(2630), + [sym_unary_operator] = STATE(2630), + [sym_comparison_operator] = STATE(2631), + [sym_lambda] = STATE(2631), + [sym_attribute] = STATE(2630), + [sym_subscript] = STATE(2630), + [sym_slice] = STATE(5318), + [sym_ellipsis] = STATE(2630), + [sym_call] = STATE(2630), + [sym_list] = STATE(2630), + [sym_set] = STATE(2630), + [sym_tuple] = STATE(2630), + [sym_dictionary] = STATE(2630), + [sym_list_comprehension] = STATE(2630), + [sym_dictionary_comprehension] = STATE(2630), + [sym_set_comprehension] = STATE(2630), + [sym_generator_expression] = STATE(2630), + [sym_parenthesized_expression] = STATE(2630), + [sym_conditional_expression] = STATE(2631), + [sym_concatenated_string] = STATE(2630), + [sym_string] = STATE(2200), + [sym_none] = STATE(2630), + [sym_await] = STATE(2630), + [sym_new_expression] = STATE(2631), + [sym_sizeof_expression] = STATE(2630), + [sym_cast_expression] = STATE(2630), + [sym_identifier] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2461), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_print] = ACTIONS(2641), + [anon_sym_COLON] = ACTIONS(3113), + [anon_sym_match] = ACTIONS(2641), + [anon_sym_async] = ACTIONS(2641), + [anon_sym_exec] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2467), + [anon_sym_RBRACK] = ACTIONS(3143), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_not] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2469), + [anon_sym_TILDE] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_lambda] = ACTIONS(2651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2475), + [anon_sym_None] = ACTIONS(2477), + [sym_integer] = ACTIONS(2459), + [sym_float] = ACTIONS(2479), + [anon_sym_await] = ACTIONS(2653), + [anon_sym_api] = ACTIONS(2641), + [sym_true] = ACTIONS(2459), + [sym_false] = ACTIONS(2459), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2655), + [anon_sym_sizeof] = ACTIONS(2483), + [sym_string_start] = ACTIONS(2485), }, - [994] = { + [999] = { [sym_identifier] = ACTIONS(1478), [anon_sym_import] = ACTIONS(1478), [anon_sym_cimport] = ACTIONS(1478), @@ -115542,7 +116038,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(1478), [anon_sym_while] = ACTIONS(1478), [anon_sym_try] = ACTIONS(1478), - [anon_sym_except] = ACTIONS(1478), + [anon_sym_except_STAR] = ACTIONS(1480), [anon_sym_finally] = ACTIONS(1478), [anon_sym_with] = ACTIONS(1478), [anon_sym_def] = ACTIONS(1478), @@ -115587,7 +116083,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1480), [sym_string_start] = ACTIONS(1480), }, - [995] = { + [1000] = { + [sym_identifier] = ACTIONS(3145), + [anon_sym_import] = ACTIONS(3145), + [anon_sym_cimport] = ACTIONS(3145), + [anon_sym_from] = ACTIONS(3145), + [anon_sym_LPAREN] = ACTIONS(3147), + [anon_sym_STAR] = ACTIONS(3147), + [anon_sym_print] = ACTIONS(3145), + [anon_sym_assert] = ACTIONS(3145), + [anon_sym_return] = ACTIONS(3145), + [anon_sym_del] = ACTIONS(3145), + [anon_sym_raise] = ACTIONS(3145), + [anon_sym_pass] = ACTIONS(3145), + [anon_sym_break] = ACTIONS(3145), + [anon_sym_continue] = ACTIONS(3145), + [anon_sym_if] = ACTIONS(3145), + [anon_sym_else] = ACTIONS(3145), + [anon_sym_match] = ACTIONS(3145), + [anon_sym_async] = ACTIONS(3145), + [anon_sym_for] = ACTIONS(3145), + [anon_sym_while] = ACTIONS(3145), + [anon_sym_try] = ACTIONS(3145), + [anon_sym_except] = ACTIONS(3145), + [anon_sym_finally] = ACTIONS(3145), + [anon_sym_with] = ACTIONS(3145), + [anon_sym_def] = ACTIONS(3145), + [anon_sym_global] = ACTIONS(3145), + [anon_sym_nonlocal] = ACTIONS(3145), + [anon_sym_exec] = ACTIONS(3145), + [anon_sym_type] = ACTIONS(3145), + [anon_sym_class] = ACTIONS(3145), + [anon_sym_LBRACK] = ACTIONS(3147), + [anon_sym_AT] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(3147), + [anon_sym_LBRACE] = ACTIONS(3147), + [anon_sym_PLUS] = ACTIONS(3147), + [anon_sym_not] = ACTIONS(3145), + [anon_sym_AMP] = ACTIONS(3147), + [anon_sym_TILDE] = ACTIONS(3147), + [anon_sym_LT] = ACTIONS(3147), + [anon_sym_lambda] = ACTIONS(3145), + [anon_sym_yield] = ACTIONS(3145), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3147), + [anon_sym_None] = ACTIONS(3145), + [sym_integer] = ACTIONS(3145), + [sym_float] = ACTIONS(3147), + [anon_sym_await] = ACTIONS(3145), + [anon_sym_api] = ACTIONS(3145), + [sym_true] = ACTIONS(3145), + [sym_false] = ACTIONS(3145), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3145), + [anon_sym_include] = ACTIONS(3145), + [anon_sym_DEF] = ACTIONS(3145), + [anon_sym_cdef] = ACTIONS(3145), + [anon_sym_cpdef] = ACTIONS(3145), + [anon_sym_new] = ACTIONS(3145), + [anon_sym_ctypedef] = ACTIONS(3145), + [anon_sym_public] = ACTIONS(3145), + [anon_sym_packed] = ACTIONS(3145), + [anon_sym_inline] = ACTIONS(3145), + [anon_sym_readonly] = ACTIONS(3145), + [anon_sym_sizeof] = ACTIONS(3145), + [sym__dedent] = ACTIONS(3147), + [sym_string_start] = ACTIONS(3147), + }, + [1001] = { + [ts_builtin_sym_end] = ACTIONS(1496), [sym_identifier] = ACTIONS(1494), [anon_sym_import] = ACTIONS(1494), [anon_sym_cimport] = ACTIONS(1494), @@ -115609,7 +116173,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(1494), [anon_sym_while] = ACTIONS(1494), [anon_sym_try] = ACTIONS(1494), - [anon_sym_except] = ACTIONS(1494), + [anon_sym_except_STAR] = ACTIONS(1496), [anon_sym_finally] = ACTIONS(1494), [anon_sym_with] = ACTIONS(1494), [anon_sym_def] = ACTIONS(1494), @@ -115651,412 +116215,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(1494), [anon_sym_readonly] = ACTIONS(1494), [anon_sym_sizeof] = ACTIONS(1494), - [sym__dedent] = ACTIONS(1496), [sym_string_start] = ACTIONS(1496), }, - [996] = { - [sym_identifier] = ACTIONS(1486), - [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_else] = 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_except] = ACTIONS(1486), - [anon_sym_finally] = 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), - [anon_sym_DOT_DOT_DOT] = 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), + [1002] = { + [ts_builtin_sym_end] = ACTIONS(1480), + [sym_identifier] = ACTIONS(1478), + [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_else] = 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_except_STAR] = ACTIONS(1480), + [anon_sym_finally] = 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), + [anon_sym_DOT_DOT_DOT] = 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_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_new] = ACTIONS(1486), - [anon_sym_ctypedef] = 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(1478), + [anon_sym_include] = ACTIONS(1478), + [anon_sym_DEF] = ACTIONS(1478), + [anon_sym_cdef] = ACTIONS(1478), + [anon_sym_cpdef] = ACTIONS(1478), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_ctypedef] = 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_string_start] = ACTIONS(1480), }, - [997] = { - [sym_identifier] = ACTIONS(1490), - [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_else] = 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_except] = ACTIONS(1490), - [anon_sym_finally] = 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), - [anon_sym_DOT_DOT_DOT] = 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_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_new] = ACTIONS(1490), - [anon_sym_ctypedef] = 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), - }, - [998] = { - [sym_identifier] = ACTIONS(3157), - [anon_sym_import] = ACTIONS(3157), - [anon_sym_cimport] = ACTIONS(3157), - [anon_sym_from] = ACTIONS(3157), - [anon_sym_LPAREN] = ACTIONS(3159), - [anon_sym_STAR] = ACTIONS(3159), - [anon_sym_print] = ACTIONS(3157), - [anon_sym_assert] = ACTIONS(3157), - [anon_sym_return] = ACTIONS(3157), - [anon_sym_del] = ACTIONS(3157), - [anon_sym_raise] = ACTIONS(3157), - [anon_sym_pass] = ACTIONS(3157), - [anon_sym_break] = ACTIONS(3157), - [anon_sym_continue] = ACTIONS(3157), - [anon_sym_if] = ACTIONS(3157), - [anon_sym_else] = ACTIONS(3157), - [anon_sym_match] = ACTIONS(3157), - [anon_sym_async] = ACTIONS(3157), - [anon_sym_for] = ACTIONS(3157), - [anon_sym_while] = ACTIONS(3157), - [anon_sym_try] = ACTIONS(3157), - [anon_sym_except] = ACTIONS(3157), - [anon_sym_finally] = ACTIONS(3157), - [anon_sym_with] = ACTIONS(3157), - [anon_sym_def] = ACTIONS(3157), - [anon_sym_global] = ACTIONS(3157), - [anon_sym_nonlocal] = ACTIONS(3157), - [anon_sym_exec] = ACTIONS(3157), - [anon_sym_type] = ACTIONS(3157), - [anon_sym_class] = ACTIONS(3157), - [anon_sym_LBRACK] = ACTIONS(3159), - [anon_sym_AT] = ACTIONS(3159), - [anon_sym_DASH] = ACTIONS(3159), - [anon_sym_LBRACE] = ACTIONS(3159), - [anon_sym_PLUS] = ACTIONS(3159), - [anon_sym_not] = ACTIONS(3157), - [anon_sym_AMP] = ACTIONS(3159), - [anon_sym_TILDE] = ACTIONS(3159), - [anon_sym_LT] = ACTIONS(3159), - [anon_sym_lambda] = ACTIONS(3157), - [anon_sym_yield] = ACTIONS(3157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3159), - [anon_sym_None] = ACTIONS(3157), - [sym_integer] = ACTIONS(3157), - [sym_float] = ACTIONS(3159), - [anon_sym_await] = ACTIONS(3157), - [anon_sym_api] = ACTIONS(3157), - [sym_true] = ACTIONS(3157), - [sym_false] = ACTIONS(3157), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(3157), - [anon_sym_include] = ACTIONS(3157), - [anon_sym_DEF] = ACTIONS(3157), - [anon_sym_cdef] = ACTIONS(3157), - [anon_sym_cpdef] = ACTIONS(3157), - [anon_sym_new] = ACTIONS(3157), - [anon_sym_ctypedef] = ACTIONS(3157), - [anon_sym_public] = ACTIONS(3157), - [anon_sym_packed] = ACTIONS(3157), - [anon_sym_inline] = ACTIONS(3157), - [anon_sym_readonly] = ACTIONS(3157), - [anon_sym_sizeof] = ACTIONS(3157), - [sym__dedent] = ACTIONS(3159), - [sym_string_start] = ACTIONS(3159), - }, - [999] = { - [sym_identifier] = ACTIONS(3161), - [anon_sym_import] = ACTIONS(3161), - [anon_sym_cimport] = ACTIONS(3161), - [anon_sym_from] = ACTIONS(3161), - [anon_sym_LPAREN] = ACTIONS(3163), - [anon_sym_STAR] = ACTIONS(3163), - [anon_sym_print] = ACTIONS(3161), - [anon_sym_assert] = ACTIONS(3161), - [anon_sym_return] = ACTIONS(3161), - [anon_sym_del] = ACTIONS(3161), - [anon_sym_raise] = ACTIONS(3161), - [anon_sym_pass] = ACTIONS(3161), - [anon_sym_break] = ACTIONS(3161), - [anon_sym_continue] = ACTIONS(3161), - [anon_sym_if] = ACTIONS(3161), - [anon_sym_else] = ACTIONS(3161), - [anon_sym_match] = ACTIONS(3161), - [anon_sym_async] = ACTIONS(3161), - [anon_sym_for] = ACTIONS(3161), - [anon_sym_while] = ACTIONS(3161), - [anon_sym_try] = ACTIONS(3161), - [anon_sym_except_STAR] = ACTIONS(3163), - [anon_sym_finally] = ACTIONS(3161), - [anon_sym_with] = ACTIONS(3161), - [anon_sym_def] = ACTIONS(3161), - [anon_sym_global] = ACTIONS(3161), - [anon_sym_nonlocal] = ACTIONS(3161), - [anon_sym_exec] = ACTIONS(3161), - [anon_sym_type] = ACTIONS(3161), - [anon_sym_class] = ACTIONS(3161), - [anon_sym_LBRACK] = ACTIONS(3163), - [anon_sym_AT] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(3163), - [anon_sym_LBRACE] = ACTIONS(3163), - [anon_sym_PLUS] = ACTIONS(3163), - [anon_sym_not] = ACTIONS(3161), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym_TILDE] = ACTIONS(3163), - [anon_sym_LT] = ACTIONS(3163), - [anon_sym_lambda] = ACTIONS(3161), - [anon_sym_yield] = ACTIONS(3161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3163), - [anon_sym_None] = ACTIONS(3161), - [sym_integer] = ACTIONS(3161), - [sym_float] = ACTIONS(3163), - [anon_sym_await] = ACTIONS(3161), - [anon_sym_api] = ACTIONS(3161), - [sym_true] = ACTIONS(3161), - [sym_false] = ACTIONS(3161), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(3161), - [anon_sym_include] = ACTIONS(3161), - [anon_sym_DEF] = ACTIONS(3161), - [anon_sym_cdef] = ACTIONS(3161), - [anon_sym_cpdef] = ACTIONS(3161), - [anon_sym_new] = ACTIONS(3161), - [anon_sym_ctypedef] = ACTIONS(3161), - [anon_sym_public] = ACTIONS(3161), - [anon_sym_packed] = ACTIONS(3161), - [anon_sym_inline] = ACTIONS(3161), - [anon_sym_readonly] = ACTIONS(3161), - [anon_sym_sizeof] = ACTIONS(3161), - [sym__dedent] = ACTIONS(3163), - [sym_string_start] = ACTIONS(3163), - }, - [1000] = { - [sym_identifier] = ACTIONS(1482), - [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_else] = 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_except_STAR] = ACTIONS(1484), - [anon_sym_finally] = 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), - [anon_sym_DOT_DOT_DOT] = 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_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_new] = ACTIONS(1482), - [anon_sym_ctypedef] = 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), - }, - [1001] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5609), - [sym_list_splat_pattern] = STATE(2591), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(4053), - [sym_primary_expression] = STATE(2077), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2631), - [sym_unary_operator] = STATE(2631), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2631), - [sym_subscript] = STATE(2631), - [sym_slice] = STATE(5361), - [sym_ellipsis] = STATE(2631), - [sym_call] = STATE(2631), - [sym_list] = STATE(2631), - [sym_set] = STATE(2631), - [sym_tuple] = STATE(2631), - [sym_dictionary] = STATE(2631), - [sym_list_comprehension] = STATE(2631), - [sym_dictionary_comprehension] = STATE(2631), - [sym_set_comprehension] = STATE(2631), - [sym_generator_expression] = STATE(2631), - [sym_parenthesized_expression] = STATE(2631), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2631), - [sym_string] = STATE(2218), - [sym_none] = STATE(2631), - [sym_await] = STATE(2631), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2631), - [sym_cast_expression] = STATE(2631), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_print] = ACTIONS(2631), - [anon_sym_COLON] = ACTIONS(3109), - [anon_sym_match] = ACTIONS(2631), - [anon_sym_async] = ACTIONS(2631), - [anon_sym_exec] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_RBRACK] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2639), - [anon_sym_lambda] = ACTIONS(2641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2643), - [anon_sym_api] = ACTIONS(2631), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2645), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), - }, - [1002] = { + [1003] = { [sym_identifier] = ACTIONS(1478), [anon_sym_import] = ACTIONS(1478), [anon_sym_cimport] = ACTIONS(1478), @@ -116078,7 +116306,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(1478), [anon_sym_while] = ACTIONS(1478), [anon_sym_try] = ACTIONS(1478), - [anon_sym_except_STAR] = ACTIONS(1480), + [anon_sym_except] = ACTIONS(1478), [anon_sym_finally] = ACTIONS(1478), [anon_sym_with] = ACTIONS(1478), [anon_sym_def] = ACTIONS(1478), @@ -116123,7 +116351,209 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1480), [sym_string_start] = ACTIONS(1480), }, - [1003] = { + [1004] = { + [sym_named_expression] = STATE(2631), + [sym__named_expression_lhs] = STATE(5572), + [sym_list_splat_pattern] = STATE(2589), + [sym_as_pattern] = STATE(2631), + [sym_expression] = STATE(4121), + [sym_primary_expression] = STATE(2107), + [sym_not_operator] = STATE(2631), + [sym_boolean_operator] = STATE(2631), + [sym_binary_operator] = STATE(2630), + [sym_unary_operator] = STATE(2630), + [sym_comparison_operator] = STATE(2631), + [sym_lambda] = STATE(2631), + [sym_attribute] = STATE(2630), + [sym_subscript] = STATE(2630), + [sym_ellipsis] = STATE(2630), + [sym_call] = STATE(2630), + [sym_list] = STATE(2630), + [sym_set] = STATE(2630), + [sym_tuple] = STATE(2630), + [sym_dictionary] = STATE(2630), + [sym_list_comprehension] = STATE(2630), + [sym_dictionary_comprehension] = STATE(2630), + [sym_set_comprehension] = STATE(2630), + [sym_generator_expression] = STATE(2630), + [sym_parenthesized_expression] = STATE(2630), + [sym_conditional_expression] = STATE(2631), + [sym_concatenated_string] = STATE(2630), + [sym_string] = STATE(2200), + [sym_none] = STATE(2630), + [sym_await] = STATE(2630), + [sym_new_expression] = STATE(2631), + [sym_sizeof_expression] = STATE(2630), + [sym_cast_expression] = STATE(2630), + [sym_identifier] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2461), + [anon_sym_COMMA] = ACTIONS(3149), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_print] = ACTIONS(2641), + [anon_sym_COLON] = ACTIONS(3151), + [anon_sym_match] = ACTIONS(2641), + [anon_sym_async] = ACTIONS(2641), + [anon_sym_exec] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2467), + [anon_sym_RBRACK] = ACTIONS(3149), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_not] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2469), + [anon_sym_TILDE] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_lambda] = ACTIONS(2651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2475), + [anon_sym_None] = ACTIONS(2477), + [sym_integer] = ACTIONS(2459), + [sym_float] = ACTIONS(2479), + [anon_sym_await] = ACTIONS(2653), + [anon_sym_api] = ACTIONS(2641), + [sym_true] = ACTIONS(2459), + [sym_false] = ACTIONS(2459), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2655), + [anon_sym_sizeof] = ACTIONS(2483), + [sym_string_start] = ACTIONS(2485), + }, + [1005] = { + [sym_named_expression] = STATE(2631), + [sym__named_expression_lhs] = STATE(5572), + [sym_list_splat_pattern] = STATE(2589), + [sym_as_pattern] = STATE(2631), + [sym_expression] = STATE(4127), + [sym_primary_expression] = STATE(2107), + [sym_not_operator] = STATE(2631), + [sym_boolean_operator] = STATE(2631), + [sym_binary_operator] = STATE(2630), + [sym_unary_operator] = STATE(2630), + [sym_comparison_operator] = STATE(2631), + [sym_lambda] = STATE(2631), + [sym_attribute] = STATE(2630), + [sym_subscript] = STATE(2630), + [sym_slice] = STATE(5318), + [sym_ellipsis] = STATE(2630), + [sym_call] = STATE(2630), + [sym_list] = STATE(2630), + [sym_set] = STATE(2630), + [sym_tuple] = STATE(2630), + [sym_dictionary] = STATE(2630), + [sym_list_comprehension] = STATE(2630), + [sym_dictionary_comprehension] = STATE(2630), + [sym_set_comprehension] = STATE(2630), + [sym_generator_expression] = STATE(2630), + [sym_parenthesized_expression] = STATE(2630), + [sym_conditional_expression] = STATE(2631), + [sym_concatenated_string] = STATE(2630), + [sym_string] = STATE(2200), + [sym_none] = STATE(2630), + [sym_await] = STATE(2630), + [sym_new_expression] = STATE(2631), + [sym_sizeof_expression] = STATE(2630), + [sym_cast_expression] = STATE(2630), + [sym_identifier] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2461), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_print] = ACTIONS(2641), + [anon_sym_COLON] = ACTIONS(3113), + [anon_sym_match] = ACTIONS(2641), + [anon_sym_async] = ACTIONS(2641), + [anon_sym_exec] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2467), + [anon_sym_RBRACK] = ACTIONS(3153), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_not] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2469), + [anon_sym_TILDE] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_lambda] = ACTIONS(2651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2475), + [anon_sym_None] = ACTIONS(2477), + [sym_integer] = ACTIONS(2459), + [sym_float] = ACTIONS(2479), + [anon_sym_await] = ACTIONS(2653), + [anon_sym_api] = ACTIONS(2641), + [sym_true] = ACTIONS(2459), + [sym_false] = ACTIONS(2459), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2655), + [anon_sym_sizeof] = ACTIONS(2483), + [sym_string_start] = ACTIONS(2485), + }, + [1006] = { + [sym_identifier] = ACTIONS(3155), + [anon_sym_import] = ACTIONS(3155), + [anon_sym_cimport] = ACTIONS(3155), + [anon_sym_from] = ACTIONS(3155), + [anon_sym_LPAREN] = ACTIONS(3157), + [anon_sym_STAR] = ACTIONS(3157), + [anon_sym_print] = ACTIONS(3155), + [anon_sym_assert] = ACTIONS(3155), + [anon_sym_return] = ACTIONS(3155), + [anon_sym_del] = ACTIONS(3155), + [anon_sym_raise] = ACTIONS(3155), + [anon_sym_pass] = ACTIONS(3155), + [anon_sym_break] = ACTIONS(3155), + [anon_sym_continue] = ACTIONS(3155), + [anon_sym_if] = ACTIONS(3155), + [anon_sym_else] = ACTIONS(3155), + [anon_sym_match] = ACTIONS(3155), + [anon_sym_async] = ACTIONS(3155), + [anon_sym_for] = ACTIONS(3155), + [anon_sym_while] = ACTIONS(3155), + [anon_sym_try] = ACTIONS(3155), + [anon_sym_except] = ACTIONS(3155), + [anon_sym_finally] = ACTIONS(3155), + [anon_sym_with] = ACTIONS(3155), + [anon_sym_def] = ACTIONS(3155), + [anon_sym_global] = ACTIONS(3155), + [anon_sym_nonlocal] = ACTIONS(3155), + [anon_sym_exec] = ACTIONS(3155), + [anon_sym_type] = ACTIONS(3155), + [anon_sym_class] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3157), + [anon_sym_AT] = ACTIONS(3157), + [anon_sym_DASH] = ACTIONS(3157), + [anon_sym_LBRACE] = ACTIONS(3157), + [anon_sym_PLUS] = ACTIONS(3157), + [anon_sym_not] = ACTIONS(3155), + [anon_sym_AMP] = ACTIONS(3157), + [anon_sym_TILDE] = ACTIONS(3157), + [anon_sym_LT] = ACTIONS(3157), + [anon_sym_lambda] = ACTIONS(3155), + [anon_sym_yield] = ACTIONS(3155), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3157), + [anon_sym_None] = ACTIONS(3155), + [sym_integer] = ACTIONS(3155), + [sym_float] = ACTIONS(3157), + [anon_sym_await] = ACTIONS(3155), + [anon_sym_api] = ACTIONS(3155), + [sym_true] = ACTIONS(3155), + [sym_false] = ACTIONS(3155), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3155), + [anon_sym_include] = ACTIONS(3155), + [anon_sym_DEF] = ACTIONS(3155), + [anon_sym_cdef] = ACTIONS(3155), + [anon_sym_cpdef] = ACTIONS(3155), + [anon_sym_new] = ACTIONS(3155), + [anon_sym_ctypedef] = ACTIONS(3155), + [anon_sym_public] = ACTIONS(3155), + [anon_sym_packed] = ACTIONS(3155), + [anon_sym_inline] = ACTIONS(3155), + [anon_sym_readonly] = ACTIONS(3155), + [anon_sym_sizeof] = ACTIONS(3155), + [sym__dedent] = ACTIONS(3157), + [sym_string_start] = ACTIONS(3157), + }, + [1007] = { + [ts_builtin_sym_end] = ACTIONS(1496), [sym_identifier] = ACTIONS(1494), [anon_sym_import] = ACTIONS(1494), [anon_sym_cimport] = ACTIONS(1494), @@ -116145,7 +116575,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(1494), [anon_sym_while] = ACTIONS(1494), [anon_sym_try] = ACTIONS(1494), - [anon_sym_except_STAR] = ACTIONS(1496), + [anon_sym_except] = ACTIONS(1494), [anon_sym_finally] = ACTIONS(1494), [anon_sym_with] = ACTIONS(1494), [anon_sym_def] = ACTIONS(1494), @@ -116187,144 +116617,277 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(1494), [anon_sym_readonly] = ACTIONS(1494), [anon_sym_sizeof] = ACTIONS(1494), - [sym__dedent] = ACTIONS(1496), [sym_string_start] = ACTIONS(1496), }, - [1004] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5609), - [sym_list_splat_pattern] = STATE(2591), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(4053), - [sym_primary_expression] = STATE(2077), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2631), - [sym_unary_operator] = STATE(2631), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2631), - [sym_subscript] = STATE(2631), - [sym_slice] = STATE(5361), - [sym_ellipsis] = STATE(2631), - [sym_call] = STATE(2631), - [sym_list] = STATE(2631), - [sym_set] = STATE(2631), - [sym_tuple] = STATE(2631), - [sym_dictionary] = STATE(2631), - [sym_list_comprehension] = STATE(2631), - [sym_dictionary_comprehension] = STATE(2631), - [sym_set_comprehension] = STATE(2631), - [sym_generator_expression] = STATE(2631), - [sym_parenthesized_expression] = STATE(2631), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2631), - [sym_string] = STATE(2218), - [sym_none] = STATE(2631), - [sym_await] = STATE(2631), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2631), - [sym_cast_expression] = STATE(2631), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_print] = ACTIONS(2631), - [anon_sym_COLON] = ACTIONS(3109), - [anon_sym_match] = ACTIONS(2631), - [anon_sym_async] = ACTIONS(2631), - [anon_sym_exec] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_RBRACK] = ACTIONS(3167), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2639), - [anon_sym_lambda] = ACTIONS(2641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2643), - [anon_sym_api] = ACTIONS(2631), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2645), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), + [1008] = { + [sym_identifier] = ACTIONS(3159), + [anon_sym_import] = ACTIONS(3159), + [anon_sym_cimport] = ACTIONS(3159), + [anon_sym_from] = ACTIONS(3159), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_STAR] = ACTIONS(3161), + [anon_sym_print] = ACTIONS(3159), + [anon_sym_assert] = ACTIONS(3159), + [anon_sym_return] = ACTIONS(3159), + [anon_sym_del] = ACTIONS(3159), + [anon_sym_raise] = ACTIONS(3159), + [anon_sym_pass] = ACTIONS(3159), + [anon_sym_break] = ACTIONS(3159), + [anon_sym_continue] = ACTIONS(3159), + [anon_sym_if] = ACTIONS(3159), + [anon_sym_else] = ACTIONS(3159), + [anon_sym_match] = ACTIONS(3159), + [anon_sym_async] = ACTIONS(3159), + [anon_sym_for] = ACTIONS(3159), + [anon_sym_while] = ACTIONS(3159), + [anon_sym_try] = ACTIONS(3159), + [anon_sym_except_STAR] = ACTIONS(3161), + [anon_sym_finally] = ACTIONS(3159), + [anon_sym_with] = ACTIONS(3159), + [anon_sym_def] = ACTIONS(3159), + [anon_sym_global] = ACTIONS(3159), + [anon_sym_nonlocal] = ACTIONS(3159), + [anon_sym_exec] = ACTIONS(3159), + [anon_sym_type] = ACTIONS(3159), + [anon_sym_class] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(3161), + [anon_sym_AT] = ACTIONS(3161), + [anon_sym_DASH] = ACTIONS(3161), + [anon_sym_LBRACE] = ACTIONS(3161), + [anon_sym_PLUS] = ACTIONS(3161), + [anon_sym_not] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3161), + [anon_sym_TILDE] = ACTIONS(3161), + [anon_sym_LT] = ACTIONS(3161), + [anon_sym_lambda] = ACTIONS(3159), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3161), + [anon_sym_None] = ACTIONS(3159), + [sym_integer] = ACTIONS(3159), + [sym_float] = ACTIONS(3161), + [anon_sym_await] = ACTIONS(3159), + [anon_sym_api] = ACTIONS(3159), + [sym_true] = ACTIONS(3159), + [sym_false] = ACTIONS(3159), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3159), + [anon_sym_include] = ACTIONS(3159), + [anon_sym_DEF] = ACTIONS(3159), + [anon_sym_cdef] = ACTIONS(3159), + [anon_sym_cpdef] = ACTIONS(3159), + [anon_sym_new] = ACTIONS(3159), + [anon_sym_ctypedef] = ACTIONS(3159), + [anon_sym_public] = ACTIONS(3159), + [anon_sym_packed] = ACTIONS(3159), + [anon_sym_inline] = ACTIONS(3159), + [anon_sym_readonly] = ACTIONS(3159), + [anon_sym_sizeof] = ACTIONS(3159), + [sym__dedent] = ACTIONS(3161), + [sym_string_start] = ACTIONS(3161), }, - [1005] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5609), - [sym_list_splat_pattern] = STATE(2591), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(4053), - [sym_primary_expression] = STATE(2077), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2631), - [sym_unary_operator] = STATE(2631), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2631), - [sym_subscript] = STATE(2631), - [sym_slice] = STATE(5361), - [sym_ellipsis] = STATE(2631), - [sym_call] = STATE(2631), - [sym_list] = STATE(2631), - [sym_set] = STATE(2631), - [sym_tuple] = STATE(2631), - [sym_dictionary] = STATE(2631), - [sym_list_comprehension] = STATE(2631), - [sym_dictionary_comprehension] = STATE(2631), - [sym_set_comprehension] = STATE(2631), - [sym_generator_expression] = STATE(2631), - [sym_parenthesized_expression] = STATE(2631), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2631), - [sym_string] = STATE(2218), - [sym_none] = STATE(2631), - [sym_await] = STATE(2631), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2631), - [sym_cast_expression] = STATE(2631), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_print] = ACTIONS(2631), - [anon_sym_COLON] = ACTIONS(3109), - [anon_sym_match] = ACTIONS(2631), - [anon_sym_async] = ACTIONS(2631), - [anon_sym_exec] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_RBRACK] = ACTIONS(3169), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2639), - [anon_sym_lambda] = ACTIONS(2641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2643), - [anon_sym_api] = ACTIONS(2631), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2645), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), + [1009] = { + [sym_identifier] = ACTIONS(1490), + [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_else] = 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_except] = ACTIONS(1490), + [anon_sym_finally] = 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), + [anon_sym_DOT_DOT_DOT] = 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_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_new] = ACTIONS(1490), + [anon_sym_ctypedef] = 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), }, - [1006] = { + [1010] = { + [sym_named_expression] = STATE(2631), + [sym__named_expression_lhs] = STATE(5572), + [sym_list_splat_pattern] = STATE(2589), + [sym_as_pattern] = STATE(2631), + [sym_expression] = STATE(4127), + [sym_primary_expression] = STATE(2107), + [sym_not_operator] = STATE(2631), + [sym_boolean_operator] = STATE(2631), + [sym_binary_operator] = STATE(2630), + [sym_unary_operator] = STATE(2630), + [sym_comparison_operator] = STATE(2631), + [sym_lambda] = STATE(2631), + [sym_attribute] = STATE(2630), + [sym_subscript] = STATE(2630), + [sym_slice] = STATE(5318), + [sym_ellipsis] = STATE(2630), + [sym_call] = STATE(2630), + [sym_list] = STATE(2630), + [sym_set] = STATE(2630), + [sym_tuple] = STATE(2630), + [sym_dictionary] = STATE(2630), + [sym_list_comprehension] = STATE(2630), + [sym_dictionary_comprehension] = STATE(2630), + [sym_set_comprehension] = STATE(2630), + [sym_generator_expression] = STATE(2630), + [sym_parenthesized_expression] = STATE(2630), + [sym_conditional_expression] = STATE(2631), + [sym_concatenated_string] = STATE(2630), + [sym_string] = STATE(2200), + [sym_none] = STATE(2630), + [sym_await] = STATE(2630), + [sym_new_expression] = STATE(2631), + [sym_sizeof_expression] = STATE(2630), + [sym_cast_expression] = STATE(2630), + [sym_identifier] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2461), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_print] = ACTIONS(2641), + [anon_sym_COLON] = ACTIONS(3113), + [anon_sym_match] = ACTIONS(2641), + [anon_sym_async] = ACTIONS(2641), + [anon_sym_exec] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2467), + [anon_sym_RBRACK] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_not] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2469), + [anon_sym_TILDE] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_lambda] = ACTIONS(2651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2475), + [anon_sym_None] = ACTIONS(2477), + [sym_integer] = ACTIONS(2459), + [sym_float] = ACTIONS(2479), + [anon_sym_await] = ACTIONS(2653), + [anon_sym_api] = ACTIONS(2641), + [sym_true] = ACTIONS(2459), + [sym_false] = ACTIONS(2459), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2655), + [anon_sym_sizeof] = ACTIONS(2483), + [sym_string_start] = ACTIONS(2485), + }, + [1011] = { + [sym_named_expression] = STATE(2631), + [sym__named_expression_lhs] = STATE(5572), + [sym_list_splat_pattern] = STATE(2589), + [sym_as_pattern] = STATE(2631), + [sym_expression] = STATE(4127), + [sym_primary_expression] = STATE(2107), + [sym_not_operator] = STATE(2631), + [sym_boolean_operator] = STATE(2631), + [sym_binary_operator] = STATE(2630), + [sym_unary_operator] = STATE(2630), + [sym_comparison_operator] = STATE(2631), + [sym_lambda] = STATE(2631), + [sym_attribute] = STATE(2630), + [sym_subscript] = STATE(2630), + [sym_slice] = STATE(5318), + [sym_ellipsis] = STATE(2630), + [sym_call] = STATE(2630), + [sym_list] = STATE(2630), + [sym_set] = STATE(2630), + [sym_tuple] = STATE(2630), + [sym_dictionary] = STATE(2630), + [sym_list_comprehension] = STATE(2630), + [sym_dictionary_comprehension] = STATE(2630), + [sym_set_comprehension] = STATE(2630), + [sym_generator_expression] = STATE(2630), + [sym_parenthesized_expression] = STATE(2630), + [sym_conditional_expression] = STATE(2631), + [sym_concatenated_string] = STATE(2630), + [sym_string] = STATE(2200), + [sym_none] = STATE(2630), + [sym_await] = STATE(2630), + [sym_new_expression] = STATE(2631), + [sym_sizeof_expression] = STATE(2630), + [sym_cast_expression] = STATE(2630), + [sym_identifier] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2461), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_print] = ACTIONS(2641), + [anon_sym_COLON] = ACTIONS(3113), + [anon_sym_match] = ACTIONS(2641), + [anon_sym_async] = ACTIONS(2641), + [anon_sym_exec] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2467), + [anon_sym_RBRACK] = ACTIONS(3165), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_not] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2469), + [anon_sym_TILDE] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_lambda] = ACTIONS(2651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2475), + [anon_sym_None] = ACTIONS(2477), + [sym_integer] = ACTIONS(2459), + [sym_float] = ACTIONS(2479), + [anon_sym_await] = ACTIONS(2653), + [anon_sym_api] = ACTIONS(2641), + [sym_true] = ACTIONS(2459), + [sym_false] = ACTIONS(2459), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2655), + [anon_sym_sizeof] = ACTIONS(2483), + [sym_string_start] = ACTIONS(2485), + }, + [1012] = { [sym_identifier] = ACTIONS(1486), [anon_sym_import] = ACTIONS(1486), [anon_sym_cimport] = ACTIONS(1486), @@ -116346,7 +116909,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(1486), [anon_sym_while] = ACTIONS(1486), [anon_sym_try] = ACTIONS(1486), - [anon_sym_except_STAR] = ACTIONS(1488), + [anon_sym_except] = ACTIONS(1486), [anon_sym_finally] = ACTIONS(1486), [anon_sym_with] = ACTIONS(1486), [anon_sym_def] = ACTIONS(1486), @@ -116391,7 +116954,1013 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1488), [sym_string_start] = ACTIONS(1488), }, - [1007] = { + [1013] = { + [sym_identifier] = ACTIONS(3167), + [anon_sym_import] = ACTIONS(3167), + [anon_sym_cimport] = ACTIONS(3167), + [anon_sym_from] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(3169), + [anon_sym_STAR] = ACTIONS(3169), + [anon_sym_print] = ACTIONS(3167), + [anon_sym_assert] = ACTIONS(3167), + [anon_sym_return] = ACTIONS(3167), + [anon_sym_del] = ACTIONS(3167), + [anon_sym_raise] = ACTIONS(3167), + [anon_sym_pass] = ACTIONS(3167), + [anon_sym_break] = ACTIONS(3167), + [anon_sym_continue] = ACTIONS(3167), + [anon_sym_if] = ACTIONS(3167), + [anon_sym_else] = ACTIONS(3167), + [anon_sym_match] = ACTIONS(3167), + [anon_sym_async] = ACTIONS(3167), + [anon_sym_for] = ACTIONS(3167), + [anon_sym_while] = ACTIONS(3167), + [anon_sym_try] = ACTIONS(3167), + [anon_sym_except] = ACTIONS(3167), + [anon_sym_finally] = ACTIONS(3167), + [anon_sym_with] = ACTIONS(3167), + [anon_sym_def] = ACTIONS(3167), + [anon_sym_global] = ACTIONS(3167), + [anon_sym_nonlocal] = ACTIONS(3167), + [anon_sym_exec] = ACTIONS(3167), + [anon_sym_type] = ACTIONS(3167), + [anon_sym_class] = ACTIONS(3167), + [anon_sym_LBRACK] = ACTIONS(3169), + [anon_sym_AT] = ACTIONS(3169), + [anon_sym_DASH] = ACTIONS(3169), + [anon_sym_LBRACE] = ACTIONS(3169), + [anon_sym_PLUS] = ACTIONS(3169), + [anon_sym_not] = ACTIONS(3167), + [anon_sym_AMP] = ACTIONS(3169), + [anon_sym_TILDE] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(3169), + [anon_sym_lambda] = ACTIONS(3167), + [anon_sym_yield] = ACTIONS(3167), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3169), + [anon_sym_None] = ACTIONS(3167), + [sym_integer] = ACTIONS(3167), + [sym_float] = ACTIONS(3169), + [anon_sym_await] = ACTIONS(3167), + [anon_sym_api] = ACTIONS(3167), + [sym_true] = ACTIONS(3167), + [sym_false] = ACTIONS(3167), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3167), + [anon_sym_include] = ACTIONS(3167), + [anon_sym_DEF] = ACTIONS(3167), + [anon_sym_cdef] = ACTIONS(3167), + [anon_sym_cpdef] = ACTIONS(3167), + [anon_sym_new] = ACTIONS(3167), + [anon_sym_ctypedef] = ACTIONS(3167), + [anon_sym_public] = ACTIONS(3167), + [anon_sym_packed] = ACTIONS(3167), + [anon_sym_inline] = ACTIONS(3167), + [anon_sym_readonly] = ACTIONS(3167), + [anon_sym_sizeof] = ACTIONS(3167), + [sym__dedent] = ACTIONS(3169), + [sym_string_start] = ACTIONS(3169), + }, + [1014] = { + [sym_named_expression] = STATE(2631), + [sym__named_expression_lhs] = STATE(5572), + [sym_list_splat_pattern] = STATE(2589), + [sym_as_pattern] = STATE(2631), + [sym_expression] = STATE(4127), + [sym_primary_expression] = STATE(2107), + [sym_not_operator] = STATE(2631), + [sym_boolean_operator] = STATE(2631), + [sym_binary_operator] = STATE(2630), + [sym_unary_operator] = STATE(2630), + [sym_comparison_operator] = STATE(2631), + [sym_lambda] = STATE(2631), + [sym_attribute] = STATE(2630), + [sym_subscript] = STATE(2630), + [sym_slice] = STATE(5318), + [sym_ellipsis] = STATE(2630), + [sym_call] = STATE(2630), + [sym_list] = STATE(2630), + [sym_set] = STATE(2630), + [sym_tuple] = STATE(2630), + [sym_dictionary] = STATE(2630), + [sym_list_comprehension] = STATE(2630), + [sym_dictionary_comprehension] = STATE(2630), + [sym_set_comprehension] = STATE(2630), + [sym_generator_expression] = STATE(2630), + [sym_parenthesized_expression] = STATE(2630), + [sym_conditional_expression] = STATE(2631), + [sym_concatenated_string] = STATE(2630), + [sym_string] = STATE(2200), + [sym_none] = STATE(2630), + [sym_await] = STATE(2630), + [sym_new_expression] = STATE(2631), + [sym_sizeof_expression] = STATE(2630), + [sym_cast_expression] = STATE(2630), + [sym_identifier] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2461), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_print] = ACTIONS(2641), + [anon_sym_COLON] = ACTIONS(3113), + [anon_sym_match] = ACTIONS(2641), + [anon_sym_async] = ACTIONS(2641), + [anon_sym_exec] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2467), + [anon_sym_RBRACK] = ACTIONS(3171), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_not] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2469), + [anon_sym_TILDE] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_lambda] = ACTIONS(2651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2475), + [anon_sym_None] = ACTIONS(2477), + [sym_integer] = ACTIONS(2459), + [sym_float] = ACTIONS(2479), + [anon_sym_await] = ACTIONS(2653), + [anon_sym_api] = ACTIONS(2641), + [sym_true] = ACTIONS(2459), + [sym_false] = ACTIONS(2459), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2655), + [anon_sym_sizeof] = ACTIONS(2483), + [sym_string_start] = ACTIONS(2485), + }, + [1015] = { + [sym_named_expression] = STATE(2631), + [sym__named_expression_lhs] = STATE(5572), + [sym_list_splat_pattern] = STATE(2589), + [sym_as_pattern] = STATE(2631), + [sym_expression] = STATE(4127), + [sym_primary_expression] = STATE(2107), + [sym_not_operator] = STATE(2631), + [sym_boolean_operator] = STATE(2631), + [sym_binary_operator] = STATE(2630), + [sym_unary_operator] = STATE(2630), + [sym_comparison_operator] = STATE(2631), + [sym_lambda] = STATE(2631), + [sym_attribute] = STATE(2630), + [sym_subscript] = STATE(2630), + [sym_slice] = STATE(5318), + [sym_ellipsis] = STATE(2630), + [sym_call] = STATE(2630), + [sym_list] = STATE(2630), + [sym_set] = STATE(2630), + [sym_tuple] = STATE(2630), + [sym_dictionary] = STATE(2630), + [sym_list_comprehension] = STATE(2630), + [sym_dictionary_comprehension] = STATE(2630), + [sym_set_comprehension] = STATE(2630), + [sym_generator_expression] = STATE(2630), + [sym_parenthesized_expression] = STATE(2630), + [sym_conditional_expression] = STATE(2631), + [sym_concatenated_string] = STATE(2630), + [sym_string] = STATE(2200), + [sym_none] = STATE(2630), + [sym_await] = STATE(2630), + [sym_new_expression] = STATE(2631), + [sym_sizeof_expression] = STATE(2630), + [sym_cast_expression] = STATE(2630), + [sym_identifier] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2461), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_print] = ACTIONS(2641), + [anon_sym_COLON] = ACTIONS(3113), + [anon_sym_match] = ACTIONS(2641), + [anon_sym_async] = ACTIONS(2641), + [anon_sym_exec] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2467), + [anon_sym_RBRACK] = ACTIONS(3173), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_not] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2469), + [anon_sym_TILDE] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_lambda] = ACTIONS(2651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2475), + [anon_sym_None] = ACTIONS(2477), + [sym_integer] = ACTIONS(2459), + [sym_float] = ACTIONS(2479), + [anon_sym_await] = ACTIONS(2653), + [anon_sym_api] = ACTIONS(2641), + [sym_true] = ACTIONS(2459), + [sym_false] = ACTIONS(2459), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2655), + [anon_sym_sizeof] = ACTIONS(2483), + [sym_string_start] = ACTIONS(2485), + }, + [1016] = { + [ts_builtin_sym_end] = ACTIONS(3147), + [sym_identifier] = ACTIONS(3145), + [anon_sym_import] = ACTIONS(3145), + [anon_sym_cimport] = ACTIONS(3145), + [anon_sym_from] = ACTIONS(3145), + [anon_sym_LPAREN] = ACTIONS(3147), + [anon_sym_STAR] = ACTIONS(3147), + [anon_sym_print] = ACTIONS(3145), + [anon_sym_assert] = ACTIONS(3145), + [anon_sym_return] = ACTIONS(3145), + [anon_sym_del] = ACTIONS(3145), + [anon_sym_raise] = ACTIONS(3145), + [anon_sym_pass] = ACTIONS(3145), + [anon_sym_break] = ACTIONS(3145), + [anon_sym_continue] = ACTIONS(3145), + [anon_sym_if] = ACTIONS(3145), + [anon_sym_else] = ACTIONS(3145), + [anon_sym_match] = ACTIONS(3145), + [anon_sym_async] = ACTIONS(3145), + [anon_sym_for] = ACTIONS(3145), + [anon_sym_while] = ACTIONS(3145), + [anon_sym_try] = ACTIONS(3145), + [anon_sym_except] = ACTIONS(3145), + [anon_sym_finally] = ACTIONS(3145), + [anon_sym_with] = ACTIONS(3145), + [anon_sym_def] = ACTIONS(3145), + [anon_sym_global] = ACTIONS(3145), + [anon_sym_nonlocal] = ACTIONS(3145), + [anon_sym_exec] = ACTIONS(3145), + [anon_sym_type] = ACTIONS(3145), + [anon_sym_class] = ACTIONS(3145), + [anon_sym_LBRACK] = ACTIONS(3147), + [anon_sym_AT] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(3147), + [anon_sym_LBRACE] = ACTIONS(3147), + [anon_sym_PLUS] = ACTIONS(3147), + [anon_sym_not] = ACTIONS(3145), + [anon_sym_AMP] = ACTIONS(3147), + [anon_sym_TILDE] = ACTIONS(3147), + [anon_sym_LT] = ACTIONS(3147), + [anon_sym_lambda] = ACTIONS(3145), + [anon_sym_yield] = ACTIONS(3145), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3147), + [anon_sym_None] = ACTIONS(3145), + [sym_integer] = ACTIONS(3145), + [sym_float] = ACTIONS(3147), + [anon_sym_await] = ACTIONS(3145), + [anon_sym_api] = ACTIONS(3145), + [sym_true] = ACTIONS(3145), + [sym_false] = ACTIONS(3145), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3145), + [anon_sym_include] = ACTIONS(3145), + [anon_sym_DEF] = ACTIONS(3145), + [anon_sym_cdef] = ACTIONS(3145), + [anon_sym_cpdef] = ACTIONS(3145), + [anon_sym_new] = ACTIONS(3145), + [anon_sym_ctypedef] = ACTIONS(3145), + [anon_sym_public] = ACTIONS(3145), + [anon_sym_packed] = ACTIONS(3145), + [anon_sym_inline] = ACTIONS(3145), + [anon_sym_readonly] = ACTIONS(3145), + [anon_sym_sizeof] = ACTIONS(3145), + [sym_string_start] = ACTIONS(3147), + }, + [1017] = { + [ts_builtin_sym_end] = ACTIONS(3175), + [sym_identifier] = ACTIONS(3177), + [anon_sym_import] = ACTIONS(3177), + [anon_sym_cimport] = ACTIONS(3177), + [anon_sym_from] = ACTIONS(3177), + [anon_sym_LPAREN] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(3175), + [anon_sym_print] = ACTIONS(3177), + [anon_sym_assert] = ACTIONS(3177), + [anon_sym_return] = ACTIONS(3177), + [anon_sym_del] = ACTIONS(3177), + [anon_sym_raise] = ACTIONS(3177), + [anon_sym_pass] = ACTIONS(3177), + [anon_sym_break] = ACTIONS(3177), + [anon_sym_continue] = ACTIONS(3177), + [anon_sym_if] = ACTIONS(3177), + [anon_sym_else] = ACTIONS(3177), + [anon_sym_match] = ACTIONS(3177), + [anon_sym_async] = ACTIONS(3177), + [anon_sym_for] = ACTIONS(3177), + [anon_sym_while] = ACTIONS(3177), + [anon_sym_try] = ACTIONS(3177), + [anon_sym_except_STAR] = ACTIONS(3175), + [anon_sym_finally] = ACTIONS(3177), + [anon_sym_with] = ACTIONS(3177), + [anon_sym_def] = ACTIONS(3177), + [anon_sym_global] = ACTIONS(3177), + [anon_sym_nonlocal] = ACTIONS(3177), + [anon_sym_exec] = ACTIONS(3177), + [anon_sym_type] = ACTIONS(3177), + [anon_sym_class] = ACTIONS(3177), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_AT] = ACTIONS(3175), + [anon_sym_DASH] = ACTIONS(3175), + [anon_sym_LBRACE] = ACTIONS(3175), + [anon_sym_PLUS] = ACTIONS(3175), + [anon_sym_not] = ACTIONS(3177), + [anon_sym_AMP] = ACTIONS(3175), + [anon_sym_TILDE] = ACTIONS(3175), + [anon_sym_LT] = ACTIONS(3175), + [anon_sym_lambda] = ACTIONS(3177), + [anon_sym_yield] = ACTIONS(3177), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3175), + [anon_sym_None] = ACTIONS(3177), + [sym_integer] = ACTIONS(3177), + [sym_float] = ACTIONS(3175), + [anon_sym_await] = ACTIONS(3177), + [anon_sym_api] = ACTIONS(3177), + [sym_true] = ACTIONS(3177), + [sym_false] = ACTIONS(3177), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3177), + [anon_sym_include] = ACTIONS(3177), + [anon_sym_DEF] = ACTIONS(3177), + [anon_sym_cdef] = ACTIONS(3177), + [anon_sym_cpdef] = ACTIONS(3177), + [anon_sym_new] = ACTIONS(3177), + [anon_sym_ctypedef] = ACTIONS(3177), + [anon_sym_public] = ACTIONS(3177), + [anon_sym_packed] = ACTIONS(3177), + [anon_sym_inline] = ACTIONS(3177), + [anon_sym_readonly] = ACTIONS(3177), + [anon_sym_sizeof] = ACTIONS(3177), + [sym_string_start] = ACTIONS(3175), + }, + [1018] = { + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_expression_list] = STATE(5293), + [sym_list_splat_pattern] = STATE(2088), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3970), + [sym_primary_expression] = STATE(2032), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_attribute] = STATE(2111), + [sym_subscript] = STATE(2111), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [sym_identifier] = ACTIONS(1001), + [anon_sym_SEMI] = ACTIONS(3179), + [anon_sym_LPAREN] = ACTIONS(1281), + [anon_sym_STAR] = ACTIONS(3073), + [anon_sym_print] = ACTIONS(1016), + [anon_sym_match] = ACTIONS(1016), + [anon_sym_async] = ACTIONS(1016), + [anon_sym_exec] = ACTIONS(1016), + [anon_sym_LBRACK] = ACTIONS(1287), + [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(1041), + [anon_sym_api] = ACTIONS(1016), + [sym_true] = ACTIONS(81), + [sym_false] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(3179), + [sym_string_start] = ACTIONS(107), + }, + [1019] = { + [sym_identifier] = ACTIONS(3181), + [anon_sym_import] = ACTIONS(3181), + [anon_sym_cimport] = ACTIONS(3181), + [anon_sym_from] = ACTIONS(3181), + [anon_sym_LPAREN] = ACTIONS(3183), + [anon_sym_STAR] = ACTIONS(3183), + [anon_sym_print] = ACTIONS(3181), + [anon_sym_assert] = ACTIONS(3181), + [anon_sym_return] = ACTIONS(3181), + [anon_sym_del] = ACTIONS(3181), + [anon_sym_raise] = ACTIONS(3181), + [anon_sym_pass] = ACTIONS(3181), + [anon_sym_break] = ACTIONS(3181), + [anon_sym_continue] = ACTIONS(3181), + [anon_sym_if] = ACTIONS(3181), + [anon_sym_else] = ACTIONS(3181), + [anon_sym_match] = ACTIONS(3181), + [anon_sym_async] = ACTIONS(3181), + [anon_sym_for] = ACTIONS(3181), + [anon_sym_while] = ACTIONS(3181), + [anon_sym_try] = ACTIONS(3181), + [anon_sym_except] = ACTIONS(3181), + [anon_sym_finally] = ACTIONS(3181), + [anon_sym_with] = ACTIONS(3181), + [anon_sym_def] = ACTIONS(3181), + [anon_sym_global] = ACTIONS(3181), + [anon_sym_nonlocal] = ACTIONS(3181), + [anon_sym_exec] = ACTIONS(3181), + [anon_sym_type] = ACTIONS(3181), + [anon_sym_class] = ACTIONS(3181), + [anon_sym_LBRACK] = ACTIONS(3183), + [anon_sym_AT] = ACTIONS(3183), + [anon_sym_DASH] = ACTIONS(3183), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_PLUS] = ACTIONS(3183), + [anon_sym_not] = ACTIONS(3181), + [anon_sym_AMP] = ACTIONS(3183), + [anon_sym_TILDE] = ACTIONS(3183), + [anon_sym_LT] = ACTIONS(3183), + [anon_sym_lambda] = ACTIONS(3181), + [anon_sym_yield] = ACTIONS(3181), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3183), + [anon_sym_None] = ACTIONS(3181), + [sym_integer] = ACTIONS(3181), + [sym_float] = ACTIONS(3183), + [anon_sym_await] = ACTIONS(3181), + [anon_sym_api] = ACTIONS(3181), + [sym_true] = ACTIONS(3181), + [sym_false] = ACTIONS(3181), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3181), + [anon_sym_include] = ACTIONS(3181), + [anon_sym_DEF] = ACTIONS(3181), + [anon_sym_cdef] = ACTIONS(3181), + [anon_sym_cpdef] = ACTIONS(3181), + [anon_sym_new] = ACTIONS(3181), + [anon_sym_ctypedef] = ACTIONS(3181), + [anon_sym_public] = ACTIONS(3181), + [anon_sym_packed] = ACTIONS(3181), + [anon_sym_inline] = ACTIONS(3181), + [anon_sym_readonly] = ACTIONS(3181), + [anon_sym_sizeof] = ACTIONS(3181), + [sym__dedent] = ACTIONS(3183), + [sym_string_start] = ACTIONS(3183), + }, + [1020] = { + [sym_identifier] = ACTIONS(3185), + [anon_sym_import] = ACTIONS(3185), + [anon_sym_cimport] = ACTIONS(3185), + [anon_sym_from] = ACTIONS(3185), + [anon_sym_LPAREN] = ACTIONS(3187), + [anon_sym_STAR] = ACTIONS(3187), + [anon_sym_print] = ACTIONS(3185), + [anon_sym_assert] = ACTIONS(3185), + [anon_sym_return] = ACTIONS(3185), + [anon_sym_del] = ACTIONS(3185), + [anon_sym_raise] = ACTIONS(3185), + [anon_sym_pass] = ACTIONS(3185), + [anon_sym_break] = ACTIONS(3185), + [anon_sym_continue] = ACTIONS(3185), + [anon_sym_if] = ACTIONS(3185), + [anon_sym_else] = ACTIONS(3185), + [anon_sym_match] = ACTIONS(3185), + [anon_sym_async] = ACTIONS(3185), + [anon_sym_for] = ACTIONS(3185), + [anon_sym_while] = ACTIONS(3185), + [anon_sym_try] = ACTIONS(3185), + [anon_sym_except_STAR] = ACTIONS(3187), + [anon_sym_finally] = ACTIONS(3185), + [anon_sym_with] = ACTIONS(3185), + [anon_sym_def] = ACTIONS(3185), + [anon_sym_global] = ACTIONS(3185), + [anon_sym_nonlocal] = ACTIONS(3185), + [anon_sym_exec] = ACTIONS(3185), + [anon_sym_type] = ACTIONS(3185), + [anon_sym_class] = ACTIONS(3185), + [anon_sym_LBRACK] = ACTIONS(3187), + [anon_sym_AT] = ACTIONS(3187), + [anon_sym_DASH] = ACTIONS(3187), + [anon_sym_LBRACE] = ACTIONS(3187), + [anon_sym_PLUS] = ACTIONS(3187), + [anon_sym_not] = ACTIONS(3185), + [anon_sym_AMP] = ACTIONS(3187), + [anon_sym_TILDE] = ACTIONS(3187), + [anon_sym_LT] = ACTIONS(3187), + [anon_sym_lambda] = ACTIONS(3185), + [anon_sym_yield] = ACTIONS(3185), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3187), + [anon_sym_None] = ACTIONS(3185), + [sym_integer] = ACTIONS(3185), + [sym_float] = ACTIONS(3187), + [anon_sym_await] = ACTIONS(3185), + [anon_sym_api] = ACTIONS(3185), + [sym_true] = ACTIONS(3185), + [sym_false] = ACTIONS(3185), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3185), + [anon_sym_include] = ACTIONS(3185), + [anon_sym_DEF] = ACTIONS(3185), + [anon_sym_cdef] = ACTIONS(3185), + [anon_sym_cpdef] = ACTIONS(3185), + [anon_sym_new] = ACTIONS(3185), + [anon_sym_ctypedef] = ACTIONS(3185), + [anon_sym_public] = ACTIONS(3185), + [anon_sym_packed] = ACTIONS(3185), + [anon_sym_inline] = ACTIONS(3185), + [anon_sym_readonly] = ACTIONS(3185), + [anon_sym_sizeof] = ACTIONS(3185), + [sym__dedent] = ACTIONS(3187), + [sym_string_start] = ACTIONS(3187), + }, + [1021] = { + [sym_named_expression] = STATE(2631), + [sym__named_expression_lhs] = STATE(5572), + [sym_list_splat_pattern] = STATE(2589), + [sym_as_pattern] = STATE(2631), + [sym_expression] = STATE(4127), + [sym_primary_expression] = STATE(2107), + [sym_not_operator] = STATE(2631), + [sym_boolean_operator] = STATE(2631), + [sym_binary_operator] = STATE(2630), + [sym_unary_operator] = STATE(2630), + [sym_comparison_operator] = STATE(2631), + [sym_lambda] = STATE(2631), + [sym_attribute] = STATE(2630), + [sym_subscript] = STATE(2630), + [sym_slice] = STATE(5318), + [sym_ellipsis] = STATE(2630), + [sym_call] = STATE(2630), + [sym_list] = STATE(2630), + [sym_set] = STATE(2630), + [sym_tuple] = STATE(2630), + [sym_dictionary] = STATE(2630), + [sym_list_comprehension] = STATE(2630), + [sym_dictionary_comprehension] = STATE(2630), + [sym_set_comprehension] = STATE(2630), + [sym_generator_expression] = STATE(2630), + [sym_parenthesized_expression] = STATE(2630), + [sym_conditional_expression] = STATE(2631), + [sym_concatenated_string] = STATE(2630), + [sym_string] = STATE(2200), + [sym_none] = STATE(2630), + [sym_await] = STATE(2630), + [sym_new_expression] = STATE(2631), + [sym_sizeof_expression] = STATE(2630), + [sym_cast_expression] = STATE(2630), + [sym_identifier] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2461), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_print] = ACTIONS(2641), + [anon_sym_COLON] = ACTIONS(3113), + [anon_sym_match] = ACTIONS(2641), + [anon_sym_async] = ACTIONS(2641), + [anon_sym_exec] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2467), + [anon_sym_RBRACK] = ACTIONS(3189), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_not] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2469), + [anon_sym_TILDE] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_lambda] = ACTIONS(2651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2475), + [anon_sym_None] = ACTIONS(2477), + [sym_integer] = ACTIONS(2459), + [sym_float] = ACTIONS(2479), + [anon_sym_await] = ACTIONS(2653), + [anon_sym_api] = ACTIONS(2641), + [sym_true] = ACTIONS(2459), + [sym_false] = ACTIONS(2459), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2655), + [anon_sym_sizeof] = ACTIONS(2483), + [sym_string_start] = ACTIONS(2485), + }, + [1022] = { + [sym_named_expression] = STATE(2631), + [sym__named_expression_lhs] = STATE(5572), + [sym_list_splat_pattern] = STATE(2589), + [sym_as_pattern] = STATE(2631), + [sym_expression] = STATE(4127), + [sym_primary_expression] = STATE(2107), + [sym_not_operator] = STATE(2631), + [sym_boolean_operator] = STATE(2631), + [sym_binary_operator] = STATE(2630), + [sym_unary_operator] = STATE(2630), + [sym_comparison_operator] = STATE(2631), + [sym_lambda] = STATE(2631), + [sym_attribute] = STATE(2630), + [sym_subscript] = STATE(2630), + [sym_slice] = STATE(5318), + [sym_ellipsis] = STATE(2630), + [sym_call] = STATE(2630), + [sym_list] = STATE(2630), + [sym_set] = STATE(2630), + [sym_tuple] = STATE(2630), + [sym_dictionary] = STATE(2630), + [sym_list_comprehension] = STATE(2630), + [sym_dictionary_comprehension] = STATE(2630), + [sym_set_comprehension] = STATE(2630), + [sym_generator_expression] = STATE(2630), + [sym_parenthesized_expression] = STATE(2630), + [sym_conditional_expression] = STATE(2631), + [sym_concatenated_string] = STATE(2630), + [sym_string] = STATE(2200), + [sym_none] = STATE(2630), + [sym_await] = STATE(2630), + [sym_new_expression] = STATE(2631), + [sym_sizeof_expression] = STATE(2630), + [sym_cast_expression] = STATE(2630), + [sym_identifier] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2461), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_print] = ACTIONS(2641), + [anon_sym_COLON] = ACTIONS(3113), + [anon_sym_match] = ACTIONS(2641), + [anon_sym_async] = ACTIONS(2641), + [anon_sym_exec] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2467), + [anon_sym_RBRACK] = ACTIONS(3191), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_not] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2469), + [anon_sym_TILDE] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_lambda] = ACTIONS(2651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2475), + [anon_sym_None] = ACTIONS(2477), + [sym_integer] = ACTIONS(2459), + [sym_float] = ACTIONS(2479), + [anon_sym_await] = ACTIONS(2653), + [anon_sym_api] = ACTIONS(2641), + [sym_true] = ACTIONS(2459), + [sym_false] = ACTIONS(2459), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2655), + [anon_sym_sizeof] = ACTIONS(2483), + [sym_string_start] = ACTIONS(2485), + }, + [1023] = { + [sym_named_expression] = STATE(2631), + [sym__named_expression_lhs] = STATE(5572), + [sym_list_splat_pattern] = STATE(2589), + [sym_as_pattern] = STATE(2631), + [sym_expression] = STATE(4041), + [sym_primary_expression] = STATE(2107), + [sym_not_operator] = STATE(2631), + [sym_boolean_operator] = STATE(2631), + [sym_binary_operator] = STATE(2630), + [sym_unary_operator] = STATE(2630), + [sym_comparison_operator] = STATE(2631), + [sym_lambda] = STATE(2631), + [sym_attribute] = STATE(2630), + [sym_subscript] = STATE(2630), + [sym_ellipsis] = STATE(2630), + [sym_call] = STATE(2630), + [sym_list] = STATE(2630), + [sym_set] = STATE(2630), + [sym_tuple] = STATE(2630), + [sym_dictionary] = STATE(2630), + [sym_list_comprehension] = STATE(2630), + [sym_dictionary_comprehension] = STATE(2630), + [sym_set_comprehension] = STATE(2630), + [sym_generator_expression] = STATE(2630), + [sym_parenthesized_expression] = STATE(2630), + [sym_conditional_expression] = STATE(2631), + [sym_concatenated_string] = STATE(2630), + [sym_string] = STATE(2200), + [sym_none] = STATE(2630), + [sym_await] = STATE(2630), + [sym_new_expression] = STATE(2631), + [sym_sizeof_expression] = STATE(2630), + [sym_cast_expression] = STATE(2630), + [sym_identifier] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2461), + [anon_sym_COMMA] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_print] = ACTIONS(2641), + [anon_sym_COLON] = ACTIONS(3195), + [anon_sym_match] = ACTIONS(2641), + [anon_sym_async] = ACTIONS(2641), + [anon_sym_exec] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2467), + [anon_sym_RBRACK] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_not] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2469), + [anon_sym_TILDE] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_lambda] = ACTIONS(2651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2475), + [anon_sym_None] = ACTIONS(2477), + [sym_integer] = ACTIONS(2459), + [sym_float] = ACTIONS(2479), + [anon_sym_await] = ACTIONS(2653), + [anon_sym_api] = ACTIONS(2641), + [sym_true] = ACTIONS(2459), + [sym_false] = ACTIONS(2459), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2655), + [anon_sym_sizeof] = ACTIONS(2483), + [sym_string_start] = ACTIONS(2485), + }, + [1024] = { + [sym_identifier] = ACTIONS(3197), + [anon_sym_import] = ACTIONS(3197), + [anon_sym_cimport] = ACTIONS(3197), + [anon_sym_from] = ACTIONS(3197), + [anon_sym_LPAREN] = ACTIONS(3199), + [anon_sym_STAR] = ACTIONS(3199), + [anon_sym_print] = ACTIONS(3197), + [anon_sym_assert] = ACTIONS(3197), + [anon_sym_return] = ACTIONS(3197), + [anon_sym_del] = ACTIONS(3197), + [anon_sym_raise] = ACTIONS(3197), + [anon_sym_pass] = ACTIONS(3197), + [anon_sym_break] = ACTIONS(3197), + [anon_sym_continue] = ACTIONS(3197), + [anon_sym_if] = ACTIONS(3197), + [anon_sym_else] = ACTIONS(3197), + [anon_sym_match] = ACTIONS(3197), + [anon_sym_async] = ACTIONS(3197), + [anon_sym_for] = ACTIONS(3197), + [anon_sym_while] = ACTIONS(3197), + [anon_sym_try] = ACTIONS(3197), + [anon_sym_except] = ACTIONS(3197), + [anon_sym_finally] = ACTIONS(3197), + [anon_sym_with] = ACTIONS(3197), + [anon_sym_def] = ACTIONS(3197), + [anon_sym_global] = ACTIONS(3197), + [anon_sym_nonlocal] = ACTIONS(3197), + [anon_sym_exec] = ACTIONS(3197), + [anon_sym_type] = ACTIONS(3197), + [anon_sym_class] = ACTIONS(3197), + [anon_sym_LBRACK] = ACTIONS(3199), + [anon_sym_AT] = ACTIONS(3199), + [anon_sym_DASH] = ACTIONS(3199), + [anon_sym_LBRACE] = ACTIONS(3199), + [anon_sym_PLUS] = ACTIONS(3199), + [anon_sym_not] = ACTIONS(3197), + [anon_sym_AMP] = ACTIONS(3199), + [anon_sym_TILDE] = ACTIONS(3199), + [anon_sym_LT] = ACTIONS(3199), + [anon_sym_lambda] = ACTIONS(3197), + [anon_sym_yield] = ACTIONS(3197), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_None] = ACTIONS(3197), + [sym_integer] = ACTIONS(3197), + [sym_float] = ACTIONS(3199), + [anon_sym_await] = ACTIONS(3197), + [anon_sym_api] = ACTIONS(3197), + [sym_true] = ACTIONS(3197), + [sym_false] = ACTIONS(3197), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3197), + [anon_sym_include] = ACTIONS(3197), + [anon_sym_DEF] = ACTIONS(3197), + [anon_sym_cdef] = ACTIONS(3197), + [anon_sym_cpdef] = ACTIONS(3197), + [anon_sym_new] = ACTIONS(3197), + [anon_sym_ctypedef] = ACTIONS(3197), + [anon_sym_public] = ACTIONS(3197), + [anon_sym_packed] = ACTIONS(3197), + [anon_sym_inline] = ACTIONS(3197), + [anon_sym_readonly] = ACTIONS(3197), + [anon_sym_sizeof] = ACTIONS(3197), + [sym__dedent] = ACTIONS(3199), + [sym_string_start] = ACTIONS(3199), + }, + [1025] = { + [sym_named_expression] = STATE(2631), + [sym__named_expression_lhs] = STATE(5572), + [sym_list_splat_pattern] = STATE(2589), + [sym_as_pattern] = STATE(2631), + [sym_expression] = STATE(4127), + [sym_primary_expression] = STATE(2107), + [sym_not_operator] = STATE(2631), + [sym_boolean_operator] = STATE(2631), + [sym_binary_operator] = STATE(2630), + [sym_unary_operator] = STATE(2630), + [sym_comparison_operator] = STATE(2631), + [sym_lambda] = STATE(2631), + [sym_attribute] = STATE(2630), + [sym_subscript] = STATE(2630), + [sym_slice] = STATE(5318), + [sym_ellipsis] = STATE(2630), + [sym_call] = STATE(2630), + [sym_list] = STATE(2630), + [sym_set] = STATE(2630), + [sym_tuple] = STATE(2630), + [sym_dictionary] = STATE(2630), + [sym_list_comprehension] = STATE(2630), + [sym_dictionary_comprehension] = STATE(2630), + [sym_set_comprehension] = STATE(2630), + [sym_generator_expression] = STATE(2630), + [sym_parenthesized_expression] = STATE(2630), + [sym_conditional_expression] = STATE(2631), + [sym_concatenated_string] = STATE(2630), + [sym_string] = STATE(2200), + [sym_none] = STATE(2630), + [sym_await] = STATE(2630), + [sym_new_expression] = STATE(2631), + [sym_sizeof_expression] = STATE(2630), + [sym_cast_expression] = STATE(2630), + [sym_identifier] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2461), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_print] = ACTIONS(2641), + [anon_sym_COLON] = ACTIONS(3113), + [anon_sym_match] = ACTIONS(2641), + [anon_sym_async] = ACTIONS(2641), + [anon_sym_exec] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2467), + [anon_sym_RBRACK] = ACTIONS(3201), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_not] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2469), + [anon_sym_TILDE] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_lambda] = ACTIONS(2651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2475), + [anon_sym_None] = ACTIONS(2477), + [sym_integer] = ACTIONS(2459), + [sym_float] = ACTIONS(2479), + [anon_sym_await] = ACTIONS(2653), + [anon_sym_api] = ACTIONS(2641), + [sym_true] = ACTIONS(2459), + [sym_false] = ACTIONS(2459), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2655), + [anon_sym_sizeof] = ACTIONS(2483), + [sym_string_start] = ACTIONS(2485), + }, + [1026] = { + [sym_named_expression] = STATE(2631), + [sym__named_expression_lhs] = STATE(5572), + [sym_list_splat_pattern] = STATE(2589), + [sym_as_pattern] = STATE(2631), + [sym_expression] = STATE(4127), + [sym_primary_expression] = STATE(2107), + [sym_not_operator] = STATE(2631), + [sym_boolean_operator] = STATE(2631), + [sym_binary_operator] = STATE(2630), + [sym_unary_operator] = STATE(2630), + [sym_comparison_operator] = STATE(2631), + [sym_lambda] = STATE(2631), + [sym_attribute] = STATE(2630), + [sym_subscript] = STATE(2630), + [sym_slice] = STATE(5318), + [sym_ellipsis] = STATE(2630), + [sym_call] = STATE(2630), + [sym_list] = STATE(2630), + [sym_set] = STATE(2630), + [sym_tuple] = STATE(2630), + [sym_dictionary] = STATE(2630), + [sym_list_comprehension] = STATE(2630), + [sym_dictionary_comprehension] = STATE(2630), + [sym_set_comprehension] = STATE(2630), + [sym_generator_expression] = STATE(2630), + [sym_parenthesized_expression] = STATE(2630), + [sym_conditional_expression] = STATE(2631), + [sym_concatenated_string] = STATE(2630), + [sym_string] = STATE(2200), + [sym_none] = STATE(2630), + [sym_await] = STATE(2630), + [sym_new_expression] = STATE(2631), + [sym_sizeof_expression] = STATE(2630), + [sym_cast_expression] = STATE(2630), + [sym_identifier] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2461), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_print] = ACTIONS(2641), + [anon_sym_COLON] = ACTIONS(3113), + [anon_sym_match] = ACTIONS(2641), + [anon_sym_async] = ACTIONS(2641), + [anon_sym_exec] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2467), + [anon_sym_RBRACK] = ACTIONS(3203), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_not] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2469), + [anon_sym_TILDE] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_lambda] = ACTIONS(2651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2475), + [anon_sym_None] = ACTIONS(2477), + [sym_integer] = ACTIONS(2459), + [sym_float] = ACTIONS(2479), + [anon_sym_await] = ACTIONS(2653), + [anon_sym_api] = ACTIONS(2641), + [sym_true] = ACTIONS(2459), + [sym_false] = ACTIONS(2459), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2655), + [anon_sym_sizeof] = ACTIONS(2483), + [sym_string_start] = ACTIONS(2485), + }, + [1027] = { + [sym_named_expression] = STATE(2631), + [sym__named_expression_lhs] = STATE(5572), + [sym_list_splat_pattern] = STATE(2589), + [sym_as_pattern] = STATE(2631), + [sym_expression] = STATE(4127), + [sym_primary_expression] = STATE(2107), + [sym_not_operator] = STATE(2631), + [sym_boolean_operator] = STATE(2631), + [sym_binary_operator] = STATE(2630), + [sym_unary_operator] = STATE(2630), + [sym_comparison_operator] = STATE(2631), + [sym_lambda] = STATE(2631), + [sym_attribute] = STATE(2630), + [sym_subscript] = STATE(2630), + [sym_slice] = STATE(5318), + [sym_ellipsis] = STATE(2630), + [sym_call] = STATE(2630), + [sym_list] = STATE(2630), + [sym_set] = STATE(2630), + [sym_tuple] = STATE(2630), + [sym_dictionary] = STATE(2630), + [sym_list_comprehension] = STATE(2630), + [sym_dictionary_comprehension] = STATE(2630), + [sym_set_comprehension] = STATE(2630), + [sym_generator_expression] = STATE(2630), + [sym_parenthesized_expression] = STATE(2630), + [sym_conditional_expression] = STATE(2631), + [sym_concatenated_string] = STATE(2630), + [sym_string] = STATE(2200), + [sym_none] = STATE(2630), + [sym_await] = STATE(2630), + [sym_new_expression] = STATE(2631), + [sym_sizeof_expression] = STATE(2630), + [sym_cast_expression] = STATE(2630), + [sym_identifier] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2461), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_print] = ACTIONS(2641), + [anon_sym_COLON] = ACTIONS(3113), + [anon_sym_match] = ACTIONS(2641), + [anon_sym_async] = ACTIONS(2641), + [anon_sym_exec] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2467), + [anon_sym_RBRACK] = ACTIONS(3205), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_not] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2469), + [anon_sym_TILDE] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_lambda] = ACTIONS(2651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2475), + [anon_sym_None] = ACTIONS(2477), + [sym_integer] = ACTIONS(2459), + [sym_float] = ACTIONS(2479), + [anon_sym_await] = ACTIONS(2653), + [anon_sym_api] = ACTIONS(2641), + [sym_true] = ACTIONS(2459), + [sym_false] = ACTIONS(2459), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2655), + [anon_sym_sizeof] = ACTIONS(2483), + [sym_string_start] = ACTIONS(2485), + }, + [1028] = { + [ts_builtin_sym_end] = ACTIONS(1492), [sym_identifier] = ACTIONS(1490), [anon_sym_import] = ACTIONS(1490), [anon_sym_cimport] = ACTIONS(1490), @@ -116455,212 +118024,1349 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(1490), [anon_sym_readonly] = ACTIONS(1490), [anon_sym_sizeof] = ACTIONS(1490), - [sym__dedent] = ACTIONS(1492), [sym_string_start] = ACTIONS(1492), }, - [1008] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5609), - [sym_list_splat_pattern] = STATE(2591), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(4106), - [sym_primary_expression] = STATE(2077), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2631), - [sym_unary_operator] = STATE(2631), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2631), - [sym_subscript] = STATE(2631), - [sym_ellipsis] = STATE(2631), - [sym_call] = STATE(2631), - [sym_list] = STATE(2631), - [sym_set] = STATE(2631), - [sym_tuple] = STATE(2631), - [sym_dictionary] = STATE(2631), - [sym_list_comprehension] = STATE(2631), - [sym_dictionary_comprehension] = STATE(2631), - [sym_set_comprehension] = STATE(2631), - [sym_generator_expression] = STATE(2631), - [sym_parenthesized_expression] = STATE(2631), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2631), - [sym_string] = STATE(2218), - [sym_none] = STATE(2631), - [sym_await] = STATE(2631), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2631), - [sym_cast_expression] = STATE(2631), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_COMMA] = ACTIONS(3171), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_print] = ACTIONS(2631), - [anon_sym_COLON] = ACTIONS(3173), - [anon_sym_match] = ACTIONS(2631), - [anon_sym_async] = ACTIONS(2631), - [anon_sym_exec] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_RBRACK] = ACTIONS(3171), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2639), - [anon_sym_lambda] = ACTIONS(2641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2643), - [anon_sym_api] = ACTIONS(2631), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2645), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), + [1029] = { + [sym_named_expression] = STATE(2631), + [sym__named_expression_lhs] = STATE(5572), + [sym_list_splat_pattern] = STATE(2589), + [sym_as_pattern] = STATE(2631), + [sym_expression] = STATE(4127), + [sym_primary_expression] = STATE(2107), + [sym_not_operator] = STATE(2631), + [sym_boolean_operator] = STATE(2631), + [sym_binary_operator] = STATE(2630), + [sym_unary_operator] = STATE(2630), + [sym_comparison_operator] = STATE(2631), + [sym_lambda] = STATE(2631), + [sym_attribute] = STATE(2630), + [sym_subscript] = STATE(2630), + [sym_slice] = STATE(5318), + [sym_ellipsis] = STATE(2630), + [sym_call] = STATE(2630), + [sym_list] = STATE(2630), + [sym_set] = STATE(2630), + [sym_tuple] = STATE(2630), + [sym_dictionary] = STATE(2630), + [sym_list_comprehension] = STATE(2630), + [sym_dictionary_comprehension] = STATE(2630), + [sym_set_comprehension] = STATE(2630), + [sym_generator_expression] = STATE(2630), + [sym_parenthesized_expression] = STATE(2630), + [sym_conditional_expression] = STATE(2631), + [sym_concatenated_string] = STATE(2630), + [sym_string] = STATE(2200), + [sym_none] = STATE(2630), + [sym_await] = STATE(2630), + [sym_new_expression] = STATE(2631), + [sym_sizeof_expression] = STATE(2630), + [sym_cast_expression] = STATE(2630), + [sym_identifier] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2461), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_print] = ACTIONS(2641), + [anon_sym_COLON] = ACTIONS(3113), + [anon_sym_match] = ACTIONS(2641), + [anon_sym_async] = ACTIONS(2641), + [anon_sym_exec] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2467), + [anon_sym_RBRACK] = ACTIONS(3207), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_not] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2469), + [anon_sym_TILDE] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_lambda] = ACTIONS(2651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2475), + [anon_sym_None] = ACTIONS(2477), + [sym_integer] = ACTIONS(2459), + [sym_float] = ACTIONS(2479), + [anon_sym_await] = ACTIONS(2653), + [anon_sym_api] = ACTIONS(2641), + [sym_true] = ACTIONS(2459), + [sym_false] = ACTIONS(2459), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2655), + [anon_sym_sizeof] = ACTIONS(2483), + [sym_string_start] = ACTIONS(2485), }, - [1009] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5609), - [sym_list_splat_pattern] = STATE(2591), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(4057), - [sym_primary_expression] = STATE(2077), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2631), - [sym_unary_operator] = STATE(2631), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2631), - [sym_subscript] = STATE(2631), - [sym_ellipsis] = STATE(2631), - [sym_call] = STATE(2631), - [sym_list] = STATE(2631), - [sym_set] = STATE(2631), - [sym_tuple] = STATE(2631), - [sym_dictionary] = STATE(2631), - [sym_list_comprehension] = STATE(2631), - [sym_dictionary_comprehension] = STATE(2631), - [sym_set_comprehension] = STATE(2631), - [sym_generator_expression] = STATE(2631), - [sym_parenthesized_expression] = STATE(2631), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2631), - [sym_string] = STATE(2218), - [sym_none] = STATE(2631), - [sym_await] = STATE(2631), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2631), - [sym_cast_expression] = STATE(2631), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_COMMA] = ACTIONS(3175), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_print] = ACTIONS(2631), - [anon_sym_COLON] = ACTIONS(3177), - [anon_sym_match] = ACTIONS(2631), - [anon_sym_async] = ACTIONS(2631), - [anon_sym_exec] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_RBRACK] = ACTIONS(3175), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2639), - [anon_sym_lambda] = ACTIONS(2641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2643), - [anon_sym_api] = ACTIONS(2631), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2645), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), + [1030] = { + [sym_named_expression] = STATE(2631), + [sym__named_expression_lhs] = STATE(5572), + [sym_list_splat_pattern] = STATE(2589), + [sym_as_pattern] = STATE(2631), + [sym_expression] = STATE(4128), + [sym_primary_expression] = STATE(2107), + [sym_not_operator] = STATE(2631), + [sym_boolean_operator] = STATE(2631), + [sym_binary_operator] = STATE(2630), + [sym_unary_operator] = STATE(2630), + [sym_comparison_operator] = STATE(2631), + [sym_lambda] = STATE(2631), + [sym_attribute] = STATE(2630), + [sym_subscript] = STATE(2630), + [sym_ellipsis] = STATE(2630), + [sym_call] = STATE(2630), + [sym_list] = STATE(2630), + [sym_set] = STATE(2630), + [sym_tuple] = STATE(2630), + [sym_dictionary] = STATE(2630), + [sym_list_comprehension] = STATE(2630), + [sym_dictionary_comprehension] = STATE(2630), + [sym_set_comprehension] = STATE(2630), + [sym_generator_expression] = STATE(2630), + [sym_parenthesized_expression] = STATE(2630), + [sym_conditional_expression] = STATE(2631), + [sym_concatenated_string] = STATE(2630), + [sym_string] = STATE(2200), + [sym_none] = STATE(2630), + [sym_await] = STATE(2630), + [sym_new_expression] = STATE(2631), + [sym_sizeof_expression] = STATE(2630), + [sym_cast_expression] = STATE(2630), + [sym_identifier] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2461), + [anon_sym_COMMA] = ACTIONS(3209), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_print] = ACTIONS(2641), + [anon_sym_COLON] = ACTIONS(3211), + [anon_sym_match] = ACTIONS(2641), + [anon_sym_async] = ACTIONS(2641), + [anon_sym_exec] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2467), + [anon_sym_RBRACK] = ACTIONS(3209), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_not] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2469), + [anon_sym_TILDE] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_lambda] = ACTIONS(2651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2475), + [anon_sym_None] = ACTIONS(2477), + [sym_integer] = ACTIONS(2459), + [sym_float] = ACTIONS(2479), + [anon_sym_await] = ACTIONS(2653), + [anon_sym_api] = ACTIONS(2641), + [sym_true] = ACTIONS(2459), + [sym_false] = ACTIONS(2459), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2655), + [anon_sym_sizeof] = ACTIONS(2483), + [sym_string_start] = ACTIONS(2485), }, - [1010] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5609), - [sym_list_splat_pattern] = STATE(2591), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(4053), - [sym_primary_expression] = STATE(2077), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2631), - [sym_unary_operator] = STATE(2631), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2631), - [sym_subscript] = STATE(2631), - [sym_slice] = STATE(5361), - [sym_ellipsis] = STATE(2631), - [sym_call] = STATE(2631), - [sym_list] = STATE(2631), - [sym_set] = STATE(2631), - [sym_tuple] = STATE(2631), - [sym_dictionary] = STATE(2631), - [sym_list_comprehension] = STATE(2631), - [sym_dictionary_comprehension] = STATE(2631), - [sym_set_comprehension] = STATE(2631), - [sym_generator_expression] = STATE(2631), - [sym_parenthesized_expression] = STATE(2631), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2631), - [sym_string] = STATE(2218), - [sym_none] = STATE(2631), - [sym_await] = STATE(2631), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2631), - [sym_cast_expression] = STATE(2631), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_print] = ACTIONS(2631), - [anon_sym_COLON] = ACTIONS(3109), - [anon_sym_match] = ACTIONS(2631), - [anon_sym_async] = ACTIONS(2631), - [anon_sym_exec] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_RBRACK] = ACTIONS(3179), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2639), - [anon_sym_lambda] = ACTIONS(2641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2643), - [anon_sym_api] = ACTIONS(2631), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2645), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), + [1031] = { + [ts_builtin_sym_end] = ACTIONS(1488), + [sym_identifier] = ACTIONS(1486), + [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_else] = 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_except_STAR] = ACTIONS(1488), + [anon_sym_finally] = 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), + [anon_sym_DOT_DOT_DOT] = 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_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_new] = ACTIONS(1486), + [anon_sym_ctypedef] = 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_string_start] = ACTIONS(1488), }, - [1011] = { - [ts_builtin_sym_end] = ACTIONS(1496), + [1032] = { + [sym_named_expression] = STATE(2631), + [sym__named_expression_lhs] = STATE(5572), + [sym_list_splat_pattern] = STATE(2589), + [sym_as_pattern] = STATE(2631), + [sym_expression] = STATE(4127), + [sym_primary_expression] = STATE(2107), + [sym_not_operator] = STATE(2631), + [sym_boolean_operator] = STATE(2631), + [sym_binary_operator] = STATE(2630), + [sym_unary_operator] = STATE(2630), + [sym_comparison_operator] = STATE(2631), + [sym_lambda] = STATE(2631), + [sym_attribute] = STATE(2630), + [sym_subscript] = STATE(2630), + [sym_slice] = STATE(5318), + [sym_ellipsis] = STATE(2630), + [sym_call] = STATE(2630), + [sym_list] = STATE(2630), + [sym_set] = STATE(2630), + [sym_tuple] = STATE(2630), + [sym_dictionary] = STATE(2630), + [sym_list_comprehension] = STATE(2630), + [sym_dictionary_comprehension] = STATE(2630), + [sym_set_comprehension] = STATE(2630), + [sym_generator_expression] = STATE(2630), + [sym_parenthesized_expression] = STATE(2630), + [sym_conditional_expression] = STATE(2631), + [sym_concatenated_string] = STATE(2630), + [sym_string] = STATE(2200), + [sym_none] = STATE(2630), + [sym_await] = STATE(2630), + [sym_new_expression] = STATE(2631), + [sym_sizeof_expression] = STATE(2630), + [sym_cast_expression] = STATE(2630), + [sym_identifier] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2461), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_print] = ACTIONS(2641), + [anon_sym_COLON] = ACTIONS(3113), + [anon_sym_match] = ACTIONS(2641), + [anon_sym_async] = ACTIONS(2641), + [anon_sym_exec] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2467), + [anon_sym_RBRACK] = ACTIONS(3213), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_not] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2469), + [anon_sym_TILDE] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_lambda] = ACTIONS(2651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2475), + [anon_sym_None] = ACTIONS(2477), + [sym_integer] = ACTIONS(2459), + [sym_float] = ACTIONS(2479), + [anon_sym_await] = ACTIONS(2653), + [anon_sym_api] = ACTIONS(2641), + [sym_true] = ACTIONS(2459), + [sym_false] = ACTIONS(2459), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2655), + [anon_sym_sizeof] = ACTIONS(2483), + [sym_string_start] = ACTIONS(2485), + }, + [1033] = { + [sym_named_expression] = STATE(2631), + [sym__named_expression_lhs] = STATE(5572), + [sym_list_splat_pattern] = STATE(2589), + [sym_as_pattern] = STATE(2631), + [sym_expression] = STATE(4127), + [sym_primary_expression] = STATE(2107), + [sym_not_operator] = STATE(2631), + [sym_boolean_operator] = STATE(2631), + [sym_binary_operator] = STATE(2630), + [sym_unary_operator] = STATE(2630), + [sym_comparison_operator] = STATE(2631), + [sym_lambda] = STATE(2631), + [sym_attribute] = STATE(2630), + [sym_subscript] = STATE(2630), + [sym_slice] = STATE(5318), + [sym_ellipsis] = STATE(2630), + [sym_call] = STATE(2630), + [sym_list] = STATE(2630), + [sym_set] = STATE(2630), + [sym_tuple] = STATE(2630), + [sym_dictionary] = STATE(2630), + [sym_list_comprehension] = STATE(2630), + [sym_dictionary_comprehension] = STATE(2630), + [sym_set_comprehension] = STATE(2630), + [sym_generator_expression] = STATE(2630), + [sym_parenthesized_expression] = STATE(2630), + [sym_conditional_expression] = STATE(2631), + [sym_concatenated_string] = STATE(2630), + [sym_string] = STATE(2200), + [sym_none] = STATE(2630), + [sym_await] = STATE(2630), + [sym_new_expression] = STATE(2631), + [sym_sizeof_expression] = STATE(2630), + [sym_cast_expression] = STATE(2630), + [sym_identifier] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2461), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_print] = ACTIONS(2641), + [anon_sym_COLON] = ACTIONS(3113), + [anon_sym_match] = ACTIONS(2641), + [anon_sym_async] = ACTIONS(2641), + [anon_sym_exec] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2467), + [anon_sym_RBRACK] = ACTIONS(3215), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_not] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2469), + [anon_sym_TILDE] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_lambda] = ACTIONS(2651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2475), + [anon_sym_None] = ACTIONS(2477), + [sym_integer] = ACTIONS(2459), + [sym_float] = ACTIONS(2479), + [anon_sym_await] = ACTIONS(2653), + [anon_sym_api] = ACTIONS(2641), + [sym_true] = ACTIONS(2459), + [sym_false] = ACTIONS(2459), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2655), + [anon_sym_sizeof] = ACTIONS(2483), + [sym_string_start] = ACTIONS(2485), + }, + [1034] = { + [ts_builtin_sym_end] = ACTIONS(3169), + [sym_identifier] = ACTIONS(3167), + [anon_sym_import] = ACTIONS(3167), + [anon_sym_cimport] = ACTIONS(3167), + [anon_sym_from] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(3169), + [anon_sym_STAR] = ACTIONS(3169), + [anon_sym_print] = ACTIONS(3167), + [anon_sym_assert] = ACTIONS(3167), + [anon_sym_return] = ACTIONS(3167), + [anon_sym_del] = ACTIONS(3167), + [anon_sym_raise] = ACTIONS(3167), + [anon_sym_pass] = ACTIONS(3167), + [anon_sym_break] = ACTIONS(3167), + [anon_sym_continue] = ACTIONS(3167), + [anon_sym_if] = ACTIONS(3167), + [anon_sym_else] = ACTIONS(3167), + [anon_sym_match] = ACTIONS(3167), + [anon_sym_async] = ACTIONS(3167), + [anon_sym_for] = ACTIONS(3167), + [anon_sym_while] = ACTIONS(3167), + [anon_sym_try] = ACTIONS(3167), + [anon_sym_except] = ACTIONS(3167), + [anon_sym_finally] = ACTIONS(3167), + [anon_sym_with] = ACTIONS(3167), + [anon_sym_def] = ACTIONS(3167), + [anon_sym_global] = ACTIONS(3167), + [anon_sym_nonlocal] = ACTIONS(3167), + [anon_sym_exec] = ACTIONS(3167), + [anon_sym_type] = ACTIONS(3167), + [anon_sym_class] = ACTIONS(3167), + [anon_sym_LBRACK] = ACTIONS(3169), + [anon_sym_AT] = ACTIONS(3169), + [anon_sym_DASH] = ACTIONS(3169), + [anon_sym_LBRACE] = ACTIONS(3169), + [anon_sym_PLUS] = ACTIONS(3169), + [anon_sym_not] = ACTIONS(3167), + [anon_sym_AMP] = ACTIONS(3169), + [anon_sym_TILDE] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(3169), + [anon_sym_lambda] = ACTIONS(3167), + [anon_sym_yield] = ACTIONS(3167), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3169), + [anon_sym_None] = ACTIONS(3167), + [sym_integer] = ACTIONS(3167), + [sym_float] = ACTIONS(3169), + [anon_sym_await] = ACTIONS(3167), + [anon_sym_api] = ACTIONS(3167), + [sym_true] = ACTIONS(3167), + [sym_false] = ACTIONS(3167), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3167), + [anon_sym_include] = ACTIONS(3167), + [anon_sym_DEF] = ACTIONS(3167), + [anon_sym_cdef] = ACTIONS(3167), + [anon_sym_cpdef] = ACTIONS(3167), + [anon_sym_new] = ACTIONS(3167), + [anon_sym_ctypedef] = ACTIONS(3167), + [anon_sym_public] = ACTIONS(3167), + [anon_sym_packed] = ACTIONS(3167), + [anon_sym_inline] = ACTIONS(3167), + [anon_sym_readonly] = ACTIONS(3167), + [anon_sym_sizeof] = ACTIONS(3167), + [sym_string_start] = ACTIONS(3169), + }, + [1035] = { + [sym_named_expression] = STATE(2631), + [sym__named_expression_lhs] = STATE(5572), + [sym_list_splat_pattern] = STATE(2589), + [sym_as_pattern] = STATE(2631), + [sym_expression] = STATE(4127), + [sym_primary_expression] = STATE(2107), + [sym_not_operator] = STATE(2631), + [sym_boolean_operator] = STATE(2631), + [sym_binary_operator] = STATE(2630), + [sym_unary_operator] = STATE(2630), + [sym_comparison_operator] = STATE(2631), + [sym_lambda] = STATE(2631), + [sym_attribute] = STATE(2630), + [sym_subscript] = STATE(2630), + [sym_slice] = STATE(5318), + [sym_ellipsis] = STATE(2630), + [sym_call] = STATE(2630), + [sym_list] = STATE(2630), + [sym_set] = STATE(2630), + [sym_tuple] = STATE(2630), + [sym_dictionary] = STATE(2630), + [sym_list_comprehension] = STATE(2630), + [sym_dictionary_comprehension] = STATE(2630), + [sym_set_comprehension] = STATE(2630), + [sym_generator_expression] = STATE(2630), + [sym_parenthesized_expression] = STATE(2630), + [sym_conditional_expression] = STATE(2631), + [sym_concatenated_string] = STATE(2630), + [sym_string] = STATE(2200), + [sym_none] = STATE(2630), + [sym_await] = STATE(2630), + [sym_new_expression] = STATE(2631), + [sym_sizeof_expression] = STATE(2630), + [sym_cast_expression] = STATE(2630), + [sym_identifier] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2461), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_print] = ACTIONS(2641), + [anon_sym_COLON] = ACTIONS(3113), + [anon_sym_match] = ACTIONS(2641), + [anon_sym_async] = ACTIONS(2641), + [anon_sym_exec] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2467), + [anon_sym_RBRACK] = ACTIONS(3217), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_not] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2469), + [anon_sym_TILDE] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_lambda] = ACTIONS(2651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2475), + [anon_sym_None] = ACTIONS(2477), + [sym_integer] = ACTIONS(2459), + [sym_float] = ACTIONS(2479), + [anon_sym_await] = ACTIONS(2653), + [anon_sym_api] = ACTIONS(2641), + [sym_true] = ACTIONS(2459), + [sym_false] = ACTIONS(2459), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2655), + [anon_sym_sizeof] = ACTIONS(2483), + [sym_string_start] = ACTIONS(2485), + }, + [1036] = { + [sym_named_expression] = STATE(2631), + [sym__named_expression_lhs] = STATE(5572), + [sym_list_splat_pattern] = STATE(2589), + [sym_as_pattern] = STATE(2631), + [sym_expression] = STATE(4127), + [sym_primary_expression] = STATE(2107), + [sym_not_operator] = STATE(2631), + [sym_boolean_operator] = STATE(2631), + [sym_binary_operator] = STATE(2630), + [sym_unary_operator] = STATE(2630), + [sym_comparison_operator] = STATE(2631), + [sym_lambda] = STATE(2631), + [sym_attribute] = STATE(2630), + [sym_subscript] = STATE(2630), + [sym_slice] = STATE(5318), + [sym_ellipsis] = STATE(2630), + [sym_call] = STATE(2630), + [sym_list] = STATE(2630), + [sym_set] = STATE(2630), + [sym_tuple] = STATE(2630), + [sym_dictionary] = STATE(2630), + [sym_list_comprehension] = STATE(2630), + [sym_dictionary_comprehension] = STATE(2630), + [sym_set_comprehension] = STATE(2630), + [sym_generator_expression] = STATE(2630), + [sym_parenthesized_expression] = STATE(2630), + [sym_conditional_expression] = STATE(2631), + [sym_concatenated_string] = STATE(2630), + [sym_string] = STATE(2200), + [sym_none] = STATE(2630), + [sym_await] = STATE(2630), + [sym_new_expression] = STATE(2631), + [sym_sizeof_expression] = STATE(2630), + [sym_cast_expression] = STATE(2630), + [sym_identifier] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2461), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_print] = ACTIONS(2641), + [anon_sym_COLON] = ACTIONS(3113), + [anon_sym_match] = ACTIONS(2641), + [anon_sym_async] = ACTIONS(2641), + [anon_sym_exec] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2467), + [anon_sym_RBRACK] = ACTIONS(3219), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_not] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2469), + [anon_sym_TILDE] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_lambda] = ACTIONS(2651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2475), + [anon_sym_None] = ACTIONS(2477), + [sym_integer] = ACTIONS(2459), + [sym_float] = ACTIONS(2479), + [anon_sym_await] = ACTIONS(2653), + [anon_sym_api] = ACTIONS(2641), + [sym_true] = ACTIONS(2459), + [sym_false] = ACTIONS(2459), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2655), + [anon_sym_sizeof] = ACTIONS(2483), + [sym_string_start] = ACTIONS(2485), + }, + [1037] = { + [sym_named_expression] = STATE(2631), + [sym__named_expression_lhs] = STATE(5572), + [sym_list_splat_pattern] = STATE(2589), + [sym_as_pattern] = STATE(2631), + [sym_expression] = STATE(4127), + [sym_primary_expression] = STATE(2107), + [sym_not_operator] = STATE(2631), + [sym_boolean_operator] = STATE(2631), + [sym_binary_operator] = STATE(2630), + [sym_unary_operator] = STATE(2630), + [sym_comparison_operator] = STATE(2631), + [sym_lambda] = STATE(2631), + [sym_attribute] = STATE(2630), + [sym_subscript] = STATE(2630), + [sym_slice] = STATE(5318), + [sym_ellipsis] = STATE(2630), + [sym_call] = STATE(2630), + [sym_list] = STATE(2630), + [sym_set] = STATE(2630), + [sym_tuple] = STATE(2630), + [sym_dictionary] = STATE(2630), + [sym_list_comprehension] = STATE(2630), + [sym_dictionary_comprehension] = STATE(2630), + [sym_set_comprehension] = STATE(2630), + [sym_generator_expression] = STATE(2630), + [sym_parenthesized_expression] = STATE(2630), + [sym_conditional_expression] = STATE(2631), + [sym_concatenated_string] = STATE(2630), + [sym_string] = STATE(2200), + [sym_none] = STATE(2630), + [sym_await] = STATE(2630), + [sym_new_expression] = STATE(2631), + [sym_sizeof_expression] = STATE(2630), + [sym_cast_expression] = STATE(2630), + [sym_identifier] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2461), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_print] = ACTIONS(2641), + [anon_sym_COLON] = ACTIONS(3113), + [anon_sym_match] = ACTIONS(2641), + [anon_sym_async] = ACTIONS(2641), + [anon_sym_exec] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2467), + [anon_sym_RBRACK] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_not] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2469), + [anon_sym_TILDE] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_lambda] = ACTIONS(2651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2475), + [anon_sym_None] = ACTIONS(2477), + [sym_integer] = ACTIONS(2459), + [sym_float] = ACTIONS(2479), + [anon_sym_await] = ACTIONS(2653), + [anon_sym_api] = ACTIONS(2641), + [sym_true] = ACTIONS(2459), + [sym_false] = ACTIONS(2459), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2655), + [anon_sym_sizeof] = ACTIONS(2483), + [sym_string_start] = ACTIONS(2485), + }, + [1038] = { + [sym_named_expression] = STATE(2631), + [sym__named_expression_lhs] = STATE(5572), + [sym_list_splat_pattern] = STATE(2589), + [sym_as_pattern] = STATE(2631), + [sym_expression] = STATE(4127), + [sym_primary_expression] = STATE(2107), + [sym_not_operator] = STATE(2631), + [sym_boolean_operator] = STATE(2631), + [sym_binary_operator] = STATE(2630), + [sym_unary_operator] = STATE(2630), + [sym_comparison_operator] = STATE(2631), + [sym_lambda] = STATE(2631), + [sym_attribute] = STATE(2630), + [sym_subscript] = STATE(2630), + [sym_slice] = STATE(5318), + [sym_ellipsis] = STATE(2630), + [sym_call] = STATE(2630), + [sym_list] = STATE(2630), + [sym_set] = STATE(2630), + [sym_tuple] = STATE(2630), + [sym_dictionary] = STATE(2630), + [sym_list_comprehension] = STATE(2630), + [sym_dictionary_comprehension] = STATE(2630), + [sym_set_comprehension] = STATE(2630), + [sym_generator_expression] = STATE(2630), + [sym_parenthesized_expression] = STATE(2630), + [sym_conditional_expression] = STATE(2631), + [sym_concatenated_string] = STATE(2630), + [sym_string] = STATE(2200), + [sym_none] = STATE(2630), + [sym_await] = STATE(2630), + [sym_new_expression] = STATE(2631), + [sym_sizeof_expression] = STATE(2630), + [sym_cast_expression] = STATE(2630), + [sym_identifier] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2461), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_print] = ACTIONS(2641), + [anon_sym_COLON] = ACTIONS(3113), + [anon_sym_match] = ACTIONS(2641), + [anon_sym_async] = ACTIONS(2641), + [anon_sym_exec] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2467), + [anon_sym_RBRACK] = ACTIONS(3223), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_not] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2469), + [anon_sym_TILDE] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_lambda] = ACTIONS(2651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2475), + [anon_sym_None] = ACTIONS(2477), + [sym_integer] = ACTIONS(2459), + [sym_float] = ACTIONS(2479), + [anon_sym_await] = ACTIONS(2653), + [anon_sym_api] = ACTIONS(2641), + [sym_true] = ACTIONS(2459), + [sym_false] = ACTIONS(2459), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2655), + [anon_sym_sizeof] = ACTIONS(2483), + [sym_string_start] = ACTIONS(2485), + }, + [1039] = { + [sym_named_expression] = STATE(2631), + [sym__named_expression_lhs] = STATE(5572), + [sym_list_splat_pattern] = STATE(2589), + [sym_as_pattern] = STATE(2631), + [sym_expression] = STATE(4127), + [sym_primary_expression] = STATE(2107), + [sym_not_operator] = STATE(2631), + [sym_boolean_operator] = STATE(2631), + [sym_binary_operator] = STATE(2630), + [sym_unary_operator] = STATE(2630), + [sym_comparison_operator] = STATE(2631), + [sym_lambda] = STATE(2631), + [sym_attribute] = STATE(2630), + [sym_subscript] = STATE(2630), + [sym_slice] = STATE(5318), + [sym_ellipsis] = STATE(2630), + [sym_call] = STATE(2630), + [sym_list] = STATE(2630), + [sym_set] = STATE(2630), + [sym_tuple] = STATE(2630), + [sym_dictionary] = STATE(2630), + [sym_list_comprehension] = STATE(2630), + [sym_dictionary_comprehension] = STATE(2630), + [sym_set_comprehension] = STATE(2630), + [sym_generator_expression] = STATE(2630), + [sym_parenthesized_expression] = STATE(2630), + [sym_conditional_expression] = STATE(2631), + [sym_concatenated_string] = STATE(2630), + [sym_string] = STATE(2200), + [sym_none] = STATE(2630), + [sym_await] = STATE(2630), + [sym_new_expression] = STATE(2631), + [sym_sizeof_expression] = STATE(2630), + [sym_cast_expression] = STATE(2630), + [sym_identifier] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2461), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_print] = ACTIONS(2641), + [anon_sym_COLON] = ACTIONS(3113), + [anon_sym_match] = ACTIONS(2641), + [anon_sym_async] = ACTIONS(2641), + [anon_sym_exec] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2467), + [anon_sym_RBRACK] = ACTIONS(3225), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_not] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2469), + [anon_sym_TILDE] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_lambda] = ACTIONS(2651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2475), + [anon_sym_None] = ACTIONS(2477), + [sym_integer] = ACTIONS(2459), + [sym_float] = ACTIONS(2479), + [anon_sym_await] = ACTIONS(2653), + [anon_sym_api] = ACTIONS(2641), + [sym_true] = ACTIONS(2459), + [sym_false] = ACTIONS(2459), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2655), + [anon_sym_sizeof] = ACTIONS(2483), + [sym_string_start] = ACTIONS(2485), + }, + [1040] = { + [sym_named_expression] = STATE(2631), + [sym__named_expression_lhs] = STATE(5572), + [sym_list_splat_pattern] = STATE(2589), + [sym_as_pattern] = STATE(2631), + [sym_expression] = STATE(4127), + [sym_primary_expression] = STATE(2107), + [sym_not_operator] = STATE(2631), + [sym_boolean_operator] = STATE(2631), + [sym_binary_operator] = STATE(2630), + [sym_unary_operator] = STATE(2630), + [sym_comparison_operator] = STATE(2631), + [sym_lambda] = STATE(2631), + [sym_attribute] = STATE(2630), + [sym_subscript] = STATE(2630), + [sym_slice] = STATE(5318), + [sym_ellipsis] = STATE(2630), + [sym_call] = STATE(2630), + [sym_list] = STATE(2630), + [sym_set] = STATE(2630), + [sym_tuple] = STATE(2630), + [sym_dictionary] = STATE(2630), + [sym_list_comprehension] = STATE(2630), + [sym_dictionary_comprehension] = STATE(2630), + [sym_set_comprehension] = STATE(2630), + [sym_generator_expression] = STATE(2630), + [sym_parenthesized_expression] = STATE(2630), + [sym_conditional_expression] = STATE(2631), + [sym_concatenated_string] = STATE(2630), + [sym_string] = STATE(2200), + [sym_none] = STATE(2630), + [sym_await] = STATE(2630), + [sym_new_expression] = STATE(2631), + [sym_sizeof_expression] = STATE(2630), + [sym_cast_expression] = STATE(2630), + [sym_identifier] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2461), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_print] = ACTIONS(2641), + [anon_sym_COLON] = ACTIONS(3113), + [anon_sym_match] = ACTIONS(2641), + [anon_sym_async] = ACTIONS(2641), + [anon_sym_exec] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2467), + [anon_sym_RBRACK] = ACTIONS(3227), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_not] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2469), + [anon_sym_TILDE] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_lambda] = ACTIONS(2651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2475), + [anon_sym_None] = ACTIONS(2477), + [sym_integer] = ACTIONS(2459), + [sym_float] = ACTIONS(2479), + [anon_sym_await] = ACTIONS(2653), + [anon_sym_api] = ACTIONS(2641), + [sym_true] = ACTIONS(2459), + [sym_false] = ACTIONS(2459), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2655), + [anon_sym_sizeof] = ACTIONS(2483), + [sym_string_start] = ACTIONS(2485), + }, + [1041] = { + [ts_builtin_sym_end] = ACTIONS(3129), + [sym_identifier] = ACTIONS(3127), + [anon_sym_import] = ACTIONS(3127), + [anon_sym_cimport] = ACTIONS(3127), + [anon_sym_from] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(3129), + [anon_sym_STAR] = ACTIONS(3129), + [anon_sym_print] = ACTIONS(3127), + [anon_sym_assert] = ACTIONS(3127), + [anon_sym_return] = ACTIONS(3127), + [anon_sym_del] = ACTIONS(3127), + [anon_sym_raise] = ACTIONS(3127), + [anon_sym_pass] = ACTIONS(3127), + [anon_sym_break] = ACTIONS(3127), + [anon_sym_continue] = ACTIONS(3127), + [anon_sym_if] = ACTIONS(3127), + [anon_sym_else] = ACTIONS(3127), + [anon_sym_match] = ACTIONS(3127), + [anon_sym_async] = ACTIONS(3127), + [anon_sym_for] = ACTIONS(3127), + [anon_sym_while] = ACTIONS(3127), + [anon_sym_try] = ACTIONS(3127), + [anon_sym_except_STAR] = ACTIONS(3129), + [anon_sym_finally] = ACTIONS(3127), + [anon_sym_with] = ACTIONS(3127), + [anon_sym_def] = ACTIONS(3127), + [anon_sym_global] = ACTIONS(3127), + [anon_sym_nonlocal] = ACTIONS(3127), + [anon_sym_exec] = ACTIONS(3127), + [anon_sym_type] = ACTIONS(3127), + [anon_sym_class] = ACTIONS(3127), + [anon_sym_LBRACK] = ACTIONS(3129), + [anon_sym_AT] = ACTIONS(3129), + [anon_sym_DASH] = ACTIONS(3129), + [anon_sym_LBRACE] = ACTIONS(3129), + [anon_sym_PLUS] = ACTIONS(3129), + [anon_sym_not] = ACTIONS(3127), + [anon_sym_AMP] = ACTIONS(3129), + [anon_sym_TILDE] = ACTIONS(3129), + [anon_sym_LT] = ACTIONS(3129), + [anon_sym_lambda] = ACTIONS(3127), + [anon_sym_yield] = ACTIONS(3127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3129), + [anon_sym_None] = ACTIONS(3127), + [sym_integer] = ACTIONS(3127), + [sym_float] = ACTIONS(3129), + [anon_sym_await] = ACTIONS(3127), + [anon_sym_api] = ACTIONS(3127), + [sym_true] = ACTIONS(3127), + [sym_false] = ACTIONS(3127), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3127), + [anon_sym_include] = ACTIONS(3127), + [anon_sym_DEF] = ACTIONS(3127), + [anon_sym_cdef] = ACTIONS(3127), + [anon_sym_cpdef] = ACTIONS(3127), + [anon_sym_new] = ACTIONS(3127), + [anon_sym_ctypedef] = ACTIONS(3127), + [anon_sym_public] = ACTIONS(3127), + [anon_sym_packed] = ACTIONS(3127), + [anon_sym_inline] = ACTIONS(3127), + [anon_sym_readonly] = ACTIONS(3127), + [anon_sym_sizeof] = ACTIONS(3127), + [sym_string_start] = ACTIONS(3129), + }, + [1042] = { + [sym_named_expression] = STATE(2631), + [sym__named_expression_lhs] = STATE(5572), + [sym_list_splat_pattern] = STATE(2589), + [sym_as_pattern] = STATE(2631), + [sym_expression] = STATE(4127), + [sym_primary_expression] = STATE(2107), + [sym_not_operator] = STATE(2631), + [sym_boolean_operator] = STATE(2631), + [sym_binary_operator] = STATE(2630), + [sym_unary_operator] = STATE(2630), + [sym_comparison_operator] = STATE(2631), + [sym_lambda] = STATE(2631), + [sym_attribute] = STATE(2630), + [sym_subscript] = STATE(2630), + [sym_slice] = STATE(5318), + [sym_ellipsis] = STATE(2630), + [sym_call] = STATE(2630), + [sym_list] = STATE(2630), + [sym_set] = STATE(2630), + [sym_tuple] = STATE(2630), + [sym_dictionary] = STATE(2630), + [sym_list_comprehension] = STATE(2630), + [sym_dictionary_comprehension] = STATE(2630), + [sym_set_comprehension] = STATE(2630), + [sym_generator_expression] = STATE(2630), + [sym_parenthesized_expression] = STATE(2630), + [sym_conditional_expression] = STATE(2631), + [sym_concatenated_string] = STATE(2630), + [sym_string] = STATE(2200), + [sym_none] = STATE(2630), + [sym_await] = STATE(2630), + [sym_new_expression] = STATE(2631), + [sym_sizeof_expression] = STATE(2630), + [sym_cast_expression] = STATE(2630), + [sym_identifier] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2461), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_print] = ACTIONS(2641), + [anon_sym_COLON] = ACTIONS(3113), + [anon_sym_match] = ACTIONS(2641), + [anon_sym_async] = ACTIONS(2641), + [anon_sym_exec] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2467), + [anon_sym_RBRACK] = ACTIONS(3229), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_not] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2469), + [anon_sym_TILDE] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_lambda] = ACTIONS(2651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2475), + [anon_sym_None] = ACTIONS(2477), + [sym_integer] = ACTIONS(2459), + [sym_float] = ACTIONS(2479), + [anon_sym_await] = ACTIONS(2653), + [anon_sym_api] = ACTIONS(2641), + [sym_true] = ACTIONS(2459), + [sym_false] = ACTIONS(2459), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2655), + [anon_sym_sizeof] = ACTIONS(2483), + [sym_string_start] = ACTIONS(2485), + }, + [1043] = { + [sym_named_expression] = STATE(2631), + [sym__named_expression_lhs] = STATE(5572), + [sym_list_splat_pattern] = STATE(2589), + [sym_as_pattern] = STATE(2631), + [sym_expression] = STATE(4127), + [sym_primary_expression] = STATE(2107), + [sym_not_operator] = STATE(2631), + [sym_boolean_operator] = STATE(2631), + [sym_binary_operator] = STATE(2630), + [sym_unary_operator] = STATE(2630), + [sym_comparison_operator] = STATE(2631), + [sym_lambda] = STATE(2631), + [sym_attribute] = STATE(2630), + [sym_subscript] = STATE(2630), + [sym_slice] = STATE(5318), + [sym_ellipsis] = STATE(2630), + [sym_call] = STATE(2630), + [sym_list] = STATE(2630), + [sym_set] = STATE(2630), + [sym_tuple] = STATE(2630), + [sym_dictionary] = STATE(2630), + [sym_list_comprehension] = STATE(2630), + [sym_dictionary_comprehension] = STATE(2630), + [sym_set_comprehension] = STATE(2630), + [sym_generator_expression] = STATE(2630), + [sym_parenthesized_expression] = STATE(2630), + [sym_conditional_expression] = STATE(2631), + [sym_concatenated_string] = STATE(2630), + [sym_string] = STATE(2200), + [sym_none] = STATE(2630), + [sym_await] = STATE(2630), + [sym_new_expression] = STATE(2631), + [sym_sizeof_expression] = STATE(2630), + [sym_cast_expression] = STATE(2630), + [sym_identifier] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2461), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_print] = ACTIONS(2641), + [anon_sym_COLON] = ACTIONS(3113), + [anon_sym_match] = ACTIONS(2641), + [anon_sym_async] = ACTIONS(2641), + [anon_sym_exec] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2467), + [anon_sym_RBRACK] = ACTIONS(3231), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_not] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2469), + [anon_sym_TILDE] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_lambda] = ACTIONS(2651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2475), + [anon_sym_None] = ACTIONS(2477), + [sym_integer] = ACTIONS(2459), + [sym_float] = ACTIONS(2479), + [anon_sym_await] = ACTIONS(2653), + [anon_sym_api] = ACTIONS(2641), + [sym_true] = ACTIONS(2459), + [sym_false] = ACTIONS(2459), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2655), + [anon_sym_sizeof] = ACTIONS(2483), + [sym_string_start] = ACTIONS(2485), + }, + [1044] = { + [sym_named_expression] = STATE(2631), + [sym__named_expression_lhs] = STATE(5572), + [sym_list_splat_pattern] = STATE(2589), + [sym_as_pattern] = STATE(2631), + [sym_expression] = STATE(4127), + [sym_primary_expression] = STATE(2107), + [sym_not_operator] = STATE(2631), + [sym_boolean_operator] = STATE(2631), + [sym_binary_operator] = STATE(2630), + [sym_unary_operator] = STATE(2630), + [sym_comparison_operator] = STATE(2631), + [sym_lambda] = STATE(2631), + [sym_attribute] = STATE(2630), + [sym_subscript] = STATE(2630), + [sym_slice] = STATE(5318), + [sym_ellipsis] = STATE(2630), + [sym_call] = STATE(2630), + [sym_list] = STATE(2630), + [sym_set] = STATE(2630), + [sym_tuple] = STATE(2630), + [sym_dictionary] = STATE(2630), + [sym_list_comprehension] = STATE(2630), + [sym_dictionary_comprehension] = STATE(2630), + [sym_set_comprehension] = STATE(2630), + [sym_generator_expression] = STATE(2630), + [sym_parenthesized_expression] = STATE(2630), + [sym_conditional_expression] = STATE(2631), + [sym_concatenated_string] = STATE(2630), + [sym_string] = STATE(2200), + [sym_none] = STATE(2630), + [sym_await] = STATE(2630), + [sym_new_expression] = STATE(2631), + [sym_sizeof_expression] = STATE(2630), + [sym_cast_expression] = STATE(2630), + [sym_identifier] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2461), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_print] = ACTIONS(2641), + [anon_sym_COLON] = ACTIONS(3113), + [anon_sym_match] = ACTIONS(2641), + [anon_sym_async] = ACTIONS(2641), + [anon_sym_exec] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2467), + [anon_sym_RBRACK] = ACTIONS(3233), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_not] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2469), + [anon_sym_TILDE] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_lambda] = ACTIONS(2651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2475), + [anon_sym_None] = ACTIONS(2477), + [sym_integer] = ACTIONS(2459), + [sym_float] = ACTIONS(2479), + [anon_sym_await] = ACTIONS(2653), + [anon_sym_api] = ACTIONS(2641), + [sym_true] = ACTIONS(2459), + [sym_false] = ACTIONS(2459), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2655), + [anon_sym_sizeof] = ACTIONS(2483), + [sym_string_start] = ACTIONS(2485), + }, + [1045] = { + [ts_builtin_sym_end] = ACTIONS(1480), + [sym_identifier] = ACTIONS(1478), + [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_else] = 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_except] = ACTIONS(1478), + [anon_sym_finally] = 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), + [anon_sym_DOT_DOT_DOT] = 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_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_new] = ACTIONS(1478), + [anon_sym_ctypedef] = 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_string_start] = ACTIONS(1480), + }, + [1046] = { + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_list_splat_pattern] = STATE(2088), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3919), + [sym_primary_expression] = STATE(2032), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_attribute] = STATE(2111), + [sym_subscript] = STATE(2111), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [sym_identifier] = ACTIONS(1001), + [anon_sym_SEMI] = ACTIONS(3055), + [anon_sym_from] = ACTIONS(3235), + [anon_sym_LPAREN] = ACTIONS(1281), + [anon_sym_STAR] = ACTIONS(3073), + [anon_sym_print] = ACTIONS(1016), + [anon_sym_match] = ACTIONS(1016), + [anon_sym_async] = ACTIONS(1016), + [anon_sym_exec] = ACTIONS(1016), + [anon_sym_LBRACK] = ACTIONS(1287), + [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(1041), + [anon_sym_api] = ACTIONS(1016), + [sym_true] = ACTIONS(81), + [sym_false] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(3055), + [sym_string_start] = ACTIONS(107), + }, + [1047] = { + [sym_named_expression] = STATE(3442), + [sym__named_expression_lhs] = STATE(5682), + [sym_list_splat_pattern] = STATE(2088), + [sym_as_pattern] = STATE(3442), + [sym_expression] = STATE(3919), + [sym_primary_expression] = STATE(2032), + [sym_not_operator] = STATE(3442), + [sym_boolean_operator] = STATE(3442), + [sym_binary_operator] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_comparison_operator] = STATE(3442), + [sym_lambda] = STATE(3442), + [sym_attribute] = STATE(2111), + [sym_subscript] = STATE(2111), + [sym_ellipsis] = STATE(2111), + [sym_call] = STATE(2111), + [sym_list] = STATE(2111), + [sym_set] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_dictionary] = STATE(2111), + [sym_list_comprehension] = STATE(2111), + [sym_dictionary_comprehension] = STATE(2111), + [sym_set_comprehension] = STATE(2111), + [sym_generator_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_conditional_expression] = STATE(3442), + [sym_concatenated_string] = STATE(2111), + [sym_string] = STATE(2043), + [sym_none] = STATE(2111), + [sym_await] = STATE(2111), + [sym_new_expression] = STATE(3442), + [sym_sizeof_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [sym_identifier] = ACTIONS(1001), + [anon_sym_SEMI] = ACTIONS(3079), + [anon_sym_from] = ACTIONS(3237), + [anon_sym_LPAREN] = ACTIONS(1281), + [anon_sym_STAR] = ACTIONS(3073), + [anon_sym_print] = ACTIONS(1016), + [anon_sym_match] = ACTIONS(1016), + [anon_sym_async] = ACTIONS(1016), + [anon_sym_exec] = ACTIONS(1016), + [anon_sym_LBRACK] = ACTIONS(1287), + [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(1041), + [anon_sym_api] = ACTIONS(1016), + [sym_true] = ACTIONS(81), + [sym_false] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(3079), + [sym_string_start] = ACTIONS(107), + }, + [1048] = { + [ts_builtin_sym_end] = ACTIONS(1492), + [sym_identifier] = ACTIONS(1490), + [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_else] = 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_except] = ACTIONS(1490), + [anon_sym_finally] = 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), + [anon_sym_DOT_DOT_DOT] = 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_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_new] = ACTIONS(1490), + [anon_sym_ctypedef] = 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_string_start] = ACTIONS(1492), + }, + [1049] = { [sym_identifier] = ACTIONS(1494), [anon_sym_import] = ACTIONS(1494), [anon_sym_cimport] = ACTIONS(1494), @@ -116724,277 +119430,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(1494), [anon_sym_readonly] = ACTIONS(1494), [anon_sym_sizeof] = ACTIONS(1494), + [sym__dedent] = ACTIONS(1496), [sym_string_start] = ACTIONS(1496), }, - [1012] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5609), - [sym_list_splat_pattern] = STATE(2591), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(4053), - [sym_primary_expression] = STATE(2077), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2631), - [sym_unary_operator] = STATE(2631), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2631), - [sym_subscript] = STATE(2631), - [sym_slice] = STATE(5361), - [sym_ellipsis] = STATE(2631), - [sym_call] = STATE(2631), - [sym_list] = STATE(2631), - [sym_set] = STATE(2631), - [sym_tuple] = STATE(2631), - [sym_dictionary] = STATE(2631), - [sym_list_comprehension] = STATE(2631), - [sym_dictionary_comprehension] = STATE(2631), - [sym_set_comprehension] = STATE(2631), - [sym_generator_expression] = STATE(2631), - [sym_parenthesized_expression] = STATE(2631), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2631), - [sym_string] = STATE(2218), - [sym_none] = STATE(2631), - [sym_await] = STATE(2631), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2631), - [sym_cast_expression] = STATE(2631), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_print] = ACTIONS(2631), - [anon_sym_COLON] = ACTIONS(3109), - [anon_sym_match] = ACTIONS(2631), - [anon_sym_async] = ACTIONS(2631), - [anon_sym_exec] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_RBRACK] = ACTIONS(3181), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2639), - [anon_sym_lambda] = ACTIONS(2641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2643), - [anon_sym_api] = ACTIONS(2631), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2645), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), - }, - [1013] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5609), - [sym_list_splat_pattern] = STATE(2591), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(4053), - [sym_primary_expression] = STATE(2077), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2631), - [sym_unary_operator] = STATE(2631), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2631), - [sym_subscript] = STATE(2631), - [sym_slice] = STATE(5361), - [sym_ellipsis] = STATE(2631), - [sym_call] = STATE(2631), - [sym_list] = STATE(2631), - [sym_set] = STATE(2631), - [sym_tuple] = STATE(2631), - [sym_dictionary] = STATE(2631), - [sym_list_comprehension] = STATE(2631), - [sym_dictionary_comprehension] = STATE(2631), - [sym_set_comprehension] = STATE(2631), - [sym_generator_expression] = STATE(2631), - [sym_parenthesized_expression] = STATE(2631), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2631), - [sym_string] = STATE(2218), - [sym_none] = STATE(2631), - [sym_await] = STATE(2631), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2631), - [sym_cast_expression] = STATE(2631), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_print] = ACTIONS(2631), - [anon_sym_COLON] = ACTIONS(3109), - [anon_sym_match] = ACTIONS(2631), - [anon_sym_async] = ACTIONS(2631), - [anon_sym_exec] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_RBRACK] = ACTIONS(3183), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2639), - [anon_sym_lambda] = ACTIONS(2641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2643), - [anon_sym_api] = ACTIONS(2631), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2645), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), - }, - [1014] = { - [sym_identifier] = ACTIONS(3185), - [anon_sym_import] = ACTIONS(3185), - [anon_sym_cimport] = ACTIONS(3185), - [anon_sym_from] = ACTIONS(3185), - [anon_sym_LPAREN] = ACTIONS(3187), - [anon_sym_STAR] = ACTIONS(3187), - [anon_sym_print] = ACTIONS(3185), - [anon_sym_assert] = ACTIONS(3185), - [anon_sym_return] = ACTIONS(3185), - [anon_sym_del] = ACTIONS(3185), - [anon_sym_raise] = ACTIONS(3185), - [anon_sym_pass] = ACTIONS(3185), - [anon_sym_break] = ACTIONS(3185), - [anon_sym_continue] = ACTIONS(3185), - [anon_sym_if] = ACTIONS(3185), - [anon_sym_else] = ACTIONS(3185), - [anon_sym_match] = ACTIONS(3185), - [anon_sym_async] = ACTIONS(3185), - [anon_sym_for] = ACTIONS(3185), - [anon_sym_while] = ACTIONS(3185), - [anon_sym_try] = ACTIONS(3185), - [anon_sym_except] = ACTIONS(3185), - [anon_sym_finally] = ACTIONS(3185), - [anon_sym_with] = ACTIONS(3185), - [anon_sym_def] = ACTIONS(3185), - [anon_sym_global] = ACTIONS(3185), - [anon_sym_nonlocal] = ACTIONS(3185), - [anon_sym_exec] = ACTIONS(3185), - [anon_sym_type] = ACTIONS(3185), - [anon_sym_class] = ACTIONS(3185), - [anon_sym_LBRACK] = ACTIONS(3187), - [anon_sym_AT] = ACTIONS(3187), - [anon_sym_DASH] = ACTIONS(3187), - [anon_sym_LBRACE] = ACTIONS(3187), - [anon_sym_PLUS] = ACTIONS(3187), - [anon_sym_not] = ACTIONS(3185), - [anon_sym_AMP] = ACTIONS(3187), - [anon_sym_TILDE] = ACTIONS(3187), - [anon_sym_LT] = ACTIONS(3187), - [anon_sym_lambda] = ACTIONS(3185), - [anon_sym_yield] = ACTIONS(3185), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3187), - [anon_sym_None] = ACTIONS(3185), - [sym_integer] = ACTIONS(3185), - [sym_float] = ACTIONS(3187), - [anon_sym_await] = ACTIONS(3185), - [anon_sym_api] = ACTIONS(3185), - [sym_true] = ACTIONS(3185), - [sym_false] = ACTIONS(3185), + [1050] = { + [sym_identifier] = ACTIONS(1490), + [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_else] = 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_except_STAR] = ACTIONS(1492), + [anon_sym_finally] = 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), + [anon_sym_DOT_DOT_DOT] = 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_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(3185), - [anon_sym_include] = ACTIONS(3185), - [anon_sym_DEF] = ACTIONS(3185), - [anon_sym_cdef] = ACTIONS(3185), - [anon_sym_cpdef] = ACTIONS(3185), - [anon_sym_new] = ACTIONS(3185), - [anon_sym_ctypedef] = ACTIONS(3185), - [anon_sym_public] = ACTIONS(3185), - [anon_sym_packed] = ACTIONS(3185), - [anon_sym_inline] = ACTIONS(3185), - [anon_sym_readonly] = ACTIONS(3185), - [anon_sym_sizeof] = ACTIONS(3185), - [sym__dedent] = ACTIONS(3187), - [sym_string_start] = ACTIONS(3187), + [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_new] = ACTIONS(1490), + [anon_sym_ctypedef] = 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), }, - [1015] = { - [sym_identifier] = ACTIONS(3119), - [anon_sym_import] = ACTIONS(3119), - [anon_sym_cimport] = ACTIONS(3119), - [anon_sym_from] = ACTIONS(3119), - [anon_sym_LPAREN] = ACTIONS(3117), - [anon_sym_STAR] = ACTIONS(3117), - [anon_sym_print] = ACTIONS(3119), - [anon_sym_assert] = ACTIONS(3119), - [anon_sym_return] = ACTIONS(3119), - [anon_sym_del] = ACTIONS(3119), - [anon_sym_raise] = ACTIONS(3119), - [anon_sym_pass] = ACTIONS(3119), - [anon_sym_break] = ACTIONS(3119), - [anon_sym_continue] = ACTIONS(3119), - [anon_sym_if] = ACTIONS(3119), - [anon_sym_else] = ACTIONS(3119), - [anon_sym_match] = ACTIONS(3119), - [anon_sym_async] = ACTIONS(3119), - [anon_sym_for] = ACTIONS(3119), - [anon_sym_while] = ACTIONS(3119), - [anon_sym_try] = ACTIONS(3119), - [anon_sym_except] = ACTIONS(3119), - [anon_sym_finally] = ACTIONS(3119), - [anon_sym_with] = ACTIONS(3119), - [anon_sym_def] = ACTIONS(3119), - [anon_sym_global] = ACTIONS(3119), - [anon_sym_nonlocal] = ACTIONS(3119), - [anon_sym_exec] = ACTIONS(3119), - [anon_sym_type] = ACTIONS(3119), - [anon_sym_class] = ACTIONS(3119), - [anon_sym_LBRACK] = ACTIONS(3117), - [anon_sym_AT] = ACTIONS(3117), - [anon_sym_DASH] = ACTIONS(3117), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_PLUS] = ACTIONS(3117), - [anon_sym_not] = ACTIONS(3119), - [anon_sym_AMP] = ACTIONS(3117), - [anon_sym_TILDE] = ACTIONS(3117), - [anon_sym_LT] = ACTIONS(3117), - [anon_sym_lambda] = ACTIONS(3119), - [anon_sym_yield] = ACTIONS(3119), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3117), - [anon_sym_None] = ACTIONS(3119), - [sym_integer] = ACTIONS(3119), - [sym_float] = ACTIONS(3117), - [anon_sym_await] = ACTIONS(3119), - [anon_sym_api] = ACTIONS(3119), - [sym_true] = ACTIONS(3119), - [sym_false] = ACTIONS(3119), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(3119), - [anon_sym_include] = ACTIONS(3119), - [anon_sym_DEF] = ACTIONS(3119), - [anon_sym_cdef] = ACTIONS(3119), - [anon_sym_cpdef] = ACTIONS(3119), - [anon_sym_new] = ACTIONS(3119), - [anon_sym_ctypedef] = ACTIONS(3119), - [anon_sym_public] = ACTIONS(3119), - [anon_sym_packed] = ACTIONS(3119), - [anon_sym_inline] = ACTIONS(3119), - [anon_sym_readonly] = ACTIONS(3119), - [anon_sym_sizeof] = ACTIONS(3119), - [sym__dedent] = ACTIONS(3117), - [sym_string_start] = ACTIONS(3117), + [1051] = { + [ts_builtin_sym_end] = ACTIONS(3183), + [sym_identifier] = ACTIONS(3181), + [anon_sym_import] = ACTIONS(3181), + [anon_sym_cimport] = ACTIONS(3181), + [anon_sym_from] = ACTIONS(3181), + [anon_sym_LPAREN] = ACTIONS(3183), + [anon_sym_STAR] = ACTIONS(3183), + [anon_sym_print] = ACTIONS(3181), + [anon_sym_assert] = ACTIONS(3181), + [anon_sym_return] = ACTIONS(3181), + [anon_sym_del] = ACTIONS(3181), + [anon_sym_raise] = ACTIONS(3181), + [anon_sym_pass] = ACTIONS(3181), + [anon_sym_break] = ACTIONS(3181), + [anon_sym_continue] = ACTIONS(3181), + [anon_sym_if] = ACTIONS(3181), + [anon_sym_else] = ACTIONS(3181), + [anon_sym_match] = ACTIONS(3181), + [anon_sym_async] = ACTIONS(3181), + [anon_sym_for] = ACTIONS(3181), + [anon_sym_while] = ACTIONS(3181), + [anon_sym_try] = ACTIONS(3181), + [anon_sym_except] = ACTIONS(3181), + [anon_sym_finally] = ACTIONS(3181), + [anon_sym_with] = ACTIONS(3181), + [anon_sym_def] = ACTIONS(3181), + [anon_sym_global] = ACTIONS(3181), + [anon_sym_nonlocal] = ACTIONS(3181), + [anon_sym_exec] = ACTIONS(3181), + [anon_sym_type] = ACTIONS(3181), + [anon_sym_class] = ACTIONS(3181), + [anon_sym_LBRACK] = ACTIONS(3183), + [anon_sym_AT] = ACTIONS(3183), + [anon_sym_DASH] = ACTIONS(3183), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_PLUS] = ACTIONS(3183), + [anon_sym_not] = ACTIONS(3181), + [anon_sym_AMP] = ACTIONS(3183), + [anon_sym_TILDE] = ACTIONS(3183), + [anon_sym_LT] = ACTIONS(3183), + [anon_sym_lambda] = ACTIONS(3181), + [anon_sym_yield] = ACTIONS(3181), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3183), + [anon_sym_None] = ACTIONS(3181), + [sym_integer] = ACTIONS(3181), + [sym_float] = ACTIONS(3183), + [anon_sym_await] = ACTIONS(3181), + [anon_sym_api] = ACTIONS(3181), + [sym_true] = ACTIONS(3181), + [sym_false] = ACTIONS(3181), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3181), + [anon_sym_include] = ACTIONS(3181), + [anon_sym_DEF] = ACTIONS(3181), + [anon_sym_cdef] = ACTIONS(3181), + [anon_sym_cpdef] = ACTIONS(3181), + [anon_sym_new] = ACTIONS(3181), + [anon_sym_ctypedef] = ACTIONS(3181), + [anon_sym_public] = ACTIONS(3181), + [anon_sym_packed] = ACTIONS(3181), + [anon_sym_inline] = ACTIONS(3181), + [anon_sym_readonly] = ACTIONS(3181), + [anon_sym_sizeof] = ACTIONS(3181), + [sym_string_start] = ACTIONS(3183), }, - [1016] = { + [1052] = { [ts_builtin_sym_end] = ACTIONS(3187), [sym_identifier] = ACTIONS(3185), [anon_sym_import] = ACTIONS(3185), @@ -117017,7 +119590,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3185), [anon_sym_while] = ACTIONS(3185), [anon_sym_try] = ACTIONS(3185), - [anon_sym_except] = ACTIONS(3185), + [anon_sym_except_STAR] = ACTIONS(3187), [anon_sym_finally] = ACTIONS(3185), [anon_sym_with] = ACTIONS(3185), [anon_sym_def] = ACTIONS(3185), @@ -117061,678 +119634,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(3185), [sym_string_start] = ACTIONS(3187), }, - [1017] = { - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_list_splat_pattern] = STATE(2088), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3887), - [sym_primary_expression] = STATE(2024), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_attribute] = STATE(2123), - [sym_subscript] = STATE(2123), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [sym_identifier] = ACTIONS(577), - [anon_sym_SEMI] = ACTIONS(3051), - [anon_sym_from] = ACTIONS(3189), - [anon_sym_LPAREN] = ACTIONS(1281), - [anon_sym_STAR] = ACTIONS(3071), - [anon_sym_print] = ACTIONS(592), - [anon_sym_match] = ACTIONS(592), - [anon_sym_async] = ACTIONS(592), - [anon_sym_exec] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(1287), - [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(614), - [anon_sym_api] = ACTIONS(592), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(3051), - [sym_string_start] = ACTIONS(107), - }, - [1018] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5609), - [sym_list_splat_pattern] = STATE(2591), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(4053), - [sym_primary_expression] = STATE(2077), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2631), - [sym_unary_operator] = STATE(2631), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2631), - [sym_subscript] = STATE(2631), - [sym_slice] = STATE(5361), - [sym_ellipsis] = STATE(2631), - [sym_call] = STATE(2631), - [sym_list] = STATE(2631), - [sym_set] = STATE(2631), - [sym_tuple] = STATE(2631), - [sym_dictionary] = STATE(2631), - [sym_list_comprehension] = STATE(2631), - [sym_dictionary_comprehension] = STATE(2631), - [sym_set_comprehension] = STATE(2631), - [sym_generator_expression] = STATE(2631), - [sym_parenthesized_expression] = STATE(2631), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2631), - [sym_string] = STATE(2218), - [sym_none] = STATE(2631), - [sym_await] = STATE(2631), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2631), - [sym_cast_expression] = STATE(2631), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_print] = ACTIONS(2631), - [anon_sym_COLON] = ACTIONS(3109), - [anon_sym_match] = ACTIONS(2631), - [anon_sym_async] = ACTIONS(2631), - [anon_sym_exec] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_RBRACK] = ACTIONS(3191), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2639), - [anon_sym_lambda] = ACTIONS(2641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2643), - [anon_sym_api] = ACTIONS(2631), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2645), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), - }, - [1019] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5609), - [sym_list_splat_pattern] = STATE(2591), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(4053), - [sym_primary_expression] = STATE(2077), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2631), - [sym_unary_operator] = STATE(2631), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2631), - [sym_subscript] = STATE(2631), - [sym_slice] = STATE(5361), - [sym_ellipsis] = STATE(2631), - [sym_call] = STATE(2631), - [sym_list] = STATE(2631), - [sym_set] = STATE(2631), - [sym_tuple] = STATE(2631), - [sym_dictionary] = STATE(2631), - [sym_list_comprehension] = STATE(2631), - [sym_dictionary_comprehension] = STATE(2631), - [sym_set_comprehension] = STATE(2631), - [sym_generator_expression] = STATE(2631), - [sym_parenthesized_expression] = STATE(2631), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2631), - [sym_string] = STATE(2218), - [sym_none] = STATE(2631), - [sym_await] = STATE(2631), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2631), - [sym_cast_expression] = STATE(2631), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_print] = ACTIONS(2631), - [anon_sym_COLON] = ACTIONS(3109), - [anon_sym_match] = ACTIONS(2631), - [anon_sym_async] = ACTIONS(2631), - [anon_sym_exec] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_RBRACK] = ACTIONS(3193), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2639), - [anon_sym_lambda] = ACTIONS(2641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2643), - [anon_sym_api] = ACTIONS(2631), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2645), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), - }, - [1020] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5609), - [sym_list_splat_pattern] = STATE(2591), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(4053), - [sym_primary_expression] = STATE(2077), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2631), - [sym_unary_operator] = STATE(2631), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2631), - [sym_subscript] = STATE(2631), - [sym_slice] = STATE(5361), - [sym_ellipsis] = STATE(2631), - [sym_call] = STATE(2631), - [sym_list] = STATE(2631), - [sym_set] = STATE(2631), - [sym_tuple] = STATE(2631), - [sym_dictionary] = STATE(2631), - [sym_list_comprehension] = STATE(2631), - [sym_dictionary_comprehension] = STATE(2631), - [sym_set_comprehension] = STATE(2631), - [sym_generator_expression] = STATE(2631), - [sym_parenthesized_expression] = STATE(2631), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2631), - [sym_string] = STATE(2218), - [sym_none] = STATE(2631), - [sym_await] = STATE(2631), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2631), - [sym_cast_expression] = STATE(2631), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_print] = ACTIONS(2631), - [anon_sym_COLON] = ACTIONS(3109), - [anon_sym_match] = ACTIONS(2631), - [anon_sym_async] = ACTIONS(2631), - [anon_sym_exec] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_RBRACK] = ACTIONS(3195), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2639), - [anon_sym_lambda] = ACTIONS(2641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2643), - [anon_sym_api] = ACTIONS(2631), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2645), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), - }, - [1021] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5609), - [sym_list_splat_pattern] = STATE(2591), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(4053), - [sym_primary_expression] = STATE(2077), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2631), - [sym_unary_operator] = STATE(2631), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2631), - [sym_subscript] = STATE(2631), - [sym_slice] = STATE(5361), - [sym_ellipsis] = STATE(2631), - [sym_call] = STATE(2631), - [sym_list] = STATE(2631), - [sym_set] = STATE(2631), - [sym_tuple] = STATE(2631), - [sym_dictionary] = STATE(2631), - [sym_list_comprehension] = STATE(2631), - [sym_dictionary_comprehension] = STATE(2631), - [sym_set_comprehension] = STATE(2631), - [sym_generator_expression] = STATE(2631), - [sym_parenthesized_expression] = STATE(2631), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2631), - [sym_string] = STATE(2218), - [sym_none] = STATE(2631), - [sym_await] = STATE(2631), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2631), - [sym_cast_expression] = STATE(2631), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_print] = ACTIONS(2631), - [anon_sym_COLON] = ACTIONS(3109), - [anon_sym_match] = ACTIONS(2631), - [anon_sym_async] = ACTIONS(2631), - [anon_sym_exec] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_RBRACK] = ACTIONS(3197), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2639), - [anon_sym_lambda] = ACTIONS(2641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2643), - [anon_sym_api] = ACTIONS(2631), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2645), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), - }, - [1022] = { - [ts_builtin_sym_end] = ACTIONS(3123), - [sym_identifier] = ACTIONS(3121), - [anon_sym_import] = ACTIONS(3121), - [anon_sym_cimport] = ACTIONS(3121), - [anon_sym_from] = ACTIONS(3121), - [anon_sym_LPAREN] = ACTIONS(3123), - [anon_sym_STAR] = ACTIONS(3123), - [anon_sym_print] = ACTIONS(3121), - [anon_sym_assert] = ACTIONS(3121), - [anon_sym_return] = ACTIONS(3121), - [anon_sym_del] = ACTIONS(3121), - [anon_sym_raise] = ACTIONS(3121), - [anon_sym_pass] = ACTIONS(3121), - [anon_sym_break] = ACTIONS(3121), - [anon_sym_continue] = ACTIONS(3121), - [anon_sym_if] = ACTIONS(3121), - [anon_sym_else] = ACTIONS(3121), - [anon_sym_match] = ACTIONS(3121), - [anon_sym_async] = ACTIONS(3121), - [anon_sym_for] = ACTIONS(3121), - [anon_sym_while] = ACTIONS(3121), - [anon_sym_try] = ACTIONS(3121), - [anon_sym_except] = ACTIONS(3121), - [anon_sym_finally] = ACTIONS(3121), - [anon_sym_with] = ACTIONS(3121), - [anon_sym_def] = ACTIONS(3121), - [anon_sym_global] = ACTIONS(3121), - [anon_sym_nonlocal] = ACTIONS(3121), - [anon_sym_exec] = ACTIONS(3121), - [anon_sym_type] = ACTIONS(3121), - [anon_sym_class] = ACTIONS(3121), - [anon_sym_LBRACK] = ACTIONS(3123), - [anon_sym_AT] = ACTIONS(3123), - [anon_sym_DASH] = ACTIONS(3123), - [anon_sym_LBRACE] = ACTIONS(3123), - [anon_sym_PLUS] = ACTIONS(3123), - [anon_sym_not] = ACTIONS(3121), - [anon_sym_AMP] = ACTIONS(3123), - [anon_sym_TILDE] = ACTIONS(3123), - [anon_sym_LT] = ACTIONS(3123), - [anon_sym_lambda] = ACTIONS(3121), - [anon_sym_yield] = ACTIONS(3121), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3123), - [anon_sym_None] = ACTIONS(3121), - [sym_integer] = ACTIONS(3121), - [sym_float] = ACTIONS(3123), - [anon_sym_await] = ACTIONS(3121), - [anon_sym_api] = ACTIONS(3121), - [sym_true] = ACTIONS(3121), - [sym_false] = ACTIONS(3121), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(3121), - [anon_sym_include] = ACTIONS(3121), - [anon_sym_DEF] = ACTIONS(3121), - [anon_sym_cdef] = ACTIONS(3121), - [anon_sym_cpdef] = ACTIONS(3121), - [anon_sym_new] = ACTIONS(3121), - [anon_sym_ctypedef] = ACTIONS(3121), - [anon_sym_public] = ACTIONS(3121), - [anon_sym_packed] = ACTIONS(3121), - [anon_sym_inline] = ACTIONS(3121), - [anon_sym_readonly] = ACTIONS(3121), - [anon_sym_sizeof] = ACTIONS(3121), - [sym_string_start] = ACTIONS(3123), - }, - [1023] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5609), - [sym_list_splat_pattern] = STATE(2591), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(4053), - [sym_primary_expression] = STATE(2077), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2631), - [sym_unary_operator] = STATE(2631), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2631), - [sym_subscript] = STATE(2631), - [sym_slice] = STATE(5361), - [sym_ellipsis] = STATE(2631), - [sym_call] = STATE(2631), - [sym_list] = STATE(2631), - [sym_set] = STATE(2631), - [sym_tuple] = STATE(2631), - [sym_dictionary] = STATE(2631), - [sym_list_comprehension] = STATE(2631), - [sym_dictionary_comprehension] = STATE(2631), - [sym_set_comprehension] = STATE(2631), - [sym_generator_expression] = STATE(2631), - [sym_parenthesized_expression] = STATE(2631), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2631), - [sym_string] = STATE(2218), - [sym_none] = STATE(2631), - [sym_await] = STATE(2631), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2631), - [sym_cast_expression] = STATE(2631), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_print] = ACTIONS(2631), - [anon_sym_COLON] = ACTIONS(3109), - [anon_sym_match] = ACTIONS(2631), - [anon_sym_async] = ACTIONS(2631), - [anon_sym_exec] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_RBRACK] = ACTIONS(3199), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2639), - [anon_sym_lambda] = ACTIONS(2641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2643), - [anon_sym_api] = ACTIONS(2631), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2645), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), - }, - [1024] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5609), - [sym_list_splat_pattern] = STATE(2591), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(4053), - [sym_primary_expression] = STATE(2077), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2631), - [sym_unary_operator] = STATE(2631), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2631), - [sym_subscript] = STATE(2631), - [sym_slice] = STATE(5361), - [sym_ellipsis] = STATE(2631), - [sym_call] = STATE(2631), - [sym_list] = STATE(2631), - [sym_set] = STATE(2631), - [sym_tuple] = STATE(2631), - [sym_dictionary] = STATE(2631), - [sym_list_comprehension] = STATE(2631), - [sym_dictionary_comprehension] = STATE(2631), - [sym_set_comprehension] = STATE(2631), - [sym_generator_expression] = STATE(2631), - [sym_parenthesized_expression] = STATE(2631), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2631), - [sym_string] = STATE(2218), - [sym_none] = STATE(2631), - [sym_await] = STATE(2631), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2631), - [sym_cast_expression] = STATE(2631), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_print] = ACTIONS(2631), - [anon_sym_COLON] = ACTIONS(3109), - [anon_sym_match] = ACTIONS(2631), - [anon_sym_async] = ACTIONS(2631), - [anon_sym_exec] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_RBRACK] = ACTIONS(3201), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2639), - [anon_sym_lambda] = ACTIONS(2641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2643), - [anon_sym_api] = ACTIONS(2631), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2645), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), - }, - [1025] = { - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_expression_list] = STATE(5285), - [sym_list_splat_pattern] = STATE(2088), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3951), - [sym_primary_expression] = STATE(2024), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_attribute] = STATE(2123), - [sym_subscript] = STATE(2123), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [sym_identifier] = ACTIONS(577), - [anon_sym_SEMI] = ACTIONS(3203), - [anon_sym_LPAREN] = ACTIONS(1281), - [anon_sym_STAR] = ACTIONS(3071), - [anon_sym_print] = ACTIONS(592), - [anon_sym_match] = ACTIONS(592), - [anon_sym_async] = ACTIONS(592), - [anon_sym_exec] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(1287), - [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(614), - [anon_sym_api] = ACTIONS(592), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), + [1053] = { + [ts_builtin_sym_end] = ACTIONS(3199), + [sym_identifier] = ACTIONS(3197), + [anon_sym_import] = ACTIONS(3197), + [anon_sym_cimport] = ACTIONS(3197), + [anon_sym_from] = ACTIONS(3197), + [anon_sym_LPAREN] = ACTIONS(3199), + [anon_sym_STAR] = ACTIONS(3199), + [anon_sym_print] = ACTIONS(3197), + [anon_sym_assert] = ACTIONS(3197), + [anon_sym_return] = ACTIONS(3197), + [anon_sym_del] = ACTIONS(3197), + [anon_sym_raise] = ACTIONS(3197), + [anon_sym_pass] = ACTIONS(3197), + [anon_sym_break] = ACTIONS(3197), + [anon_sym_continue] = ACTIONS(3197), + [anon_sym_if] = ACTIONS(3197), + [anon_sym_else] = ACTIONS(3197), + [anon_sym_match] = ACTIONS(3197), + [anon_sym_async] = ACTIONS(3197), + [anon_sym_for] = ACTIONS(3197), + [anon_sym_while] = ACTIONS(3197), + [anon_sym_try] = ACTIONS(3197), + [anon_sym_except] = ACTIONS(3197), + [anon_sym_finally] = ACTIONS(3197), + [anon_sym_with] = ACTIONS(3197), + [anon_sym_def] = ACTIONS(3197), + [anon_sym_global] = ACTIONS(3197), + [anon_sym_nonlocal] = ACTIONS(3197), + [anon_sym_exec] = ACTIONS(3197), + [anon_sym_type] = ACTIONS(3197), + [anon_sym_class] = ACTIONS(3197), + [anon_sym_LBRACK] = ACTIONS(3199), + [anon_sym_AT] = ACTIONS(3199), + [anon_sym_DASH] = ACTIONS(3199), + [anon_sym_LBRACE] = ACTIONS(3199), + [anon_sym_PLUS] = ACTIONS(3199), + [anon_sym_not] = ACTIONS(3197), + [anon_sym_AMP] = ACTIONS(3199), + [anon_sym_TILDE] = ACTIONS(3199), + [anon_sym_LT] = ACTIONS(3199), + [anon_sym_lambda] = ACTIONS(3197), + [anon_sym_yield] = ACTIONS(3197), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_None] = ACTIONS(3197), + [sym_integer] = ACTIONS(3197), + [sym_float] = ACTIONS(3199), + [anon_sym_await] = ACTIONS(3197), + [anon_sym_api] = ACTIONS(3197), + [sym_true] = ACTIONS(3197), + [sym_false] = ACTIONS(3197), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3197), + [anon_sym_include] = ACTIONS(3197), + [anon_sym_DEF] = ACTIONS(3197), + [anon_sym_cdef] = ACTIONS(3197), + [anon_sym_cpdef] = ACTIONS(3197), + [anon_sym_new] = ACTIONS(3197), + [anon_sym_ctypedef] = ACTIONS(3197), + [anon_sym_public] = ACTIONS(3197), + [anon_sym_packed] = ACTIONS(3197), + [anon_sym_inline] = ACTIONS(3197), + [anon_sym_readonly] = ACTIONS(3197), + [anon_sym_sizeof] = ACTIONS(3197), + [sym_string_start] = ACTIONS(3199), + }, + [1054] = { + [sym_named_expression] = STATE(3088), + [sym__named_expression_lhs] = STATE(5579), + [sym_dictionary_splat] = STATE(5359), + [sym_list_splat_pattern] = STATE(2536), + [sym_as_pattern] = STATE(3088), + [sym_expression] = STATE(4290), + [sym_primary_expression] = STATE(2072), + [sym_not_operator] = STATE(3088), + [sym_boolean_operator] = STATE(3088), + [sym_binary_operator] = STATE(2401), + [sym_unary_operator] = STATE(2401), + [sym_comparison_operator] = STATE(3088), + [sym_lambda] = STATE(3088), + [sym_attribute] = STATE(2401), + [sym_subscript] = STATE(2401), + [sym_ellipsis] = STATE(2401), + [sym_call] = STATE(2401), + [sym_list] = STATE(2401), + [sym_set] = STATE(2401), + [sym_tuple] = STATE(2401), + [sym_dictionary] = STATE(2401), + [sym_pair] = STATE(5359), + [sym_list_comprehension] = STATE(2401), + [sym_dictionary_comprehension] = STATE(2401), + [sym_set_comprehension] = STATE(2401), + [sym_generator_expression] = STATE(2401), + [sym_parenthesized_expression] = STATE(2401), + [sym_conditional_expression] = STATE(3088), + [sym_concatenated_string] = STATE(2401), + [sym_string] = STATE(2161), + [sym_none] = STATE(2401), + [sym_await] = STATE(2401), + [sym_new_expression] = STATE(3088), + [sym_sizeof_expression] = STATE(2401), + [sym_cast_expression] = STATE(2401), + [sym_identifier] = ACTIONS(1211), + [anon_sym_LPAREN] = ACTIONS(1213), + [anon_sym_STAR] = ACTIONS(1215), + [anon_sym_print] = ACTIONS(1217), + [anon_sym_match] = ACTIONS(1217), + [anon_sym_async] = ACTIONS(1217), + [anon_sym_STAR_STAR] = ACTIONS(2531), + [anon_sym_exec] = ACTIONS(1217), + [anon_sym_LBRACK] = ACTIONS(1219), + [anon_sym_DASH] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_PLUS] = ACTIONS(1227), + [anon_sym_not] = ACTIONS(1225), + [anon_sym_AMP] = ACTIONS(1227), + [anon_sym_TILDE] = ACTIONS(1227), + [anon_sym_LT] = ACTIONS(2705), + [anon_sym_lambda] = ACTIONS(1231), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), + [anon_sym_None] = ACTIONS(1235), + [sym_integer] = ACTIONS(1237), + [sym_float] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(1241), + [anon_sym_api] = ACTIONS(1217), + [sym_true] = ACTIONS(1237), + [sym_false] = ACTIONS(1237), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(3203), - [sym_string_start] = ACTIONS(107), - }, - [1026] = { - [ts_builtin_sym_end] = ACTIONS(3127), - [sym_identifier] = ACTIONS(3125), - [anon_sym_import] = ACTIONS(3125), - [anon_sym_cimport] = ACTIONS(3125), - [anon_sym_from] = ACTIONS(3125), - [anon_sym_LPAREN] = ACTIONS(3127), - [anon_sym_STAR] = ACTIONS(3127), - [anon_sym_print] = ACTIONS(3125), - [anon_sym_assert] = ACTIONS(3125), - [anon_sym_return] = ACTIONS(3125), - [anon_sym_del] = ACTIONS(3125), - [anon_sym_raise] = ACTIONS(3125), - [anon_sym_pass] = ACTIONS(3125), - [anon_sym_break] = ACTIONS(3125), - [anon_sym_continue] = ACTIONS(3125), - [anon_sym_if] = ACTIONS(3125), - [anon_sym_else] = ACTIONS(3125), - [anon_sym_match] = ACTIONS(3125), - [anon_sym_async] = ACTIONS(3125), - [anon_sym_for] = ACTIONS(3125), - [anon_sym_while] = ACTIONS(3125), - [anon_sym_try] = ACTIONS(3125), - [anon_sym_except_STAR] = ACTIONS(3127), - [anon_sym_finally] = ACTIONS(3125), - [anon_sym_with] = ACTIONS(3125), - [anon_sym_def] = ACTIONS(3125), - [anon_sym_global] = ACTIONS(3125), - [anon_sym_nonlocal] = ACTIONS(3125), - [anon_sym_exec] = ACTIONS(3125), - [anon_sym_type] = ACTIONS(3125), - [anon_sym_class] = ACTIONS(3125), - [anon_sym_LBRACK] = ACTIONS(3127), - [anon_sym_AT] = ACTIONS(3127), - [anon_sym_DASH] = ACTIONS(3127), - [anon_sym_LBRACE] = ACTIONS(3127), - [anon_sym_PLUS] = ACTIONS(3127), - [anon_sym_not] = ACTIONS(3125), - [anon_sym_AMP] = ACTIONS(3127), - [anon_sym_TILDE] = ACTIONS(3127), - [anon_sym_LT] = ACTIONS(3127), - [anon_sym_lambda] = ACTIONS(3125), - [anon_sym_yield] = ACTIONS(3125), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3127), - [anon_sym_None] = ACTIONS(3125), - [sym_integer] = ACTIONS(3125), - [sym_float] = ACTIONS(3127), - [anon_sym_await] = ACTIONS(3125), - [anon_sym_api] = ACTIONS(3125), - [sym_true] = ACTIONS(3125), - [sym_false] = ACTIONS(3125), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(3125), - [anon_sym_include] = ACTIONS(3125), - [anon_sym_DEF] = ACTIONS(3125), - [anon_sym_cdef] = ACTIONS(3125), - [anon_sym_cpdef] = ACTIONS(3125), - [anon_sym_new] = ACTIONS(3125), - [anon_sym_ctypedef] = ACTIONS(3125), - [anon_sym_public] = ACTIONS(3125), - [anon_sym_packed] = ACTIONS(3125), - [anon_sym_inline] = ACTIONS(3125), - [anon_sym_readonly] = ACTIONS(3125), - [anon_sym_sizeof] = ACTIONS(3125), - [sym_string_start] = ACTIONS(3127), + [anon_sym_new] = ACTIONS(1243), + [anon_sym_sizeof] = ACTIONS(1245), + [sym_string_start] = ACTIONS(1247), }, - [1027] = { - [ts_builtin_sym_end] = ACTIONS(1484), + [1055] = { [sym_identifier] = ACTIONS(1482), [anon_sym_import] = ACTIONS(1482), [anon_sym_cimport] = ACTIONS(1482), @@ -117796,1754 +119832,851 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(1482), [anon_sym_readonly] = ACTIONS(1482), [anon_sym_sizeof] = ACTIONS(1482), + [sym__dedent] = ACTIONS(1484), [sym_string_start] = ACTIONS(1484), }, - [1028] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5609), - [sym_list_splat_pattern] = STATE(2591), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(4053), - [sym_primary_expression] = STATE(2077), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2631), - [sym_unary_operator] = STATE(2631), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2631), - [sym_subscript] = STATE(2631), - [sym_slice] = STATE(5361), - [sym_ellipsis] = STATE(2631), - [sym_call] = STATE(2631), - [sym_list] = STATE(2631), - [sym_set] = STATE(2631), - [sym_tuple] = STATE(2631), - [sym_dictionary] = STATE(2631), - [sym_list_comprehension] = STATE(2631), - [sym_dictionary_comprehension] = STATE(2631), - [sym_set_comprehension] = STATE(2631), - [sym_generator_expression] = STATE(2631), - [sym_parenthesized_expression] = STATE(2631), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2631), - [sym_string] = STATE(2218), - [sym_none] = STATE(2631), - [sym_await] = STATE(2631), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2631), - [sym_cast_expression] = STATE(2631), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_print] = ACTIONS(2631), - [anon_sym_COLON] = ACTIONS(3109), - [anon_sym_match] = ACTIONS(2631), - [anon_sym_async] = ACTIONS(2631), - [anon_sym_exec] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_RBRACK] = ACTIONS(3205), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2639), - [anon_sym_lambda] = ACTIONS(2641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2643), - [anon_sym_api] = ACTIONS(2631), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2645), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), - }, - [1029] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5609), - [sym_list_splat_pattern] = STATE(2591), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(4053), - [sym_primary_expression] = STATE(2077), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2631), - [sym_unary_operator] = STATE(2631), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2631), - [sym_subscript] = STATE(2631), - [sym_slice] = STATE(5361), - [sym_ellipsis] = STATE(2631), - [sym_call] = STATE(2631), - [sym_list] = STATE(2631), - [sym_set] = STATE(2631), - [sym_tuple] = STATE(2631), - [sym_dictionary] = STATE(2631), - [sym_list_comprehension] = STATE(2631), - [sym_dictionary_comprehension] = STATE(2631), - [sym_set_comprehension] = STATE(2631), - [sym_generator_expression] = STATE(2631), - [sym_parenthesized_expression] = STATE(2631), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2631), - [sym_string] = STATE(2218), - [sym_none] = STATE(2631), - [sym_await] = STATE(2631), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2631), - [sym_cast_expression] = STATE(2631), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_print] = ACTIONS(2631), - [anon_sym_COLON] = ACTIONS(3109), - [anon_sym_match] = ACTIONS(2631), - [anon_sym_async] = ACTIONS(2631), - [anon_sym_exec] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_RBRACK] = ACTIONS(3207), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2639), - [anon_sym_lambda] = ACTIONS(2641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2643), - [anon_sym_api] = ACTIONS(2631), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2645), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), - }, - [1030] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5609), - [sym_list_splat_pattern] = STATE(2591), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(4053), - [sym_primary_expression] = STATE(2077), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2631), - [sym_unary_operator] = STATE(2631), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2631), - [sym_subscript] = STATE(2631), - [sym_slice] = STATE(5361), - [sym_ellipsis] = STATE(2631), - [sym_call] = STATE(2631), - [sym_list] = STATE(2631), - [sym_set] = STATE(2631), - [sym_tuple] = STATE(2631), - [sym_dictionary] = STATE(2631), - [sym_list_comprehension] = STATE(2631), - [sym_dictionary_comprehension] = STATE(2631), - [sym_set_comprehension] = STATE(2631), - [sym_generator_expression] = STATE(2631), - [sym_parenthesized_expression] = STATE(2631), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2631), - [sym_string] = STATE(2218), - [sym_none] = STATE(2631), - [sym_await] = STATE(2631), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2631), - [sym_cast_expression] = STATE(2631), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_print] = ACTIONS(2631), - [anon_sym_COLON] = ACTIONS(3109), - [anon_sym_match] = ACTIONS(2631), - [anon_sym_async] = ACTIONS(2631), - [anon_sym_exec] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_RBRACK] = ACTIONS(3209), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2639), - [anon_sym_lambda] = ACTIONS(2641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2643), - [anon_sym_api] = ACTIONS(2631), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2645), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), - }, - [1031] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5609), - [sym_list_splat_pattern] = STATE(2591), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(4053), - [sym_primary_expression] = STATE(2077), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2631), - [sym_unary_operator] = STATE(2631), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2631), - [sym_subscript] = STATE(2631), - [sym_slice] = STATE(5361), - [sym_ellipsis] = STATE(2631), - [sym_call] = STATE(2631), - [sym_list] = STATE(2631), - [sym_set] = STATE(2631), - [sym_tuple] = STATE(2631), - [sym_dictionary] = STATE(2631), - [sym_list_comprehension] = STATE(2631), - [sym_dictionary_comprehension] = STATE(2631), - [sym_set_comprehension] = STATE(2631), - [sym_generator_expression] = STATE(2631), - [sym_parenthesized_expression] = STATE(2631), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2631), - [sym_string] = STATE(2218), - [sym_none] = STATE(2631), - [sym_await] = STATE(2631), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2631), - [sym_cast_expression] = STATE(2631), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_print] = ACTIONS(2631), - [anon_sym_COLON] = ACTIONS(3109), - [anon_sym_match] = ACTIONS(2631), - [anon_sym_async] = ACTIONS(2631), - [anon_sym_exec] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_RBRACK] = ACTIONS(3211), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2639), - [anon_sym_lambda] = ACTIONS(2641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2643), - [anon_sym_api] = ACTIONS(2631), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2645), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), - }, - [1032] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5609), - [sym_list_splat_pattern] = STATE(2591), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(4053), - [sym_primary_expression] = STATE(2077), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2631), - [sym_unary_operator] = STATE(2631), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2631), - [sym_subscript] = STATE(2631), - [sym_slice] = STATE(5361), - [sym_ellipsis] = STATE(2631), - [sym_call] = STATE(2631), - [sym_list] = STATE(2631), - [sym_set] = STATE(2631), - [sym_tuple] = STATE(2631), - [sym_dictionary] = STATE(2631), - [sym_list_comprehension] = STATE(2631), - [sym_dictionary_comprehension] = STATE(2631), - [sym_set_comprehension] = STATE(2631), - [sym_generator_expression] = STATE(2631), - [sym_parenthesized_expression] = STATE(2631), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2631), - [sym_string] = STATE(2218), - [sym_none] = STATE(2631), - [sym_await] = STATE(2631), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2631), - [sym_cast_expression] = STATE(2631), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_print] = ACTIONS(2631), - [anon_sym_COLON] = ACTIONS(3109), - [anon_sym_match] = ACTIONS(2631), - [anon_sym_async] = ACTIONS(2631), - [anon_sym_exec] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_RBRACK] = ACTIONS(3213), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2639), - [anon_sym_lambda] = ACTIONS(2641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2643), - [anon_sym_api] = ACTIONS(2631), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2645), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), - }, - [1033] = { - [ts_builtin_sym_end] = ACTIONS(3159), - [sym_identifier] = ACTIONS(3157), - [anon_sym_import] = ACTIONS(3157), - [anon_sym_cimport] = ACTIONS(3157), - [anon_sym_from] = ACTIONS(3157), - [anon_sym_LPAREN] = ACTIONS(3159), - [anon_sym_STAR] = ACTIONS(3159), - [anon_sym_print] = ACTIONS(3157), - [anon_sym_assert] = ACTIONS(3157), - [anon_sym_return] = ACTIONS(3157), - [anon_sym_del] = ACTIONS(3157), - [anon_sym_raise] = ACTIONS(3157), - [anon_sym_pass] = ACTIONS(3157), - [anon_sym_break] = ACTIONS(3157), - [anon_sym_continue] = ACTIONS(3157), - [anon_sym_if] = ACTIONS(3157), - [anon_sym_else] = ACTIONS(3157), - [anon_sym_match] = ACTIONS(3157), - [anon_sym_async] = ACTIONS(3157), - [anon_sym_for] = ACTIONS(3157), - [anon_sym_while] = ACTIONS(3157), - [anon_sym_try] = ACTIONS(3157), - [anon_sym_except] = ACTIONS(3157), - [anon_sym_finally] = ACTIONS(3157), - [anon_sym_with] = ACTIONS(3157), - [anon_sym_def] = ACTIONS(3157), - [anon_sym_global] = ACTIONS(3157), - [anon_sym_nonlocal] = ACTIONS(3157), - [anon_sym_exec] = ACTIONS(3157), - [anon_sym_type] = ACTIONS(3157), - [anon_sym_class] = ACTIONS(3157), - [anon_sym_LBRACK] = ACTIONS(3159), - [anon_sym_AT] = ACTIONS(3159), - [anon_sym_DASH] = ACTIONS(3159), - [anon_sym_LBRACE] = ACTIONS(3159), - [anon_sym_PLUS] = ACTIONS(3159), - [anon_sym_not] = ACTIONS(3157), - [anon_sym_AMP] = ACTIONS(3159), - [anon_sym_TILDE] = ACTIONS(3159), - [anon_sym_LT] = ACTIONS(3159), - [anon_sym_lambda] = ACTIONS(3157), - [anon_sym_yield] = ACTIONS(3157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3159), - [anon_sym_None] = ACTIONS(3157), - [sym_integer] = ACTIONS(3157), - [sym_float] = ACTIONS(3159), - [anon_sym_await] = ACTIONS(3157), - [anon_sym_api] = ACTIONS(3157), - [sym_true] = ACTIONS(3157), - [sym_false] = ACTIONS(3157), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(3157), - [anon_sym_include] = ACTIONS(3157), - [anon_sym_DEF] = ACTIONS(3157), - [anon_sym_cdef] = ACTIONS(3157), - [anon_sym_cpdef] = ACTIONS(3157), - [anon_sym_new] = ACTIONS(3157), - [anon_sym_ctypedef] = ACTIONS(3157), - [anon_sym_public] = ACTIONS(3157), - [anon_sym_packed] = ACTIONS(3157), - [anon_sym_inline] = ACTIONS(3157), - [anon_sym_readonly] = ACTIONS(3157), - [anon_sym_sizeof] = ACTIONS(3157), - [sym_string_start] = ACTIONS(3159), - }, - [1034] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5609), - [sym_list_splat_pattern] = STATE(2591), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(4053), - [sym_primary_expression] = STATE(2077), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2631), - [sym_unary_operator] = STATE(2631), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2631), - [sym_subscript] = STATE(2631), - [sym_slice] = STATE(5361), - [sym_ellipsis] = STATE(2631), - [sym_call] = STATE(2631), - [sym_list] = STATE(2631), - [sym_set] = STATE(2631), - [sym_tuple] = STATE(2631), - [sym_dictionary] = STATE(2631), - [sym_list_comprehension] = STATE(2631), - [sym_dictionary_comprehension] = STATE(2631), - [sym_set_comprehension] = STATE(2631), - [sym_generator_expression] = STATE(2631), - [sym_parenthesized_expression] = STATE(2631), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2631), - [sym_string] = STATE(2218), - [sym_none] = STATE(2631), - [sym_await] = STATE(2631), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2631), - [sym_cast_expression] = STATE(2631), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_print] = ACTIONS(2631), - [anon_sym_COLON] = ACTIONS(3109), - [anon_sym_match] = ACTIONS(2631), - [anon_sym_async] = ACTIONS(2631), - [anon_sym_exec] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_RBRACK] = ACTIONS(3215), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2639), - [anon_sym_lambda] = ACTIONS(2641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2643), - [anon_sym_api] = ACTIONS(2631), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2645), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), - }, - [1035] = { - [sym_identifier] = ACTIONS(3131), - [anon_sym_import] = ACTIONS(3131), - [anon_sym_cimport] = ACTIONS(3131), - [anon_sym_from] = ACTIONS(3131), - [anon_sym_LPAREN] = ACTIONS(3129), - [anon_sym_STAR] = ACTIONS(3129), - [anon_sym_print] = ACTIONS(3131), - [anon_sym_assert] = ACTIONS(3131), - [anon_sym_return] = ACTIONS(3131), - [anon_sym_del] = ACTIONS(3131), - [anon_sym_raise] = ACTIONS(3131), - [anon_sym_pass] = ACTIONS(3131), - [anon_sym_break] = ACTIONS(3131), - [anon_sym_continue] = ACTIONS(3131), - [anon_sym_if] = ACTIONS(3131), - [anon_sym_else] = ACTIONS(3131), - [anon_sym_match] = ACTIONS(3131), - [anon_sym_async] = ACTIONS(3131), - [anon_sym_for] = ACTIONS(3131), - [anon_sym_while] = ACTIONS(3131), - [anon_sym_try] = ACTIONS(3131), - [anon_sym_except] = ACTIONS(3131), - [anon_sym_finally] = ACTIONS(3131), - [anon_sym_with] = ACTIONS(3131), - [anon_sym_def] = ACTIONS(3131), - [anon_sym_global] = ACTIONS(3131), - [anon_sym_nonlocal] = ACTIONS(3131), - [anon_sym_exec] = ACTIONS(3131), - [anon_sym_type] = ACTIONS(3131), - [anon_sym_class] = ACTIONS(3131), - [anon_sym_LBRACK] = ACTIONS(3129), - [anon_sym_AT] = ACTIONS(3129), - [anon_sym_DASH] = ACTIONS(3129), - [anon_sym_LBRACE] = ACTIONS(3129), - [anon_sym_PLUS] = ACTIONS(3129), - [anon_sym_not] = ACTIONS(3131), - [anon_sym_AMP] = ACTIONS(3129), - [anon_sym_TILDE] = ACTIONS(3129), - [anon_sym_LT] = ACTIONS(3129), - [anon_sym_lambda] = ACTIONS(3131), - [anon_sym_yield] = ACTIONS(3131), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3129), - [anon_sym_None] = ACTIONS(3131), - [sym_integer] = ACTIONS(3131), - [sym_float] = ACTIONS(3129), - [anon_sym_await] = ACTIONS(3131), - [anon_sym_api] = ACTIONS(3131), - [sym_true] = ACTIONS(3131), - [sym_false] = ACTIONS(3131), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(3131), - [anon_sym_include] = ACTIONS(3131), - [anon_sym_DEF] = ACTIONS(3131), - [anon_sym_cdef] = ACTIONS(3131), - [anon_sym_cpdef] = ACTIONS(3131), - [anon_sym_new] = ACTIONS(3131), - [anon_sym_ctypedef] = ACTIONS(3131), - [anon_sym_public] = ACTIONS(3131), - [anon_sym_packed] = ACTIONS(3131), - [anon_sym_inline] = ACTIONS(3131), - [anon_sym_readonly] = ACTIONS(3131), - [anon_sym_sizeof] = ACTIONS(3131), - [sym__dedent] = ACTIONS(3129), - [sym_string_start] = ACTIONS(3129), - }, - [1036] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5609), - [sym_list_splat_pattern] = STATE(2591), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(4053), - [sym_primary_expression] = STATE(2077), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2631), - [sym_unary_operator] = STATE(2631), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2631), - [sym_subscript] = STATE(2631), - [sym_slice] = STATE(5361), - [sym_ellipsis] = STATE(2631), - [sym_call] = STATE(2631), - [sym_list] = STATE(2631), - [sym_set] = STATE(2631), - [sym_tuple] = STATE(2631), - [sym_dictionary] = STATE(2631), - [sym_list_comprehension] = STATE(2631), - [sym_dictionary_comprehension] = STATE(2631), - [sym_set_comprehension] = STATE(2631), - [sym_generator_expression] = STATE(2631), - [sym_parenthesized_expression] = STATE(2631), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2631), - [sym_string] = STATE(2218), - [sym_none] = STATE(2631), - [sym_await] = STATE(2631), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2631), - [sym_cast_expression] = STATE(2631), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_print] = ACTIONS(2631), - [anon_sym_COLON] = ACTIONS(3109), - [anon_sym_match] = ACTIONS(2631), - [anon_sym_async] = ACTIONS(2631), - [anon_sym_exec] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_RBRACK] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2639), - [anon_sym_lambda] = ACTIONS(2641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2643), - [anon_sym_api] = ACTIONS(2631), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2645), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), - }, - [1037] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5609), - [sym_list_splat_pattern] = STATE(2591), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(4053), - [sym_primary_expression] = STATE(2077), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2631), - [sym_unary_operator] = STATE(2631), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2631), - [sym_subscript] = STATE(2631), - [sym_slice] = STATE(5361), - [sym_ellipsis] = STATE(2631), - [sym_call] = STATE(2631), - [sym_list] = STATE(2631), - [sym_set] = STATE(2631), - [sym_tuple] = STATE(2631), - [sym_dictionary] = STATE(2631), - [sym_list_comprehension] = STATE(2631), - [sym_dictionary_comprehension] = STATE(2631), - [sym_set_comprehension] = STATE(2631), - [sym_generator_expression] = STATE(2631), - [sym_parenthesized_expression] = STATE(2631), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2631), - [sym_string] = STATE(2218), - [sym_none] = STATE(2631), - [sym_await] = STATE(2631), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2631), - [sym_cast_expression] = STATE(2631), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_print] = ACTIONS(2631), - [anon_sym_COLON] = ACTIONS(3109), - [anon_sym_match] = ACTIONS(2631), - [anon_sym_async] = ACTIONS(2631), - [anon_sym_exec] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_RBRACK] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2639), - [anon_sym_lambda] = ACTIONS(2641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2643), - [anon_sym_api] = ACTIONS(2631), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2645), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), - }, - [1038] = { - [sym_identifier] = ACTIONS(3135), - [anon_sym_import] = ACTIONS(3135), - [anon_sym_cimport] = ACTIONS(3135), - [anon_sym_from] = ACTIONS(3135), - [anon_sym_LPAREN] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(3133), - [anon_sym_print] = ACTIONS(3135), - [anon_sym_assert] = ACTIONS(3135), - [anon_sym_return] = ACTIONS(3135), - [anon_sym_del] = ACTIONS(3135), - [anon_sym_raise] = ACTIONS(3135), - [anon_sym_pass] = ACTIONS(3135), - [anon_sym_break] = ACTIONS(3135), - [anon_sym_continue] = ACTIONS(3135), - [anon_sym_if] = ACTIONS(3135), - [anon_sym_else] = ACTIONS(3135), - [anon_sym_match] = ACTIONS(3135), - [anon_sym_async] = ACTIONS(3135), - [anon_sym_for] = ACTIONS(3135), - [anon_sym_while] = ACTIONS(3135), - [anon_sym_try] = ACTIONS(3135), - [anon_sym_except] = ACTIONS(3135), - [anon_sym_finally] = ACTIONS(3135), - [anon_sym_with] = ACTIONS(3135), - [anon_sym_def] = ACTIONS(3135), - [anon_sym_global] = ACTIONS(3135), - [anon_sym_nonlocal] = ACTIONS(3135), - [anon_sym_exec] = ACTIONS(3135), - [anon_sym_type] = ACTIONS(3135), - [anon_sym_class] = ACTIONS(3135), - [anon_sym_LBRACK] = ACTIONS(3133), - [anon_sym_AT] = ACTIONS(3133), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_LBRACE] = ACTIONS(3133), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_not] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3133), - [anon_sym_TILDE] = ACTIONS(3133), - [anon_sym_LT] = ACTIONS(3133), - [anon_sym_lambda] = ACTIONS(3135), - [anon_sym_yield] = ACTIONS(3135), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3133), - [anon_sym_None] = ACTIONS(3135), - [sym_integer] = ACTIONS(3135), - [sym_float] = ACTIONS(3133), - [anon_sym_await] = ACTIONS(3135), - [anon_sym_api] = ACTIONS(3135), - [sym_true] = ACTIONS(3135), - [sym_false] = ACTIONS(3135), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(3135), - [anon_sym_include] = ACTIONS(3135), - [anon_sym_DEF] = ACTIONS(3135), - [anon_sym_cdef] = ACTIONS(3135), - [anon_sym_cpdef] = ACTIONS(3135), - [anon_sym_new] = ACTIONS(3135), - [anon_sym_ctypedef] = ACTIONS(3135), - [anon_sym_public] = ACTIONS(3135), - [anon_sym_packed] = ACTIONS(3135), - [anon_sym_inline] = ACTIONS(3135), - [anon_sym_readonly] = ACTIONS(3135), - [anon_sym_sizeof] = ACTIONS(3135), - [sym__dedent] = ACTIONS(3133), - [sym_string_start] = ACTIONS(3133), - }, - [1039] = { - [sym_identifier] = ACTIONS(3139), - [anon_sym_import] = ACTIONS(3139), - [anon_sym_cimport] = ACTIONS(3139), - [anon_sym_from] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(3137), - [anon_sym_STAR] = ACTIONS(3137), - [anon_sym_print] = ACTIONS(3139), - [anon_sym_assert] = ACTIONS(3139), - [anon_sym_return] = ACTIONS(3139), - [anon_sym_del] = ACTIONS(3139), - [anon_sym_raise] = ACTIONS(3139), - [anon_sym_pass] = ACTIONS(3139), - [anon_sym_break] = ACTIONS(3139), - [anon_sym_continue] = ACTIONS(3139), - [anon_sym_if] = ACTIONS(3139), - [anon_sym_else] = ACTIONS(3139), - [anon_sym_match] = ACTIONS(3139), - [anon_sym_async] = ACTIONS(3139), - [anon_sym_for] = ACTIONS(3139), - [anon_sym_while] = ACTIONS(3139), - [anon_sym_try] = ACTIONS(3139), - [anon_sym_except_STAR] = ACTIONS(3137), - [anon_sym_finally] = ACTIONS(3139), - [anon_sym_with] = ACTIONS(3139), - [anon_sym_def] = ACTIONS(3139), - [anon_sym_global] = ACTIONS(3139), - [anon_sym_nonlocal] = ACTIONS(3139), - [anon_sym_exec] = ACTIONS(3139), - [anon_sym_type] = ACTIONS(3139), - [anon_sym_class] = ACTIONS(3139), - [anon_sym_LBRACK] = ACTIONS(3137), - [anon_sym_AT] = ACTIONS(3137), - [anon_sym_DASH] = ACTIONS(3137), - [anon_sym_LBRACE] = ACTIONS(3137), - [anon_sym_PLUS] = ACTIONS(3137), - [anon_sym_not] = ACTIONS(3139), - [anon_sym_AMP] = ACTIONS(3137), - [anon_sym_TILDE] = ACTIONS(3137), - [anon_sym_LT] = ACTIONS(3137), - [anon_sym_lambda] = ACTIONS(3139), - [anon_sym_yield] = ACTIONS(3139), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3137), - [anon_sym_None] = ACTIONS(3139), - [sym_integer] = ACTIONS(3139), - [sym_float] = ACTIONS(3137), - [anon_sym_await] = ACTIONS(3139), - [anon_sym_api] = ACTIONS(3139), - [sym_true] = ACTIONS(3139), - [sym_false] = ACTIONS(3139), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(3139), - [anon_sym_include] = ACTIONS(3139), - [anon_sym_DEF] = ACTIONS(3139), - [anon_sym_cdef] = ACTIONS(3139), - [anon_sym_cpdef] = ACTIONS(3139), - [anon_sym_new] = ACTIONS(3139), - [anon_sym_ctypedef] = ACTIONS(3139), - [anon_sym_public] = ACTIONS(3139), - [anon_sym_packed] = ACTIONS(3139), - [anon_sym_inline] = ACTIONS(3139), - [anon_sym_readonly] = ACTIONS(3139), - [anon_sym_sizeof] = ACTIONS(3139), - [sym__dedent] = ACTIONS(3137), - [sym_string_start] = ACTIONS(3137), - }, - [1040] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5609), - [sym_list_splat_pattern] = STATE(2591), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(4053), - [sym_primary_expression] = STATE(2077), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2631), - [sym_unary_operator] = STATE(2631), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2631), - [sym_subscript] = STATE(2631), - [sym_slice] = STATE(5361), - [sym_ellipsis] = STATE(2631), - [sym_call] = STATE(2631), - [sym_list] = STATE(2631), - [sym_set] = STATE(2631), - [sym_tuple] = STATE(2631), - [sym_dictionary] = STATE(2631), - [sym_list_comprehension] = STATE(2631), - [sym_dictionary_comprehension] = STATE(2631), - [sym_set_comprehension] = STATE(2631), - [sym_generator_expression] = STATE(2631), - [sym_parenthesized_expression] = STATE(2631), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2631), - [sym_string] = STATE(2218), - [sym_none] = STATE(2631), - [sym_await] = STATE(2631), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2631), - [sym_cast_expression] = STATE(2631), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_print] = ACTIONS(2631), - [anon_sym_COLON] = ACTIONS(3109), - [anon_sym_match] = ACTIONS(2631), - [anon_sym_async] = ACTIONS(2631), - [anon_sym_exec] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_RBRACK] = ACTIONS(3221), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2639), - [anon_sym_lambda] = ACTIONS(2641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2643), - [anon_sym_api] = ACTIONS(2631), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2645), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), - }, - [1041] = { - [ts_builtin_sym_end] = ACTIONS(3163), - [sym_identifier] = ACTIONS(3161), - [anon_sym_import] = ACTIONS(3161), - [anon_sym_cimport] = ACTIONS(3161), - [anon_sym_from] = ACTIONS(3161), - [anon_sym_LPAREN] = ACTIONS(3163), - [anon_sym_STAR] = ACTIONS(3163), - [anon_sym_print] = ACTIONS(3161), - [anon_sym_assert] = ACTIONS(3161), - [anon_sym_return] = ACTIONS(3161), - [anon_sym_del] = ACTIONS(3161), - [anon_sym_raise] = ACTIONS(3161), - [anon_sym_pass] = ACTIONS(3161), - [anon_sym_break] = ACTIONS(3161), - [anon_sym_continue] = ACTIONS(3161), - [anon_sym_if] = ACTIONS(3161), - [anon_sym_else] = ACTIONS(3161), - [anon_sym_match] = ACTIONS(3161), - [anon_sym_async] = ACTIONS(3161), - [anon_sym_for] = ACTIONS(3161), - [anon_sym_while] = ACTIONS(3161), - [anon_sym_try] = ACTIONS(3161), - [anon_sym_except_STAR] = ACTIONS(3163), - [anon_sym_finally] = ACTIONS(3161), - [anon_sym_with] = ACTIONS(3161), - [anon_sym_def] = ACTIONS(3161), - [anon_sym_global] = ACTIONS(3161), - [anon_sym_nonlocal] = ACTIONS(3161), - [anon_sym_exec] = ACTIONS(3161), - [anon_sym_type] = ACTIONS(3161), - [anon_sym_class] = ACTIONS(3161), - [anon_sym_LBRACK] = ACTIONS(3163), - [anon_sym_AT] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(3163), - [anon_sym_LBRACE] = ACTIONS(3163), - [anon_sym_PLUS] = ACTIONS(3163), - [anon_sym_not] = ACTIONS(3161), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym_TILDE] = ACTIONS(3163), - [anon_sym_LT] = ACTIONS(3163), - [anon_sym_lambda] = ACTIONS(3161), - [anon_sym_yield] = ACTIONS(3161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3163), - [anon_sym_None] = ACTIONS(3161), - [sym_integer] = ACTIONS(3161), - [sym_float] = ACTIONS(3163), - [anon_sym_await] = ACTIONS(3161), - [anon_sym_api] = ACTIONS(3161), - [sym_true] = ACTIONS(3161), - [sym_false] = ACTIONS(3161), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(3161), - [anon_sym_include] = ACTIONS(3161), - [anon_sym_DEF] = ACTIONS(3161), - [anon_sym_cdef] = ACTIONS(3161), - [anon_sym_cpdef] = ACTIONS(3161), - [anon_sym_new] = ACTIONS(3161), - [anon_sym_ctypedef] = ACTIONS(3161), - [anon_sym_public] = ACTIONS(3161), - [anon_sym_packed] = ACTIONS(3161), - [anon_sym_inline] = ACTIONS(3161), - [anon_sym_readonly] = ACTIONS(3161), - [anon_sym_sizeof] = ACTIONS(3161), - [sym_string_start] = ACTIONS(3163), - }, - [1042] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5609), - [sym_list_splat_pattern] = STATE(2591), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(4053), - [sym_primary_expression] = STATE(2077), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2631), - [sym_unary_operator] = STATE(2631), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2631), - [sym_subscript] = STATE(2631), - [sym_slice] = STATE(5361), - [sym_ellipsis] = STATE(2631), - [sym_call] = STATE(2631), - [sym_list] = STATE(2631), - [sym_set] = STATE(2631), - [sym_tuple] = STATE(2631), - [sym_dictionary] = STATE(2631), - [sym_list_comprehension] = STATE(2631), - [sym_dictionary_comprehension] = STATE(2631), - [sym_set_comprehension] = STATE(2631), - [sym_generator_expression] = STATE(2631), - [sym_parenthesized_expression] = STATE(2631), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2631), - [sym_string] = STATE(2218), - [sym_none] = STATE(2631), - [sym_await] = STATE(2631), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2631), - [sym_cast_expression] = STATE(2631), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_print] = ACTIONS(2631), - [anon_sym_COLON] = ACTIONS(3109), - [anon_sym_match] = ACTIONS(2631), - [anon_sym_async] = ACTIONS(2631), - [anon_sym_exec] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_RBRACK] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2639), - [anon_sym_lambda] = ACTIONS(2641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2643), - [anon_sym_api] = ACTIONS(2631), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2645), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), - }, - [1043] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5609), - [sym_list_splat_pattern] = STATE(2591), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(4053), - [sym_primary_expression] = STATE(2077), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2631), - [sym_unary_operator] = STATE(2631), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2631), - [sym_subscript] = STATE(2631), - [sym_slice] = STATE(5361), - [sym_ellipsis] = STATE(2631), - [sym_call] = STATE(2631), - [sym_list] = STATE(2631), - [sym_set] = STATE(2631), - [sym_tuple] = STATE(2631), - [sym_dictionary] = STATE(2631), - [sym_list_comprehension] = STATE(2631), - [sym_dictionary_comprehension] = STATE(2631), - [sym_set_comprehension] = STATE(2631), - [sym_generator_expression] = STATE(2631), - [sym_parenthesized_expression] = STATE(2631), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2631), - [sym_string] = STATE(2218), - [sym_none] = STATE(2631), - [sym_await] = STATE(2631), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2631), - [sym_cast_expression] = STATE(2631), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_print] = ACTIONS(2631), - [anon_sym_COLON] = ACTIONS(3109), - [anon_sym_match] = ACTIONS(2631), - [anon_sym_async] = ACTIONS(2631), - [anon_sym_exec] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_RBRACK] = ACTIONS(3225), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2639), - [anon_sym_lambda] = ACTIONS(2641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2643), - [anon_sym_api] = ACTIONS(2631), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2645), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), - }, - [1044] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5609), - [sym_list_splat_pattern] = STATE(2591), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(4053), - [sym_primary_expression] = STATE(2077), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2631), - [sym_unary_operator] = STATE(2631), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2631), - [sym_subscript] = STATE(2631), - [sym_slice] = STATE(5361), - [sym_ellipsis] = STATE(2631), - [sym_call] = STATE(2631), - [sym_list] = STATE(2631), - [sym_set] = STATE(2631), - [sym_tuple] = STATE(2631), - [sym_dictionary] = STATE(2631), - [sym_list_comprehension] = STATE(2631), - [sym_dictionary_comprehension] = STATE(2631), - [sym_set_comprehension] = STATE(2631), - [sym_generator_expression] = STATE(2631), - [sym_parenthesized_expression] = STATE(2631), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2631), - [sym_string] = STATE(2218), - [sym_none] = STATE(2631), - [sym_await] = STATE(2631), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2631), - [sym_cast_expression] = STATE(2631), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_print] = ACTIONS(2631), - [anon_sym_COLON] = ACTIONS(3109), - [anon_sym_match] = ACTIONS(2631), - [anon_sym_async] = ACTIONS(2631), - [anon_sym_exec] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_RBRACK] = ACTIONS(3227), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2639), - [anon_sym_lambda] = ACTIONS(2641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2643), - [anon_sym_api] = ACTIONS(2631), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2645), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), - }, - [1045] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5609), - [sym_list_splat_pattern] = STATE(2591), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(4053), - [sym_primary_expression] = STATE(2077), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2631), - [sym_unary_operator] = STATE(2631), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2631), - [sym_subscript] = STATE(2631), - [sym_slice] = STATE(5361), - [sym_ellipsis] = STATE(2631), - [sym_call] = STATE(2631), - [sym_list] = STATE(2631), - [sym_set] = STATE(2631), - [sym_tuple] = STATE(2631), - [sym_dictionary] = STATE(2631), - [sym_list_comprehension] = STATE(2631), - [sym_dictionary_comprehension] = STATE(2631), - [sym_set_comprehension] = STATE(2631), - [sym_generator_expression] = STATE(2631), - [sym_parenthesized_expression] = STATE(2631), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2631), - [sym_string] = STATE(2218), - [sym_none] = STATE(2631), - [sym_await] = STATE(2631), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2631), - [sym_cast_expression] = STATE(2631), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_print] = ACTIONS(2631), - [anon_sym_COLON] = ACTIONS(3109), - [anon_sym_match] = ACTIONS(2631), - [anon_sym_async] = ACTIONS(2631), - [anon_sym_exec] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_RBRACK] = ACTIONS(3229), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2639), - [anon_sym_lambda] = ACTIONS(2641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2643), - [anon_sym_api] = ACTIONS(2631), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2645), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), - }, - [1046] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5609), - [sym_list_splat_pattern] = STATE(2591), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(4053), - [sym_primary_expression] = STATE(2077), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2631), - [sym_unary_operator] = STATE(2631), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2631), - [sym_subscript] = STATE(2631), - [sym_slice] = STATE(5361), - [sym_ellipsis] = STATE(2631), - [sym_call] = STATE(2631), - [sym_list] = STATE(2631), - [sym_set] = STATE(2631), - [sym_tuple] = STATE(2631), - [sym_dictionary] = STATE(2631), - [sym_list_comprehension] = STATE(2631), - [sym_dictionary_comprehension] = STATE(2631), - [sym_set_comprehension] = STATE(2631), - [sym_generator_expression] = STATE(2631), - [sym_parenthesized_expression] = STATE(2631), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2631), - [sym_string] = STATE(2218), - [sym_none] = STATE(2631), - [sym_await] = STATE(2631), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2631), - [sym_cast_expression] = STATE(2631), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_print] = ACTIONS(2631), - [anon_sym_COLON] = ACTIONS(3109), - [anon_sym_match] = ACTIONS(2631), - [anon_sym_async] = ACTIONS(2631), - [anon_sym_exec] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_RBRACK] = ACTIONS(3231), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2639), - [anon_sym_lambda] = ACTIONS(2641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2643), - [anon_sym_api] = ACTIONS(2631), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2645), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), + [1056] = { + [ts_builtin_sym_end] = ACTIONS(3157), + [sym_identifier] = ACTIONS(3155), + [anon_sym_import] = ACTIONS(3155), + [anon_sym_cimport] = ACTIONS(3155), + [anon_sym_from] = ACTIONS(3155), + [anon_sym_LPAREN] = ACTIONS(3157), + [anon_sym_STAR] = ACTIONS(3157), + [anon_sym_print] = ACTIONS(3155), + [anon_sym_assert] = ACTIONS(3155), + [anon_sym_return] = ACTIONS(3155), + [anon_sym_del] = ACTIONS(3155), + [anon_sym_raise] = ACTIONS(3155), + [anon_sym_pass] = ACTIONS(3155), + [anon_sym_break] = ACTIONS(3155), + [anon_sym_continue] = ACTIONS(3155), + [anon_sym_if] = ACTIONS(3155), + [anon_sym_else] = ACTIONS(3155), + [anon_sym_match] = ACTIONS(3155), + [anon_sym_async] = ACTIONS(3155), + [anon_sym_for] = ACTIONS(3155), + [anon_sym_while] = ACTIONS(3155), + [anon_sym_try] = ACTIONS(3155), + [anon_sym_except] = ACTIONS(3155), + [anon_sym_finally] = ACTIONS(3155), + [anon_sym_with] = ACTIONS(3155), + [anon_sym_def] = ACTIONS(3155), + [anon_sym_global] = ACTIONS(3155), + [anon_sym_nonlocal] = ACTIONS(3155), + [anon_sym_exec] = ACTIONS(3155), + [anon_sym_type] = ACTIONS(3155), + [anon_sym_class] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3157), + [anon_sym_AT] = ACTIONS(3157), + [anon_sym_DASH] = ACTIONS(3157), + [anon_sym_LBRACE] = ACTIONS(3157), + [anon_sym_PLUS] = ACTIONS(3157), + [anon_sym_not] = ACTIONS(3155), + [anon_sym_AMP] = ACTIONS(3157), + [anon_sym_TILDE] = ACTIONS(3157), + [anon_sym_LT] = ACTIONS(3157), + [anon_sym_lambda] = ACTIONS(3155), + [anon_sym_yield] = ACTIONS(3155), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3157), + [anon_sym_None] = ACTIONS(3155), + [sym_integer] = ACTIONS(3155), + [sym_float] = ACTIONS(3157), + [anon_sym_await] = ACTIONS(3155), + [anon_sym_api] = ACTIONS(3155), + [sym_true] = ACTIONS(3155), + [sym_false] = ACTIONS(3155), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3155), + [anon_sym_include] = ACTIONS(3155), + [anon_sym_DEF] = ACTIONS(3155), + [anon_sym_cdef] = ACTIONS(3155), + [anon_sym_cpdef] = ACTIONS(3155), + [anon_sym_new] = ACTIONS(3155), + [anon_sym_ctypedef] = ACTIONS(3155), + [anon_sym_public] = ACTIONS(3155), + [anon_sym_packed] = ACTIONS(3155), + [anon_sym_inline] = ACTIONS(3155), + [anon_sym_readonly] = ACTIONS(3155), + [anon_sym_sizeof] = ACTIONS(3155), + [sym_string_start] = ACTIONS(3157), + }, + [1057] = { + [ts_builtin_sym_end] = ACTIONS(3161), + [sym_identifier] = ACTIONS(3159), + [anon_sym_import] = ACTIONS(3159), + [anon_sym_cimport] = ACTIONS(3159), + [anon_sym_from] = ACTIONS(3159), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_STAR] = ACTIONS(3161), + [anon_sym_print] = ACTIONS(3159), + [anon_sym_assert] = ACTIONS(3159), + [anon_sym_return] = ACTIONS(3159), + [anon_sym_del] = ACTIONS(3159), + [anon_sym_raise] = ACTIONS(3159), + [anon_sym_pass] = ACTIONS(3159), + [anon_sym_break] = ACTIONS(3159), + [anon_sym_continue] = ACTIONS(3159), + [anon_sym_if] = ACTIONS(3159), + [anon_sym_else] = ACTIONS(3159), + [anon_sym_match] = ACTIONS(3159), + [anon_sym_async] = ACTIONS(3159), + [anon_sym_for] = ACTIONS(3159), + [anon_sym_while] = ACTIONS(3159), + [anon_sym_try] = ACTIONS(3159), + [anon_sym_except_STAR] = ACTIONS(3161), + [anon_sym_finally] = ACTIONS(3159), + [anon_sym_with] = ACTIONS(3159), + [anon_sym_def] = ACTIONS(3159), + [anon_sym_global] = ACTIONS(3159), + [anon_sym_nonlocal] = ACTIONS(3159), + [anon_sym_exec] = ACTIONS(3159), + [anon_sym_type] = ACTIONS(3159), + [anon_sym_class] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(3161), + [anon_sym_AT] = ACTIONS(3161), + [anon_sym_DASH] = ACTIONS(3161), + [anon_sym_LBRACE] = ACTIONS(3161), + [anon_sym_PLUS] = ACTIONS(3161), + [anon_sym_not] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3161), + [anon_sym_TILDE] = ACTIONS(3161), + [anon_sym_LT] = ACTIONS(3161), + [anon_sym_lambda] = ACTIONS(3159), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3161), + [anon_sym_None] = ACTIONS(3159), + [sym_integer] = ACTIONS(3159), + [sym_float] = ACTIONS(3161), + [anon_sym_await] = ACTIONS(3159), + [anon_sym_api] = ACTIONS(3159), + [sym_true] = ACTIONS(3159), + [sym_false] = ACTIONS(3159), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3159), + [anon_sym_include] = ACTIONS(3159), + [anon_sym_DEF] = ACTIONS(3159), + [anon_sym_cdef] = ACTIONS(3159), + [anon_sym_cpdef] = ACTIONS(3159), + [anon_sym_new] = ACTIONS(3159), + [anon_sym_ctypedef] = ACTIONS(3159), + [anon_sym_public] = ACTIONS(3159), + [anon_sym_packed] = ACTIONS(3159), + [anon_sym_inline] = ACTIONS(3159), + [anon_sym_readonly] = ACTIONS(3159), + [anon_sym_sizeof] = ACTIONS(3159), + [sym_string_start] = ACTIONS(3161), + }, + [1058] = { + [sym_identifier] = ACTIONS(3177), + [anon_sym_import] = ACTIONS(3177), + [anon_sym_cimport] = ACTIONS(3177), + [anon_sym_from] = ACTIONS(3177), + [anon_sym_LPAREN] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(3175), + [anon_sym_print] = ACTIONS(3177), + [anon_sym_assert] = ACTIONS(3177), + [anon_sym_return] = ACTIONS(3177), + [anon_sym_del] = ACTIONS(3177), + [anon_sym_raise] = ACTIONS(3177), + [anon_sym_pass] = ACTIONS(3177), + [anon_sym_break] = ACTIONS(3177), + [anon_sym_continue] = ACTIONS(3177), + [anon_sym_if] = ACTIONS(3177), + [anon_sym_else] = ACTIONS(3177), + [anon_sym_match] = ACTIONS(3177), + [anon_sym_async] = ACTIONS(3177), + [anon_sym_for] = ACTIONS(3177), + [anon_sym_while] = ACTIONS(3177), + [anon_sym_try] = ACTIONS(3177), + [anon_sym_except_STAR] = ACTIONS(3175), + [anon_sym_finally] = ACTIONS(3177), + [anon_sym_with] = ACTIONS(3177), + [anon_sym_def] = ACTIONS(3177), + [anon_sym_global] = ACTIONS(3177), + [anon_sym_nonlocal] = ACTIONS(3177), + [anon_sym_exec] = ACTIONS(3177), + [anon_sym_type] = ACTIONS(3177), + [anon_sym_class] = ACTIONS(3177), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_AT] = ACTIONS(3175), + [anon_sym_DASH] = ACTIONS(3175), + [anon_sym_LBRACE] = ACTIONS(3175), + [anon_sym_PLUS] = ACTIONS(3175), + [anon_sym_not] = ACTIONS(3177), + [anon_sym_AMP] = ACTIONS(3175), + [anon_sym_TILDE] = ACTIONS(3175), + [anon_sym_LT] = ACTIONS(3175), + [anon_sym_lambda] = ACTIONS(3177), + [anon_sym_yield] = ACTIONS(3177), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3175), + [anon_sym_None] = ACTIONS(3177), + [sym_integer] = ACTIONS(3177), + [sym_float] = ACTIONS(3175), + [anon_sym_await] = ACTIONS(3177), + [anon_sym_api] = ACTIONS(3177), + [sym_true] = ACTIONS(3177), + [sym_false] = ACTIONS(3177), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3177), + [anon_sym_include] = ACTIONS(3177), + [anon_sym_DEF] = ACTIONS(3177), + [anon_sym_cdef] = ACTIONS(3177), + [anon_sym_cpdef] = ACTIONS(3177), + [anon_sym_new] = ACTIONS(3177), + [anon_sym_ctypedef] = ACTIONS(3177), + [anon_sym_public] = ACTIONS(3177), + [anon_sym_packed] = ACTIONS(3177), + [anon_sym_inline] = ACTIONS(3177), + [anon_sym_readonly] = ACTIONS(3177), + [anon_sym_sizeof] = ACTIONS(3177), + [sym__dedent] = ACTIONS(3175), + [sym_string_start] = ACTIONS(3175), + }, + [1059] = { + [sym_named_expression] = STATE(2631), + [sym__named_expression_lhs] = STATE(5572), + [sym_list_splat_pattern] = STATE(2589), + [sym_as_pattern] = STATE(2631), + [sym_expression] = STATE(4127), + [sym_primary_expression] = STATE(2107), + [sym_not_operator] = STATE(2631), + [sym_boolean_operator] = STATE(2631), + [sym_binary_operator] = STATE(2630), + [sym_unary_operator] = STATE(2630), + [sym_comparison_operator] = STATE(2631), + [sym_lambda] = STATE(2631), + [sym_attribute] = STATE(2630), + [sym_subscript] = STATE(2630), + [sym_slice] = STATE(5318), + [sym_ellipsis] = STATE(2630), + [sym_call] = STATE(2630), + [sym_list] = STATE(2630), + [sym_set] = STATE(2630), + [sym_tuple] = STATE(2630), + [sym_dictionary] = STATE(2630), + [sym_list_comprehension] = STATE(2630), + [sym_dictionary_comprehension] = STATE(2630), + [sym_set_comprehension] = STATE(2630), + [sym_generator_expression] = STATE(2630), + [sym_parenthesized_expression] = STATE(2630), + [sym_conditional_expression] = STATE(2631), + [sym_concatenated_string] = STATE(2630), + [sym_string] = STATE(2200), + [sym_none] = STATE(2630), + [sym_await] = STATE(2630), + [sym_new_expression] = STATE(2631), + [sym_sizeof_expression] = STATE(2630), + [sym_cast_expression] = STATE(2630), + [sym_identifier] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2461), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_print] = ACTIONS(2641), + [anon_sym_COLON] = ACTIONS(3113), + [anon_sym_match] = ACTIONS(2641), + [anon_sym_async] = ACTIONS(2641), + [anon_sym_exec] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2467), + [anon_sym_RBRACK] = ACTIONS(3239), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_not] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2469), + [anon_sym_TILDE] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_lambda] = ACTIONS(2651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2475), + [anon_sym_None] = ACTIONS(2477), + [sym_integer] = ACTIONS(2459), + [sym_float] = ACTIONS(2479), + [anon_sym_await] = ACTIONS(2653), + [anon_sym_api] = ACTIONS(2641), + [sym_true] = ACTIONS(2459), + [sym_false] = ACTIONS(2459), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2655), + [anon_sym_sizeof] = ACTIONS(2483), + [sym_string_start] = ACTIONS(2485), + }, + [1060] = { + [sym_named_expression] = STATE(2631), + [sym__named_expression_lhs] = STATE(5572), + [sym_list_splat_pattern] = STATE(2589), + [sym_as_pattern] = STATE(2631), + [sym_expression] = STATE(4127), + [sym_primary_expression] = STATE(2107), + [sym_not_operator] = STATE(2631), + [sym_boolean_operator] = STATE(2631), + [sym_binary_operator] = STATE(2630), + [sym_unary_operator] = STATE(2630), + [sym_comparison_operator] = STATE(2631), + [sym_lambda] = STATE(2631), + [sym_attribute] = STATE(2630), + [sym_subscript] = STATE(2630), + [sym_slice] = STATE(5318), + [sym_ellipsis] = STATE(2630), + [sym_call] = STATE(2630), + [sym_list] = STATE(2630), + [sym_set] = STATE(2630), + [sym_tuple] = STATE(2630), + [sym_dictionary] = STATE(2630), + [sym_list_comprehension] = STATE(2630), + [sym_dictionary_comprehension] = STATE(2630), + [sym_set_comprehension] = STATE(2630), + [sym_generator_expression] = STATE(2630), + [sym_parenthesized_expression] = STATE(2630), + [sym_conditional_expression] = STATE(2631), + [sym_concatenated_string] = STATE(2630), + [sym_string] = STATE(2200), + [sym_none] = STATE(2630), + [sym_await] = STATE(2630), + [sym_new_expression] = STATE(2631), + [sym_sizeof_expression] = STATE(2630), + [sym_cast_expression] = STATE(2630), + [sym_identifier] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2461), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_print] = ACTIONS(2641), + [anon_sym_COLON] = ACTIONS(3113), + [anon_sym_match] = ACTIONS(2641), + [anon_sym_async] = ACTIONS(2641), + [anon_sym_exec] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2467), + [anon_sym_RBRACK] = ACTIONS(3241), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_not] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2469), + [anon_sym_TILDE] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_lambda] = ACTIONS(2651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2475), + [anon_sym_None] = ACTIONS(2477), + [sym_integer] = ACTIONS(2459), + [sym_float] = ACTIONS(2479), + [anon_sym_await] = ACTIONS(2653), + [anon_sym_api] = ACTIONS(2641), + [sym_true] = ACTIONS(2459), + [sym_false] = ACTIONS(2459), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2655), + [anon_sym_sizeof] = ACTIONS(2483), + [sym_string_start] = ACTIONS(2485), + }, + [1061] = { + [ts_builtin_sym_end] = ACTIONS(1488), + [sym_identifier] = ACTIONS(1486), + [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_else] = 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_except] = ACTIONS(1486), + [anon_sym_finally] = 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), + [anon_sym_DOT_DOT_DOT] = 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_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_new] = ACTIONS(1486), + [anon_sym_ctypedef] = 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_string_start] = ACTIONS(1488), }, - [1047] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5609), - [sym_list_splat_pattern] = STATE(2591), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(4053), - [sym_primary_expression] = STATE(2077), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2631), - [sym_unary_operator] = STATE(2631), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2631), - [sym_subscript] = STATE(2631), - [sym_slice] = STATE(5361), - [sym_ellipsis] = STATE(2631), - [sym_call] = STATE(2631), - [sym_list] = STATE(2631), - [sym_set] = STATE(2631), - [sym_tuple] = STATE(2631), - [sym_dictionary] = STATE(2631), - [sym_list_comprehension] = STATE(2631), - [sym_dictionary_comprehension] = STATE(2631), - [sym_set_comprehension] = STATE(2631), - [sym_generator_expression] = STATE(2631), - [sym_parenthesized_expression] = STATE(2631), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2631), - [sym_string] = STATE(2218), - [sym_none] = STATE(2631), - [sym_await] = STATE(2631), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2631), - [sym_cast_expression] = STATE(2631), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_print] = ACTIONS(2631), - [anon_sym_COLON] = ACTIONS(3109), - [anon_sym_match] = ACTIONS(2631), - [anon_sym_async] = ACTIONS(2631), - [anon_sym_exec] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_RBRACK] = ACTIONS(3233), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2639), - [anon_sym_lambda] = ACTIONS(2641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2643), - [anon_sym_api] = ACTIONS(2631), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2645), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), - }, - [1048] = { - [sym_named_expression] = STATE(3081), - [sym__named_expression_lhs] = STATE(5469), - [sym_dictionary_splat] = STATE(5160), - [sym_list_splat_pattern] = STATE(2432), - [sym_as_pattern] = STATE(3081), - [sym_expression] = STATE(4296), - [sym_primary_expression] = STATE(2067), - [sym_not_operator] = STATE(3081), - [sym_boolean_operator] = STATE(3081), - [sym_binary_operator] = STATE(2549), - [sym_unary_operator] = STATE(2549), - [sym_comparison_operator] = STATE(3081), - [sym_lambda] = STATE(3081), - [sym_attribute] = STATE(2549), - [sym_subscript] = STATE(2549), - [sym_ellipsis] = STATE(2549), - [sym_call] = STATE(2549), - [sym_list] = STATE(2549), - [sym_set] = STATE(2549), - [sym_tuple] = STATE(2549), - [sym_dictionary] = STATE(2549), - [sym_pair] = STATE(5160), - [sym_list_comprehension] = STATE(2549), - [sym_dictionary_comprehension] = STATE(2549), - [sym_set_comprehension] = STATE(2549), - [sym_generator_expression] = STATE(2549), - [sym_parenthesized_expression] = STATE(2549), - [sym_conditional_expression] = STATE(3081), - [sym_concatenated_string] = STATE(2549), - [sym_string] = STATE(2140), - [sym_none] = STATE(2549), - [sym_await] = STATE(2549), - [sym_new_expression] = STATE(3081), - [sym_sizeof_expression] = STATE(2549), - [sym_cast_expression] = STATE(2549), - [sym_identifier] = ACTIONS(1211), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_STAR] = ACTIONS(1215), - [anon_sym_print] = ACTIONS(1217), - [anon_sym_match] = ACTIONS(1217), - [anon_sym_async] = ACTIONS(1217), - [anon_sym_STAR_STAR] = ACTIONS(2545), - [anon_sym_exec] = ACTIONS(1217), - [anon_sym_LBRACK] = ACTIONS(1219), - [anon_sym_DASH] = ACTIONS(1227), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_PLUS] = ACTIONS(1227), - [anon_sym_not] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1227), - [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(2735), - [anon_sym_lambda] = ACTIONS(1231), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), - [anon_sym_None] = ACTIONS(1235), - [sym_integer] = ACTIONS(1237), - [sym_float] = ACTIONS(1239), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_api] = ACTIONS(1217), - [sym_true] = ACTIONS(1237), - [sym_false] = ACTIONS(1237), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1243), - [anon_sym_sizeof] = ACTIONS(1245), - [sym_string_start] = ACTIONS(1247), - }, - [1049] = { - [ts_builtin_sym_end] = ACTIONS(1480), - [sym_identifier] = ACTIONS(1478), - [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_else] = 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_except] = ACTIONS(1478), - [anon_sym_finally] = 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), - [anon_sym_DOT_DOT_DOT] = 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_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_new] = ACTIONS(1478), - [anon_sym_ctypedef] = 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_string_start] = ACTIONS(1480), - }, - [1050] = { - [ts_builtin_sym_end] = ACTIONS(1492), - [sym_identifier] = ACTIONS(1490), - [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_else] = 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_except] = ACTIONS(1490), - [anon_sym_finally] = 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), - [anon_sym_DOT_DOT_DOT] = 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_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_new] = ACTIONS(1490), - [anon_sym_ctypedef] = 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_string_start] = ACTIONS(1492), - }, - [1051] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5609), - [sym_list_splat_pattern] = STATE(2591), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(4053), - [sym_primary_expression] = STATE(2077), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2631), - [sym_unary_operator] = STATE(2631), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2631), - [sym_subscript] = STATE(2631), - [sym_slice] = STATE(5361), - [sym_ellipsis] = STATE(2631), - [sym_call] = STATE(2631), - [sym_list] = STATE(2631), - [sym_set] = STATE(2631), - [sym_tuple] = STATE(2631), - [sym_dictionary] = STATE(2631), - [sym_list_comprehension] = STATE(2631), - [sym_dictionary_comprehension] = STATE(2631), - [sym_set_comprehension] = STATE(2631), - [sym_generator_expression] = STATE(2631), - [sym_parenthesized_expression] = STATE(2631), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2631), - [sym_string] = STATE(2218), - [sym_none] = STATE(2631), - [sym_await] = STATE(2631), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2631), - [sym_cast_expression] = STATE(2631), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_print] = ACTIONS(2631), - [anon_sym_COLON] = ACTIONS(3109), - [anon_sym_match] = ACTIONS(2631), - [anon_sym_async] = ACTIONS(2631), - [anon_sym_exec] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_RBRACK] = ACTIONS(3235), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2639), - [anon_sym_lambda] = ACTIONS(2641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2643), - [anon_sym_api] = ACTIONS(2631), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2645), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), - }, - [1052] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5609), - [sym_list_splat_pattern] = STATE(2591), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(4053), - [sym_primary_expression] = STATE(2077), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2631), - [sym_unary_operator] = STATE(2631), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2631), - [sym_subscript] = STATE(2631), - [sym_slice] = STATE(5361), - [sym_ellipsis] = STATE(2631), - [sym_call] = STATE(2631), - [sym_list] = STATE(2631), - [sym_set] = STATE(2631), - [sym_tuple] = STATE(2631), - [sym_dictionary] = STATE(2631), - [sym_list_comprehension] = STATE(2631), - [sym_dictionary_comprehension] = STATE(2631), - [sym_set_comprehension] = STATE(2631), - [sym_generator_expression] = STATE(2631), - [sym_parenthesized_expression] = STATE(2631), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2631), - [sym_string] = STATE(2218), - [sym_none] = STATE(2631), - [sym_await] = STATE(2631), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2631), - [sym_cast_expression] = STATE(2631), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_print] = ACTIONS(2631), - [anon_sym_COLON] = ACTIONS(3109), - [anon_sym_match] = ACTIONS(2631), - [anon_sym_async] = ACTIONS(2631), - [anon_sym_exec] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_RBRACK] = ACTIONS(3237), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2639), - [anon_sym_lambda] = ACTIONS(2641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2643), - [anon_sym_api] = ACTIONS(2631), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2645), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), - }, - [1053] = { - [sym_named_expression] = STATE(3429), - [sym__named_expression_lhs] = STATE(5564), - [sym_list_splat_pattern] = STATE(2088), - [sym_as_pattern] = STATE(3429), - [sym_expression] = STATE(3887), - [sym_primary_expression] = STATE(2024), - [sym_not_operator] = STATE(3429), - [sym_boolean_operator] = STATE(3429), - [sym_binary_operator] = STATE(2123), - [sym_unary_operator] = STATE(2123), - [sym_comparison_operator] = STATE(3429), - [sym_lambda] = STATE(3429), - [sym_attribute] = STATE(2123), - [sym_subscript] = STATE(2123), - [sym_ellipsis] = STATE(2123), - [sym_call] = STATE(2123), - [sym_list] = STATE(2123), - [sym_set] = STATE(2123), - [sym_tuple] = STATE(2123), - [sym_dictionary] = STATE(2123), - [sym_list_comprehension] = STATE(2123), - [sym_dictionary_comprehension] = STATE(2123), - [sym_set_comprehension] = STATE(2123), - [sym_generator_expression] = STATE(2123), - [sym_parenthesized_expression] = STATE(2123), - [sym_conditional_expression] = STATE(3429), - [sym_concatenated_string] = STATE(2123), - [sym_string] = STATE(2034), - [sym_none] = STATE(2123), - [sym_await] = STATE(2123), - [sym_new_expression] = STATE(3429), - [sym_sizeof_expression] = STATE(2123), - [sym_cast_expression] = STATE(2123), - [sym_identifier] = ACTIONS(577), - [anon_sym_SEMI] = ACTIONS(3077), - [anon_sym_from] = ACTIONS(3239), - [anon_sym_LPAREN] = ACTIONS(1281), - [anon_sym_STAR] = ACTIONS(3071), - [anon_sym_print] = ACTIONS(592), - [anon_sym_match] = ACTIONS(592), - [anon_sym_async] = ACTIONS(592), - [anon_sym_exec] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(1287), - [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(614), - [anon_sym_api] = ACTIONS(592), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(3077), - [sym_string_start] = ACTIONS(107), + [1062] = { + [sym_named_expression] = STATE(2631), + [sym__named_expression_lhs] = STATE(5572), + [sym_list_splat_pattern] = STATE(2589), + [sym_as_pattern] = STATE(2631), + [sym_expression] = STATE(4127), + [sym_primary_expression] = STATE(2107), + [sym_not_operator] = STATE(2631), + [sym_boolean_operator] = STATE(2631), + [sym_binary_operator] = STATE(2630), + [sym_unary_operator] = STATE(2630), + [sym_comparison_operator] = STATE(2631), + [sym_lambda] = STATE(2631), + [sym_attribute] = STATE(2630), + [sym_subscript] = STATE(2630), + [sym_slice] = STATE(5318), + [sym_ellipsis] = STATE(2630), + [sym_call] = STATE(2630), + [sym_list] = STATE(2630), + [sym_set] = STATE(2630), + [sym_tuple] = STATE(2630), + [sym_dictionary] = STATE(2630), + [sym_list_comprehension] = STATE(2630), + [sym_dictionary_comprehension] = STATE(2630), + [sym_set_comprehension] = STATE(2630), + [sym_generator_expression] = STATE(2630), + [sym_parenthesized_expression] = STATE(2630), + [sym_conditional_expression] = STATE(2631), + [sym_concatenated_string] = STATE(2630), + [sym_string] = STATE(2200), + [sym_none] = STATE(2630), + [sym_await] = STATE(2630), + [sym_new_expression] = STATE(2631), + [sym_sizeof_expression] = STATE(2630), + [sym_cast_expression] = STATE(2630), + [sym_identifier] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2461), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_print] = ACTIONS(2641), + [anon_sym_COLON] = ACTIONS(3113), + [anon_sym_match] = ACTIONS(2641), + [anon_sym_async] = ACTIONS(2641), + [anon_sym_exec] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2467), + [anon_sym_RBRACK] = ACTIONS(3243), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_not] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2469), + [anon_sym_TILDE] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_lambda] = ACTIONS(2651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2475), + [anon_sym_None] = ACTIONS(2477), + [sym_integer] = ACTIONS(2459), + [sym_float] = ACTIONS(2479), + [anon_sym_await] = ACTIONS(2653), + [anon_sym_api] = ACTIONS(2641), + [sym_true] = ACTIONS(2459), + [sym_false] = ACTIONS(2459), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2655), + [anon_sym_sizeof] = ACTIONS(2483), + [sym_string_start] = ACTIONS(2485), }, }; static const uint16_t ts_small_parse_table[] = { [0] = 27, + ACTIONS(1943), 1, + anon_sym_LPAREN, + ACTIONS(1949), 1, + anon_sym_LBRACK, + ACTIONS(1953), 1, + anon_sym_LBRACE, + ACTIONS(1957), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1959), 1, + anon_sym_None, + ACTIONS(1961), 1, + sym_float, + ACTIONS(1965), 1, + anon_sym_sizeof, + ACTIONS(1967), 1, + sym_string_start, + ACTIONS(2661), 1, + anon_sym_STAR, + ACTIONS(2669), 1, + anon_sym_LT, + ACTIONS(2923), 1, + sym_identifier, + ACTIONS(2931), 1, + anon_sym_await, + ACTIONS(3045), 1, + anon_sym_not, + ACTIONS(3047), 1, + anon_sym_lambda, + ACTIONS(3049), 1, + anon_sym_new, + STATE(2057), 1, + sym_primary_expression, + STATE(2089), 1, + sym_string, + STATE(2284), 1, + sym_list_splat_pattern, + STATE(4286), 1, + sym_expression, + STATE(5675), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3079), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1941), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1951), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2927), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3825), 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(2257), 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, + [119] = 28, + ACTIONS(1211), 1, + sym_identifier, + ACTIONS(1219), 1, + anon_sym_LBRACK, + ACTIONS(1223), 1, + anon_sym_LBRACE, + ACTIONS(1225), 1, + anon_sym_not, + ACTIONS(1231), 1, + anon_sym_lambda, + ACTIONS(1233), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1235), 1, + anon_sym_None, + ACTIONS(1239), 1, + sym_float, + ACTIONS(1241), 1, + anon_sym_await, + ACTIONS(1243), 1, + anon_sym_new, + ACTIONS(1245), 1, + anon_sym_sizeof, + ACTIONS(1247), 1, + sym_string_start, + ACTIONS(2705), 1, + anon_sym_LT, + ACTIONS(2955), 1, + anon_sym_STAR, + ACTIONS(3245), 1, + anon_sym_LPAREN, + STATE(2072), 1, + sym_primary_expression, + STATE(2161), 1, + sym_string, + STATE(2536), 1, + sym_list_splat_pattern, + STATE(4149), 1, + sym_expression, + STATE(4653), 1, + sym_with_item, + STATE(5579), 1, + sym__named_expression_lhs, + STATE(5724), 1, + sym_with_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1237), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1227), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1217), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3088), 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(2401), 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, + [240] = 27, + ACTIONS(1382), 1, + anon_sym_LBRACK, + ACTIONS(1386), 1, + anon_sym_LBRACE, + ACTIONS(1388), 1, + anon_sym_not, + ACTIONS(1390), 1, + anon_sym_LT, + ACTIONS(1392), 1, + anon_sym_lambda, + ACTIONS(1394), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1396), 1, + anon_sym_None, + ACTIONS(1400), 1, + sym_float, + ACTIONS(1404), 1, + anon_sym_new, + ACTIONS(1406), 1, + anon_sym_sizeof, + ACTIONS(1408), 1, + sym_string_start, + ACTIONS(2397), 1, + anon_sym_STAR, + ACTIONS(2401), 1, + anon_sym_await, + ACTIONS(2449), 1, + anon_sym_LPAREN, + ACTIONS(3037), 1, + sym_identifier, + STATE(2163), 1, + sym_primary_expression, + STATE(2393), 1, + sym_string, + STATE(2644), 1, + sym_list_splat_pattern, + STATE(4230), 1, + sym_expression, + STATE(5398), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3055), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1398), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1384), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2399), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2652), 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(2651), 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, + [359] = 27, + ACTIONS(2461), 1, + anon_sym_LPAREN, + ACTIONS(2467), 1, + anon_sym_LBRACK, + ACTIONS(2471), 1, + anon_sym_LBRACE, + ACTIONS(2475), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2477), 1, + anon_sym_None, + ACTIONS(2479), 1, + sym_float, + ACTIONS(2483), 1, + anon_sym_sizeof, + ACTIONS(2485), 1, + sym_string_start, + ACTIONS(2647), 1, + anon_sym_not, + ACTIONS(2649), 1, + anon_sym_LT, + ACTIONS(2651), 1, + anon_sym_lambda, + ACTIONS(2653), 1, + anon_sym_await, + ACTIONS(2655), 1, + anon_sym_new, + ACTIONS(2935), 1, + sym_identifier, + ACTIONS(3103), 1, + anon_sym_STAR, + STATE(2107), 1, + sym_primary_expression, + STATE(2200), 1, + sym_string, + STATE(2589), 1, + sym_list_splat_pattern, + STATE(4287), 1, + sym_expression, + STATE(5572), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3247), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(2459), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2469), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2641), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2631), 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(2630), 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, + [478] = 27, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -119564,30 +120697,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(107), 1, sym_string_start, - ACTIONS(577), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(614), 1, + ACTIONS(1041), 1, anon_sym_await, ACTIONS(1281), 1, anon_sym_LPAREN, ACTIONS(1287), 1, anon_sym_LBRACK, - ACTIONS(3071), 1, + ACTIONS(3073), 1, anon_sym_STAR, - STATE(2024), 1, + STATE(2032), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2043), 1, sym_string, STATE(2088), 1, sym_list_splat_pattern, - STATE(3993), 1, + STATE(4097), 1, sym_expression, - STATE(5564), 1, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3241), 2, + ACTIONS(3249), 2, sym__newline, anon_sym_SEMI, ACTIONS(81), 3, @@ -119599,13 +120732,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -119614,7 +120747,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -119635,221 +120768,468 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [119] = 5, - ACTIONS(2695), 1, - anon_sym_else, - STATE(1526), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3243), 14, + [597] = 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, - ts_builtin_sym_end, + ACTIONS(1001), 1, + sym_identifier, + ACTIONS(1041), 1, + anon_sym_await, + ACTIONS(1281), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(1287), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(3073), 1, + anon_sym_STAR, + STATE(2032), 1, + sym_primary_expression, + STATE(2043), 1, + sym_string, + STATE(2088), 1, + sym_list_splat_pattern, + STATE(4097), 1, + sym_expression, + STATE(5682), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3251), 2, + sym__newline, + anon_sym_SEMI, + 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, - anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(3245), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1016), 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_api, + STATE(3442), 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(2111), 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, + [716] = 27, + ACTIONS(2413), 1, + anon_sym_LPAREN, + ACTIONS(2419), 1, + anon_sym_LBRACK, + ACTIONS(2423), 1, + anon_sym_LBRACE, + ACTIONS(2427), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2429), 1, anon_sym_None, - sym_integer, + ACTIONS(2431), 1, + sym_float, + ACTIONS(2435), 1, + anon_sym_sizeof, + ACTIONS(2437), 1, + sym_string_start, + ACTIONS(2521), 1, sym_identifier, + ACTIONS(2535), 1, + anon_sym_not, + ACTIONS(2537), 1, + anon_sym_LT, + ACTIONS(2543), 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(2545), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [194] = 5, - ACTIONS(2769), 1, - anon_sym_else, - STATE(1674), 1, - sym_else_clause, + ACTIONS(3011), 1, + anon_sym_STAR, + ACTIONS(3017), 1, + anon_sym_lambda, + STATE(2061), 1, + sym_primary_expression, + STATE(2099), 1, + sym_string, + STATE(2256), 1, + sym_list_splat_pattern, + STATE(3965), 1, + sym_expression, + STATE(5687), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3249), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + STATE(4270), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(2411), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2421), 4, 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(3247), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2529), 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(2326), 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(2298), 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, + [835] = 27, + ACTIONS(2461), 1, + anon_sym_LPAREN, + ACTIONS(2467), 1, + anon_sym_LBRACK, + ACTIONS(2471), 1, + anon_sym_LBRACE, + ACTIONS(2475), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2477), 1, + anon_sym_None, + ACTIONS(2479), 1, + sym_float, + ACTIONS(2483), 1, + anon_sym_sizeof, + ACTIONS(2485), 1, + sym_string_start, + ACTIONS(2647), 1, anon_sym_not, + ACTIONS(2649), 1, + anon_sym_LT, + ACTIONS(2651), 1, anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, + ACTIONS(2653), 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(2655), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [269] = 5, - ACTIONS(2769), 1, - anon_sym_else, - STATE(1676), 1, - sym_else_clause, + ACTIONS(2935), 1, + sym_identifier, + ACTIONS(3103), 1, + anon_sym_STAR, + STATE(2107), 1, + sym_primary_expression, + STATE(2200), 1, + sym_string, + STATE(2589), 1, + sym_list_splat_pattern, + STATE(4161), 1, + sym_expression, + STATE(5572), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3253), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(3253), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(2459), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2469), 4, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - anon_sym_LT, + ACTIONS(2641), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2631), 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(2630), 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, + [954] = 28, + ACTIONS(2461), 1, + anon_sym_LPAREN, + ACTIONS(2467), 1, + anon_sym_LBRACK, + ACTIONS(2471), 1, + anon_sym_LBRACE, + ACTIONS(2475), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(2477), 1, + anon_sym_None, + ACTIONS(2479), 1, sym_float, - ACTIONS(3251), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2483), 1, + anon_sym_sizeof, + ACTIONS(2485), 1, + sym_string_start, + ACTIONS(2647), 1, + anon_sym_not, + ACTIONS(2649), 1, + anon_sym_LT, + ACTIONS(2651), 1, + anon_sym_lambda, + ACTIONS(2653), 1, + anon_sym_await, + ACTIONS(2655), 1, + anon_sym_new, + ACTIONS(2935), 1, + sym_identifier, + ACTIONS(3103), 1, + anon_sym_STAR, + ACTIONS(3113), 1, + anon_sym_COLON, + STATE(2107), 1, + sym_primary_expression, + STATE(2200), 1, + sym_string, + STATE(2589), 1, + sym_list_splat_pattern, + STATE(4127), 1, + sym_expression, + STATE(5318), 1, + sym_slice, + STATE(5572), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2459), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2469), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2641), 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(2631), 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(2630), 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, + [1075] = 27, + ACTIONS(1382), 1, + anon_sym_LBRACK, + ACTIONS(1386), 1, + anon_sym_LBRACE, + ACTIONS(1388), 1, anon_sym_not, + ACTIONS(1390), 1, + anon_sym_LT, + ACTIONS(1392), 1, anon_sym_lambda, - anon_sym_yield, + ACTIONS(1394), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1396), 1, anon_sym_None, - sym_integer, - sym_identifier, + ACTIONS(1400), 1, + sym_float, + ACTIONS(1404), 1, + anon_sym_new, + ACTIONS(1406), 1, + anon_sym_sizeof, + ACTIONS(1408), 1, + sym_string_start, + ACTIONS(2397), 1, + anon_sym_STAR, + ACTIONS(2401), 1, anon_sym_await, - anon_sym_api, + ACTIONS(2449), 1, + anon_sym_LPAREN, + ACTIONS(3037), 1, + sym_identifier, + STATE(2163), 1, + sym_primary_expression, + STATE(2393), 1, + sym_string, + STATE(2644), 1, + sym_list_splat_pattern, + STATE(4230), 1, + sym_expression, + STATE(5398), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3079), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1398), 3, + sym_integer, 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, - [344] = 5, - ACTIONS(2769), 1, - anon_sym_else, - STATE(1725), 1, - sym_else_clause, + ACTIONS(1384), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2399), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2652), 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(2651), 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, + [1194] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -119868,7 +121248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3255), 46, + ACTIONS(3255), 48, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -119881,6 +121261,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, @@ -119915,10 +121297,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [419] = 5, - ACTIONS(2769), 1, + [1265] = 5, + ACTIONS(2773), 1, anon_sym_else, - STATE(1749), 1, + STATE(1629), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, @@ -119985,347 +121367,254 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [494] = 4, - ACTIONS(3263), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1553), 15, - sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, + [1340] = 27, + ACTIONS(2413), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(2419), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(2423), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, + ACTIONS(2427), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(2429), 1, + anon_sym_None, + ACTIONS(2431), 1, sym_float, - ACTIONS(1551), 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, + ACTIONS(2435), 1, + anon_sym_sizeof, + ACTIONS(2437), 1, + sym_string_start, + ACTIONS(2521), 1, sym_identifier, + ACTIONS(2535), 1, + anon_sym_not, + ACTIONS(2537), 1, + anon_sym_LT, + ACTIONS(2543), 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(2545), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [567] = 5, - ACTIONS(2773), 1, - anon_sym_finally, - STATE(1777), 1, - sym_finally_clause, + ACTIONS(3011), 1, + anon_sym_STAR, + ACTIONS(3017), 1, + anon_sym_lambda, + STATE(2061), 1, + sym_primary_expression, + STATE(2099), 1, + sym_string, + STATE(2256), 1, + sym_list_splat_pattern, + STATE(3965), 1, + sym_expression, + STATE(5687), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3267), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + STATE(4206), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(2411), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2421), 4, 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(3265), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2529), 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(2326), 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(2298), 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, + [1459] = 27, + ACTIONS(1328), 1, + anon_sym_LBRACE, + ACTIONS(1330), 1, anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(1332), 1, + anon_sym_LT, + ACTIONS(1338), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1340), 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(1344), 1, + sym_float, + ACTIONS(1350), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, + ACTIONS(1360), 1, anon_sym_sizeof, - [642] = 4, - ACTIONS(3269), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1517), 15, + ACTIONS(1362), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, + ACTIONS(1472), 1, + anon_sym_LBRACK, + ACTIONS(1474), 1, + anon_sym_await, + ACTIONS(2377), 1, anon_sym_LPAREN, + ACTIONS(2787), 1, + sym_identifier, + ACTIONS(2965), 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(1515), 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(2969), 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, - [715] = 5, - ACTIONS(2695), 1, - anon_sym_else, - STATE(1407), 1, - sym_else_clause, + STATE(2066), 1, + sym_primary_expression, + STATE(2147), 1, + sym_string, + STATE(2472), 1, + sym_list_splat_pattern, + STATE(3915), 1, + sym_expression, + STATE(5522), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3261), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + STATE(4462), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(1342), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1326), 4, 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(3259), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1470), 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, - [790] = 27, - ACTIONS(67), 1, + STATE(2421), 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(2414), 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, + [1578] = 28, + ACTIONS(1211), 1, + sym_identifier, + ACTIONS(1219), 1, + anon_sym_LBRACK, + ACTIONS(1223), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(1225), 1, anon_sym_not, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(73), 1, + ACTIONS(1231), 1, anon_sym_lambda, - ACTIONS(77), 1, + ACTIONS(1233), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1235), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1239), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(1241), 1, + anon_sym_await, + ACTIONS(1243), 1, anon_sym_new, - ACTIONS(105), 1, + ACTIONS(1245), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1247), 1, sym_string_start, - ACTIONS(577), 1, - sym_identifier, - ACTIONS(614), 1, - anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3071), 1, + ACTIONS(2705), 1, + anon_sym_LT, + ACTIONS(2955), 1, anon_sym_STAR, - STATE(2024), 1, + ACTIONS(3245), 1, + anon_sym_LPAREN, + STATE(2072), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2161), 1, sym_string, - STATE(2088), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(3993), 1, + STATE(4149), 1, sym_expression, - STATE(5564), 1, + STATE(4653), 1, + sym_with_item, + STATE(5488), 1, + sym_with_clause, + STATE(5579), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3271), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(81), 3, + ACTIONS(1237), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1227), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(1217), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(3088), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -120334,7 +121623,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -120355,17 +121644,16 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [909] = 5, - ACTIONS(2695), 1, - anon_sym_else, - STATE(1642), 1, - sym_else_clause, + [1699] = 4, + ACTIONS(3263), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3273), 14, + ACTIONS(1523), 15, sym_string_start, ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -120378,7 +121666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3275), 46, + ACTIONS(1521), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -120425,69 +121713,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [984] = 27, - ACTIONS(2451), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_LBRACK, - ACTIONS(2461), 1, + [1772] = 27, + ACTIONS(1328), 1, anon_sym_LBRACE, - ACTIONS(2465), 1, + ACTIONS(1330), 1, + anon_sym_not, + ACTIONS(1332), 1, + anon_sym_LT, + ACTIONS(1338), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2467), 1, + ACTIONS(1340), 1, anon_sym_None, - ACTIONS(2469), 1, + ACTIONS(1344), 1, sym_float, - ACTIONS(2473), 1, + ACTIONS(1350), 1, + anon_sym_new, + ACTIONS(1360), 1, anon_sym_sizeof, - ACTIONS(2475), 1, + ACTIONS(1362), 1, sym_string_start, - ACTIONS(2637), 1, - anon_sym_not, - ACTIONS(2639), 1, - anon_sym_LT, - ACTIONS(2641), 1, - anon_sym_lambda, - ACTIONS(2643), 1, + ACTIONS(1472), 1, + anon_sym_LBRACK, + ACTIONS(1474), 1, anon_sym_await, - ACTIONS(2645), 1, - anon_sym_new, - ACTIONS(2963), 1, + ACTIONS(2377), 1, + anon_sym_LPAREN, + ACTIONS(2787), 1, sym_identifier, - ACTIONS(3105), 1, + ACTIONS(2965), 1, anon_sym_STAR, - STATE(2077), 1, + ACTIONS(2969), 1, + anon_sym_lambda, + STATE(2066), 1, sym_primary_expression, - STATE(2218), 1, + STATE(2147), 1, sym_string, - STATE(2591), 1, + STATE(2472), 1, sym_list_splat_pattern, - STATE(4186), 1, + STATE(3917), 1, sym_expression, - STATE(5609), 1, + STATE(5522), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3051), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(2449), 3, + STATE(4473), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(1342), 3, sym_integer, sym_true, sym_false, - ACTIONS(2459), 4, + ACTIONS(1326), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2631), 5, + ACTIONS(1470), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2604), 8, + STATE(2421), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -120496,7 +121784,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2631), 20, + STATE(2414), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -120517,140 +121805,161 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [1103] = 5, - ACTIONS(2769), 1, - anon_sym_else, - STATE(1396), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3243), 14, - sym__dedent, + [1891] = 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(1001), 1, + sym_identifier, + ACTIONS(1041), 1, + anon_sym_await, + ACTIONS(1281), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(1287), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(3073), 1, + anon_sym_STAR, + STATE(2032), 1, + sym_primary_expression, + STATE(2043), 1, + sym_string, + STATE(2088), 1, + sym_list_splat_pattern, + STATE(3919), 1, + sym_expression, + STATE(5682), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3265), 2, + sym__newline, + anon_sym_SEMI, + 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, - anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(3245), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1016), 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, - [1178] = 28, - ACTIONS(1382), 1, + STATE(3442), 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(2111), 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, + [2010] = 27, + ACTIONS(2413), 1, + anon_sym_LPAREN, + ACTIONS(2419), 1, anon_sym_LBRACK, - ACTIONS(1386), 1, + ACTIONS(2423), 1, anon_sym_LBRACE, - ACTIONS(1388), 1, - anon_sym_not, - ACTIONS(1390), 1, - anon_sym_LT, - ACTIONS(1392), 1, - anon_sym_lambda, - ACTIONS(1394), 1, + ACTIONS(2427), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, + ACTIONS(2429), 1, anon_sym_None, - ACTIONS(1400), 1, + ACTIONS(2431), 1, sym_float, - ACTIONS(1404), 1, - anon_sym_new, - ACTIONS(1406), 1, + ACTIONS(2435), 1, anon_sym_sizeof, - ACTIONS(1408), 1, + ACTIONS(2437), 1, sym_string_start, - ACTIONS(2439), 1, - anon_sym_LPAREN, - ACTIONS(2955), 1, + ACTIONS(2521), 1, sym_identifier, - ACTIONS(2961), 1, + ACTIONS(2535), 1, + anon_sym_not, + ACTIONS(2537), 1, + anon_sym_LT, + ACTIONS(2543), 1, anon_sym_await, - ACTIONS(3055), 1, + ACTIONS(2545), 1, + anon_sym_new, + ACTIONS(3011), 1, anon_sym_STAR, - ACTIONS(3277), 1, - anon_sym_RPAREN, - STATE(2151), 1, + ACTIONS(3017), 1, + anon_sym_lambda, + STATE(2061), 1, sym_primary_expression, - STATE(2302), 1, + STATE(2099), 1, sym_string, - STATE(2671), 1, + STATE(2256), 1, sym_list_splat_pattern, - STATE(4235), 1, + STATE(3942), 1, sym_expression, - STATE(5189), 1, - sym_with_item, - STATE(5468), 1, + STATE(5687), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1398), 3, + STATE(4466), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(2411), 3, sym_integer, sym_true, sym_false, - ACTIONS(1384), 4, + ACTIONS(2421), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2959), 5, + ACTIONS(2529), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2716), 8, + STATE(2326), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -120659,7 +121968,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2715), 20, + STATE(2298), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -120680,13 +121989,17 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [1299] = 3, + [2129] = 5, + ACTIONS(2693), 1, + anon_sym_else, + STATE(1513), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3281), 14, - sym__dedent, + ACTIONS(3267), 14, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -120699,7 +122012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3279), 48, + ACTIONS(3269), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -120712,8 +122025,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, @@ -120748,16 +122059,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [1370] = 4, - ACTIONS(3283), 1, - anon_sym_COLON, + [2204] = 5, + ACTIONS(2693), 1, + anon_sym_else, + STATE(1517), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1535), 15, + ACTIONS(3271), 14, sym_string_start, ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -120770,7 +122082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1533), 46, + ACTIONS(3273), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -120817,13 +122129,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [1443] = 3, + [2279] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3285), 14, + ACTIONS(3277), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -120836,7 +122148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3287), 48, + ACTIONS(3275), 48, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -120885,69 +122197,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [1514] = 27, - ACTIONS(2401), 1, + [2350] = 27, + ACTIONS(2461), 1, anon_sym_LPAREN, - ACTIONS(2407), 1, + ACTIONS(2467), 1, anon_sym_LBRACK, - ACTIONS(2411), 1, + ACTIONS(2471), 1, anon_sym_LBRACE, - ACTIONS(2415), 1, + ACTIONS(2475), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2417), 1, + ACTIONS(2477), 1, anon_sym_None, - ACTIONS(2419), 1, + ACTIONS(2479), 1, sym_float, + ACTIONS(2483), 1, + anon_sym_sizeof, + ACTIONS(2485), 1, + sym_string_start, + ACTIONS(2647), 1, + anon_sym_not, + ACTIONS(2649), 1, + anon_sym_LT, + ACTIONS(2651), 1, + anon_sym_lambda, + ACTIONS(2653), 1, + anon_sym_await, + ACTIONS(2655), 1, + anon_sym_new, + ACTIONS(2935), 1, + sym_identifier, + ACTIONS(3103), 1, + anon_sym_STAR, + STATE(2107), 1, + sym_primary_expression, + STATE(2200), 1, + sym_string, + STATE(2589), 1, + sym_list_splat_pattern, + STATE(4267), 1, + sym_expression, + STATE(5572), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3055), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(2459), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2469), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2641), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2631), 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(2630), 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, + [2469] = 27, + ACTIONS(2413), 1, + anon_sym_LPAREN, + ACTIONS(2419), 1, + anon_sym_LBRACK, ACTIONS(2423), 1, + anon_sym_LBRACE, + ACTIONS(2427), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2429), 1, + anon_sym_None, + ACTIONS(2431), 1, + sym_float, + ACTIONS(2435), 1, anon_sym_sizeof, - ACTIONS(2425), 1, + ACTIONS(2437), 1, sym_string_start, - ACTIONS(2535), 1, + ACTIONS(2521), 1, sym_identifier, - ACTIONS(2549), 1, + ACTIONS(2535), 1, anon_sym_not, - ACTIONS(2551), 1, + ACTIONS(2537), 1, anon_sym_LT, - ACTIONS(2557), 1, + ACTIONS(2543), 1, anon_sym_await, - ACTIONS(2559), 1, + ACTIONS(2545), 1, anon_sym_new, - ACTIONS(2981), 1, + ACTIONS(3011), 1, anon_sym_STAR, - ACTIONS(2983), 1, + ACTIONS(3017), 1, anon_sym_lambda, - STATE(2054), 1, + STATE(2061), 1, sym_primary_expression, - STATE(2103), 1, + STATE(2099), 1, sym_string, - STATE(2309), 1, + STATE(2256), 1, sym_list_splat_pattern, STATE(3943), 1, sym_expression, - STATE(5519), 1, + STATE(5687), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4295), 2, + STATE(4415), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(2399), 3, + ACTIONS(2411), 3, sym_integer, sym_true, sym_false, - ACTIONS(2409), 4, + ACTIONS(2421), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2543), 5, + ACTIONS(2529), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2236), 8, + STATE(2326), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -120956,7 +122360,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2377), 20, + STATE(2298), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -120977,70 +122381,69 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [1633] = 28, - ACTIONS(2451), 1, + [2588] = 27, + ACTIONS(2489), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(2495), 1, anon_sym_LBRACK, - ACTIONS(2461), 1, + ACTIONS(2499), 1, anon_sym_LBRACE, - ACTIONS(2465), 1, + ACTIONS(2503), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2467), 1, + ACTIONS(2505), 1, anon_sym_None, - ACTIONS(2469), 1, + ACTIONS(2507), 1, sym_float, - ACTIONS(2473), 1, + ACTIONS(2511), 1, anon_sym_sizeof, - ACTIONS(2475), 1, + ACTIONS(2513), 1, sym_string_start, - ACTIONS(2637), 1, + ACTIONS(2561), 1, anon_sym_not, - ACTIONS(2639), 1, + ACTIONS(2563), 1, anon_sym_LT, - ACTIONS(2641), 1, - anon_sym_lambda, - ACTIONS(2643), 1, - anon_sym_await, - ACTIONS(2645), 1, + ACTIONS(2571), 1, anon_sym_new, - ACTIONS(2963), 1, + ACTIONS(2815), 1, sym_identifier, - ACTIONS(3105), 1, + ACTIONS(2823), 1, + anon_sym_await, + ACTIONS(2943), 1, anon_sym_STAR, - ACTIONS(3109), 1, - anon_sym_COLON, - STATE(2077), 1, + ACTIONS(2949), 1, + anon_sym_lambda, + STATE(2070), 1, sym_primary_expression, - STATE(2218), 1, + STATE(2177), 1, sym_string, - STATE(2591), 1, + STATE(2415), 1, sym_list_splat_pattern, - STATE(4053), 1, + STATE(3953), 1, sym_expression, - STATE(5361), 1, - sym_slice, - STATE(5609), 1, + STATE(5681), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2449), 3, + STATE(4241), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(2487), 3, sym_integer, sym_true, sym_false, - ACTIONS(2459), 4, + ACTIONS(2497), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2631), 5, + ACTIONS(2819), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2604), 8, + STATE(2493), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -121049,7 +122452,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2631), 20, + STATE(2470), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -121070,69 +122473,70 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [1754] = 27, - ACTIONS(1328), 1, + [2707] = 28, + ACTIONS(1211), 1, + sym_identifier, + ACTIONS(1213), 1, + anon_sym_LPAREN, + ACTIONS(1219), 1, + anon_sym_LBRACK, + ACTIONS(1223), 1, anon_sym_LBRACE, - ACTIONS(1330), 1, + ACTIONS(1225), 1, anon_sym_not, - ACTIONS(1332), 1, - anon_sym_LT, - ACTIONS(1338), 1, + ACTIONS(1231), 1, + anon_sym_lambda, + ACTIONS(1233), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1340), 1, + ACTIONS(1235), 1, anon_sym_None, - ACTIONS(1344), 1, + ACTIONS(1239), 1, sym_float, - ACTIONS(1350), 1, + ACTIONS(1241), 1, + anon_sym_await, + ACTIONS(1243), 1, anon_sym_new, - ACTIONS(1360), 1, + ACTIONS(1245), 1, anon_sym_sizeof, - ACTIONS(1362), 1, + ACTIONS(1247), 1, sym_string_start, - ACTIONS(1472), 1, - anon_sym_LBRACK, - ACTIONS(1474), 1, - anon_sym_await, - ACTIONS(2427), 1, - anon_sym_LPAREN, - ACTIONS(2761), 1, - sym_identifier, - ACTIONS(2939), 1, + ACTIONS(2705), 1, + anon_sym_LT, + ACTIONS(2955), 1, anon_sym_STAR, - ACTIONS(2943), 1, - anon_sym_lambda, - STATE(2060), 1, + ACTIONS(3279), 1, + anon_sym_COLON, + STATE(2072), 1, sym_primary_expression, - STATE(2170), 1, + STATE(2161), 1, sym_string, - STATE(2477), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(3953), 1, + STATE(4149), 1, sym_expression, - STATE(5688), 1, + STATE(5228), 1, + sym_with_item, + STATE(5579), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4344), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(1342), 3, + ACTIONS(1237), 3, sym_integer, sym_true, sym_false, - ACTIONS(1326), 4, + ACTIONS(1227), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1470), 5, + ACTIONS(1217), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2459), 8, + STATE(3088), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -121141,7 +122545,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2457), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -121162,15 +122566,17 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [1873] = 3, + [2828] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3281), 14, + ACTIONS(1513), 16, sym_string_start, ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -121181,7 +122587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3279), 48, + ACTIONS(1511), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -121194,8 +122600,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, @@ -121230,17 +122634,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [1944] = 5, - ACTIONS(2695), 1, - anon_sym_else, - STATE(1649), 1, - sym_else_clause, + [2899] = 4, + ACTIONS(3281), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3289), 14, + ACTIONS(1547), 15, sym_string_start, ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -121253,7 +122656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3291), 46, + ACTIONS(1545), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -121300,69 +122703,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [2019] = 27, - ACTIONS(1328), 1, + [2972] = 27, + ACTIONS(2413), 1, + anon_sym_LPAREN, + ACTIONS(2419), 1, + anon_sym_LBRACK, + ACTIONS(2423), 1, anon_sym_LBRACE, - ACTIONS(1330), 1, - anon_sym_not, - ACTIONS(1332), 1, - anon_sym_LT, - ACTIONS(1338), 1, + ACTIONS(2427), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1340), 1, + ACTIONS(2429), 1, anon_sym_None, - ACTIONS(1344), 1, + ACTIONS(2431), 1, sym_float, - ACTIONS(1350), 1, - anon_sym_new, - ACTIONS(1360), 1, + ACTIONS(2435), 1, anon_sym_sizeof, - ACTIONS(1362), 1, + ACTIONS(2437), 1, sym_string_start, - ACTIONS(1472), 1, - anon_sym_LBRACK, - ACTIONS(1474), 1, - anon_sym_await, - ACTIONS(2427), 1, - anon_sym_LPAREN, - ACTIONS(2761), 1, + ACTIONS(2521), 1, sym_identifier, - ACTIONS(2939), 1, + ACTIONS(2535), 1, + anon_sym_not, + ACTIONS(2537), 1, + anon_sym_LT, + ACTIONS(2543), 1, + anon_sym_await, + ACTIONS(2545), 1, + anon_sym_new, + ACTIONS(3011), 1, anon_sym_STAR, - ACTIONS(2943), 1, + ACTIONS(3017), 1, anon_sym_lambda, - STATE(2060), 1, + STATE(2061), 1, sym_primary_expression, - STATE(2170), 1, + STATE(2099), 1, sym_string, - STATE(2477), 1, + STATE(2256), 1, sym_list_splat_pattern, - STATE(3953), 1, + STATE(3965), 1, sym_expression, - STATE(5688), 1, + STATE(5687), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4196), 2, + STATE(4316), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(1342), 3, + ACTIONS(2411), 3, sym_integer, sym_true, sym_false, - ACTIONS(1326), 4, + ACTIONS(2421), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1470), 5, + ACTIONS(2529), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2459), 8, + STATE(2326), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -121371,7 +122774,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2457), 20, + STATE(2298), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -121392,70 +122795,225 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [2138] = 28, - ACTIONS(1211), 1, + [3091] = 4, + ACTIONS(3283), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1553), 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(1551), 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, + [3164] = 22, + ACTIONS(1213), 1, + anon_sym_LPAREN, ACTIONS(1219), 1, anon_sym_LBRACK, ACTIONS(1223), 1, anon_sym_LBRACE, - ACTIONS(1225), 1, - anon_sym_not, - ACTIONS(1231), 1, - anon_sym_lambda, ACTIONS(1233), 1, anon_sym_DOT_DOT_DOT, ACTIONS(1235), 1, anon_sym_None, ACTIONS(1239), 1, sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1243), 1, - anon_sym_new, ACTIONS(1245), 1, anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2735), 1, - anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(1302), 1, anon_sym_STAR, - ACTIONS(3293), 1, + ACTIONS(1310), 1, + anon_sym_LT, + ACTIONS(1312), 1, + anon_sym_await, + STATE(2161), 1, + sym_string, + STATE(2536), 1, + sym_list_splat_pattern, + STATE(3239), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1005), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(1237), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1308), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1039), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(1304), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + ACTIONS(1003), 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(2401), 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, + [3273] = 27, + ACTIONS(2461), 1, anon_sym_LPAREN, - STATE(2067), 1, + ACTIONS(2467), 1, + anon_sym_LBRACK, + ACTIONS(2471), 1, + anon_sym_LBRACE, + ACTIONS(2475), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2477), 1, + anon_sym_None, + ACTIONS(2479), 1, + sym_float, + ACTIONS(2483), 1, + anon_sym_sizeof, + ACTIONS(2485), 1, + sym_string_start, + ACTIONS(2647), 1, + anon_sym_not, + ACTIONS(2649), 1, + anon_sym_LT, + ACTIONS(2651), 1, + anon_sym_lambda, + ACTIONS(2653), 1, + anon_sym_await, + ACTIONS(2655), 1, + anon_sym_new, + ACTIONS(2935), 1, + sym_identifier, + ACTIONS(3103), 1, + anon_sym_STAR, + STATE(2107), 1, sym_primary_expression, - STATE(2140), 1, + STATE(2200), 1, sym_string, - STATE(2432), 1, + STATE(2589), 1, sym_list_splat_pattern, - STATE(4237), 1, + STATE(4267), 1, sym_expression, - STATE(4755), 1, - sym_with_item, - STATE(5431), 1, - sym_with_clause, - STATE(5469), 1, + STATE(5572), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(3079), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(2459), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(2469), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(2641), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3081), 8, + STATE(2631), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -121464,7 +123022,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2630), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -121485,15 +123043,11 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [2259] = 5, - ACTIONS(2695), 1, - anon_sym_else, - STATE(1652), 1, - sym_else_clause, + [3392] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3295), 14, + ACTIONS(3277), 14, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -121508,7 +123062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3297), 46, + ACTIONS(3275), 48, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -121521,6 +123075,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, @@ -121555,81 +123111,287 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [2334] = 5, - ACTIONS(2699), 1, - anon_sym_finally, - STATE(1409), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3267), 14, - sym_string_start, - ts_builtin_sym_end, + [3463] = 27, + ACTIONS(2461), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(2467), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(2471), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, + ACTIONS(2475), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(2477), 1, + anon_sym_None, + ACTIONS(2479), 1, sym_float, - ACTIONS(3265), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2483), 1, + anon_sym_sizeof, + ACTIONS(2485), 1, + sym_string_start, + ACTIONS(2647), 1, + anon_sym_not, + ACTIONS(2649), 1, + anon_sym_LT, + ACTIONS(2651), 1, + anon_sym_lambda, + ACTIONS(2653), 1, + anon_sym_await, + ACTIONS(2655), 1, + anon_sym_new, + ACTIONS(2935), 1, + sym_identifier, + ACTIONS(3103), 1, + anon_sym_STAR, + STATE(2107), 1, + sym_primary_expression, + STATE(2200), 1, + sym_string, + STATE(2589), 1, + sym_list_splat_pattern, + STATE(4246), 1, + sym_expression, + STATE(5572), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3209), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(2459), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2469), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2641), 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_api, + STATE(2631), 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(2630), 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, + [3582] = 27, + ACTIONS(2489), 1, + anon_sym_LPAREN, + ACTIONS(2495), 1, + anon_sym_LBRACK, + ACTIONS(2499), 1, + anon_sym_LBRACE, + ACTIONS(2503), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2505), 1, anon_sym_None, - sym_integer, + ACTIONS(2507), 1, + sym_float, + ACTIONS(2511), 1, + anon_sym_sizeof, + ACTIONS(2513), 1, + sym_string_start, + ACTIONS(2561), 1, + anon_sym_not, + ACTIONS(2563), 1, + anon_sym_LT, + ACTIONS(2571), 1, + anon_sym_new, + ACTIONS(2815), 1, sym_identifier, + ACTIONS(2823), 1, anon_sym_await, - anon_sym_api, + ACTIONS(2943), 1, + anon_sym_STAR, + ACTIONS(2949), 1, + anon_sym_lambda, + STATE(2070), 1, + sym_primary_expression, + STATE(2177), 1, + sym_string, + STATE(2415), 1, + sym_list_splat_pattern, + STATE(3953), 1, + sym_expression, + STATE(5681), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4205), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(2487), 3, + sym_integer, sym_true, sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, + ACTIONS(2497), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2819), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2493), 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(2470), 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, + [3701] = 27, + ACTIONS(1328), 1, + anon_sym_LBRACE, + ACTIONS(1330), 1, + anon_sym_not, + ACTIONS(1332), 1, + anon_sym_LT, + ACTIONS(1338), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1340), 1, + anon_sym_None, + ACTIONS(1344), 1, + sym_float, + ACTIONS(1350), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, + ACTIONS(1360), 1, anon_sym_sizeof, - [2409] = 3, + ACTIONS(1362), 1, + sym_string_start, + ACTIONS(1472), 1, + anon_sym_LBRACK, + ACTIONS(1474), 1, + anon_sym_await, + ACTIONS(2377), 1, + anon_sym_LPAREN, + ACTIONS(2787), 1, + sym_identifier, + ACTIONS(2965), 1, + anon_sym_STAR, + ACTIONS(2969), 1, + anon_sym_lambda, + STATE(2066), 1, + sym_primary_expression, + STATE(2147), 1, + sym_string, + STATE(2472), 1, + sym_list_splat_pattern, + STATE(3889), 1, + sym_expression, + STATE(5522), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4301), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(1342), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1326), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1470), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2421), 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(2414), 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, + [3820] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3299), 14, + ACTIONS(3257), 14, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -121644,7 +123406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3301), 48, + ACTIONS(3255), 48, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -121693,8 +123455,193 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [2480] = 4, - ACTIONS(3303), 1, + [3891] = 27, + ACTIONS(2461), 1, + anon_sym_LPAREN, + ACTIONS(2467), 1, + anon_sym_LBRACK, + ACTIONS(2471), 1, + anon_sym_LBRACE, + ACTIONS(2475), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2477), 1, + anon_sym_None, + ACTIONS(2479), 1, + sym_float, + ACTIONS(2483), 1, + anon_sym_sizeof, + ACTIONS(2485), 1, + sym_string_start, + ACTIONS(2647), 1, + anon_sym_not, + ACTIONS(2649), 1, + anon_sym_LT, + ACTIONS(2651), 1, + anon_sym_lambda, + ACTIONS(2653), 1, + anon_sym_await, + ACTIONS(2655), 1, + anon_sym_new, + ACTIONS(2935), 1, + sym_identifier, + ACTIONS(3103), 1, + anon_sym_STAR, + STATE(2107), 1, + sym_primary_expression, + STATE(2200), 1, + sym_string, + STATE(2589), 1, + sym_list_splat_pattern, + STATE(4228), 1, + sym_expression, + STATE(5572), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3285), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(2459), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2469), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2641), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2631), 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(2630), 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, + [4010] = 28, + ACTIONS(1382), 1, + anon_sym_LBRACK, + ACTIONS(1386), 1, + anon_sym_LBRACE, + ACTIONS(1388), 1, + anon_sym_not, + ACTIONS(1390), 1, + anon_sym_LT, + ACTIONS(1392), 1, + anon_sym_lambda, + ACTIONS(1394), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1396), 1, + anon_sym_None, + ACTIONS(1400), 1, + sym_float, + ACTIONS(1404), 1, + anon_sym_new, + ACTIONS(1406), 1, + anon_sym_sizeof, + ACTIONS(1408), 1, + sym_string_start, + ACTIONS(2397), 1, + anon_sym_STAR, + ACTIONS(2401), 1, + anon_sym_await, + ACTIONS(2449), 1, + anon_sym_LPAREN, + ACTIONS(3037), 1, + sym_identifier, + ACTIONS(3287), 1, + anon_sym_RPAREN, + STATE(2163), 1, + sym_primary_expression, + STATE(2393), 1, + sym_string, + STATE(2644), 1, + sym_list_splat_pattern, + STATE(4189), 1, + sym_expression, + STATE(5340), 1, + sym_with_item, + STATE(5398), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1398), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1384), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2399), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2652), 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(2651), 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, + [4131] = 4, + ACTIONS(3289), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, @@ -121762,69 +123709,253 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [2553] = 27, - ACTIONS(1328), 1, + [4204] = 27, + ACTIONS(2489), 1, + anon_sym_LPAREN, + ACTIONS(2495), 1, + anon_sym_LBRACK, + ACTIONS(2499), 1, anon_sym_LBRACE, - ACTIONS(1330), 1, + ACTIONS(2503), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2505), 1, + anon_sym_None, + ACTIONS(2507), 1, + sym_float, + ACTIONS(2511), 1, + anon_sym_sizeof, + ACTIONS(2513), 1, + sym_string_start, + ACTIONS(2561), 1, anon_sym_not, - ACTIONS(1332), 1, + ACTIONS(2563), 1, anon_sym_LT, - ACTIONS(1338), 1, + ACTIONS(2571), 1, + anon_sym_new, + ACTIONS(2815), 1, + sym_identifier, + ACTIONS(2823), 1, + anon_sym_await, + ACTIONS(2943), 1, + anon_sym_STAR, + ACTIONS(2949), 1, + anon_sym_lambda, + STATE(2070), 1, + sym_primary_expression, + STATE(2177), 1, + sym_string, + STATE(2415), 1, + sym_list_splat_pattern, + STATE(3971), 1, + sym_expression, + STATE(5681), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4356), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(2487), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2497), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2819), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2493), 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(2470), 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, + [4323] = 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(1340), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1344), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(1350), 1, + ACTIONS(99), 1, anon_sym_new, - ACTIONS(1360), 1, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(1362), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(1472), 1, - anon_sym_LBRACK, - ACTIONS(1474), 1, + ACTIONS(1001), 1, + sym_identifier, + ACTIONS(1041), 1, anon_sym_await, - ACTIONS(2427), 1, + ACTIONS(1281), 1, anon_sym_LPAREN, - ACTIONS(2761), 1, - sym_identifier, - ACTIONS(2939), 1, + ACTIONS(1287), 1, + anon_sym_LBRACK, + ACTIONS(3073), 1, anon_sym_STAR, - ACTIONS(2943), 1, + STATE(2032), 1, + sym_primary_expression, + STATE(2043), 1, + sym_string, + STATE(2088), 1, + sym_list_splat_pattern, + STATE(4097), 1, + sym_expression, + STATE(5682), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3291), 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(1016), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3442), 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(2111), 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, + [4442] = 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, - STATE(2060), 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(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, + sym_string_start, + ACTIONS(1001), 1, + sym_identifier, + ACTIONS(1041), 1, + anon_sym_await, + ACTIONS(1281), 1, + anon_sym_LPAREN, + ACTIONS(1287), 1, + anon_sym_LBRACK, + ACTIONS(3073), 1, + anon_sym_STAR, + STATE(2032), 1, sym_primary_expression, - STATE(2170), 1, + STATE(2043), 1, sym_string, - STATE(2477), 1, + STATE(2088), 1, sym_list_splat_pattern, - STATE(3945), 1, + STATE(4097), 1, sym_expression, - STATE(5688), 1, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4360), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(1342), 3, + ACTIONS(3293), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(1326), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1470), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2459), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -121833,7 +123964,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2457), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -121854,17 +123985,104 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [2672] = 5, - ACTIONS(2695), 1, - anon_sym_else, - STATE(1446), 1, - sym_else_clause, + [4561] = 23, + ACTIONS(1213), 1, + anon_sym_LPAREN, + ACTIONS(1219), 1, + anon_sym_LBRACK, + ACTIONS(1223), 1, + anon_sym_LBRACE, + ACTIONS(1233), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1235), 1, + anon_sym_None, + ACTIONS(1239), 1, + sym_float, + ACTIONS(1245), 1, + anon_sym_sizeof, + ACTIONS(1247), 1, + sym_string_start, + ACTIONS(1302), 1, + anon_sym_STAR, + ACTIONS(1310), 1, + anon_sym_LT, + ACTIONS(1312), 1, + anon_sym_await, + STATE(2161), 1, + sym_string, + STATE(2536), 1, + sym_list_splat_pattern, + STATE(3239), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1005), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(3297), 2, + anon_sym_not, + anon_sym_or, + ACTIONS(3295), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1237), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1308), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1304), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + ACTIONS(1003), 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(2401), 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, + [4672] = 4, + ACTIONS(3299), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3305), 14, + ACTIONS(1535), 15, sym_string_start, ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -121877,7 +124095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3307), 46, + ACTIONS(1533), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -121924,70 +124142,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [2747] = 28, - ACTIONS(1382), 1, - anon_sym_LBRACK, - ACTIONS(1386), 1, + [4745] = 27, + ACTIONS(1328), 1, anon_sym_LBRACE, - ACTIONS(1388), 1, + ACTIONS(1330), 1, anon_sym_not, - ACTIONS(1390), 1, + ACTIONS(1332), 1, anon_sym_LT, - ACTIONS(1392), 1, - anon_sym_lambda, - ACTIONS(1394), 1, + ACTIONS(1338), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, + ACTIONS(1340), 1, anon_sym_None, - ACTIONS(1400), 1, + ACTIONS(1344), 1, sym_float, - ACTIONS(1404), 1, + ACTIONS(1350), 1, anon_sym_new, - ACTIONS(1406), 1, + ACTIONS(1360), 1, anon_sym_sizeof, - ACTIONS(1408), 1, + ACTIONS(1362), 1, sym_string_start, - ACTIONS(2439), 1, + ACTIONS(1472), 1, + anon_sym_LBRACK, + ACTIONS(1474), 1, + anon_sym_await, + ACTIONS(2377), 1, anon_sym_LPAREN, - ACTIONS(2955), 1, + ACTIONS(2787), 1, sym_identifier, - ACTIONS(2961), 1, - anon_sym_await, - ACTIONS(3055), 1, + ACTIONS(2965), 1, anon_sym_STAR, - ACTIONS(3309), 1, - anon_sym_RPAREN, - STATE(2151), 1, + ACTIONS(2969), 1, + anon_sym_lambda, + STATE(2066), 1, sym_primary_expression, - STATE(2302), 1, + STATE(2147), 1, sym_string, - STATE(2671), 1, + STATE(2472), 1, sym_list_splat_pattern, - STATE(4235), 1, + STATE(3915), 1, sym_expression, - STATE(5189), 1, - sym_with_item, - STATE(5468), 1, + STATE(5522), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1398), 3, + STATE(4252), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(1342), 3, sym_integer, sym_true, sym_false, - ACTIONS(1384), 4, + ACTIONS(1326), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2959), 5, + ACTIONS(1470), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2716), 8, + STATE(2421), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -121996,7 +124213,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2715), 20, + STATE(2414), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -122017,16 +124234,17 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [2868] = 4, - ACTIONS(3311), 1, - anon_sym_COLON, + [4864] = 5, + ACTIONS(2773), 1, + anon_sym_else, + STATE(1472), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1541), 15, + ACTIONS(3303), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -122039,7 +124257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1539), 46, + ACTIONS(3301), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -122086,15 +124304,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [2941] = 5, - ACTIONS(2695), 1, + [4939] = 5, + ACTIONS(2693), 1, anon_sym_else, - STATE(1450), 1, + STATE(1625), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3313), 14, + ACTIONS(3261), 14, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -122109,7 +124327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3315), 46, + ACTIONS(3259), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -122156,69 +124374,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [3016] = 27, - ACTIONS(1382), 1, + [5014] = 5, + ACTIONS(2773), 1, + anon_sym_else, + STATE(1474), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3307), 14, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(1386), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(1388), 1, - anon_sym_not, - ACTIONS(1390), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, anon_sym_LT, - ACTIONS(1392), 1, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3305), 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(1394), 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, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [5089] = 27, + ACTIONS(1328), 1, + anon_sym_LBRACE, + ACTIONS(1330), 1, + anon_sym_not, + ACTIONS(1332), 1, + anon_sym_LT, + ACTIONS(1338), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, + ACTIONS(1340), 1, anon_sym_None, - ACTIONS(1400), 1, + ACTIONS(1344), 1, sym_float, - ACTIONS(1404), 1, + ACTIONS(1350), 1, anon_sym_new, - ACTIONS(1406), 1, + ACTIONS(1360), 1, anon_sym_sizeof, - ACTIONS(1408), 1, + ACTIONS(1362), 1, sym_string_start, - ACTIONS(2439), 1, + ACTIONS(1472), 1, + anon_sym_LBRACK, + ACTIONS(1474), 1, + anon_sym_await, + ACTIONS(2377), 1, anon_sym_LPAREN, - ACTIONS(2955), 1, + ACTIONS(2787), 1, sym_identifier, - ACTIONS(2961), 1, - anon_sym_await, - ACTIONS(3055), 1, + ACTIONS(2965), 1, anon_sym_STAR, - STATE(2151), 1, + ACTIONS(2969), 1, + anon_sym_lambda, + STATE(2066), 1, sym_primary_expression, - STATE(2302), 1, + STATE(2147), 1, sym_string, - STATE(2671), 1, + STATE(2472), 1, sym_list_splat_pattern, - STATE(4164), 1, + STATE(3915), 1, sym_expression, - STATE(5468), 1, + STATE(5522), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3051), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1398), 3, + STATE(4181), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(1342), 3, sym_integer, sym_true, sym_false, - ACTIONS(1384), 4, + ACTIONS(1326), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2959), 5, + ACTIONS(1470), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2716), 8, + STATE(2421), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -122227,7 +124515,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2715), 20, + STATE(2414), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -122248,17 +124536,18 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [3135] = 3, + [5208] = 4, + ACTIONS(3309), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1509), 16, + ACTIONS(1503), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -122269,7 +124558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1507), 46, + ACTIONS(1501), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -122316,15 +124605,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [3206] = 5, - ACTIONS(2699), 1, - anon_sym_finally, - STATE(1677), 1, - sym_finally_clause, + [5281] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3317), 14, + ACTIONS(3311), 14, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -122339,7 +124624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3319), 46, + ACTIONS(3313), 48, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -122352,6 +124637,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, @@ -122386,11 +124673,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [3281] = 3, + [5352] = 5, + ACTIONS(2773), 1, + anon_sym_else, + STATE(1605), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3299), 14, + ACTIONS(3271), 14, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -122405,7 +124696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3301), 48, + ACTIONS(3273), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -122418,8 +124709,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, @@ -122454,100 +124743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [3352] = 28, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, - anon_sym_LBRACE, - ACTIONS(1225), 1, - anon_sym_not, - ACTIONS(1231), 1, - anon_sym_lambda, - ACTIONS(1233), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, - anon_sym_None, - ACTIONS(1239), 1, - sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1243), 1, - anon_sym_new, - ACTIONS(1245), 1, - anon_sym_sizeof, - ACTIONS(1247), 1, - sym_string_start, - ACTIONS(2735), 1, - anon_sym_LT, - ACTIONS(3009), 1, - anon_sym_STAR, - ACTIONS(3321), 1, - anon_sym_COLON, - STATE(2067), 1, - sym_primary_expression, - STATE(2140), 1, - sym_string, - STATE(2432), 1, - sym_list_splat_pattern, - STATE(4237), 1, - sym_expression, - STATE(5353), 1, - sym_with_item, - STATE(5469), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1237), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1227), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1217), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3081), 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(2549), 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, - [3473] = 27, + [5427] = 27, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -122568,30 +124764,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(107), 1, sym_string_start, - ACTIONS(577), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(614), 1, + ACTIONS(1041), 1, anon_sym_await, ACTIONS(1281), 1, anon_sym_LPAREN, ACTIONS(1287), 1, anon_sym_LBRACK, - ACTIONS(3071), 1, + ACTIONS(3073), 1, anon_sym_STAR, - STATE(2024), 1, + STATE(2032), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2043), 1, sym_string, STATE(2088), 1, sym_list_splat_pattern, - STATE(3887), 1, + STATE(3919), 1, sym_expression, - STATE(5564), 1, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3323), 2, + ACTIONS(3315), 2, sym__newline, anon_sym_SEMI, ACTIONS(81), 3, @@ -122603,13 +124799,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -122618,7 +124814,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -122639,15 +124835,11 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [3592] = 5, - ACTIONS(2769), 1, - anon_sym_else, - STATE(1699), 1, - sym_else_clause, + [5546] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3273), 14, + ACTIONS(3311), 14, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -122662,7 +124854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3275), 46, + ACTIONS(3313), 48, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -122675,6 +124867,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, @@ -122709,69 +124903,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [3667] = 27, - ACTIONS(2479), 1, + [5617] = 27, + ACTIONS(2489), 1, anon_sym_LPAREN, - ACTIONS(2485), 1, + ACTIONS(2495), 1, anon_sym_LBRACK, - ACTIONS(2489), 1, + ACTIONS(2499), 1, anon_sym_LBRACE, - ACTIONS(2493), 1, + ACTIONS(2503), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2495), 1, + ACTIONS(2505), 1, anon_sym_None, - ACTIONS(2497), 1, + ACTIONS(2507), 1, sym_float, - ACTIONS(2501), 1, + ACTIONS(2511), 1, anon_sym_sizeof, - ACTIONS(2503), 1, + ACTIONS(2513), 1, sym_string_start, - ACTIONS(2523), 1, + ACTIONS(2561), 1, anon_sym_not, - ACTIONS(2525), 1, + ACTIONS(2563), 1, anon_sym_LT, - ACTIONS(2533), 1, + ACTIONS(2571), 1, anon_sym_new, - ACTIONS(2803), 1, + ACTIONS(2815), 1, sym_identifier, - ACTIONS(2811), 1, + ACTIONS(2823), 1, anon_sym_await, - ACTIONS(2947), 1, + ACTIONS(2943), 1, anon_sym_STAR, - ACTIONS(2953), 1, + ACTIONS(2949), 1, anon_sym_lambda, - STATE(2063), 1, + STATE(2070), 1, sym_primary_expression, - STATE(2157), 1, + STATE(2177), 1, sym_string, - STATE(2523), 1, + STATE(2415), 1, sym_list_splat_pattern, - STATE(3968), 1, + STATE(3932), 1, sym_expression, - STATE(5414), 1, + STATE(5681), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4459), 2, + STATE(4451), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(2477), 3, + ACTIONS(2487), 3, sym_integer, sym_true, sym_false, - ACTIONS(2487), 4, + ACTIONS(2497), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2807), 5, + ACTIONS(2819), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2421), 8, + STATE(2493), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -122780,7 +124974,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2418), 20, + STATE(2470), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -122801,15 +124995,15 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [3786] = 5, - ACTIONS(2769), 1, + [5736] = 5, + ACTIONS(2773), 1, anon_sym_else, - STATE(1703), 1, + STATE(1495), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3289), 14, + ACTIONS(3319), 14, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -122824,7 +125018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3291), 46, + ACTIONS(3317), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -122871,15 +125065,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [3861] = 5, - ACTIONS(2769), 1, + [5811] = 5, + ACTIONS(2773), 1, anon_sym_else, - STATE(1704), 1, + STATE(1499), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3295), 14, + ACTIONS(3323), 14, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -122894,7 +125088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3297), 46, + ACTIONS(3321), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -122941,16 +125135,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [3936] = 4, - ACTIONS(3325), 1, - anon_sym_COLON, + [5886] = 5, + ACTIONS(2773), 1, + anon_sym_else, + STATE(1500), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1547), 15, + ACTIONS(3327), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -122963,7 +125158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1545), 46, + ACTIONS(3325), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -123010,15 +125205,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [4009] = 5, - ACTIONS(2769), 1, - anon_sym_else, - STATE(1378), 1, - sym_else_clause, + [5961] = 5, + ACTIONS(2777), 1, + anon_sym_finally, + STATE(1502), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3305), 14, + ACTIONS(3331), 14, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -123033,7 +125228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3307), 46, + ACTIONS(3329), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -123080,78 +125275,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [4084] = 27, - ACTIONS(2479), 1, + [6036] = 5, + ACTIONS(2697), 1, + anon_sym_finally, + STATE(1623), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3331), 14, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(2485), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(2489), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(2493), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, anon_sym_DOT_DOT_DOT, - ACTIONS(2495), 1, - anon_sym_None, - ACTIONS(2497), 1, sym_float, - ACTIONS(2501), 1, - anon_sym_sizeof, - ACTIONS(2503), 1, - sym_string_start, - ACTIONS(2523), 1, - anon_sym_not, - ACTIONS(2525), 1, - anon_sym_LT, - ACTIONS(2533), 1, - anon_sym_new, - ACTIONS(2803), 1, - sym_identifier, - ACTIONS(2811), 1, - anon_sym_await, - ACTIONS(2947), 1, - anon_sym_STAR, - ACTIONS(2953), 1, - anon_sym_lambda, - STATE(2063), 1, - sym_primary_expression, - STATE(2157), 1, + 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, + 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, + [6111] = 23, + ACTIONS(1213), 1, + anon_sym_LPAREN, + ACTIONS(1219), 1, + anon_sym_LBRACK, + ACTIONS(1223), 1, + anon_sym_LBRACE, + ACTIONS(1233), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1235), 1, + anon_sym_None, + ACTIONS(1239), 1, + sym_float, + ACTIONS(1245), 1, + anon_sym_sizeof, + ACTIONS(1247), 1, + sym_string_start, + ACTIONS(1302), 1, + anon_sym_STAR, + ACTIONS(1310), 1, + anon_sym_LT, + ACTIONS(1312), 1, + anon_sym_await, + STATE(2161), 1, sym_string, - STATE(2523), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(3939), 1, - sym_expression, - STATE(5414), 1, - sym__named_expression_lhs, + STATE(3239), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4460), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(2477), 3, + ACTIONS(1005), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(1300), 2, + anon_sym_not, + anon_sym_or, + ACTIONS(1295), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1237), 4, sym_integer, + sym_identifier, sym_true, sym_false, - ACTIONS(2487), 4, + ACTIONS(1308), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2807), 5, + ACTIONS(1304), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2421), 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(2418), 20, + ACTIONS(1003), 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(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -123172,78 +125433,143 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [4203] = 27, - ACTIONS(2401), 1, + [6222] = 5, + ACTIONS(2693), 1, + anon_sym_else, + STATE(1707), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3333), 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(3335), 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, + [6297] = 22, + ACTIONS(1213), 1, anon_sym_LPAREN, - ACTIONS(2407), 1, + ACTIONS(1219), 1, anon_sym_LBRACK, - ACTIONS(2411), 1, + ACTIONS(1223), 1, anon_sym_LBRACE, - ACTIONS(2415), 1, + ACTIONS(1233), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2417), 1, + ACTIONS(1235), 1, anon_sym_None, - ACTIONS(2419), 1, + ACTIONS(1239), 1, sym_float, - ACTIONS(2423), 1, + ACTIONS(1245), 1, anon_sym_sizeof, - ACTIONS(2425), 1, + ACTIONS(1247), 1, sym_string_start, - ACTIONS(2535), 1, - sym_identifier, - ACTIONS(2549), 1, - anon_sym_not, - ACTIONS(2551), 1, + ACTIONS(1302), 1, + anon_sym_STAR, + ACTIONS(1310), 1, anon_sym_LT, - ACTIONS(2557), 1, + ACTIONS(1312), 1, anon_sym_await, - ACTIONS(2559), 1, - anon_sym_new, - ACTIONS(2981), 1, - anon_sym_STAR, - ACTIONS(2983), 1, - anon_sym_lambda, - STATE(2054), 1, - sym_primary_expression, - STATE(2103), 1, + STATE(2161), 1, sym_string, - STATE(2309), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(3931), 1, - sym_expression, - STATE(5519), 1, - sym__named_expression_lhs, + STATE(3239), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4202), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(2399), 3, + ACTIONS(1297), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(1237), 4, sym_integer, + sym_identifier, sym_true, sym_false, - ACTIONS(2409), 4, + ACTIONS(1308), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2543), 5, + ACTIONS(1295), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(1304), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2236), 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(2377), 20, + ACTIONS(1498), 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(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -123264,69 +125590,140 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [4322] = 27, - ACTIONS(2451), 1, + [6406] = 5, + ACTIONS(2693), 1, + anon_sym_else, + STATE(1715), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3303), 14, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(2457), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(2461), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(2465), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3301), 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, + [6481] = 28, + ACTIONS(2461), 1, + anon_sym_LPAREN, ACTIONS(2467), 1, + anon_sym_LBRACK, + ACTIONS(2471), 1, + anon_sym_LBRACE, + ACTIONS(2475), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2477), 1, anon_sym_None, - ACTIONS(2469), 1, + ACTIONS(2479), 1, sym_float, - ACTIONS(2473), 1, + ACTIONS(2483), 1, anon_sym_sizeof, - ACTIONS(2475), 1, + ACTIONS(2485), 1, sym_string_start, - ACTIONS(2637), 1, + ACTIONS(2647), 1, anon_sym_not, - ACTIONS(2639), 1, + ACTIONS(2649), 1, anon_sym_LT, - ACTIONS(2641), 1, + ACTIONS(2651), 1, anon_sym_lambda, - ACTIONS(2643), 1, + ACTIONS(2653), 1, anon_sym_await, - ACTIONS(2645), 1, + ACTIONS(2655), 1, anon_sym_new, - ACTIONS(2963), 1, + ACTIONS(2935), 1, sym_identifier, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_STAR, - STATE(2077), 1, + ACTIONS(3113), 1, + anon_sym_COLON, + STATE(2107), 1, sym_primary_expression, - STATE(2218), 1, + STATE(2200), 1, sym_string, - STATE(2591), 1, + STATE(2589), 1, sym_list_splat_pattern, - STATE(4190), 1, + STATE(3884), 1, sym_expression, - STATE(5609), 1, + STATE(5021), 1, + sym_slice, + STATE(5572), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3175), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(2449), 3, + ACTIONS(2459), 3, sym_integer, sym_true, sym_false, - ACTIONS(2459), 4, + ACTIONS(2469), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2631), 5, + ACTIONS(2641), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2604), 8, + STATE(2631), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -123335,7 +125732,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2631), 20, + STATE(2630), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -123356,17 +125753,87 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [4441] = 5, - ACTIONS(2773), 1, + [6602] = 5, + ACTIONS(2693), 1, + anon_sym_else, + STATE(1719), 1, + sym_else_clause, + 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(3305), 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, + [6677] = 5, + ACTIONS(2697), 1, anon_sym_finally, - STATE(1706), 1, + STATE(1714), 1, sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3317), 14, - sym__dedent, + ACTIONS(3337), 14, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -123379,7 +125846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3319), 46, + ACTIONS(3339), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -123426,17 +125893,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [4516] = 5, - ACTIONS(2769), 1, + [6752] = 5, + ACTIONS(2693), 1, anon_sym_else, - STATE(1381), 1, + STATE(1547), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3313), 14, - sym__dedent, + ACTIONS(3319), 14, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -123449,7 +125916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3315), 46, + ACTIONS(3317), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -123496,69 +125963,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [4591] = 27, - ACTIONS(2451), 1, + [6827] = 27, + ACTIONS(2489), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(2495), 1, anon_sym_LBRACK, - ACTIONS(2461), 1, + ACTIONS(2499), 1, anon_sym_LBRACE, - ACTIONS(2465), 1, + ACTIONS(2503), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2467), 1, + ACTIONS(2505), 1, anon_sym_None, - ACTIONS(2469), 1, + ACTIONS(2507), 1, sym_float, - ACTIONS(2473), 1, + ACTIONS(2511), 1, anon_sym_sizeof, - ACTIONS(2475), 1, + ACTIONS(2513), 1, sym_string_start, - ACTIONS(2637), 1, + ACTIONS(2561), 1, anon_sym_not, - ACTIONS(2639), 1, + ACTIONS(2563), 1, anon_sym_LT, - ACTIONS(2641), 1, - anon_sym_lambda, - ACTIONS(2643), 1, - anon_sym_await, - ACTIONS(2645), 1, + ACTIONS(2571), 1, anon_sym_new, - ACTIONS(2963), 1, + ACTIONS(2815), 1, sym_identifier, - ACTIONS(3105), 1, + ACTIONS(2823), 1, + anon_sym_await, + ACTIONS(2943), 1, anon_sym_STAR, - STATE(2077), 1, + ACTIONS(2949), 1, + anon_sym_lambda, + STATE(2070), 1, sym_primary_expression, - STATE(2218), 1, + STATE(2177), 1, sym_string, - STATE(2591), 1, + STATE(2415), 1, sym_list_splat_pattern, - STATE(4264), 1, + STATE(3953), 1, sym_expression, - STATE(5609), 1, + STATE(5681), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3327), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(2449), 3, + STATE(4358), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(2487), 3, sym_integer, sym_true, sym_false, - ACTIONS(2459), 4, + ACTIONS(2497), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2631), 5, + ACTIONS(2819), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2604), 8, + STATE(2493), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -123567,7 +126034,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2631), 20, + STATE(2470), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -123588,466 +126055,359 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [4710] = 22, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, - anon_sym_LBRACE, - ACTIONS(1233), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, - anon_sym_None, - ACTIONS(1239), 1, - sym_float, - ACTIONS(1245), 1, - anon_sym_sizeof, - ACTIONS(1247), 1, - sym_string_start, - ACTIONS(1302), 1, - anon_sym_STAR, - ACTIONS(1310), 1, - anon_sym_LT, - ACTIONS(1312), 1, - anon_sym_await, - STATE(2140), 1, - sym_string, - STATE(2432), 1, - sym_list_splat_pattern, - STATE(3190), 1, - sym_primary_expression, + [6946] = 5, + ACTIONS(2773), 1, + anon_sym_else, + STATE(1521), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(581), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(1237), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(1308), 4, + ACTIONS(3343), 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(612), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - ACTIONS(1304), 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_api, - ACTIONS(579), 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(2549), 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, - [4819] = 27, - ACTIONS(1328), 1, - anon_sym_LBRACE, - ACTIONS(1330), 1, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(1332), 1, - anon_sym_LT, - ACTIONS(1338), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1340), 1, + anon_sym_lambda, + anon_sym_yield, anon_sym_None, - ACTIONS(1344), 1, - sym_float, - ACTIONS(1350), 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(1360), 1, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, anon_sym_sizeof, - ACTIONS(1362), 1, - sym_string_start, - ACTIONS(1472), 1, - anon_sym_LBRACK, - ACTIONS(1474), 1, - anon_sym_await, - ACTIONS(2427), 1, - anon_sym_LPAREN, - ACTIONS(2761), 1, - sym_identifier, - ACTIONS(2939), 1, - anon_sym_STAR, - ACTIONS(2943), 1, - anon_sym_lambda, - STATE(2060), 1, - sym_primary_expression, - STATE(2170), 1, - sym_string, - STATE(2477), 1, - sym_list_splat_pattern, - STATE(3916), 1, - sym_expression, - STATE(5688), 1, - sym__named_expression_lhs, + [7021] = 5, + ACTIONS(2773), 1, + anon_sym_else, + STATE(1525), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4285), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(1342), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1326), 4, + ACTIONS(3333), 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(1470), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3335), 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(2459), 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(2457), 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, - [4938] = 27, - 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(77), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + anon_sym_yield, 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(577), 1, + sym_integer, sym_identifier, - ACTIONS(614), 1, anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3071), 1, - anon_sym_STAR, - STATE(2024), 1, - sym_primary_expression, - STATE(2034), 1, - sym_string, - STATE(2088), 1, - sym_list_splat_pattern, - STATE(3993), 1, - sym_expression, - STATE(5564), 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, + [7096] = 5, + ACTIONS(2777), 1, + anon_sym_finally, + STATE(1530), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3329), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(81), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(65), 4, + ACTIONS(3337), 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(592), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3339), 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(3429), 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(2123), 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, - [5057] = 27, - 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(77), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + anon_sym_yield, 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(577), 1, + sym_integer, sym_identifier, - ACTIONS(614), 1, anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3071), 1, - anon_sym_STAR, - STATE(2024), 1, - sym_primary_expression, - STATE(2034), 1, - sym_string, - STATE(2088), 1, - sym_list_splat_pattern, - STATE(3993), 1, - sym_expression, - STATE(5564), 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, + [7171] = 4, + ACTIONS(3345), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3331), 2, - sym__newline, + ACTIONS(1541), 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(592), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(1539), 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(3429), 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(2123), 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, - [5176] = 27, - ACTIONS(2479), 1, - anon_sym_LPAREN, - ACTIONS(2485), 1, - anon_sym_LBRACK, - ACTIONS(2489), 1, - anon_sym_LBRACE, - ACTIONS(2493), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2495), 1, - anon_sym_None, - ACTIONS(2497), 1, - sym_float, - ACTIONS(2501), 1, - anon_sym_sizeof, - ACTIONS(2503), 1, - sym_string_start, - ACTIONS(2523), 1, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(2525), 1, - anon_sym_LT, - ACTIONS(2533), 1, - anon_sym_new, - ACTIONS(2803), 1, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, + sym_integer, sym_identifier, - ACTIONS(2811), 1, anon_sym_await, - ACTIONS(2947), 1, - anon_sym_STAR, - ACTIONS(2953), 1, - anon_sym_lambda, - STATE(2063), 1, - sym_primary_expression, - STATE(2157), 1, - sym_string, - STATE(2523), 1, - sym_list_splat_pattern, - STATE(3939), 1, - sym_expression, - STATE(5414), 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, + [7244] = 4, + ACTIONS(3347), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4275), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(2477), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2487), 4, + ACTIONS(1517), 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(2807), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(1515), 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(2421), 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(2418), 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, - [5295] = 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, + [7317] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1513), 16, + ACTIONS(1509), 16, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -124064,7 +126424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1511), 46, + ACTIONS(1507), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -124111,15 +126471,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [5366] = 5, - ACTIONS(2695), 1, + [7388] = 5, + ACTIONS(2693), 1, anon_sym_else, - STATE(1507), 1, + STATE(1615), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3249), 14, + ACTIONS(3323), 14, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -124134,7 +126494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3247), 46, + ACTIONS(3321), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -124181,69 +126541,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [5441] = 27, - ACTIONS(2451), 1, + [7463] = 28, + ACTIONS(2461), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(2467), 1, anon_sym_LBRACK, - ACTIONS(2461), 1, + ACTIONS(2471), 1, anon_sym_LBRACE, - ACTIONS(2465), 1, + ACTIONS(2475), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2467), 1, + ACTIONS(2477), 1, anon_sym_None, - ACTIONS(2469), 1, + ACTIONS(2479), 1, sym_float, - ACTIONS(2473), 1, + ACTIONS(2483), 1, anon_sym_sizeof, - ACTIONS(2475), 1, + ACTIONS(2485), 1, sym_string_start, - ACTIONS(2637), 1, + ACTIONS(2647), 1, anon_sym_not, - ACTIONS(2639), 1, + ACTIONS(2649), 1, anon_sym_LT, - ACTIONS(2641), 1, + ACTIONS(2651), 1, anon_sym_lambda, - ACTIONS(2643), 1, + ACTIONS(2653), 1, anon_sym_await, - ACTIONS(2645), 1, + ACTIONS(2655), 1, anon_sym_new, - ACTIONS(2963), 1, + ACTIONS(2935), 1, sym_identifier, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_STAR, - STATE(2077), 1, + ACTIONS(3113), 1, + anon_sym_COLON, + STATE(2107), 1, sym_primary_expression, - STATE(2218), 1, + STATE(2200), 1, sym_string, - STATE(2591), 1, + STATE(2589), 1, sym_list_splat_pattern, - STATE(4186), 1, + STATE(3881), 1, sym_expression, - STATE(5609), 1, + STATE(5065), 1, + sym_slice, + STATE(5572), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3077), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(2449), 3, + ACTIONS(2459), 3, sym_integer, sym_true, sym_false, - ACTIONS(2459), 4, + ACTIONS(2469), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2631), 5, + ACTIONS(2641), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2604), 8, + STATE(2631), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -124252,7 +126613,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2631), 20, + STATE(2630), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -124273,254 +126634,70 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [5560] = 27, - ACTIONS(2451), 1, + [7584] = 28, + ACTIONS(2461), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(2467), 1, anon_sym_LBRACK, - ACTIONS(2461), 1, + ACTIONS(2471), 1, anon_sym_LBRACE, - ACTIONS(2465), 1, + ACTIONS(2475), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2467), 1, + ACTIONS(2477), 1, anon_sym_None, - ACTIONS(2469), 1, + ACTIONS(2479), 1, sym_float, - ACTIONS(2473), 1, + ACTIONS(2483), 1, anon_sym_sizeof, - ACTIONS(2475), 1, + ACTIONS(2485), 1, sym_string_start, - ACTIONS(2637), 1, + ACTIONS(2647), 1, anon_sym_not, - ACTIONS(2639), 1, + ACTIONS(2649), 1, anon_sym_LT, - ACTIONS(2641), 1, + ACTIONS(2651), 1, anon_sym_lambda, - ACTIONS(2643), 1, + ACTIONS(2653), 1, anon_sym_await, - ACTIONS(2645), 1, - anon_sym_new, - ACTIONS(2963), 1, - sym_identifier, - ACTIONS(3105), 1, - anon_sym_STAR, - STATE(2077), 1, - sym_primary_expression, - STATE(2218), 1, - sym_string, - STATE(2591), 1, - sym_list_splat_pattern, - STATE(4206), 1, - sym_expression, - STATE(5609), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3333), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(2449), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2459), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2631), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2604), 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(2631), 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, - [5679] = 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, + ACTIONS(2655), 1, anon_sym_new, - ACTIONS(105), 1, - anon_sym_sizeof, - ACTIONS(107), 1, - sym_string_start, - ACTIONS(577), 1, - sym_identifier, - ACTIONS(614), 1, - anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3071), 1, - anon_sym_STAR, - STATE(2024), 1, - sym_primary_expression, - STATE(2034), 1, - sym_string, - STATE(2088), 1, - sym_list_splat_pattern, - STATE(3887), 1, - sym_expression, - STATE(5564), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3335), 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(592), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3429), 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(2123), 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, - [5798] = 28, - ACTIONS(1211), 1, + ACTIONS(2935), 1, sym_identifier, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, - anon_sym_LBRACE, - ACTIONS(1225), 1, - anon_sym_not, - ACTIONS(1231), 1, - anon_sym_lambda, - ACTIONS(1233), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, - anon_sym_None, - ACTIONS(1239), 1, - sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1243), 1, - anon_sym_new, - ACTIONS(1245), 1, - anon_sym_sizeof, - ACTIONS(1247), 1, - sym_string_start, - ACTIONS(2735), 1, - anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(3103), 1, anon_sym_STAR, - ACTIONS(3293), 1, - anon_sym_LPAREN, - STATE(2067), 1, + ACTIONS(3113), 1, + anon_sym_COLON, + STATE(2107), 1, sym_primary_expression, - STATE(2140), 1, + STATE(2200), 1, sym_string, - STATE(2432), 1, + STATE(2589), 1, sym_list_splat_pattern, - STATE(4237), 1, + STATE(3967), 1, sym_expression, - STATE(4755), 1, - sym_with_item, - STATE(5469), 1, + STATE(4739), 1, + sym_slice, + STATE(5572), 1, sym__named_expression_lhs, - STATE(5556), 1, - sym_with_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(2459), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(2469), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(2641), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3081), 8, + STATE(2631), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -124529,7 +126706,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2630), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -124550,76 +126727,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [5919] = 4, - ACTIONS(3337), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1523), 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(1521), 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, - [5992] = 27, + [7705] = 28, ACTIONS(1382), 1, anon_sym_LBRACK, ACTIONS(1386), 1, @@ -124642,505 +126750,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1408), 1, sym_string_start, - ACTIONS(2439), 1, - anon_sym_LPAREN, - ACTIONS(2955), 1, - sym_identifier, - ACTIONS(2961), 1, - anon_sym_await, - ACTIONS(3055), 1, - anon_sym_STAR, - STATE(2151), 1, - sym_primary_expression, - STATE(2302), 1, - sym_string, - STATE(2671), 1, - sym_list_splat_pattern, - STATE(4164), 1, - sym_expression, - STATE(5468), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3077), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1398), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1384), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2959), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2716), 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(2715), 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, - [6111] = 27, - ACTIONS(1328), 1, - anon_sym_LBRACE, - ACTIONS(1330), 1, - anon_sym_not, - ACTIONS(1332), 1, - anon_sym_LT, - ACTIONS(1338), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1340), 1, - anon_sym_None, - ACTIONS(1344), 1, - sym_float, - ACTIONS(1350), 1, - anon_sym_new, - ACTIONS(1360), 1, - anon_sym_sizeof, - ACTIONS(1362), 1, - sym_string_start, - ACTIONS(1472), 1, - anon_sym_LBRACK, - ACTIONS(1474), 1, - anon_sym_await, - ACTIONS(2427), 1, - anon_sym_LPAREN, - ACTIONS(2761), 1, - sym_identifier, - ACTIONS(2939), 1, + ACTIONS(2397), 1, anon_sym_STAR, - ACTIONS(2943), 1, - anon_sym_lambda, - STATE(2060), 1, - sym_primary_expression, - STATE(2170), 1, - sym_string, - STATE(2477), 1, - sym_list_splat_pattern, - STATE(3953), 1, - sym_expression, - STATE(5688), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4252), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(1342), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1326), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1470), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2459), 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(2457), 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, - [6230] = 28, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, - anon_sym_LBRACE, - ACTIONS(1225), 1, - anon_sym_not, - ACTIONS(1231), 1, - anon_sym_lambda, - ACTIONS(1233), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, - anon_sym_None, - ACTIONS(1239), 1, - sym_float, - ACTIONS(1241), 1, + ACTIONS(2401), 1, anon_sym_await, - ACTIONS(1243), 1, - anon_sym_new, - ACTIONS(1245), 1, - anon_sym_sizeof, - ACTIONS(1247), 1, - sym_string_start, - ACTIONS(2735), 1, - anon_sym_LT, - ACTIONS(3009), 1, - anon_sym_STAR, - ACTIONS(3339), 1, - anon_sym_COLON, - STATE(2067), 1, - sym_primary_expression, - STATE(2140), 1, - sym_string, - STATE(2432), 1, - sym_list_splat_pattern, - STATE(4237), 1, - sym_expression, - STATE(5353), 1, - sym_with_item, - STATE(5469), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1237), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1227), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1217), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3081), 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(2549), 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, - [6351] = 28, - ACTIONS(2451), 1, + ACTIONS(2449), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_LBRACK, - ACTIONS(2461), 1, - anon_sym_LBRACE, - ACTIONS(2465), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2467), 1, - anon_sym_None, - ACTIONS(2469), 1, - sym_float, - ACTIONS(2473), 1, - anon_sym_sizeof, - ACTIONS(2475), 1, - sym_string_start, - ACTIONS(2637), 1, - anon_sym_not, - ACTIONS(2639), 1, - anon_sym_LT, - ACTIONS(2641), 1, - anon_sym_lambda, - ACTIONS(2643), 1, - anon_sym_await, - ACTIONS(2645), 1, - anon_sym_new, - ACTIONS(2963), 1, + ACTIONS(3037), 1, sym_identifier, - ACTIONS(3105), 1, - anon_sym_STAR, - ACTIONS(3109), 1, - anon_sym_COLON, - STATE(2077), 1, - sym_primary_expression, - STATE(2218), 1, - sym_string, - STATE(2591), 1, - sym_list_splat_pattern, - STATE(3894), 1, - sym_expression, - STATE(5127), 1, - sym_slice, - STATE(5609), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2449), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2459), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2631), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2604), 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(2631), 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, - [6472] = 23, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, - anon_sym_LBRACE, - ACTIONS(1233), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, - anon_sym_None, - ACTIONS(1239), 1, - sym_float, - ACTIONS(1245), 1, - anon_sym_sizeof, - ACTIONS(1247), 1, - sym_string_start, - ACTIONS(1302), 1, - anon_sym_STAR, - ACTIONS(1310), 1, - anon_sym_LT, - ACTIONS(1312), 1, - anon_sym_await, - STATE(2140), 1, - sym_string, - STATE(2432), 1, - sym_list_splat_pattern, - STATE(3190), 1, - sym_primary_expression, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(581), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(1300), 2, - anon_sym_not, - anon_sym_or, - ACTIONS(1295), 3, + ACTIONS(3349), 1, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1237), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(1308), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1304), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - ACTIONS(579), 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(2549), 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, - [6583] = 28, - ACTIONS(2451), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_LBRACK, - ACTIONS(2461), 1, - anon_sym_LBRACE, - ACTIONS(2465), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2467), 1, - anon_sym_None, - ACTIONS(2469), 1, - sym_float, - ACTIONS(2473), 1, - anon_sym_sizeof, - ACTIONS(2475), 1, - sym_string_start, - ACTIONS(2637), 1, - anon_sym_not, - ACTIONS(2639), 1, - anon_sym_LT, - ACTIONS(2641), 1, - anon_sym_lambda, - ACTIONS(2643), 1, - anon_sym_await, - ACTIONS(2645), 1, - anon_sym_new, - ACTIONS(2963), 1, - sym_identifier, - ACTIONS(3105), 1, - anon_sym_STAR, - ACTIONS(3109), 1, - anon_sym_COLON, - STATE(2077), 1, + STATE(2163), 1, sym_primary_expression, - STATE(2218), 1, + STATE(2393), 1, sym_string, - STATE(2591), 1, + STATE(2644), 1, sym_list_splat_pattern, - STATE(3927), 1, + STATE(4189), 1, sym_expression, - STATE(4806), 1, - sym_slice, - STATE(5609), 1, + STATE(5340), 1, + sym_with_item, + STATE(5398), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2449), 3, + ACTIONS(1398), 3, sym_integer, sym_true, sym_false, - ACTIONS(2459), 4, + ACTIONS(1384), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2631), 5, + ACTIONS(2399), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2604), 8, + STATE(2652), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -125149,7 +126799,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2631), 20, + STATE(2651), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -125170,15 +126820,15 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [6704] = 5, - ACTIONS(2695), 1, + [7826] = 5, + ACTIONS(2693), 1, anon_sym_else, - STATE(1511), 1, + STATE(1618), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3253), 14, + ACTIONS(3327), 14, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -125193,7 +126843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3251), 46, + ACTIONS(3325), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -125240,70 +126890,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [6779] = 28, - ACTIONS(2451), 1, + [7901] = 28, + ACTIONS(2461), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(2467), 1, anon_sym_LBRACK, - ACTIONS(2461), 1, + ACTIONS(2471), 1, anon_sym_LBRACE, - ACTIONS(2465), 1, + ACTIONS(2475), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2467), 1, + ACTIONS(2477), 1, anon_sym_None, - ACTIONS(2469), 1, + ACTIONS(2479), 1, sym_float, - ACTIONS(2473), 1, + ACTIONS(2483), 1, anon_sym_sizeof, - ACTIONS(2475), 1, + ACTIONS(2485), 1, sym_string_start, - ACTIONS(2637), 1, + ACTIONS(2647), 1, anon_sym_not, - ACTIONS(2639), 1, + ACTIONS(2649), 1, anon_sym_LT, - ACTIONS(2641), 1, + ACTIONS(2651), 1, anon_sym_lambda, - ACTIONS(2643), 1, + ACTIONS(2653), 1, anon_sym_await, - ACTIONS(2645), 1, + ACTIONS(2655), 1, anon_sym_new, - ACTIONS(2963), 1, + ACTIONS(2935), 1, sym_identifier, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_STAR, - ACTIONS(3109), 1, + ACTIONS(3113), 1, anon_sym_COLON, - STATE(2077), 1, + STATE(2107), 1, sym_primary_expression, - STATE(2218), 1, + STATE(2200), 1, sym_string, - STATE(2591), 1, + STATE(2589), 1, sym_list_splat_pattern, - STATE(3903), 1, + STATE(3930), 1, sym_expression, - STATE(4742), 1, + STATE(4769), 1, sym_slice, - STATE(5609), 1, + STATE(5572), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2449), 3, + ACTIONS(2459), 3, sym_integer, sym_true, sym_false, - ACTIONS(2459), 4, + ACTIONS(2469), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2631), 5, + ACTIONS(2641), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2604), 8, + STATE(2631), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -125312,7 +126962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2631), 20, + STATE(2630), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -125333,70 +126983,70 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [6900] = 28, - ACTIONS(2451), 1, + [8022] = 28, + ACTIONS(2461), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(2467), 1, anon_sym_LBRACK, - ACTIONS(2461), 1, + ACTIONS(2471), 1, anon_sym_LBRACE, - ACTIONS(2465), 1, + ACTIONS(2475), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2467), 1, + ACTIONS(2477), 1, anon_sym_None, - ACTIONS(2469), 1, + ACTIONS(2479), 1, sym_float, - ACTIONS(2473), 1, + ACTIONS(2483), 1, anon_sym_sizeof, - ACTIONS(2475), 1, + ACTIONS(2485), 1, sym_string_start, - ACTIONS(2637), 1, + ACTIONS(2647), 1, anon_sym_not, - ACTIONS(2639), 1, + ACTIONS(2649), 1, anon_sym_LT, - ACTIONS(2641), 1, + ACTIONS(2651), 1, anon_sym_lambda, - ACTIONS(2643), 1, + ACTIONS(2653), 1, anon_sym_await, - ACTIONS(2645), 1, + ACTIONS(2655), 1, anon_sym_new, - ACTIONS(2963), 1, + ACTIONS(2935), 1, sym_identifier, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_STAR, - ACTIONS(3109), 1, + ACTIONS(3113), 1, anon_sym_COLON, - STATE(2077), 1, + STATE(2107), 1, sym_primary_expression, - STATE(2218), 1, + STATE(2200), 1, sym_string, - STATE(2591), 1, + STATE(2589), 1, sym_list_splat_pattern, - STATE(3913), 1, + STATE(3918), 1, sym_expression, - STATE(4798), 1, + STATE(4822), 1, sym_slice, - STATE(5609), 1, + STATE(5572), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2449), 3, + ACTIONS(2459), 3, sym_integer, sym_true, sym_false, - ACTIONS(2459), 4, + ACTIONS(2469), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2631), 5, + ACTIONS(2641), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2604), 8, + STATE(2631), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -125405,7 +127055,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2631), 20, + STATE(2630), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -125426,70 +127076,70 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [7021] = 28, - ACTIONS(2451), 1, + [8143] = 28, + ACTIONS(2461), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(2467), 1, anon_sym_LBRACK, - ACTIONS(2461), 1, + ACTIONS(2471), 1, anon_sym_LBRACE, - ACTIONS(2465), 1, + ACTIONS(2475), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2467), 1, + ACTIONS(2477), 1, anon_sym_None, - ACTIONS(2469), 1, + ACTIONS(2479), 1, sym_float, - ACTIONS(2473), 1, + ACTIONS(2483), 1, anon_sym_sizeof, - ACTIONS(2475), 1, + ACTIONS(2485), 1, sym_string_start, - ACTIONS(2637), 1, + ACTIONS(2647), 1, anon_sym_not, - ACTIONS(2639), 1, + ACTIONS(2649), 1, anon_sym_LT, - ACTIONS(2641), 1, + ACTIONS(2651), 1, anon_sym_lambda, - ACTIONS(2643), 1, + ACTIONS(2653), 1, anon_sym_await, - ACTIONS(2645), 1, + ACTIONS(2655), 1, anon_sym_new, - ACTIONS(2963), 1, + ACTIONS(2935), 1, sym_identifier, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_STAR, - ACTIONS(3109), 1, + ACTIONS(3113), 1, anon_sym_COLON, - STATE(2077), 1, + STATE(2107), 1, sym_primary_expression, - STATE(2218), 1, + STATE(2200), 1, sym_string, - STATE(2591), 1, + STATE(2589), 1, sym_list_splat_pattern, - STATE(3915), 1, + STATE(3878), 1, sym_expression, - STATE(4827), 1, + STATE(4856), 1, sym_slice, - STATE(5609), 1, + STATE(5572), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2449), 3, + ACTIONS(2459), 3, sym_integer, sym_true, sym_false, - ACTIONS(2459), 4, + ACTIONS(2469), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2631), 5, + ACTIONS(2641), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2604), 8, + STATE(2631), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -125498,7 +127148,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2631), 20, + STATE(2630), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -125519,70 +127169,70 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [7142] = 28, - ACTIONS(2451), 1, + [8264] = 28, + ACTIONS(2461), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(2467), 1, anon_sym_LBRACK, - ACTIONS(2461), 1, + ACTIONS(2471), 1, anon_sym_LBRACE, - ACTIONS(2465), 1, + ACTIONS(2475), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2467), 1, + ACTIONS(2477), 1, anon_sym_None, - ACTIONS(2469), 1, + ACTIONS(2479), 1, sym_float, - ACTIONS(2473), 1, + ACTIONS(2483), 1, anon_sym_sizeof, - ACTIONS(2475), 1, + ACTIONS(2485), 1, sym_string_start, - ACTIONS(2637), 1, + ACTIONS(2647), 1, anon_sym_not, - ACTIONS(2639), 1, + ACTIONS(2649), 1, anon_sym_LT, - ACTIONS(2641), 1, + ACTIONS(2651), 1, anon_sym_lambda, - ACTIONS(2643), 1, + ACTIONS(2653), 1, anon_sym_await, - ACTIONS(2645), 1, + ACTIONS(2655), 1, anon_sym_new, - ACTIONS(2963), 1, + ACTIONS(2935), 1, sym_identifier, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_STAR, - ACTIONS(3109), 1, + ACTIONS(3113), 1, anon_sym_COLON, - STATE(2077), 1, + STATE(2107), 1, sym_primary_expression, - STATE(2218), 1, + STATE(2200), 1, sym_string, - STATE(2591), 1, + STATE(2589), 1, sym_list_splat_pattern, - STATE(3917), 1, + STATE(3914), 1, sym_expression, - STATE(4863), 1, + STATE(4889), 1, sym_slice, - STATE(5609), 1, + STATE(5572), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2449), 3, + ACTIONS(2459), 3, sym_integer, sym_true, sym_false, - ACTIONS(2459), 4, + ACTIONS(2469), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2631), 5, + ACTIONS(2641), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2604), 8, + STATE(2631), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -125591,7 +127241,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2631), 20, + STATE(2630), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -125612,70 +127262,70 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [7263] = 28, - ACTIONS(2451), 1, + [8385] = 28, + ACTIONS(2461), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(2467), 1, anon_sym_LBRACK, - ACTIONS(2461), 1, + ACTIONS(2471), 1, anon_sym_LBRACE, - ACTIONS(2465), 1, + ACTIONS(2475), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2467), 1, + ACTIONS(2477), 1, anon_sym_None, - ACTIONS(2469), 1, + ACTIONS(2479), 1, sym_float, - ACTIONS(2473), 1, + ACTIONS(2483), 1, anon_sym_sizeof, - ACTIONS(2475), 1, + ACTIONS(2485), 1, sym_string_start, - ACTIONS(2637), 1, + ACTIONS(2647), 1, anon_sym_not, - ACTIONS(2639), 1, + ACTIONS(2649), 1, anon_sym_LT, - ACTIONS(2641), 1, + ACTIONS(2651), 1, anon_sym_lambda, - ACTIONS(2643), 1, + ACTIONS(2653), 1, anon_sym_await, - ACTIONS(2645), 1, + ACTIONS(2655), 1, anon_sym_new, - ACTIONS(2963), 1, + ACTIONS(2935), 1, sym_identifier, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_STAR, - ACTIONS(3109), 1, + ACTIONS(3113), 1, anon_sym_COLON, - STATE(2077), 1, + STATE(2107), 1, sym_primary_expression, - STATE(2218), 1, + STATE(2200), 1, sym_string, - STATE(2591), 1, + STATE(2589), 1, sym_list_splat_pattern, - STATE(3970), 1, + STATE(3934), 1, sym_expression, - STATE(4885), 1, + STATE(4919), 1, sym_slice, - STATE(5609), 1, + STATE(5572), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2449), 3, + ACTIONS(2459), 3, sym_integer, sym_true, sym_false, - ACTIONS(2459), 4, + ACTIONS(2469), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2631), 5, + ACTIONS(2641), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2604), 8, + STATE(2631), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -125684,7 +127334,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2631), 20, + STATE(2630), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -125705,70 +127355,70 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [7384] = 28, - ACTIONS(2451), 1, + [8506] = 28, + ACTIONS(2461), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(2467), 1, anon_sym_LBRACK, - ACTIONS(2461), 1, + ACTIONS(2471), 1, anon_sym_LBRACE, - ACTIONS(2465), 1, + ACTIONS(2475), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2467), 1, + ACTIONS(2477), 1, anon_sym_None, - ACTIONS(2469), 1, + ACTIONS(2479), 1, sym_float, - ACTIONS(2473), 1, + ACTIONS(2483), 1, anon_sym_sizeof, - ACTIONS(2475), 1, + ACTIONS(2485), 1, sym_string_start, - ACTIONS(2637), 1, + ACTIONS(2647), 1, anon_sym_not, - ACTIONS(2639), 1, + ACTIONS(2649), 1, anon_sym_LT, - ACTIONS(2641), 1, + ACTIONS(2651), 1, anon_sym_lambda, - ACTIONS(2643), 1, + ACTIONS(2653), 1, anon_sym_await, - ACTIONS(2645), 1, + ACTIONS(2655), 1, anon_sym_new, - ACTIONS(2963), 1, + ACTIONS(2935), 1, sym_identifier, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_STAR, - ACTIONS(3109), 1, + ACTIONS(3113), 1, anon_sym_COLON, - STATE(2077), 1, + STATE(2107), 1, sym_primary_expression, - STATE(2218), 1, + STATE(2200), 1, sym_string, - STATE(2591), 1, + STATE(2589), 1, sym_list_splat_pattern, - STATE(3925), 1, + STATE(3940), 1, sym_expression, - STATE(4902), 1, + STATE(4938), 1, sym_slice, - STATE(5609), 1, + STATE(5572), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2449), 3, + ACTIONS(2459), 3, sym_integer, sym_true, sym_false, - ACTIONS(2459), 4, + ACTIONS(2469), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2631), 5, + ACTIONS(2641), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2604), 8, + STATE(2631), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -125777,7 +127427,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2631), 20, + STATE(2630), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -125798,70 +127448,70 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [7505] = 28, - ACTIONS(2451), 1, + [8627] = 28, + ACTIONS(2461), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(2467), 1, anon_sym_LBRACK, - ACTIONS(2461), 1, + ACTIONS(2471), 1, anon_sym_LBRACE, - ACTIONS(2465), 1, + ACTIONS(2475), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2467), 1, + ACTIONS(2477), 1, anon_sym_None, - ACTIONS(2469), 1, + ACTIONS(2479), 1, sym_float, - ACTIONS(2473), 1, + ACTIONS(2483), 1, anon_sym_sizeof, - ACTIONS(2475), 1, + ACTIONS(2485), 1, sym_string_start, - ACTIONS(2637), 1, + ACTIONS(2647), 1, anon_sym_not, - ACTIONS(2639), 1, + ACTIONS(2649), 1, anon_sym_LT, - ACTIONS(2641), 1, + ACTIONS(2651), 1, anon_sym_lambda, - ACTIONS(2643), 1, + ACTIONS(2653), 1, anon_sym_await, - ACTIONS(2645), 1, + ACTIONS(2655), 1, anon_sym_new, - ACTIONS(2963), 1, + ACTIONS(2935), 1, sym_identifier, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_STAR, - ACTIONS(3109), 1, + ACTIONS(3113), 1, anon_sym_COLON, - STATE(2077), 1, + STATE(2107), 1, sym_primary_expression, - STATE(2218), 1, + STATE(2200), 1, sym_string, - STATE(2591), 1, + STATE(2589), 1, sym_list_splat_pattern, - STATE(3926), 1, + STATE(3960), 1, sym_expression, - STATE(4915), 1, + STATE(4956), 1, sym_slice, - STATE(5609), 1, + STATE(5572), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2449), 3, + ACTIONS(2459), 3, sym_integer, sym_true, sym_false, - ACTIONS(2459), 4, + ACTIONS(2469), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2631), 5, + ACTIONS(2641), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2604), 8, + STATE(2631), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -125870,7 +127520,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2631), 20, + STATE(2630), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -125891,70 +127541,70 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [7626] = 28, - ACTIONS(2451), 1, + [8748] = 28, + ACTIONS(2461), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(2467), 1, anon_sym_LBRACK, - ACTIONS(2461), 1, + ACTIONS(2471), 1, anon_sym_LBRACE, - ACTIONS(2465), 1, + ACTIONS(2475), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2467), 1, + ACTIONS(2477), 1, anon_sym_None, - ACTIONS(2469), 1, + ACTIONS(2479), 1, sym_float, - ACTIONS(2473), 1, + ACTIONS(2483), 1, anon_sym_sizeof, - ACTIONS(2475), 1, + ACTIONS(2485), 1, sym_string_start, - ACTIONS(2637), 1, + ACTIONS(2647), 1, anon_sym_not, - ACTIONS(2639), 1, + ACTIONS(2649), 1, anon_sym_LT, - ACTIONS(2641), 1, + ACTIONS(2651), 1, anon_sym_lambda, - ACTIONS(2643), 1, + ACTIONS(2653), 1, anon_sym_await, - ACTIONS(2645), 1, + ACTIONS(2655), 1, anon_sym_new, - ACTIONS(2963), 1, + ACTIONS(2935), 1, sym_identifier, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_STAR, - ACTIONS(3109), 1, + ACTIONS(3113), 1, anon_sym_COLON, - STATE(2077), 1, + STATE(2107), 1, sym_primary_expression, - STATE(2218), 1, + STATE(2200), 1, sym_string, - STATE(2591), 1, + STATE(2589), 1, sym_list_splat_pattern, - STATE(3929), 1, + STATE(3875), 1, sym_expression, - STATE(4933), 1, + STATE(4974), 1, sym_slice, - STATE(5609), 1, + STATE(5572), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2449), 3, + ACTIONS(2459), 3, sym_integer, sym_true, sym_false, - ACTIONS(2459), 4, + ACTIONS(2469), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2631), 5, + ACTIONS(2641), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2604), 8, + STATE(2631), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -125963,7 +127613,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2631), 20, + STATE(2630), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -125984,70 +127634,70 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [7747] = 28, - ACTIONS(2451), 1, + [8869] = 28, + ACTIONS(2461), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(2467), 1, anon_sym_LBRACK, - ACTIONS(2461), 1, + ACTIONS(2471), 1, anon_sym_LBRACE, - ACTIONS(2465), 1, + ACTIONS(2475), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2467), 1, + ACTIONS(2477), 1, anon_sym_None, - ACTIONS(2469), 1, + ACTIONS(2479), 1, sym_float, - ACTIONS(2473), 1, + ACTIONS(2483), 1, anon_sym_sizeof, - ACTIONS(2475), 1, + ACTIONS(2485), 1, sym_string_start, - ACTIONS(2637), 1, + ACTIONS(2647), 1, anon_sym_not, - ACTIONS(2639), 1, + ACTIONS(2649), 1, anon_sym_LT, - ACTIONS(2641), 1, + ACTIONS(2651), 1, anon_sym_lambda, - ACTIONS(2643), 1, + ACTIONS(2653), 1, anon_sym_await, - ACTIONS(2645), 1, + ACTIONS(2655), 1, anon_sym_new, - ACTIONS(2963), 1, + ACTIONS(2935), 1, sym_identifier, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_STAR, - ACTIONS(3109), 1, + ACTIONS(3113), 1, anon_sym_COLON, - STATE(2077), 1, + STATE(2107), 1, sym_primary_expression, - STATE(2218), 1, + STATE(2200), 1, sym_string, - STATE(2591), 1, + STATE(2589), 1, sym_list_splat_pattern, - STATE(3930), 1, + STATE(3879), 1, sym_expression, - STATE(4946), 1, + STATE(4989), 1, sym_slice, - STATE(5609), 1, + STATE(5572), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2449), 3, + ACTIONS(2459), 3, sym_integer, sym_true, sym_false, - ACTIONS(2459), 4, + ACTIONS(2469), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2631), 5, + ACTIONS(2641), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2604), 8, + STATE(2631), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -126056,7 +127706,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2631), 20, + STATE(2630), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -126077,69 +127727,70 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [7868] = 27, - ACTIONS(2451), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, + [8990] = 28, + ACTIONS(1211), 1, + sym_identifier, + ACTIONS(1219), 1, anon_sym_LBRACK, - ACTIONS(2461), 1, + ACTIONS(1223), 1, anon_sym_LBRACE, - ACTIONS(2465), 1, + ACTIONS(1225), 1, + anon_sym_not, + ACTIONS(1231), 1, + anon_sym_lambda, + ACTIONS(1233), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2467), 1, + ACTIONS(1235), 1, anon_sym_None, - ACTIONS(2469), 1, + ACTIONS(1239), 1, sym_float, - ACTIONS(2473), 1, + ACTIONS(1241), 1, + anon_sym_await, + ACTIONS(1243), 1, + anon_sym_new, + ACTIONS(1245), 1, anon_sym_sizeof, - ACTIONS(2475), 1, + ACTIONS(1247), 1, sym_string_start, - ACTIONS(2637), 1, - anon_sym_not, - ACTIONS(2639), 1, + ACTIONS(2705), 1, anon_sym_LT, - ACTIONS(2641), 1, - anon_sym_lambda, - ACTIONS(2643), 1, - anon_sym_await, - ACTIONS(2645), 1, - anon_sym_new, - ACTIONS(2963), 1, - sym_identifier, - ACTIONS(3105), 1, + ACTIONS(2955), 1, anon_sym_STAR, - STATE(2077), 1, + ACTIONS(3245), 1, + anon_sym_LPAREN, + STATE(2072), 1, sym_primary_expression, - STATE(2218), 1, + STATE(2161), 1, sym_string, - STATE(2591), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(4176), 1, + STATE(4149), 1, sym_expression, - STATE(5609), 1, + STATE(4653), 1, + sym_with_item, + STATE(5532), 1, + sym_with_clause, + STATE(5579), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3341), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(2449), 3, + ACTIONS(1237), 3, sym_integer, sym_true, sym_false, - ACTIONS(2459), 4, + ACTIONS(1227), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2631), 5, + ACTIONS(1217), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2604), 8, + STATE(3088), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -126148,7 +127799,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2631), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -126169,7 +127820,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [7987] = 28, + [9111] = 28, ACTIONS(1211), 1, sym_identifier, ACTIONS(1219), 1, @@ -126194,26 +127845,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2735), 1, + ACTIONS(2705), 1, anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(2955), 1, anon_sym_STAR, - ACTIONS(3293), 1, + ACTIONS(3245), 1, anon_sym_LPAREN, - STATE(2067), 1, + STATE(2072), 1, sym_primary_expression, - STATE(2140), 1, + STATE(2161), 1, sym_string, - STATE(2432), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(4237), 1, + STATE(4149), 1, sym_expression, - STATE(4755), 1, + STATE(4653), 1, sym_with_item, - STATE(5469), 1, - sym__named_expression_lhs, - STATE(5514), 1, + STATE(5575), 1, sym_with_clause, + STATE(5579), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -126232,7 +127883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3081), 8, + STATE(3088), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -126241,7 +127892,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -126262,69 +127913,70 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [8108] = 27, - ACTIONS(2401), 1, + [9232] = 28, + ACTIONS(1211), 1, + sym_identifier, + ACTIONS(1213), 1, anon_sym_LPAREN, - ACTIONS(2407), 1, + ACTIONS(1219), 1, anon_sym_LBRACK, - ACTIONS(2411), 1, + ACTIONS(1223), 1, anon_sym_LBRACE, - ACTIONS(2415), 1, + ACTIONS(1225), 1, + anon_sym_not, + ACTIONS(1231), 1, + anon_sym_lambda, + ACTIONS(1233), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2417), 1, + ACTIONS(1235), 1, anon_sym_None, - ACTIONS(2419), 1, + ACTIONS(1239), 1, sym_float, - ACTIONS(2423), 1, + ACTIONS(1241), 1, + anon_sym_await, + ACTIONS(1243), 1, + anon_sym_new, + ACTIONS(1245), 1, anon_sym_sizeof, - ACTIONS(2425), 1, + ACTIONS(1247), 1, sym_string_start, - ACTIONS(2535), 1, - sym_identifier, - ACTIONS(2549), 1, - anon_sym_not, - ACTIONS(2551), 1, + ACTIONS(2705), 1, anon_sym_LT, - ACTIONS(2557), 1, - anon_sym_await, - ACTIONS(2559), 1, - anon_sym_new, - ACTIONS(2981), 1, + ACTIONS(2955), 1, anon_sym_STAR, - ACTIONS(2983), 1, - anon_sym_lambda, - STATE(2054), 1, + ACTIONS(3351), 1, + anon_sym_COLON, + STATE(2072), 1, sym_primary_expression, - STATE(2103), 1, + STATE(2161), 1, sym_string, - STATE(2309), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(3931), 1, + STATE(4149), 1, sym_expression, - STATE(5519), 1, + STATE(5228), 1, + sym_with_item, + STATE(5579), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4199), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(2399), 3, + ACTIONS(1237), 3, sym_integer, sym_true, sym_false, - ACTIONS(2409), 4, + ACTIONS(1227), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2543), 5, + ACTIONS(1217), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2236), 8, + STATE(3088), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -126333,7 +127985,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2377), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -126354,70 +128006,69 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [8227] = 28, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1219), 1, + [9353] = 27, + ACTIONS(2461), 1, + anon_sym_LPAREN, + ACTIONS(2467), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(2471), 1, anon_sym_LBRACE, - ACTIONS(1225), 1, - anon_sym_not, - ACTIONS(1231), 1, - anon_sym_lambda, - ACTIONS(1233), 1, + ACTIONS(2475), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(2477), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(2479), 1, sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1243), 1, - anon_sym_new, - ACTIONS(1245), 1, + ACTIONS(2483), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(2485), 1, sym_string_start, - ACTIONS(2735), 1, + ACTIONS(2647), 1, + anon_sym_not, + ACTIONS(2649), 1, anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(2651), 1, + anon_sym_lambda, + ACTIONS(2653), 1, + anon_sym_await, + ACTIONS(2655), 1, + anon_sym_new, + ACTIONS(2935), 1, + sym_identifier, + ACTIONS(3103), 1, anon_sym_STAR, - ACTIONS(3293), 1, - anon_sym_LPAREN, - STATE(2067), 1, + STATE(2107), 1, sym_primary_expression, - STATE(2140), 1, + STATE(2200), 1, sym_string, - STATE(2432), 1, + STATE(2589), 1, sym_list_splat_pattern, - STATE(4237), 1, + STATE(4156), 1, sym_expression, - STATE(4755), 1, - sym_with_item, - STATE(5469), 1, + STATE(5572), 1, sym__named_expression_lhs, - STATE(5554), 1, - sym_with_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(3353), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(2459), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(2469), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(2641), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3081), 8, + STATE(2631), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -126426,7 +128077,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2630), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -126447,73 +128098,78 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [8348] = 22, - ACTIONS(1213), 1, + [9472] = 27, + ACTIONS(1943), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(1949), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1953), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1957), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1959), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1961), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(1965), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1967), 1, sym_string_start, - ACTIONS(1302), 1, + ACTIONS(2661), 1, anon_sym_STAR, - ACTIONS(1310), 1, + ACTIONS(2669), 1, anon_sym_LT, - ACTIONS(1312), 1, + ACTIONS(2923), 1, + sym_identifier, + ACTIONS(2931), 1, anon_sym_await, - STATE(2140), 1, + ACTIONS(3045), 1, + anon_sym_not, + ACTIONS(3047), 1, + anon_sym_lambda, + ACTIONS(3049), 1, + anon_sym_new, + STATE(2057), 1, + sym_primary_expression, + STATE(2089), 1, sym_string, - STATE(2432), 1, + STATE(2284), 1, sym_list_splat_pattern, - STATE(3190), 1, - sym_primary_expression, + STATE(4286), 1, + sym_expression, + STATE(5675), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1297), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(1237), 4, + ACTIONS(3055), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1941), 3, sym_integer, - sym_identifier, sym_true, sym_false, - ACTIONS(1308), 4, + ACTIONS(1951), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1295), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - ACTIONS(1304), 5, + ACTIONS(2927), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - ACTIONS(1498), 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(2549), 20, + STATE(3825), 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(2257), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -126534,2410 +128190,17 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [8457] = 5, - ACTIONS(2695), 1, + [9591] = 5, + ACTIONS(2773), 1, anon_sym_else, - STATE(1402), 1, + STATE(1548), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3257), 14, + ACTIONS(3267), 14, + sym__dedent, 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(3255), 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, - [8532] = 28, - ACTIONS(2451), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_LBRACK, - ACTIONS(2461), 1, - anon_sym_LBRACE, - ACTIONS(2465), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2467), 1, - anon_sym_None, - ACTIONS(2469), 1, - sym_float, - ACTIONS(2473), 1, - anon_sym_sizeof, - ACTIONS(2475), 1, - sym_string_start, - ACTIONS(2637), 1, - anon_sym_not, - ACTIONS(2639), 1, - anon_sym_LT, - ACTIONS(2641), 1, - anon_sym_lambda, - ACTIONS(2643), 1, - anon_sym_await, - ACTIONS(2645), 1, - anon_sym_new, - ACTIONS(2963), 1, - sym_identifier, - ACTIONS(3105), 1, - anon_sym_STAR, - ACTIONS(3109), 1, - anon_sym_COLON, - STATE(2077), 1, - sym_primary_expression, - STATE(2218), 1, - sym_string, - STATE(2591), 1, - sym_list_splat_pattern, - STATE(3942), 1, - sym_expression, - STATE(4754), 1, - sym_slice, - STATE(5609), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2449), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2459), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2631), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2604), 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(2631), 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, - [8653] = 4, - ACTIONS(3343), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1503), 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(1501), 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, - [8726] = 27, - ACTIONS(2479), 1, - anon_sym_LPAREN, - ACTIONS(2485), 1, - anon_sym_LBRACK, - ACTIONS(2489), 1, - anon_sym_LBRACE, - ACTIONS(2493), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2495), 1, - anon_sym_None, - ACTIONS(2497), 1, - sym_float, - ACTIONS(2501), 1, - anon_sym_sizeof, - ACTIONS(2503), 1, - sym_string_start, - ACTIONS(2523), 1, - anon_sym_not, - ACTIONS(2525), 1, - anon_sym_LT, - ACTIONS(2533), 1, - anon_sym_new, - ACTIONS(2803), 1, - sym_identifier, - ACTIONS(2811), 1, - anon_sym_await, - ACTIONS(2947), 1, - anon_sym_STAR, - ACTIONS(2953), 1, - anon_sym_lambda, - STATE(2063), 1, - sym_primary_expression, - STATE(2157), 1, - sym_string, - STATE(2523), 1, - sym_list_splat_pattern, - STATE(3923), 1, - sym_expression, - STATE(5414), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4341), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(2477), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2487), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2807), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2421), 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(2418), 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, - [8845] = 27, - ACTIONS(2401), 1, - anon_sym_LPAREN, - ACTIONS(2407), 1, - anon_sym_LBRACK, - ACTIONS(2411), 1, - anon_sym_LBRACE, - ACTIONS(2415), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2417), 1, - anon_sym_None, - ACTIONS(2419), 1, - sym_float, - ACTIONS(2423), 1, - anon_sym_sizeof, - ACTIONS(2425), 1, - sym_string_start, - ACTIONS(2535), 1, - sym_identifier, - ACTIONS(2549), 1, - anon_sym_not, - ACTIONS(2551), 1, - anon_sym_LT, - ACTIONS(2557), 1, - anon_sym_await, - ACTIONS(2559), 1, - anon_sym_new, - ACTIONS(2981), 1, - anon_sym_STAR, - ACTIONS(2983), 1, - anon_sym_lambda, - STATE(2054), 1, - sym_primary_expression, - STATE(2103), 1, - sym_string, - STATE(2309), 1, - sym_list_splat_pattern, - STATE(3931), 1, - sym_expression, - STATE(5519), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4287), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(2399), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2409), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2543), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2236), 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(2377), 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, - [8964] = 27, - ACTIONS(2479), 1, - anon_sym_LPAREN, - ACTIONS(2485), 1, - anon_sym_LBRACK, - ACTIONS(2489), 1, - anon_sym_LBRACE, - ACTIONS(2493), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2495), 1, - anon_sym_None, - ACTIONS(2497), 1, - sym_float, - ACTIONS(2501), 1, - anon_sym_sizeof, - ACTIONS(2503), 1, - sym_string_start, - ACTIONS(2523), 1, - anon_sym_not, - ACTIONS(2525), 1, - anon_sym_LT, - ACTIONS(2533), 1, - anon_sym_new, - ACTIONS(2803), 1, - sym_identifier, - ACTIONS(2811), 1, - anon_sym_await, - ACTIONS(2947), 1, - anon_sym_STAR, - ACTIONS(2953), 1, - anon_sym_lambda, - STATE(2063), 1, - sym_primary_expression, - STATE(2157), 1, - sym_string, - STATE(2523), 1, - sym_list_splat_pattern, - STATE(3939), 1, - sym_expression, - STATE(5414), 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(2477), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2487), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2807), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2421), 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(2418), 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, - [9083] = 27, - ACTIONS(1907), 1, - anon_sym_LPAREN, - ACTIONS(1913), 1, - anon_sym_LBRACK, - ACTIONS(1917), 1, - anon_sym_LBRACE, - ACTIONS(1921), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1923), 1, - anon_sym_None, - ACTIONS(1925), 1, - sym_float, - ACTIONS(1929), 1, - anon_sym_sizeof, - ACTIONS(1931), 1, - sym_string_start, - ACTIONS(2653), 1, - anon_sym_STAR, - ACTIONS(2661), 1, - anon_sym_LT, - ACTIONS(2793), 1, - sym_identifier, - ACTIONS(2801), 1, - anon_sym_await, - ACTIONS(2931), 1, - anon_sym_not, - ACTIONS(2933), 1, - anon_sym_lambda, - ACTIONS(2935), 1, - anon_sym_new, - STATE(2046), 1, - sym_primary_expression, - STATE(2073), 1, - sym_string, - STATE(2357), 1, - sym_list_splat_pattern, - STATE(4281), 1, - sym_expression, - STATE(5657), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3077), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1905), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1915), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2797), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3846), 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(2255), 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, - [9202] = 27, - ACTIONS(1907), 1, - anon_sym_LPAREN, - ACTIONS(1913), 1, - anon_sym_LBRACK, - ACTIONS(1917), 1, - anon_sym_LBRACE, - ACTIONS(1921), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1923), 1, - anon_sym_None, - ACTIONS(1925), 1, - sym_float, - ACTIONS(1929), 1, - anon_sym_sizeof, - ACTIONS(1931), 1, - sym_string_start, - ACTIONS(2653), 1, - anon_sym_STAR, - ACTIONS(2661), 1, - anon_sym_LT, - ACTIONS(2793), 1, - sym_identifier, - ACTIONS(2801), 1, - anon_sym_await, - ACTIONS(2931), 1, - anon_sym_not, - ACTIONS(2933), 1, - anon_sym_lambda, - ACTIONS(2935), 1, - anon_sym_new, - STATE(2046), 1, - sym_primary_expression, - STATE(2073), 1, - sym_string, - STATE(2357), 1, - sym_list_splat_pattern, - STATE(4281), 1, - sym_expression, - STATE(5657), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3051), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1905), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1915), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2797), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3846), 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(2255), 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, - [9321] = 27, - ACTIONS(2401), 1, - anon_sym_LPAREN, - ACTIONS(2407), 1, - anon_sym_LBRACK, - ACTIONS(2411), 1, - anon_sym_LBRACE, - ACTIONS(2415), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2417), 1, - anon_sym_None, - ACTIONS(2419), 1, - sym_float, - ACTIONS(2423), 1, - anon_sym_sizeof, - ACTIONS(2425), 1, - sym_string_start, - ACTIONS(2535), 1, - sym_identifier, - ACTIONS(2549), 1, - anon_sym_not, - ACTIONS(2551), 1, - anon_sym_LT, - ACTIONS(2557), 1, - anon_sym_await, - ACTIONS(2559), 1, - anon_sym_new, - ACTIONS(2981), 1, - anon_sym_STAR, - ACTIONS(2983), 1, - anon_sym_lambda, - STATE(2054), 1, - sym_primary_expression, - STATE(2103), 1, - sym_string, - STATE(2309), 1, - sym_list_splat_pattern, - STATE(3874), 1, - sym_expression, - STATE(5519), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4286), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(2399), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2409), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2543), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2236), 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(2377), 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, - [9440] = 27, - ACTIONS(2451), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_LBRACK, - ACTIONS(2461), 1, - anon_sym_LBRACE, - ACTIONS(2465), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2467), 1, - anon_sym_None, - ACTIONS(2469), 1, - sym_float, - ACTIONS(2473), 1, - anon_sym_sizeof, - ACTIONS(2475), 1, - sym_string_start, - ACTIONS(2637), 1, - anon_sym_not, - ACTIONS(2639), 1, - anon_sym_LT, - ACTIONS(2641), 1, - anon_sym_lambda, - ACTIONS(2643), 1, - anon_sym_await, - ACTIONS(2645), 1, - anon_sym_new, - ACTIONS(2963), 1, - sym_identifier, - ACTIONS(3105), 1, - anon_sym_STAR, - STATE(2077), 1, - sym_primary_expression, - STATE(2218), 1, - sym_string, - STATE(2591), 1, - sym_list_splat_pattern, - STATE(4278), 1, - sym_expression, - STATE(5609), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3345), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(2449), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2459), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2631), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2604), 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(2631), 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, - [9559] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3285), 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(3287), 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, - [9630] = 23, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, - anon_sym_LBRACE, - ACTIONS(1233), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, - anon_sym_None, - ACTIONS(1239), 1, - sym_float, - ACTIONS(1245), 1, - anon_sym_sizeof, - ACTIONS(1247), 1, - sym_string_start, - ACTIONS(1302), 1, - anon_sym_STAR, - ACTIONS(1310), 1, - anon_sym_LT, - ACTIONS(1312), 1, - anon_sym_await, - STATE(2140), 1, - sym_string, - STATE(2432), 1, - sym_list_splat_pattern, - STATE(3190), 1, - sym_primary_expression, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(581), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(3349), 2, - anon_sym_not, - anon_sym_or, - ACTIONS(3347), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1237), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(1308), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1304), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - ACTIONS(579), 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(2549), 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, - [9741] = 27, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, - anon_sym_LBRACE, - ACTIONS(1225), 1, - anon_sym_not, - ACTIONS(1231), 1, - anon_sym_lambda, - ACTIONS(1233), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, - anon_sym_None, - ACTIONS(1239), 1, - sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1243), 1, - anon_sym_new, - ACTIONS(1245), 1, - anon_sym_sizeof, - ACTIONS(1247), 1, - sym_string_start, - ACTIONS(2735), 1, - anon_sym_LT, - ACTIONS(3009), 1, - anon_sym_STAR, - STATE(2067), 1, - sym_primary_expression, - STATE(2140), 1, - sym_string, - STATE(2432), 1, - sym_list_splat_pattern, - STATE(4085), 1, - sym_expression, - STATE(5469), 1, - sym__named_expression_lhs, - STATE(5674), 1, - sym_expression_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1237), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1227), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1217), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3081), 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(2549), 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, - [9859] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1751), 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(1749), 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, - [9929] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1755), 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(1753), 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, - [9999] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2259), 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(2257), 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, - [10069] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1759), 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(1757), 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, - [10139] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2271), 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(2269), 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, - [10209] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1763), 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(1761), 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, - [10279] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1867), 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(1865), 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, - [10349] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1767), 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(1765), 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, - [10419] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2115), 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(2113), 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, - [10489] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2119), 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(2117), 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, - [10559] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2099), 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(2097), 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, - [10629] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3351), 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(3353), 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, - [10699] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2019), 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(2017), 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, - [10769] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1991), 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(1989), 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, - [10839] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1775), 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(1773), 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, - [10909] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1779), 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(1777), 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, - [10979] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2131), 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(2129), 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, - [11049] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1795), 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(1793), 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, - [11119] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2139), 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(2137), 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, - [11189] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2335), 15, - sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -128950,7 +128213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2333), 46, + ACTIONS(3269), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -128997,102 +128260,215 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [11259] = 27, - ACTIONS(67), 1, + [9666] = 5, + ACTIONS(2693), 1, + anon_sym_else, + STATE(1698), 1, + sym_else_clause, + 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, - 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_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(577), 1, + 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, - ACTIONS(614), 1, anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3071), 1, - anon_sym_STAR, - STATE(2024), 1, - sym_primary_expression, - STATE(2034), 1, - sym_string, - STATE(2088), 1, - sym_list_splat_pattern, - STATE(3952), 1, - sym_expression, - STATE(5293), 1, - sym_expression_list, - STATE(5564), 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, + [9741] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1759), 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(1757), 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, + [9811] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1667), 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(592), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(1665), 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(3429), 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(2123), 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, - [11377] = 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, + [9881] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2107), 15, + ACTIONS(1671), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -129108,7 +128484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2105), 46, + ACTIONS(1669), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -129155,11 +128531,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [11447] = 3, + [9951] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1871), 15, + ACTIONS(1983), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -129175,7 +128551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1869), 46, + ACTIONS(1981), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -129222,11 +128598,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [11517] = 3, + [10021] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1875), 15, + ACTIONS(1675), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -129242,7 +128618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1873), 46, + ACTIONS(1673), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -129289,11 +128665,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [11587] = 3, + [10091] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2339), 15, + ACTIONS(2131), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -129309,7 +128685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2337), 46, + ACTIONS(2129), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -129356,11 +128732,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [11657] = 3, + [10161] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1883), 15, + ACTIONS(2203), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -129376,7 +128752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1881), 46, + ACTIONS(2201), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -129423,11 +128799,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [11727] = 3, + [10231] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1799), 15, + ACTIONS(2207), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -129443,7 +128819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1797), 46, + ACTIONS(2205), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -129490,11 +128866,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [11797] = 3, + [10301] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2023), 15, + ACTIONS(2211), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -129510,7 +128886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2021), 46, + ACTIONS(2209), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -129557,159 +128933,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [11867] = 27, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, + [10371] = 28, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1225), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1231), 1, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(1233), 1, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1243), 1, + ACTIONS(99), 1, anon_sym_new, - ACTIONS(1245), 1, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2735), 1, - anon_sym_LT, - ACTIONS(3009), 1, - anon_sym_STAR, - STATE(2067), 1, - sym_primary_expression, - STATE(2140), 1, - sym_string, - STATE(2432), 1, - sym_list_splat_pattern, - STATE(4237), 1, - sym_expression, - STATE(5353), 1, - sym_with_item, - STATE(5469), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1237), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1227), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1217), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3081), 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(2549), 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, - [11985] = 27, - ACTIONS(1211), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(1213), 1, + ACTIONS(1041), 1, + anon_sym_await, + ACTIONS(1281), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(1287), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, - anon_sym_LBRACE, - ACTIONS(1225), 1, - anon_sym_not, - ACTIONS(1231), 1, - anon_sym_lambda, - ACTIONS(1233), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, - anon_sym_None, - ACTIONS(1239), 1, - sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1243), 1, - anon_sym_new, - ACTIONS(1245), 1, - anon_sym_sizeof, - ACTIONS(1247), 1, - sym_string_start, - ACTIONS(2735), 1, - anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(3355), 1, anon_sym_STAR, - ACTIONS(3077), 1, - anon_sym_COLON, - STATE(2067), 1, + ACTIONS(3357), 1, + anon_sym_PLUS, + ACTIONS(3359), 1, + anon_sym_QMARK, + STATE(2032), 1, sym_primary_expression, - STATE(2140), 1, + STATE(2043), 1, sym_string, - STATE(2432), 1, + STATE(2088), 1, sym_list_splat_pattern, - STATE(4240), 1, + STATE(3954), 1, sym_expression, - STATE(5469), 1, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1227), 4, + ACTIONS(65), 3, anon_sym_DASH, - anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(81), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3081), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -129718,7 +129004,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -129739,11 +129025,11 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [12103] = 3, + [10491] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2061), 15, + ACTIONS(2347), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -129759,7 +129045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2059), 46, + ACTIONS(2345), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -129806,11 +129092,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [12173] = 3, + [10561] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2343), 15, + ACTIONS(2215), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -129826,7 +129112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2341), 46, + ACTIONS(2213), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -129873,11 +129159,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [12243] = 3, + [10631] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2287), 15, + ACTIONS(1987), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -129893,7 +129179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2285), 46, + ACTIONS(1985), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -129940,11 +129226,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [12313] = 3, + [10701] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2155), 15, + ACTIONS(2219), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -129960,7 +129246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2153), 46, + ACTIONS(2217), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -130007,11 +129293,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [12383] = 3, + [10771] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2159), 15, + ACTIONS(1991), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -130027,7 +129313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2157), 46, + ACTIONS(1989), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -130074,11 +129360,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [12453] = 3, + [10841] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1807), 15, + ACTIONS(1995), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -130094,7 +129380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1805), 46, + ACTIONS(1993), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -130141,11 +129427,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [12523] = 3, + [10911] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2163), 15, + ACTIONS(2223), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -130161,7 +129447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2161), 46, + ACTIONS(2221), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -130208,11 +129494,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [12593] = 3, + [10981] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2319), 15, + ACTIONS(2227), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -130228,7 +129514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2317), 46, + ACTIONS(2225), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -130275,11 +129561,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [12663] = 3, + [11051] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2007), 15, + ACTIONS(2231), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -130295,7 +129581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2005), 46, + ACTIONS(2229), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -130342,11 +129628,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [12733] = 3, + [11121] = 27, + ACTIONS(1382), 1, + anon_sym_LBRACK, + ACTIONS(1386), 1, + anon_sym_LBRACE, + ACTIONS(1388), 1, + anon_sym_not, + ACTIONS(1390), 1, + anon_sym_LT, + ACTIONS(1392), 1, + anon_sym_lambda, + ACTIONS(1394), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1396), 1, + anon_sym_None, + ACTIONS(1400), 1, + sym_float, + ACTIONS(1404), 1, + anon_sym_new, + ACTIONS(1406), 1, + anon_sym_sizeof, + ACTIONS(1408), 1, + sym_string_start, + ACTIONS(2397), 1, + anon_sym_STAR, + ACTIONS(2401), 1, + anon_sym_await, + ACTIONS(2449), 1, + anon_sym_LPAREN, + ACTIONS(3037), 1, + sym_identifier, + STATE(2163), 1, + sym_primary_expression, + STATE(2393), 1, + sym_string, + STATE(2644), 1, + sym_list_splat_pattern, + STATE(4189), 1, + sym_expression, + STATE(5340), 1, + sym_with_item, + STATE(5398), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1398), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1384), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2399), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2652), 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(2651), 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, + [11239] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2053), 15, + ACTIONS(1999), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -130362,7 +129739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2051), 46, + ACTIONS(1997), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -130409,11 +129786,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [12803] = 3, + [11309] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2027), 15, + ACTIONS(2235), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -130429,7 +129806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2025), 46, + ACTIONS(2233), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -130476,11 +129853,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [12873] = 3, + [11379] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2037), 15, + ACTIONS(1679), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -130496,7 +129873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2035), 46, + ACTIONS(1677), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -130543,102 +129920,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [12943] = 27, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, - anon_sym_LBRACE, - ACTIONS(1225), 1, - anon_sym_not, - ACTIONS(1231), 1, - anon_sym_lambda, - ACTIONS(1233), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, - anon_sym_None, - ACTIONS(1239), 1, - sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1243), 1, - anon_sym_new, - ACTIONS(1245), 1, - anon_sym_sizeof, - ACTIONS(1247), 1, - sym_string_start, - ACTIONS(2735), 1, - anon_sym_LT, - ACTIONS(3009), 1, - anon_sym_STAR, - STATE(2067), 1, - sym_primary_expression, - STATE(2140), 1, - sym_string, - STATE(2432), 1, - sym_list_splat_pattern, - STATE(4105), 1, - sym_expression, - STATE(5469), 1, - sym__named_expression_lhs, - STATE(5621), 1, - sym_expression_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1237), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1227), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1217), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3081), 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(2549), 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, - [13061] = 3, + [11449] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2123), 15, + ACTIONS(1683), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -130654,7 +129940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2121), 46, + ACTIONS(1681), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -130701,11 +129987,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [13131] = 3, + [11519] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2065), 15, + ACTIONS(1687), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -130721,7 +130007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2063), 46, + ACTIONS(1685), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -130768,11 +130054,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [13201] = 3, + [11589] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1811), 15, + ACTIONS(1691), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -130788,7 +130074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1809), 46, + ACTIONS(1689), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -130835,11 +130121,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [13271] = 3, + [11659] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2127), 15, + ACTIONS(1695), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -130855,7 +130141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2125), 46, + ACTIONS(1693), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -130902,102 +130188,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [13341] = 27, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, - anon_sym_LBRACE, - ACTIONS(1225), 1, - anon_sym_not, - ACTIONS(1231), 1, - anon_sym_lambda, - ACTIONS(1233), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, - anon_sym_None, - ACTIONS(1239), 1, - sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1243), 1, - anon_sym_new, - ACTIONS(1245), 1, - anon_sym_sizeof, - ACTIONS(1247), 1, - sym_string_start, - ACTIONS(2735), 1, - anon_sym_LT, - ACTIONS(3009), 1, - anon_sym_STAR, - ACTIONS(3051), 1, - anon_sym_COLON, - STATE(2067), 1, - sym_primary_expression, - STATE(2140), 1, - sym_string, - STATE(2432), 1, - sym_list_splat_pattern, - STATE(4240), 1, - sym_expression, - STATE(5469), 1, - sym__named_expression_lhs, + [11729] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1227), 4, + 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(1217), 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(3081), 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(2549), 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, - [13459] = 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, + [11799] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2041), 15, + ACTIONS(1679), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -131013,7 +130275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2039), 46, + ACTIONS(1677), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -131060,11 +130322,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [13529] = 3, + [11869] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2267), 15, + ACTIONS(1703), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -131080,7 +130342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2265), 46, + ACTIONS(1701), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -131127,11 +130389,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [13599] = 3, + [11939] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2275), 15, + ACTIONS(1687), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -131147,7 +130409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2273), 46, + ACTIONS(1685), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -131194,11 +130456,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [13669] = 3, + [12009] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2073), 15, + ACTIONS(1707), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -131214,7 +130476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2071), 46, + ACTIONS(1705), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -131261,11 +130523,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [13739] = 3, + [12079] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2187), 15, + ACTIONS(1679), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -131281,7 +130543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2185), 46, + ACTIONS(1677), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -131328,11 +130590,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [13809] = 3, + [12149] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2045), 15, + ACTIONS(1711), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -131348,7 +130610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2043), 46, + ACTIONS(1709), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -131395,11 +130657,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [13879] = 3, + [12219] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1971), 15, + ACTIONS(2003), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -131415,7 +130677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1969), 46, + ACTIONS(2001), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -131462,11 +130724,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [13949] = 3, + [12289] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2215), 15, + ACTIONS(2007), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -131482,7 +130744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2213), 46, + ACTIONS(2005), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -131529,11 +130791,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [14019] = 3, + [12359] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2231), 15, + ACTIONS(2143), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -131549,7 +130811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2229), 46, + ACTIONS(2141), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -131596,11 +130858,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [14089] = 3, + [12429] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2167), 15, + ACTIONS(2011), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -131616,7 +130878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2165), 46, + ACTIONS(2009), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -131663,11 +130925,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [14159] = 3, + [12499] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2069), 15, + ACTIONS(2015), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -131683,7 +130945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2067), 46, + ACTIONS(2013), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -131730,11 +130992,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [14229] = 3, + [12569] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2243), 15, + ACTIONS(2019), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -131750,7 +131012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2241), 46, + ACTIONS(2017), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -131797,11 +131059,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [14299] = 3, + [12639] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2251), 15, + ACTIONS(1903), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -131817,7 +131079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2249), 46, + ACTIONS(1901), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -131864,11 +131126,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [14369] = 3, + [12709] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2171), 15, + ACTIONS(1715), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -131884,7 +131146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2169), 46, + ACTIONS(1713), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -131931,11 +131193,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [14439] = 3, + [12779] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2263), 15, + ACTIONS(1719), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -131951,7 +131213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2261), 46, + ACTIONS(1717), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -131998,11 +131260,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [14509] = 3, + [12849] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2279), 15, + ACTIONS(2147), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -132018,7 +131280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2277), 46, + ACTIONS(2145), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -132065,145 +131327,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [14579] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2291), 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, + [12919] = 27, + ACTIONS(67), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(2289), 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, + ACTIONS(105), 1, anon_sym_sizeof, - [14649] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2187), 15, + ACTIONS(107), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, + ACTIONS(1001), 1, + sym_identifier, + ACTIONS(1041), 1, + anon_sym_await, + ACTIONS(1281), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(1287), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(3073), 1, + anon_sym_STAR, + STATE(2032), 1, + sym_primary_expression, + STATE(2043), 1, + sym_string, + STATE(2088), 1, + sym_list_splat_pattern, + STATE(3972), 1, + sym_expression, + STATE(5246), 1, + sym_expression_list, + STATE(5682), 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, - anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(2185), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1016), 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, - [14719] = 3, + STATE(3442), 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(2111), 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, + [13037] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1575), 15, + ACTIONS(2023), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -132219,7 +131438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1573), 46, + ACTIONS(2021), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -132266,11 +131485,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [14789] = 3, + [13107] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1579), 15, + ACTIONS(2151), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -132286,7 +131505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1577), 46, + ACTIONS(2149), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -132333,11 +131552,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [14859] = 3, + [13177] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1583), 15, + ACTIONS(2135), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -132353,7 +131572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1581), 46, + ACTIONS(2133), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -132400,11 +131619,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [14929] = 3, + [13247] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1815), 15, + ACTIONS(2027), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -132420,7 +131639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1813), 46, + ACTIONS(2025), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -132467,11 +131686,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [14999] = 3, + [13317] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2283), 15, + ACTIONS(2295), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -132487,7 +131706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2281), 46, + ACTIONS(2293), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -132534,11 +131753,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [15069] = 3, + [13387] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1587), 15, + ACTIONS(1619), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -132554,7 +131773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1585), 46, + ACTIONS(1617), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -132601,11 +131820,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [15139] = 3, + [13457] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2299), 15, + ACTIONS(1623), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -132621,7 +131840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2297), 46, + ACTIONS(1621), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -132668,11 +131887,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [15209] = 3, + [13527] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1591), 15, + ACTIONS(1723), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -132688,7 +131907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1589), 46, + ACTIONS(1721), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -132735,11 +131954,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [15279] = 3, + [13597] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1595), 15, + ACTIONS(1727), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -132755,7 +131974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1593), 46, + ACTIONS(1725), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -132802,11 +132021,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [15349] = 3, + [13667] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1599), 15, + ACTIONS(1807), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -132822,7 +132041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1597), 46, + ACTIONS(1805), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -132869,11 +132088,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [15419] = 3, + [13737] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1603), 15, + ACTIONS(2329), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -132889,7 +132108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1601), 46, + ACTIONS(2327), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -132936,14 +132155,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [15489] = 3, + [13807] = 4, + ACTIONS(3361), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2359), 15, + ACTIONS(2335), 14, sym_string_start, ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -132956,7 +132176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2357), 46, + ACTIONS(2331), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -133003,11 +132223,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [15559] = 3, + [13879] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1611), 15, + ACTIONS(1731), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -133023,7 +132243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1609), 46, + ACTIONS(1729), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -133070,102 +132290,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [15629] = 27, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, - anon_sym_LBRACE, - ACTIONS(1225), 1, - anon_sym_not, - ACTIONS(1231), 1, - anon_sym_lambda, - ACTIONS(1233), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, - anon_sym_None, - ACTIONS(1239), 1, - sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1243), 1, - anon_sym_new, - ACTIONS(1245), 1, - anon_sym_sizeof, - ACTIONS(1247), 1, - sym_string_start, - ACTIONS(2735), 1, - anon_sym_LT, - ACTIONS(3009), 1, - anon_sym_STAR, - ACTIONS(3355), 1, - anon_sym_COLON, - STATE(2067), 1, - sym_primary_expression, - STATE(2140), 1, - sym_string, - STATE(2432), 1, - sym_list_splat_pattern, - STATE(4188), 1, - sym_expression, - STATE(5469), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1237), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1227), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1217), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3081), 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(2549), 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, - [15747] = 3, + [13949] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1615), 15, + ACTIONS(2299), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -133181,7 +132310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1613), 46, + ACTIONS(2297), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -133228,11 +132357,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [15817] = 3, + [14019] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1619), 15, + ACTIONS(1575), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -133248,7 +132377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1617), 46, + ACTIONS(1573), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -133295,11 +132424,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [15887] = 3, + [14089] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1579), 15, + ACTIONS(1627), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -133315,7 +132444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1577), 46, + ACTIONS(1625), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -133362,11 +132491,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [15957] = 3, + [14159] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1623), 15, + ACTIONS(2031), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -133382,7 +132511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1621), 46, + ACTIONS(2029), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -133429,11 +132558,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [16027] = 3, + [14229] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1627), 15, + ACTIONS(1735), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -133449,7 +132578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1625), 46, + ACTIONS(1733), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -133496,11 +132625,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [16097] = 3, + [14299] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1975), 15, + ACTIONS(1631), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -133516,7 +132645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1973), 46, + ACTIONS(1629), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -133563,11 +132692,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [16167] = 3, + [14369] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2303), 15, + ACTIONS(2035), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -133583,7 +132712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2301), 46, + ACTIONS(2033), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -133630,15 +132759,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [16237] = 4, - ACTIONS(3357), 1, - anon_sym_SEMI, + [14439] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2083), 14, + ACTIONS(2039), 15, sym_string_start, ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -133651,7 +132779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2079), 46, + ACTIONS(2037), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -133698,11 +132826,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [16309] = 3, + [14509] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1979), 15, + ACTIONS(2043), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -133718,7 +132846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1977), 46, + ACTIONS(2041), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -133765,11 +132893,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [16379] = 3, + [14579] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1983), 15, + ACTIONS(2047), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -133785,7 +132913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1981), 46, + ACTIONS(2045), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -133832,11 +132960,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [16449] = 3, + [14649] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1819), 15, + ACTIONS(2051), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -133852,7 +132980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1817), 46, + ACTIONS(2049), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -133899,11 +133027,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [16519] = 3, + [14719] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2135), 15, + ACTIONS(2055), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -133919,7 +133047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2133), 46, + ACTIONS(2053), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -133966,11 +133094,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [16589] = 3, + [14789] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1631), 15, + ACTIONS(1559), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -133986,7 +133114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1629), 46, + ACTIONS(1557), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -134033,11 +133161,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [16659] = 3, + [14859] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2143), 15, + ACTIONS(1579), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -134053,7 +133181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2141), 46, + ACTIONS(1577), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -134100,11 +133228,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [16729] = 3, + [14929] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1635), 15, + ACTIONS(2059), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -134120,7 +133248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1633), 46, + ACTIONS(2057), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -134167,98 +133295,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [16799] = 23, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, - anon_sym_LBRACE, - ACTIONS(1233), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, - anon_sym_None, - ACTIONS(1239), 1, - sym_float, - ACTIONS(1245), 1, - anon_sym_sizeof, - ACTIONS(1247), 1, - sym_string_start, - ACTIONS(1302), 1, - anon_sym_STAR, - ACTIONS(1310), 1, - anon_sym_LT, - ACTIONS(1312), 1, - anon_sym_await, - STATE(2140), 1, - sym_string, - STATE(2432), 1, - sym_list_splat_pattern, - STATE(3190), 1, - sym_primary_expression, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(581), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(1295), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1300), 2, - anon_sym_not, - anon_sym_or, - ACTIONS(1237), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(1308), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1304), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - ACTIONS(579), 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(2549), 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, - [16909] = 3, + [14999] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2347), 15, + ACTIONS(1635), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -134274,7 +133315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2345), 46, + ACTIONS(1633), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -134321,11 +133362,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [16979] = 3, + [15069] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2351), 15, + ACTIONS(2303), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -134341,7 +133382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2349), 46, + ACTIONS(2301), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -134388,11 +133429,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [17049] = 3, + [15139] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2147), 15, + ACTIONS(2307), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -134408,7 +133449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2145), 46, + ACTIONS(2305), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -134455,11 +133496,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [17119] = 3, + [15209] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1639), 15, + ACTIONS(1583), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -134475,7 +133516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1637), 46, + ACTIONS(1581), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -134522,11 +133563,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [17189] = 3, + [15279] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2231), 15, + ACTIONS(2063), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -134542,7 +133583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2229), 46, + ACTIONS(2061), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -134589,11 +133630,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [17259] = 3, + [15349] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2151), 15, + ACTIONS(2067), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -134609,7 +133650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2149), 46, + ACTIONS(2065), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -134656,98 +133697,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [17329] = 23, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, - anon_sym_LBRACE, - ACTIONS(1233), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, - anon_sym_None, - ACTIONS(1239), 1, - sym_float, - ACTIONS(1245), 1, - anon_sym_sizeof, - ACTIONS(1247), 1, - sym_string_start, - ACTIONS(1302), 1, - anon_sym_STAR, - ACTIONS(1310), 1, - anon_sym_LT, - ACTIONS(1312), 1, - anon_sym_await, - STATE(2140), 1, - sym_string, - STATE(2432), 1, - sym_list_splat_pattern, - STATE(3190), 1, - sym_primary_expression, + [15419] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(581), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(3347), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3349), 2, - anon_sym_not, - anon_sym_or, - ACTIONS(1237), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(1308), 4, + ACTIONS(2311), 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(1304), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(2309), 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(579), 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(2549), 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, - [17439] = 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, + [15489] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2307), 15, + ACTIONS(2271), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -134763,7 +133784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2305), 46, + ACTIONS(2269), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -134810,11 +133831,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [17509] = 3, + [15559] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1823), 15, + ACTIONS(1631), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -134830,7 +133851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1821), 46, + ACTIONS(1629), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -134877,11 +133898,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [17579] = 3, + [15629] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2175), 15, + ACTIONS(2351), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -134897,7 +133918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2173), 46, + ACTIONS(2349), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -134944,11 +133965,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [17649] = 3, + [15699] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2111), 15, + ACTIONS(2315), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -134964,7 +133985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2109), 46, + ACTIONS(2313), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -135011,11 +134032,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [17719] = 3, + [15769] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1987), 15, + ACTIONS(1571), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -135031,7 +134052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1985), 46, + ACTIONS(1569), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -135078,11 +134099,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [17789] = 3, + [15839] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2251), 15, + ACTIONS(2275), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -135098,7 +134119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2249), 46, + ACTIONS(2273), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -135145,11 +134166,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [17859] = 3, + [15909] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1995), 15, + ACTIONS(1631), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -135165,7 +134186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1993), 46, + ACTIONS(1629), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -135212,11 +134233,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [17929] = 3, + [15979] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2311), 15, + ACTIONS(1775), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -135232,7 +134253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2309), 46, + ACTIONS(1773), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -135279,11 +134300,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [17999] = 3, + [16049] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2355), 15, + ACTIONS(2279), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -135299,7 +134320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2353), 46, + ACTIONS(2277), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -135346,11 +134367,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [18069] = 3, + [16119] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1563), 15, + ACTIONS(1587), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -135366,7 +134387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1561), 46, + ACTIONS(1585), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -135413,14 +134434,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [18139] = 3, + [16189] = 27, + ACTIONS(1211), 1, + sym_identifier, + ACTIONS(1213), 1, + anon_sym_LPAREN, + ACTIONS(1219), 1, + anon_sym_LBRACK, + ACTIONS(1223), 1, + anon_sym_LBRACE, + ACTIONS(1225), 1, + anon_sym_not, + ACTIONS(1231), 1, + anon_sym_lambda, + ACTIONS(1233), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1235), 1, + anon_sym_None, + ACTIONS(1239), 1, + sym_float, + ACTIONS(1241), 1, + anon_sym_await, + ACTIONS(1243), 1, + anon_sym_new, + ACTIONS(1245), 1, + anon_sym_sizeof, + ACTIONS(1247), 1, + sym_string_start, + ACTIONS(2705), 1, + anon_sym_LT, + ACTIONS(2955), 1, + anon_sym_STAR, + STATE(2072), 1, + sym_primary_expression, + STATE(2161), 1, + sym_string, + STATE(2536), 1, + sym_list_splat_pattern, + STATE(4149), 1, + sym_expression, + STATE(5228), 1, + sym_with_item, + STATE(5579), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 15, + ACTIONS(1237), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1227), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1217), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3088), 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(2401), 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, + [16307] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3363), 14, sym_string_start, ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -135433,7 +134544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1641), 46, + ACTIONS(3365), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -135451,6 +134562,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, @@ -135480,15 +134592,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [18209] = 4, - ACTIONS(3359), 1, - anon_sym_SEMI, + [16377] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2033), 14, + ACTIONS(2071), 15, sym_string_start, ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -135501,7 +134612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2029), 46, + ACTIONS(2069), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -135548,11 +134659,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [18281] = 3, + [16447] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1647), 15, + ACTIONS(2325), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -135568,7 +134679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1645), 46, + ACTIONS(2323), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -135615,11 +134726,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [18351] = 3, + [16517] = 27, + ACTIONS(1211), 1, + sym_identifier, + ACTIONS(1213), 1, + anon_sym_LPAREN, + ACTIONS(1219), 1, + anon_sym_LBRACK, + ACTIONS(1223), 1, + anon_sym_LBRACE, + ACTIONS(1225), 1, + anon_sym_not, + ACTIONS(1231), 1, + anon_sym_lambda, + ACTIONS(1233), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1235), 1, + anon_sym_None, + ACTIONS(1239), 1, + sym_float, + ACTIONS(1241), 1, + anon_sym_await, + ACTIONS(1243), 1, + anon_sym_new, + ACTIONS(1245), 1, + anon_sym_sizeof, + ACTIONS(1247), 1, + sym_string_start, + ACTIONS(2705), 1, + anon_sym_LT, + ACTIONS(2955), 1, + anon_sym_STAR, + ACTIONS(3055), 1, + anon_sym_COLON, + STATE(2072), 1, + sym_primary_expression, + STATE(2161), 1, + sym_string, + STATE(2536), 1, + sym_list_splat_pattern, + STATE(4212), 1, + sym_expression, + STATE(5579), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1651), 15, + ACTIONS(1237), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1227), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1217), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3088), 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(2401), 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, + [16635] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2075), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -135635,7 +134837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1649), 46, + ACTIONS(2073), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -135682,11 +134884,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [18421] = 3, + [16705] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1567), 15, + ACTIONS(2159), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -135702,7 +134904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1565), 46, + ACTIONS(2157), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -135749,11 +134951,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [18491] = 3, + [16775] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1655), 15, + ACTIONS(1811), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -135769,7 +134971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1653), 46, + ACTIONS(1809), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -135816,11 +135018,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [18561] = 3, + [16845] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1835), 15, + ACTIONS(1911), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -135836,7 +135038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1833), 46, + ACTIONS(1909), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -135883,102 +135085,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [18631] = 27, - ACTIONS(1382), 1, - anon_sym_LBRACK, - ACTIONS(1386), 1, - anon_sym_LBRACE, - ACTIONS(1388), 1, - anon_sym_not, - ACTIONS(1390), 1, - anon_sym_LT, - ACTIONS(1392), 1, - anon_sym_lambda, - ACTIONS(1394), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, - anon_sym_None, - ACTIONS(1400), 1, - sym_float, - ACTIONS(1404), 1, - anon_sym_new, - ACTIONS(1406), 1, - anon_sym_sizeof, - ACTIONS(1408), 1, - sym_string_start, - ACTIONS(2439), 1, - anon_sym_LPAREN, - ACTIONS(2955), 1, - sym_identifier, - ACTIONS(2961), 1, - anon_sym_await, - ACTIONS(3055), 1, - anon_sym_STAR, - STATE(2151), 1, - sym_primary_expression, - STATE(2302), 1, - sym_string, - STATE(2671), 1, - sym_list_splat_pattern, - STATE(4235), 1, - sym_expression, - STATE(5189), 1, - sym_with_item, - STATE(5468), 1, - sym__named_expression_lhs, + [16915] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1398), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1384), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2959), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2716), 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(2715), 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, - [18749] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2183), 15, + ACTIONS(2163), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -135994,7 +135105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2181), 46, + ACTIONS(2161), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -136041,13 +135152,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [18819] = 3, + [16985] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3361), 14, + ACTIONS(1919), 15, sym_string_start, ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -136060,7 +135172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3363), 47, + ACTIONS(1917), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -136078,7 +135190,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, @@ -136108,11 +135219,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [18889] = 3, + [17055] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1999), 15, + ACTIONS(1591), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -136128,7 +135239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1997), 46, + ACTIONS(1589), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -136175,102 +135286,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [18959] = 27, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, - anon_sym_LBRACE, - ACTIONS(1225), 1, - anon_sym_not, - ACTIONS(1231), 1, - anon_sym_lambda, - ACTIONS(1233), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, - anon_sym_None, - ACTIONS(1239), 1, - sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1243), 1, - anon_sym_new, - ACTIONS(1245), 1, - anon_sym_sizeof, - ACTIONS(1247), 1, - sym_string_start, - ACTIONS(2735), 1, - anon_sym_LT, - ACTIONS(3009), 1, - anon_sym_STAR, - STATE(2067), 1, - sym_primary_expression, - STATE(2140), 1, - sym_string, - STATE(2432), 1, - sym_list_splat_pattern, - STATE(4136), 1, - sym_expression, - STATE(5469), 1, - sym__named_expression_lhs, - STATE(5666), 1, - sym_expression_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1237), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1227), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1217), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3081), 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(2549), 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, - [19077] = 3, + [17125] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2077), 15, + ACTIONS(1851), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -136286,7 +135306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2075), 46, + ACTIONS(1849), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -136333,11 +135353,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [19147] = 3, + [17195] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2003), 15, + ACTIONS(1923), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -136353,7 +135373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2001), 46, + ACTIONS(1921), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -136400,11 +135420,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [19217] = 3, + [17265] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1559), 15, + ACTIONS(1855), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -136420,7 +135440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1557), 46, + ACTIONS(1853), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -136467,11 +135487,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [19287] = 3, + [17335] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1827), 15, + ACTIONS(1927), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -136487,7 +135507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1825), 46, + ACTIONS(1925), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -136534,11 +135554,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [19357] = 3, + [17405] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1791), 15, + ACTIONS(2139), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -136554,7 +135574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1789), 46, + ACTIONS(2137), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -136601,11 +135621,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [19427] = 3, + [17475] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2087), 15, + ACTIONS(1859), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -136621,7 +135641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2085), 46, + ACTIONS(1857), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -136668,78 +135688,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [19497] = 3, + [17545] = 27, + ACTIONS(1211), 1, + sym_identifier, + ACTIONS(1213), 1, + anon_sym_LPAREN, + ACTIONS(1219), 1, + anon_sym_LBRACK, + ACTIONS(1223), 1, + anon_sym_LBRACE, + ACTIONS(1225), 1, + anon_sym_not, + ACTIONS(1231), 1, + anon_sym_lambda, + ACTIONS(1233), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1235), 1, + anon_sym_None, + ACTIONS(1239), 1, + sym_float, + ACTIONS(1241), 1, + anon_sym_await, + ACTIONS(1243), 1, + anon_sym_new, + ACTIONS(1245), 1, + anon_sym_sizeof, + ACTIONS(1247), 1, + sym_string_start, + ACTIONS(2705), 1, + anon_sym_LT, + ACTIONS(2955), 1, + anon_sym_STAR, + ACTIONS(3079), 1, + anon_sym_COLON, + STATE(2072), 1, + sym_primary_expression, + STATE(2161), 1, + sym_string, + STATE(2536), 1, + sym_list_splat_pattern, + STATE(4212), 1, + sym_expression, + STATE(5579), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2191), 15, - sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1237), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1227), 4, 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(2189), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1217), 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, - [19567] = 3, + STATE(3088), 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(2401), 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, + [17663] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2195), 15, + ACTIONS(1803), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -136755,7 +135799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2193), 46, + ACTIONS(1801), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -136802,105 +135846,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [19637] = 28, - 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(577), 1, - sym_identifier, - ACTIONS(614), 1, - anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3365), 1, - anon_sym_STAR, - ACTIONS(3367), 1, - anon_sym_PLUS, - ACTIONS(3369), 1, - anon_sym_QMARK, - STATE(2024), 1, - sym_primary_expression, - STATE(2034), 1, - sym_string, - STATE(2088), 1, - sym_list_splat_pattern, - STATE(3957), 1, - sym_expression, - STATE(5564), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(81), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(592), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3429), 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(2123), 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, - [19757] = 3, + [17733] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3351), 14, - sym__dedent, + ACTIONS(1931), 15, sym_string_start, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -136913,7 +135866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3353), 47, + ACTIONS(1929), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -136931,7 +135884,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, @@ -136961,11 +135913,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [19827] = 3, + [17803] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2091), 15, + ACTIONS(2115), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -136981,7 +135933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2089), 46, + ACTIONS(2113), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -137028,14 +135980,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [19897] = 3, + [17873] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1659), 15, + ACTIONS(3363), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -137048,7 +135999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1657), 46, + ACTIONS(3365), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -137066,6 +136017,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, @@ -137095,11 +136047,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [19967] = 3, + [17943] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1663), 15, + ACTIONS(2167), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -137115,7 +136067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1661), 46, + ACTIONS(2165), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -137162,11 +136114,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [20037] = 3, + [18013] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1667), 15, + ACTIONS(2171), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -137182,7 +136134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1665), 46, + ACTIONS(2169), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -137229,11 +136181,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [20107] = 3, + [18083] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1671), 15, + ACTIONS(1815), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -137249,7 +136201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1669), 46, + ACTIONS(1813), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -137296,11 +136248,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [20177] = 3, + [18153] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1679), 15, + ACTIONS(2283), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -137316,7 +136268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1677), 46, + ACTIONS(2281), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -137363,11 +136315,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [20247] = 3, + [18223] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1683), 15, + ACTIONS(2355), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -137383,7 +136335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1681), 46, + ACTIONS(2353), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -137430,11 +136382,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [20317] = 3, + [18293] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1687), 15, + ACTIONS(1827), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -137450,7 +136402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1685), 46, + ACTIONS(1825), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -137497,11 +136449,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [20387] = 3, + [18363] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1691), 15, + ACTIONS(1863), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -137517,7 +136469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1689), 46, + ACTIONS(1861), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -137564,11 +136516,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [20457] = 3, + [18433] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2179), 15, + ACTIONS(2199), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -137584,7 +136536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2177), 46, + ACTIONS(2197), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -137631,11 +136583,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [20527] = 3, + [18503] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2323), 15, + ACTIONS(2175), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -137651,7 +136603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2321), 46, + ACTIONS(2173), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -137698,212 +136650,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [20597] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2015), 15, - sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, + [18573] = 27, + ACTIONS(1211), 1, + sym_identifier, + ACTIONS(1213), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(1219), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(1223), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(2013), 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(1225), 1, anon_sym_not, + ACTIONS(1231), 1, anon_sym_lambda, - anon_sym_yield, + ACTIONS(1233), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1235), 1, anon_sym_None, - sym_integer, - sym_identifier, + ACTIONS(1239), 1, + sym_float, + ACTIONS(1241), 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(1243), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, + ACTIONS(1245), 1, anon_sym_sizeof, - [20667] = 3, + ACTIONS(1247), 1, + sym_string_start, + ACTIONS(2705), 1, + anon_sym_LT, + ACTIONS(2955), 1, + anon_sym_STAR, + ACTIONS(3367), 1, + anon_sym_COLON, + STATE(2072), 1, + sym_primary_expression, + STATE(2161), 1, + sym_string, + STATE(2536), 1, + sym_list_splat_pattern, + STATE(4188), 1, + sym_expression, + STATE(5579), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2199), 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(2197), 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(1237), 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, - [20737] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2203), 15, - sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1227), 4, 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(2201), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1217), 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, - [20807] = 3, + STATE(3088), 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(2401), 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, + [18691] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2011), 15, + ACTIONS(1639), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -137919,7 +136761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2009), 46, + ACTIONS(1637), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -137966,78 +136808,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [20877] = 3, + [18761] = 27, + ACTIONS(1211), 1, + sym_identifier, + ACTIONS(1213), 1, + anon_sym_LPAREN, + ACTIONS(1219), 1, + anon_sym_LBRACK, + ACTIONS(1223), 1, + anon_sym_LBRACE, + ACTIONS(1225), 1, + anon_sym_not, + ACTIONS(1231), 1, + anon_sym_lambda, + ACTIONS(1233), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1235), 1, + anon_sym_None, + ACTIONS(1239), 1, + sym_float, + ACTIONS(1241), 1, + anon_sym_await, + ACTIONS(1243), 1, + anon_sym_new, + ACTIONS(1245), 1, + anon_sym_sizeof, + ACTIONS(1247), 1, + sym_string_start, + ACTIONS(2705), 1, + anon_sym_LT, + ACTIONS(2955), 1, + anon_sym_STAR, + STATE(2072), 1, + sym_primary_expression, + STATE(2161), 1, + sym_string, + STATE(2536), 1, + sym_list_splat_pattern, + STATE(4143), 1, + sym_expression, + STATE(5579), 1, + sym__named_expression_lhs, + STATE(5699), 1, + sym_expression_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2207), 15, - sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1237), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1227), 4, 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(2205), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1217), 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, - [20947] = 3, + STATE(3088), 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(2401), 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, + [18879] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1571), 15, + ACTIONS(1643), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -138053,7 +136919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1569), 46, + ACTIONS(1641), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -138100,11 +136966,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [21017] = 3, + [18949] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1695), 15, + ACTIONS(1567), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -138120,7 +136986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1693), 46, + ACTIONS(1565), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -138167,11 +137033,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [21087] = 3, + [19019] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2211), 15, + ACTIONS(1831), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -138187,7 +137053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2209), 46, + ACTIONS(1829), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -138234,11 +137100,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [21157] = 3, + [19089] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1699), 15, + ACTIONS(1563), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -138254,7 +137120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1697), 46, + ACTIONS(1561), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -138301,11 +137167,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [21227] = 3, + [19159] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1703), 15, + ACTIONS(2343), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -138321,7 +137187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1701), 46, + ACTIONS(2341), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -138368,11 +137234,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [21297] = 3, + [19229] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1707), 15, + ACTIONS(1647), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -138388,7 +137254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1705), 46, + ACTIONS(1645), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -138435,11 +137301,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [21367] = 3, + [19299] = 27, + ACTIONS(1211), 1, + sym_identifier, + ACTIONS(1213), 1, + anon_sym_LPAREN, + ACTIONS(1219), 1, + anon_sym_LBRACK, + ACTIONS(1223), 1, + anon_sym_LBRACE, + ACTIONS(1225), 1, + anon_sym_not, + ACTIONS(1231), 1, + anon_sym_lambda, + ACTIONS(1233), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1235), 1, + anon_sym_None, + ACTIONS(1239), 1, + sym_float, + ACTIONS(1241), 1, + anon_sym_await, + ACTIONS(1243), 1, + anon_sym_new, + ACTIONS(1245), 1, + anon_sym_sizeof, + ACTIONS(1247), 1, + sym_string_start, + ACTIONS(2705), 1, + anon_sym_LT, + ACTIONS(2955), 1, + anon_sym_STAR, + ACTIONS(3369), 1, + anon_sym_COLON, + STATE(2072), 1, + sym_primary_expression, + STATE(2161), 1, + sym_string, + STATE(2536), 1, + sym_list_splat_pattern, + STATE(4188), 1, + sym_expression, + STATE(5579), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2331), 15, + ACTIONS(1237), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1227), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1217), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3088), 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(2401), 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, + [19417] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1651), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -138455,7 +137412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2329), 46, + ACTIONS(1649), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -138502,11 +137459,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [21437] = 3, + [19487] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1731), 15, + ACTIONS(1835), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -138522,7 +137479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1729), 46, + ACTIONS(1833), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -138569,11 +137526,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [21507] = 3, + [19557] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2049), 15, + ACTIONS(1839), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -138589,7 +137546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2047), 46, + ACTIONS(1837), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -138636,11 +137593,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [21577] = 3, + [19627] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1711), 15, + ACTIONS(2119), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -138656,7 +137613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1709), 46, + ACTIONS(2117), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -138703,11 +137660,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [21647] = 3, + [19697] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1891), 15, + ACTIONS(1871), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -138723,7 +137680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1889), 46, + ACTIONS(1869), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -138770,11 +137727,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [21717] = 3, + [19767] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1895), 15, + ACTIONS(1875), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -138790,7 +137747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1893), 46, + ACTIONS(1873), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -138837,11 +137794,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [21787] = 3, + [19837] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1715), 15, + ACTIONS(1907), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -138857,7 +137814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1713), 46, + ACTIONS(1905), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -138904,11 +137861,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [21857] = 3, + [19907] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1719), 15, + ACTIONS(2287), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -138924,7 +137881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1717), 46, + ACTIONS(2285), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -138971,11 +137928,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [21927] = 3, + [19977] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1899), 15, + ACTIONS(1739), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -138991,7 +137948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1897), 46, + ACTIONS(1737), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -139038,11 +137995,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [21997] = 3, + [20047] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1903), 15, + ACTIONS(1743), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -139058,7 +138015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1901), 46, + ACTIONS(1741), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -139105,11 +138062,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [22067] = 3, + [20117] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2315), 15, + ACTIONS(2179), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -139125,7 +138082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2313), 46, + ACTIONS(2177), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -139172,11 +138129,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [22137] = 3, + [20187] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1935), 15, + ACTIONS(1879), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -139192,7 +138149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1933), 46, + ACTIONS(1877), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -139239,11 +138196,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [22207] = 3, + [20257] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1939), 15, + ACTIONS(2183), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -139259,7 +138216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1937), 46, + ACTIONS(2181), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -139306,11 +138263,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [22277] = 3, + [20327] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1843), 15, + ACTIONS(2291), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -139326,7 +138283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1841), 46, + ACTIONS(2289), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -139373,14 +138330,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [22347] = 3, + [20397] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2327), 15, + ACTIONS(3371), 14, sym_string_start, ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -139393,7 +138349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2325), 46, + ACTIONS(3373), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -139411,6 +138367,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, @@ -139440,11 +138397,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [22417] = 3, + [20467] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1607), 15, + ACTIONS(1883), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -139460,7 +138417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1605), 46, + ACTIONS(1881), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -139507,11 +138464,193 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [22487] = 3, + [20537] = 27, + ACTIONS(1211), 1, + sym_identifier, + ACTIONS(1213), 1, + anon_sym_LPAREN, + ACTIONS(1219), 1, + anon_sym_LBRACK, + ACTIONS(1223), 1, + anon_sym_LBRACE, + ACTIONS(1225), 1, + anon_sym_not, + ACTIONS(1231), 1, + anon_sym_lambda, + ACTIONS(1233), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1235), 1, + anon_sym_None, + ACTIONS(1239), 1, + sym_float, + ACTIONS(1241), 1, + anon_sym_await, + ACTIONS(1243), 1, + anon_sym_new, + ACTIONS(1245), 1, + anon_sym_sizeof, + ACTIONS(1247), 1, + sym_string_start, + ACTIONS(2705), 1, + anon_sym_LT, + ACTIONS(2955), 1, + anon_sym_STAR, + STATE(2072), 1, + sym_primary_expression, + STATE(2161), 1, + sym_string, + STATE(2536), 1, + sym_list_splat_pattern, + STATE(3993), 1, + sym_expression, + STATE(5487), 1, + sym_expression_list, + STATE(5579), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1783), 15, + ACTIONS(1237), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1227), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1217), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3088), 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(2401), 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, + [20655] = 27, + ACTIONS(1211), 1, + sym_identifier, + ACTIONS(1213), 1, + anon_sym_LPAREN, + ACTIONS(1219), 1, + anon_sym_LBRACK, + ACTIONS(1223), 1, + anon_sym_LBRACE, + ACTIONS(1225), 1, + anon_sym_not, + ACTIONS(1231), 1, + anon_sym_lambda, + ACTIONS(1233), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1235), 1, + anon_sym_None, + ACTIONS(1239), 1, + sym_float, + ACTIONS(1241), 1, + anon_sym_await, + ACTIONS(1243), 1, + anon_sym_new, + ACTIONS(1245), 1, + anon_sym_sizeof, + ACTIONS(1247), 1, + sym_string_start, + ACTIONS(2705), 1, + anon_sym_LT, + ACTIONS(2955), 1, + anon_sym_STAR, + ACTIONS(3375), 1, + anon_sym_COLON, + STATE(2072), 1, + sym_primary_expression, + STATE(2161), 1, + sym_string, + STATE(2536), 1, + sym_list_splat_pattern, + STATE(4227), 1, + sym_expression, + STATE(5579), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1237), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1227), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1217), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3088), 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(2401), 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, + [20773] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2187), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -139527,7 +138666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1781), 46, + ACTIONS(2185), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -139574,11 +138713,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [22557] = 3, + [20843] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1803), 15, + ACTIONS(1747), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -139594,7 +138733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1801), 46, + ACTIONS(1745), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -139641,11 +138780,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [22627] = 3, + [20913] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1731), 15, + ACTIONS(1935), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -139661,7 +138800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1729), 46, + ACTIONS(1933), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -139708,11 +138847,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [22697] = 3, + [20983] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2295), 15, + ACTIONS(1887), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -139728,7 +138867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2293), 46, + ACTIONS(1885), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -139775,102 +138914,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [22767] = 27, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, - anon_sym_LBRACE, - ACTIONS(1225), 1, - anon_sym_not, - ACTIONS(1231), 1, - anon_sym_lambda, - ACTIONS(1233), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, - anon_sym_None, - ACTIONS(1239), 1, - sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1243), 1, - anon_sym_new, - ACTIONS(1245), 1, - anon_sym_sizeof, - ACTIONS(1247), 1, - sym_string_start, - ACTIONS(2735), 1, - anon_sym_LT, - ACTIONS(3009), 1, - anon_sym_STAR, - ACTIONS(3371), 1, - anon_sym_COLON, - STATE(2067), 1, - sym_primary_expression, - STATE(2140), 1, - sym_string, - STATE(2432), 1, - sym_list_splat_pattern, - STATE(4283), 1, - sym_expression, - STATE(5469), 1, - sym__named_expression_lhs, + [21053] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1227), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1217), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3081), 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(2549), 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, - [22885] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2327), 15, + ACTIONS(1891), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -139886,7 +138934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2325), 46, + ACTIONS(1889), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -139933,11 +138981,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [22955] = 3, + [21123] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1947), 15, + ACTIONS(2123), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -139953,7 +139001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1945), 46, + ACTIONS(2121), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -140000,102 +139048,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [23025] = 27, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, - anon_sym_LBRACE, - ACTIONS(1225), 1, - anon_sym_not, - ACTIONS(1231), 1, - anon_sym_lambda, - ACTIONS(1233), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, - anon_sym_None, - ACTIONS(1239), 1, - sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1243), 1, - anon_sym_new, - ACTIONS(1245), 1, - anon_sym_sizeof, - ACTIONS(1247), 1, - sym_string_start, - ACTIONS(2735), 1, - anon_sym_LT, - ACTIONS(3009), 1, - anon_sym_STAR, - ACTIONS(3373), 1, - anon_sym_COLON, - STATE(2067), 1, - sym_primary_expression, - STATE(2140), 1, - sym_string, - STATE(2432), 1, - sym_list_splat_pattern, - STATE(4188), 1, - sym_expression, - STATE(5469), 1, - sym__named_expression_lhs, + [21193] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1227), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1217), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3081), 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(2549), 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, - [23143] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1675), 15, + ACTIONS(2083), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -140111,7 +139068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1673), 46, + ACTIONS(2081), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -140158,11 +139115,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [23213] = 3, + [21263] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1951), 15, + ACTIONS(1895), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -140178,7 +139135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1949), 46, + ACTIONS(1893), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -140225,11 +139182,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [23283] = 3, + [21333] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1731), 15, + ACTIONS(2087), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -140245,7 +139202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1729), 46, + ACTIONS(2085), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -140292,102 +139249,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [23353] = 27, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, - anon_sym_LBRACE, - ACTIONS(1225), 1, - anon_sym_not, - ACTIONS(1231), 1, - anon_sym_lambda, - ACTIONS(1233), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, - anon_sym_None, - ACTIONS(1239), 1, - sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1243), 1, - anon_sym_new, - ACTIONS(1245), 1, - anon_sym_sizeof, - ACTIONS(1247), 1, - sym_string_start, - ACTIONS(2735), 1, - anon_sym_LT, - ACTIONS(3009), 1, - anon_sym_STAR, - ACTIONS(3375), 1, - anon_sym_COLON, - STATE(2067), 1, - sym_primary_expression, - STATE(2140), 1, - sym_string, - STATE(2432), 1, - sym_list_splat_pattern, - STATE(4150), 1, - sym_expression, - STATE(5469), 1, - sym__named_expression_lhs, + [21403] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1227), 4, + ACTIONS(1843), 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(1217), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(1841), 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(3081), 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(2549), 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, - [23471] = 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, + [21473] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1955), 15, + ACTIONS(1751), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -140403,7 +139336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1953), 46, + ACTIONS(1749), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -140450,11 +139383,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [23541] = 3, + [21543] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1847), 15, + ACTIONS(2079), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -140470,7 +139403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1845), 46, + ACTIONS(2077), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -140517,11 +139450,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [23611] = 3, + [21613] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1959), 15, + ACTIONS(1595), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -140537,7 +139470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1957), 46, + ACTIONS(1593), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -140584,11 +139517,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [23681] = 3, + [21683] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1723), 15, + ACTIONS(1799), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -140604,7 +139537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1721), 46, + ACTIONS(1797), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -140651,11 +139584,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [23751] = 3, + [21753] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1963), 15, + ACTIONS(1847), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -140671,7 +139604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1961), 46, + ACTIONS(1845), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -140718,11 +139651,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [23821] = 3, + [21823] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1967), 15, + ACTIONS(2091), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -140738,7 +139671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1965), 46, + ACTIONS(2089), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -140785,11 +139718,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [23891] = 3, + [21893] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1851), 15, + ACTIONS(2339), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -140805,7 +139738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1849), 46, + ACTIONS(2337), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -140852,11 +139785,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [23961] = 3, + [21963] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1855), 15, + ACTIONS(1939), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -140872,7 +139805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1853), 46, + ACTIONS(1937), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -140919,11 +139852,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [24031] = 3, + [22033] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2057), 15, + ACTIONS(1755), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -140939,7 +139872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2055), 46, + ACTIONS(1753), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -140986,11 +139919,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [24101] = 3, + [22103] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1727), 15, + ACTIONS(2239), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -141006,7 +139939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1725), 46, + ACTIONS(2237), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -141053,11 +139986,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [24171] = 3, + [22173] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2095), 15, + ACTIONS(2243), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -141073,7 +140006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2093), 46, + ACTIONS(2241), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -141120,11 +140053,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [24241] = 3, + [22243] = 23, + ACTIONS(1213), 1, + anon_sym_LPAREN, + ACTIONS(1219), 1, + anon_sym_LBRACK, + ACTIONS(1223), 1, + anon_sym_LBRACE, + ACTIONS(1233), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1235), 1, + anon_sym_None, + ACTIONS(1239), 1, + sym_float, + ACTIONS(1245), 1, + anon_sym_sizeof, + ACTIONS(1247), 1, + sym_string_start, + ACTIONS(1302), 1, + anon_sym_STAR, + ACTIONS(1310), 1, + anon_sym_LT, + ACTIONS(1312), 1, + anon_sym_await, + STATE(2161), 1, + sym_string, + STATE(2536), 1, + sym_list_splat_pattern, + STATE(3239), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1771), 15, + ACTIONS(1005), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(1295), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1300), 2, + anon_sym_not, + anon_sym_or, + ACTIONS(1237), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1308), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1304), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + ACTIONS(1003), 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(2401), 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, + [22353] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2247), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -141140,7 +140160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1769), 46, + ACTIONS(2245), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -141187,13 +140207,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [24311] = 3, + [22423] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3361), 14, - sym__dedent, + ACTIONS(2095), 15, sym_string_start, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -141206,7 +140227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3363), 47, + ACTIONS(2093), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -141224,7 +140245,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, @@ -141254,11 +140274,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [24381] = 3, + [22493] = 27, + ACTIONS(1211), 1, + sym_identifier, + ACTIONS(1213), 1, + anon_sym_LPAREN, + ACTIONS(1219), 1, + anon_sym_LBRACK, + ACTIONS(1223), 1, + anon_sym_LBRACE, + ACTIONS(1225), 1, + anon_sym_not, + ACTIONS(1231), 1, + anon_sym_lambda, + ACTIONS(1233), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1235), 1, + anon_sym_None, + ACTIONS(1239), 1, + sym_float, + ACTIONS(1241), 1, + anon_sym_await, + ACTIONS(1243), 1, + anon_sym_new, + ACTIONS(1245), 1, + anon_sym_sizeof, + ACTIONS(1247), 1, + sym_string_start, + ACTIONS(2705), 1, + anon_sym_LT, + ACTIONS(2955), 1, + anon_sym_STAR, + ACTIONS(3377), 1, + anon_sym_COLON, + STATE(2072), 1, + sym_primary_expression, + STATE(2161), 1, + sym_string, + STATE(2536), 1, + sym_list_splat_pattern, + STATE(4188), 1, + sym_expression, + STATE(5579), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1859), 15, + ACTIONS(1237), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1227), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1217), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3088), 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(2401), 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, + [22611] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1599), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -141274,7 +140385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1857), 46, + ACTIONS(1597), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -141321,11 +140432,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [24451] = 3, + [22681] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2103), 15, + ACTIONS(1603), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -141341,7 +140452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2101), 46, + ACTIONS(1601), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -141388,11 +140499,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [24521] = 3, + [22751] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1863), 15, + ACTIONS(2251), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -141408,7 +140519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1861), 46, + ACTIONS(2249), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -141455,7 +140566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [24591] = 27, + [22821] = 27, ACTIONS(1211), 1, sym_identifier, ACTIONS(1213), 1, @@ -141482,22 +140593,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2735), 1, + ACTIONS(2705), 1, anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(2955), 1, anon_sym_STAR, - STATE(2067), 1, + ACTIONS(3379), 1, + anon_sym_COLON, + STATE(2072), 1, sym_primary_expression, - STATE(2140), 1, + STATE(2161), 1, sym_string, - STATE(2432), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(4082), 1, + STATE(4224), 1, sym_expression, - STATE(5469), 1, + STATE(5579), 1, sym__named_expression_lhs, - STATE(5614), 1, - sym_expression_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -141516,7 +140627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3081), 8, + STATE(3088), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -141525,7 +140636,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -141546,11 +140657,11 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [24709] = 3, + [22939] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2219), 15, + ACTIONS(2255), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -141566,7 +140677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2217), 46, + ACTIONS(2253), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -141613,11 +140724,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [24779] = 3, + [23009] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2223), 15, + ACTIONS(2263), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -141633,7 +140744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2221), 46, + ACTIONS(2261), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -141680,102 +140791,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [24849] = 27, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, - anon_sym_LBRACE, - ACTIONS(1225), 1, - anon_sym_not, - ACTIONS(1231), 1, - anon_sym_lambda, - ACTIONS(1233), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, - anon_sym_None, - ACTIONS(1239), 1, - sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1243), 1, - anon_sym_new, - ACTIONS(1245), 1, - anon_sym_sizeof, - ACTIONS(1247), 1, - sym_string_start, - ACTIONS(2735), 1, - anon_sym_LT, - ACTIONS(3009), 1, - anon_sym_STAR, - ACTIONS(3377), 1, - anon_sym_COLON, - STATE(2067), 1, - sym_primary_expression, - STATE(2140), 1, - sym_string, - STATE(2432), 1, - sym_list_splat_pattern, - STATE(4188), 1, - sym_expression, - STATE(5469), 1, - sym__named_expression_lhs, + [23079] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1227), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1217), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3081), 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(2549), 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, - [24967] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1943), 15, + ACTIONS(2099), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -141791,7 +140811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1941), 46, + ACTIONS(2097), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -141838,11 +140858,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [25037] = 3, + [23149] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2227), 15, + ACTIONS(2267), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -141858,7 +140878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2225), 46, + ACTIONS(2265), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -141905,11 +140925,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [25107] = 3, + [23219] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2235), 15, + ACTIONS(2191), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -141925,7 +140945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2233), 46, + ACTIONS(2189), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -141972,14 +140992,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [25177] = 3, + [23289] = 4, + ACTIONS(3381), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1787), 15, + ACTIONS(2321), 14, sym_string_start, ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -141992,7 +141013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1785), 46, + ACTIONS(2317), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -142039,11 +141060,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [25247] = 3, + [23361] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2239), 15, + ACTIONS(1971), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -142059,7 +141080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2237), 46, + ACTIONS(1969), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -142106,78 +141127,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [25317] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2235), 15, - sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, + [23431] = 23, + ACTIONS(1213), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(1219), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(1223), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, + ACTIONS(1233), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(1235), 1, + anon_sym_None, + ACTIONS(1239), 1, sym_float, - ACTIONS(2233), 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(1245), 1, + anon_sym_sizeof, + ACTIONS(1247), 1, + sym_string_start, + ACTIONS(1302), 1, + anon_sym_STAR, + ACTIONS(1310), 1, + anon_sym_LT, + ACTIONS(1312), 1, + anon_sym_await, + STATE(2161), 1, + sym_string, + STATE(2536), 1, + sym_list_splat_pattern, + STATE(3239), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1005), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(3295), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(3297), 2, anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, + anon_sym_or, + ACTIONS(1237), 4, 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, - [25387] = 3, + sym_true, + sym_false, + ACTIONS(1308), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1304), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + ACTIONS(1003), 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(2401), 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, + [23541] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1839), 15, + ACTIONS(1823), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -142193,7 +141234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1837), 46, + ACTIONS(1821), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -142240,11 +141281,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [25457] = 3, + [23611] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2235), 15, + ACTIONS(2259), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -142260,7 +141301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2233), 46, + ACTIONS(2257), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -142307,11 +141348,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [25527] = 3, + [23681] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1735), 15, + ACTIONS(2195), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -142327,7 +141368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1733), 46, + ACTIONS(2193), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -142374,11 +141415,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [25597] = 3, + [23751] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1739), 15, + ACTIONS(1759), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -142394,7 +141435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1737), 46, + ACTIONS(1757), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -142441,11 +141482,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [25667] = 3, + [23821] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1743), 15, + ACTIONS(1915), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -142461,7 +141502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1741), 46, + ACTIONS(1913), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -142508,11 +141549,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [25737] = 3, + [23891] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1747), 15, + ACTIONS(1975), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -142528,7 +141569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1745), 46, + ACTIONS(1973), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -142575,11 +141616,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [25807] = 3, + [23961] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1831), 15, + ACTIONS(2103), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -142595,7 +141636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1829), 46, + ACTIONS(2101), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -142642,11 +141683,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [25877] = 3, + [24031] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1879), 15, + ACTIONS(1655), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -142662,7 +141703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1877), 46, + ACTIONS(1653), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -142709,11 +141750,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [25947] = 3, + [24101] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1887), 15, + ACTIONS(1979), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -142729,7 +141770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1885), 46, + ACTIONS(1977), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -142776,11 +141817,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [26017] = 3, + [24171] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2247), 15, + ACTIONS(1763), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -142796,7 +141837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2245), 46, + ACTIONS(1761), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -142843,11 +141884,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [26087] = 3, + [24241] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2255), 15, + ACTIONS(1607), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -142863,7 +141904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2253), 46, + ACTIONS(1605), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -142910,7 +141951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [26157] = 27, + [24311] = 27, ACTIONS(1211), 1, sym_identifier, ACTIONS(1213), 1, @@ -142937,21 +141978,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2735), 1, + ACTIONS(2705), 1, anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(2955), 1, anon_sym_STAR, - ACTIONS(3379), 1, + ACTIONS(3383), 1, anon_sym_COLON, - STATE(2067), 1, + STATE(2072), 1, sym_primary_expression, - STATE(2140), 1, + STATE(2161), 1, sym_string, - STATE(2432), 1, + STATE(2536), 1, sym_list_splat_pattern, STATE(4188), 1, sym_expression, - STATE(5469), 1, + STATE(5579), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -142971,7 +142012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3081), 8, + STATE(3088), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -142980,7 +142021,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -143001,13 +142042,81 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [26275] = 3, + [24429] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1611), 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(1609), 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, + [24499] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3381), 14, + ACTIONS(2107), 15, sym_string_start, ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -143020,7 +142129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3383), 46, + ACTIONS(2105), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -143067,7 +142176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [26344] = 26, + [24569] = 27, ACTIONS(1211), 1, sym_identifier, ACTIONS(1213), 1, @@ -143094,20 +142203,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2735), 1, + ACTIONS(2705), 1, anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(2955), 1, anon_sym_STAR, - STATE(2067), 1, + STATE(2072), 1, sym_primary_expression, - STATE(2140), 1, + STATE(2161), 1, sym_string, - STATE(2432), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(4464), 1, + STATE(4107), 1, sym_expression, - STATE(5469), 1, + STATE(5579), 1, sym__named_expression_lhs, + STATE(5632), 1, + sym_expression_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -143126,96 +142237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3081), 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(2549), 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, - [26459] = 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(577), 1, - sym_identifier, - ACTIONS(614), 1, - anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3071), 1, - anon_sym_STAR, - STATE(2024), 1, - sym_primary_expression, - STATE(2034), 1, - sym_string, - STATE(2088), 1, - sym_list_splat_pattern, - STATE(4230), 1, - sym_expression, - STATE(5564), 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(592), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3429), 8, + STATE(3088), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -143224,7 +142246,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -143245,13 +142267,14 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [26574] = 3, + [24687] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3387), 14, - sym__dedent, + ACTIONS(2359), 15, sym_string_start, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -143264,7 +142287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3385), 46, + ACTIONS(2357), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -143311,13 +142334,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [26643] = 3, + [24757] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3391), 14, - sym__dedent, + ACTIONS(1855), 15, sym_string_start, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -143330,7 +142354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3389), 46, + ACTIONS(1853), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -143377,13 +142401,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [26712] = 3, + [24827] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3395), 14, - sym__dedent, + ACTIONS(1767), 15, sym_string_start, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -143396,7 +142421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3393), 46, + ACTIONS(1765), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -143443,132 +142468,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [26781] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3399), 14, - sym__dedent, - sym_string_start, + [24897] = 27, + ACTIONS(1211), 1, + sym_identifier, + ACTIONS(1213), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(1219), 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(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, - 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, - [26850] = 26, - ACTIONS(67), 1, + ACTIONS(1223), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(1225), 1, anon_sym_not, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(73), 1, + ACTIONS(1231), 1, anon_sym_lambda, - ACTIONS(77), 1, + ACTIONS(1233), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1235), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1239), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(1241), 1, + anon_sym_await, + ACTIONS(1243), 1, anon_sym_new, - ACTIONS(105), 1, + ACTIONS(1245), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1247), 1, sym_string_start, - ACTIONS(577), 1, - sym_identifier, - ACTIONS(614), 1, - anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3071), 1, + ACTIONS(2705), 1, + anon_sym_LT, + ACTIONS(2955), 1, anon_sym_STAR, - STATE(2024), 1, + STATE(2072), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2161), 1, sym_string, - STATE(2088), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(4124), 1, + STATE(4109), 1, sym_expression, - STATE(5564), 1, + STATE(5579), 1, sym__named_expression_lhs, + STATE(5707), 1, + sym_expression_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1237), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1227), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(1217), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(3088), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -143577,7 +142538,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -143598,13 +142559,14 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [26965] = 3, + [25015] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3403), 14, - sym__dedent, + ACTIONS(2127), 15, sym_string_start, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -143617,7 +142579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3401), 46, + ACTIONS(2125), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -143664,13 +142626,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [27034] = 3, + [25085] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3407), 14, - sym__dedent, + ACTIONS(1771), 15, sym_string_start, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -143683,7 +142646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3405), 46, + ACTIONS(1769), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -143730,369 +142693,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [27103] = 26, - ACTIONS(1328), 1, - anon_sym_LBRACE, - ACTIONS(1330), 1, - anon_sym_not, - ACTIONS(1332), 1, - anon_sym_LT, - ACTIONS(1334), 1, - anon_sym_lambda, - ACTIONS(1338), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1340), 1, - anon_sym_None, - ACTIONS(1344), 1, - sym_float, - ACTIONS(1350), 1, - anon_sym_new, - ACTIONS(1360), 1, - anon_sym_sizeof, - ACTIONS(1362), 1, - sym_string_start, - ACTIONS(1472), 1, - anon_sym_LBRACK, - ACTIONS(1474), 1, - anon_sym_await, - ACTIONS(2427), 1, - anon_sym_LPAREN, - ACTIONS(2761), 1, - sym_identifier, - ACTIONS(2939), 1, - anon_sym_STAR, - STATE(2060), 1, - sym_primary_expression, - STATE(2170), 1, - sym_string, - STATE(2477), 1, - sym_list_splat_pattern, - STATE(4122), 1, - sym_expression, - STATE(5688), 1, - sym__named_expression_lhs, + [25155] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1342), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1326), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1470), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2459), 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(2457), 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, - [27218] = 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, + ACTIONS(1775), 15, sym_string_start, - ACTIONS(577), 1, - sym_identifier, - ACTIONS(614), 1, - anon_sym_await, - ACTIONS(1281), 1, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3071), 1, anon_sym_STAR, - STATE(2024), 1, - sym_primary_expression, - STATE(2034), 1, - sym_string, - STATE(2088), 1, - sym_list_splat_pattern, - STATE(4126), 1, - sym_expression, - STATE(5564), 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_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3429), 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(2123), 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, - [27333] = 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(577), 1, - sym_identifier, - ACTIONS(614), 1, - anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3071), 1, - anon_sym_STAR, - STATE(2024), 1, - sym_primary_expression, - STATE(2034), 1, - sym_string, - STATE(2088), 1, - sym_list_splat_pattern, - STATE(4128), 1, - sym_expression, - STATE(5564), 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(592), 5, + ACTIONS(1773), 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(3429), 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(2123), 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, - [27448] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, - anon_sym_LBRACE, - ACTIONS(1225), 1, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(1231), 1, anon_sym_lambda, - ACTIONS(1233), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + anon_sym_yield, anon_sym_None, - ACTIONS(1239), 1, - sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1243), 1, - anon_sym_new, - ACTIONS(1245), 1, - anon_sym_sizeof, - ACTIONS(1247), 1, - sym_string_start, - ACTIONS(2735), 1, - anon_sym_LT, - ACTIONS(3009), 1, - anon_sym_STAR, - STATE(2067), 1, - sym_primary_expression, - STATE(2140), 1, - sym_string, - STATE(2432), 1, - sym_list_splat_pattern, - STATE(4449), 1, - sym_expression, - STATE(5469), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1237), 3, sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, sym_true, sym_false, - ACTIONS(1227), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1217), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3081), 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(2549), 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, - [27563] = 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, + [25225] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3409), 14, + ACTIONS(1615), 15, sym_string_start, ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -144105,7 +142780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3411), 46, + ACTIONS(1613), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -144152,13 +142827,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [27632] = 3, + [25295] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3413), 14, + ACTIONS(1819), 15, sym_string_start, ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -144171,7 +142847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3415), 46, + ACTIONS(1817), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -144218,280 +142894,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [27701] = 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(577), 1, - sym_identifier, - ACTIONS(614), 1, - anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3071), 1, - anon_sym_STAR, - STATE(2024), 1, - sym_primary_expression, - STATE(2034), 1, - sym_string, - STATE(2088), 1, - sym_list_splat_pattern, - STATE(3468), 1, - sym_expression, - STATE(5564), 1, - sym__named_expression_lhs, + [25365] = 3, 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(592), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3429), 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(2123), 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, - [27816] = 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, + ACTIONS(1779), 15, sym_string_start, - ACTIONS(577), 1, - sym_identifier, - ACTIONS(614), 1, - anon_sym_await, - ACTIONS(1281), 1, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3071), 1, anon_sym_STAR, - STATE(2024), 1, - sym_primary_expression, - STATE(2034), 1, - sym_string, - STATE(2088), 1, - sym_list_splat_pattern, - STATE(4179), 1, - sym_expression, - STATE(5564), 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_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(1777), 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(3429), 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(2123), 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, - [27931] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, - anon_sym_LBRACE, - ACTIONS(1225), 1, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(1231), 1, anon_sym_lambda, - ACTIONS(1233), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + anon_sym_yield, anon_sym_None, - ACTIONS(1239), 1, - sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1243), 1, - anon_sym_new, - ACTIONS(1245), 1, - anon_sym_sizeof, - ACTIONS(1247), 1, - sym_string_start, - ACTIONS(2735), 1, - anon_sym_LT, - ACTIONS(3009), 1, - anon_sym_STAR, - STATE(2067), 1, - sym_primary_expression, - STATE(2140), 1, - sym_string, - STATE(2432), 1, - sym_list_splat_pattern, - STATE(4352), 1, - sym_expression, - STATE(5469), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1237), 3, sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, sym_true, sym_false, - ACTIONS(1227), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1217), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3081), 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(2549), 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, - [28046] = 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, + [25435] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2691), 14, + ACTIONS(1659), 15, sym_string_start, ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -144504,7 +142981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2693), 46, + ACTIONS(1657), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -144551,13 +143028,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [28115] = 3, + [25505] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2363), 14, + ACTIONS(1663), 15, sym_string_start, ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -144570,7 +143048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2361), 46, + ACTIONS(1661), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -144617,13 +143095,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [28184] = 3, + [25575] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3419), 14, - sym__dedent, + ACTIONS(2155), 15, sym_string_start, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -144636,7 +143115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3417), 46, + ACTIONS(2153), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -144683,13 +143162,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [28253] = 3, + [25645] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3423), 14, - sym__dedent, + ACTIONS(1899), 15, sym_string_start, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -144702,7 +143182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3421), 46, + ACTIONS(1897), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -144749,13 +143229,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [28322] = 3, + [25715] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3427), 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, @@ -144768,7 +143249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3425), 46, + ACTIONS(1781), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -144815,13 +143296,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [28391] = 3, + [25785] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3429), 14, + ACTIONS(1787), 15, sym_string_start, ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -144834,7 +143316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3431), 46, + ACTIONS(1785), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -144881,13 +143363,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [28460] = 3, + [25855] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3435), 14, - sym__dedent, + ACTIONS(1767), 15, sym_string_start, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -144900,7 +143383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3433), 46, + ACTIONS(1765), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -144947,13 +143430,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [28529] = 3, + [25925] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3437), 14, + ACTIONS(1791), 15, sym_string_start, ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -144966,7 +143450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3439), 46, + ACTIONS(1789), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -145013,13 +143497,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [28598] = 3, + [25995] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3441), 14, + ACTIONS(1795), 15, sym_string_start, ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -145032,7 +143517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3443), 46, + ACTIONS(1793), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -145079,13 +143564,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [28667] = 3, + [26065] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3445), 14, + ACTIONS(3371), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -145098,7 +143583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3447), 46, + ACTIONS(3373), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -145116,6 +143601,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, @@ -145145,13 +143631,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [28736] = 3, + [26135] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3449), 14, + ACTIONS(2111), 15, sym_string_start, ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -145164,7 +143651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3451), 46, + ACTIONS(2109), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -145211,13 +143698,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [28805] = 3, + [26205] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2367), 14, + ACTIONS(1867), 15, sym_string_start, ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -145230,7 +143718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2365), 46, + ACTIONS(1865), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -145277,11 +143765,367 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [28874] = 3, + [26275] = 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(83), 1, + sym_float, + ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, + sym_string_start, + ACTIONS(1001), 1, + sym_identifier, + ACTIONS(1041), 1, + anon_sym_await, + ACTIONS(1281), 1, + anon_sym_LPAREN, + ACTIONS(1287), 1, + anon_sym_LBRACK, + ACTIONS(2763), 1, + anon_sym_not, + ACTIONS(2765), 1, + anon_sym_lambda, + ACTIONS(2767), 1, + anon_sym_new, + ACTIONS(3073), 1, + anon_sym_STAR, + STATE(2032), 1, + sym_primary_expression, + STATE(2043), 1, + sym_string, + STATE(2088), 1, + sym_list_splat_pattern, + STATE(3784), 1, + sym_expression, + STATE(5740), 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(1016), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3442), 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(2111), 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, + [26390] = 26, + ACTIONS(1211), 1, + sym_identifier, + ACTIONS(1213), 1, + anon_sym_LPAREN, + ACTIONS(1219), 1, + anon_sym_LBRACK, + ACTIONS(1223), 1, + anon_sym_LBRACE, + ACTIONS(1225), 1, + anon_sym_not, + ACTIONS(1231), 1, + anon_sym_lambda, + ACTIONS(1233), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1235), 1, + anon_sym_None, + ACTIONS(1239), 1, + sym_float, + ACTIONS(1241), 1, + anon_sym_await, + ACTIONS(1243), 1, + anon_sym_new, + ACTIONS(1245), 1, + anon_sym_sizeof, + ACTIONS(1247), 1, + sym_string_start, + ACTIONS(2705), 1, + anon_sym_LT, + ACTIONS(2955), 1, + anon_sym_STAR, + STATE(2072), 1, + sym_primary_expression, + STATE(2161), 1, + sym_string, + STATE(2536), 1, + sym_list_splat_pattern, + STATE(4475), 1, + sym_expression, + STATE(5579), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1237), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1227), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1217), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3088), 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(2401), 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, + [26505] = 26, + ACTIONS(2489), 1, + anon_sym_LPAREN, + ACTIONS(2495), 1, + anon_sym_LBRACK, + ACTIONS(2499), 1, + anon_sym_LBRACE, + ACTIONS(2503), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2505), 1, + anon_sym_None, + ACTIONS(2507), 1, + sym_float, + ACTIONS(2511), 1, + anon_sym_sizeof, + ACTIONS(2513), 1, + sym_string_start, + ACTIONS(2563), 1, + anon_sym_LT, + ACTIONS(2815), 1, + sym_identifier, + ACTIONS(2823), 1, + anon_sym_await, + ACTIONS(2943), 1, + anon_sym_STAR, + ACTIONS(3385), 1, + anon_sym_not, + ACTIONS(3387), 1, + anon_sym_lambda, + ACTIONS(3389), 1, + anon_sym_new, + STATE(2071), 1, + sym_primary_expression, + STATE(2177), 1, + sym_string, + STATE(2407), 1, + sym_expression, + STATE(2415), 1, + sym_list_splat_pattern, + STATE(5414), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2487), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2497), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2819), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2493), 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(2470), 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, + [26620] = 26, + ACTIONS(2489), 1, + anon_sym_LPAREN, + ACTIONS(2495), 1, + anon_sym_LBRACK, + ACTIONS(2499), 1, + anon_sym_LBRACE, + ACTIONS(2503), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2505), 1, + anon_sym_None, + ACTIONS(2507), 1, + sym_float, + ACTIONS(2511), 1, + anon_sym_sizeof, + ACTIONS(2513), 1, + sym_string_start, + ACTIONS(2561), 1, + anon_sym_not, + ACTIONS(2563), 1, + anon_sym_LT, + ACTIONS(2565), 1, + anon_sym_lambda, + ACTIONS(2571), 1, + anon_sym_new, + ACTIONS(2815), 1, + sym_identifier, + ACTIONS(2823), 1, + anon_sym_await, + ACTIONS(2943), 1, + anon_sym_STAR, + STATE(2070), 1, + sym_primary_expression, + STATE(2177), 1, + sym_string, + STATE(2415), 1, + sym_list_splat_pattern, + STATE(3887), 1, + sym_expression, + STATE(5681), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2487), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2497), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2819), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2493), 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(2470), 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, + [26735] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3453), 14, + ACTIONS(2689), 14, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -145296,7 +144140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3455), 46, + ACTIONS(2691), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -145343,79 +144187,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [28943] = 3, + [26804] = 26, + ACTIONS(2489), 1, + anon_sym_LPAREN, + ACTIONS(2495), 1, + anon_sym_LBRACK, + ACTIONS(2499), 1, + anon_sym_LBRACE, + ACTIONS(2503), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2505), 1, + anon_sym_None, + ACTIONS(2507), 1, + sym_float, + ACTIONS(2511), 1, + anon_sym_sizeof, + ACTIONS(2513), 1, + sym_string_start, + ACTIONS(2563), 1, + anon_sym_LT, + ACTIONS(2815), 1, + sym_identifier, + ACTIONS(2823), 1, + anon_sym_await, + ACTIONS(2943), 1, + anon_sym_STAR, + ACTIONS(3385), 1, + anon_sym_not, + ACTIONS(3387), 1, + anon_sym_lambda, + ACTIONS(3389), 1, + anon_sym_new, + STATE(2071), 1, + sym_primary_expression, + STATE(2177), 1, + sym_string, + STATE(2415), 1, + sym_list_splat_pattern, + STATE(2484), 1, + sym_expression, + STATE(5414), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3457), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2487), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2497), 4, 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(3459), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2819), 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, - [29012] = 3, + STATE(2493), 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(2470), 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, + [26919] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3461), 14, + ACTIONS(3393), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -145428,7 +144295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3463), 46, + ACTIONS(3391), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -145475,330 +144342,422 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [29081] = 3, + [26988] = 26, + ACTIONS(2489), 1, + anon_sym_LPAREN, + ACTIONS(2495), 1, + anon_sym_LBRACK, + ACTIONS(2499), 1, + anon_sym_LBRACE, + ACTIONS(2503), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2505), 1, + anon_sym_None, + ACTIONS(2507), 1, + sym_float, + ACTIONS(2511), 1, + anon_sym_sizeof, + ACTIONS(2513), 1, + sym_string_start, + ACTIONS(2561), 1, + anon_sym_not, + ACTIONS(2563), 1, + anon_sym_LT, + ACTIONS(2565), 1, + anon_sym_lambda, + ACTIONS(2571), 1, + anon_sym_new, + ACTIONS(2815), 1, + sym_identifier, + ACTIONS(2823), 1, + anon_sym_await, + ACTIONS(2943), 1, + anon_sym_STAR, + STATE(2070), 1, + sym_primary_expression, + STATE(2177), 1, + sym_string, + STATE(2415), 1, + sym_list_splat_pattern, + STATE(3957), 1, + sym_expression, + STATE(5681), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3465), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2487), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2497), 4, 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(3467), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2819), 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_api, + STATE(2493), 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(2470), 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, + [27103] = 26, + ACTIONS(2413), 1, + anon_sym_LPAREN, + ACTIONS(2419), 1, + anon_sym_LBRACK, + ACTIONS(2423), 1, + anon_sym_LBRACE, + ACTIONS(2427), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2429), 1, anon_sym_None, - sym_integer, + ACTIONS(2431), 1, + sym_float, + ACTIONS(2435), 1, + anon_sym_sizeof, + ACTIONS(2437), 1, + sym_string_start, + ACTIONS(2521), 1, sym_identifier, + ACTIONS(2535), 1, + anon_sym_not, + ACTIONS(2537), 1, + anon_sym_LT, + ACTIONS(2539), 1, + anon_sym_lambda, + ACTIONS(2543), 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(2545), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [29150] = 3, + ACTIONS(3011), 1, + anon_sym_STAR, + STATE(2061), 1, + sym_primary_expression, + STATE(2099), 1, + sym_string, + STATE(2256), 1, + sym_list_splat_pattern, + STATE(3871), 1, + sym_expression, + STATE(5687), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3469), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2411), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2421), 4, 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(3471), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2529), 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_api, + STATE(2326), 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(2298), 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, + [27218] = 26, + ACTIONS(2413), 1, + anon_sym_LPAREN, + ACTIONS(2419), 1, + anon_sym_LBRACK, + ACTIONS(2423), 1, + anon_sym_LBRACE, + ACTIONS(2427), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2429), 1, anon_sym_None, - sym_integer, + ACTIONS(2431), 1, + sym_float, + ACTIONS(2435), 1, + anon_sym_sizeof, + ACTIONS(2437), 1, + sym_string_start, + ACTIONS(2521), 1, sym_identifier, + ACTIONS(2535), 1, + anon_sym_not, + ACTIONS(2537), 1, + anon_sym_LT, + ACTIONS(2539), 1, + anon_sym_lambda, + ACTIONS(2543), 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(2545), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [29219] = 3, + ACTIONS(3011), 1, + anon_sym_STAR, + STATE(2061), 1, + sym_primary_expression, + STATE(2099), 1, + sym_string, + STATE(2256), 1, + sym_list_splat_pattern, + STATE(3791), 1, + sym_expression, + STATE(5687), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3475), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2411), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2421), 4, 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(3473), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2529), 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_api, + STATE(2326), 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(2298), 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, + [27333] = 26, + ACTIONS(2413), 1, + anon_sym_LPAREN, + ACTIONS(2419), 1, + anon_sym_LBRACK, + ACTIONS(2423), 1, + anon_sym_LBRACE, + ACTIONS(2427), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2429), 1, anon_sym_None, - sym_integer, + ACTIONS(2431), 1, + sym_float, + ACTIONS(2435), 1, + anon_sym_sizeof, + ACTIONS(2437), 1, + sym_string_start, + ACTIONS(2521), 1, sym_identifier, + ACTIONS(2535), 1, + anon_sym_not, + ACTIONS(2537), 1, + anon_sym_LT, + ACTIONS(2539), 1, + anon_sym_lambda, + ACTIONS(2543), 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(2545), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [29288] = 3, + ACTIONS(3011), 1, + anon_sym_STAR, + STATE(2061), 1, + sym_primary_expression, + STATE(2099), 1, + sym_string, + STATE(2256), 1, + sym_list_splat_pattern, + STATE(3792), 1, + sym_expression, + STATE(5687), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3477), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2411), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2421), 4, 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(3479), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2529), 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, - [29357] = 26, - ACTIONS(67), 1, + STATE(2326), 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(2298), 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, + [27448] = 26, + ACTIONS(2413), 1, + anon_sym_LPAREN, + ACTIONS(2419), 1, + anon_sym_LBRACK, + ACTIONS(2423), 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, + ACTIONS(2427), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(2429), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(2431), 1, sym_float, - ACTIONS(99), 1, - anon_sym_new, - ACTIONS(105), 1, + ACTIONS(2435), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(2437), 1, sym_string_start, - ACTIONS(577), 1, + ACTIONS(2521), 1, sym_identifier, - ACTIONS(614), 1, + ACTIONS(2535), 1, + anon_sym_not, + ACTIONS(2537), 1, + anon_sym_LT, + ACTIONS(2539), 1, + anon_sym_lambda, + ACTIONS(2543), 1, anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3071), 1, + ACTIONS(2545), 1, + anon_sym_new, + ACTIONS(3011), 1, anon_sym_STAR, - STATE(2024), 1, + STATE(2061), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2099), 1, sym_string, - STATE(2088), 1, + STATE(2256), 1, sym_list_splat_pattern, - STATE(3478), 1, + STATE(2341), 1, sym_expression, - STATE(5564), 1, + STATE(5687), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(2411), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(2421), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(2529), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(2326), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -145807,7 +144766,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2298), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -145828,66 +144787,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [29472] = 26, - ACTIONS(2451), 1, + [27563] = 26, + ACTIONS(2413), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(2419), 1, anon_sym_LBRACK, - ACTIONS(2461), 1, + ACTIONS(2423), 1, anon_sym_LBRACE, - ACTIONS(2465), 1, + ACTIONS(2427), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2467), 1, + ACTIONS(2429), 1, anon_sym_None, - ACTIONS(2469), 1, + ACTIONS(2431), 1, sym_float, - ACTIONS(2473), 1, + ACTIONS(2435), 1, anon_sym_sizeof, - ACTIONS(2475), 1, + ACTIONS(2437), 1, sym_string_start, - ACTIONS(2637), 1, + ACTIONS(2521), 1, + sym_identifier, + ACTIONS(2535), 1, anon_sym_not, - ACTIONS(2639), 1, + ACTIONS(2537), 1, anon_sym_LT, - ACTIONS(2641), 1, + ACTIONS(2539), 1, anon_sym_lambda, - ACTIONS(2643), 1, + ACTIONS(2543), 1, anon_sym_await, - ACTIONS(2645), 1, + ACTIONS(2545), 1, anon_sym_new, - ACTIONS(2963), 1, - sym_identifier, - ACTIONS(3105), 1, + ACTIONS(3011), 1, anon_sym_STAR, - STATE(2077), 1, + STATE(2061), 1, sym_primary_expression, - STATE(2218), 1, + STATE(2099), 1, sym_string, - STATE(2591), 1, + STATE(2256), 1, sym_list_splat_pattern, - STATE(4156), 1, + STATE(3793), 1, sym_expression, - STATE(5609), 1, + STATE(5687), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2449), 3, + ACTIONS(2411), 3, sym_integer, sym_true, sym_false, - ACTIONS(2459), 4, + ACTIONS(2421), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2631), 5, + ACTIONS(2529), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2604), 8, + STATE(2326), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -145896,7 +144855,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2631), 20, + STATE(2298), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -145917,11 +144876,11 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [29587] = 3, + [27678] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2375), 14, + ACTIONS(2335), 14, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -145936,7 +144895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2373), 46, + ACTIONS(2331), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -145983,132 +144942,333 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [29656] = 3, + [27747] = 26, + ACTIONS(2413), 1, + anon_sym_LPAREN, + ACTIONS(2419), 1, + anon_sym_LBRACK, + ACTIONS(2423), 1, + anon_sym_LBRACE, + ACTIONS(2427), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2429), 1, + anon_sym_None, + ACTIONS(2431), 1, + sym_float, + ACTIONS(2435), 1, + anon_sym_sizeof, + ACTIONS(2437), 1, + sym_string_start, + ACTIONS(2521), 1, + sym_identifier, + ACTIONS(2537), 1, + anon_sym_LT, + ACTIONS(2543), 1, + anon_sym_await, + ACTIONS(3011), 1, + anon_sym_STAR, + ACTIONS(3395), 1, + anon_sym_not, + ACTIONS(3397), 1, + anon_sym_lambda, + ACTIONS(3399), 1, + anon_sym_new, + STATE(2051), 1, + sym_primary_expression, + STATE(2099), 1, + sym_string, + STATE(2256), 1, + sym_list_splat_pattern, + STATE(2365), 1, + sym_expression, + STATE(5449), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2383), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2411), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2421), 4, 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(2381), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2529), 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_api, + STATE(2326), 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(2298), 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, + [27862] = 26, + ACTIONS(2413), 1, + anon_sym_LPAREN, + ACTIONS(2419), 1, + anon_sym_LBRACK, + ACTIONS(2423), 1, + anon_sym_LBRACE, + ACTIONS(2427), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2429), 1, anon_sym_None, - sym_integer, + ACTIONS(2431), 1, + sym_float, + ACTIONS(2435), 1, + anon_sym_sizeof, + ACTIONS(2437), 1, + sym_string_start, + ACTIONS(2521), 1, sym_identifier, + ACTIONS(2535), 1, + anon_sym_not, + ACTIONS(2537), 1, + anon_sym_LT, + ACTIONS(2539), 1, + anon_sym_lambda, + ACTIONS(2543), 1, anon_sym_await, - anon_sym_api, + ACTIONS(2545), 1, + anon_sym_new, + ACTIONS(3011), 1, + anon_sym_STAR, + STATE(2061), 1, + sym_primary_expression, + STATE(2099), 1, + sym_string, + STATE(2256), 1, + sym_list_splat_pattern, + STATE(3805), 1, + sym_expression, + STATE(5687), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2411), 3, + sym_integer, 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, - [29725] = 26, - ACTIONS(1382), 1, + ACTIONS(2421), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2529), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2326), 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(2298), 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, + [27977] = 26, + ACTIONS(2413), 1, + anon_sym_LPAREN, + ACTIONS(2419), 1, anon_sym_LBRACK, - ACTIONS(1386), 1, + ACTIONS(2423), 1, anon_sym_LBRACE, - ACTIONS(1388), 1, - anon_sym_not, - ACTIONS(1390), 1, + ACTIONS(2427), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2429), 1, + anon_sym_None, + ACTIONS(2431), 1, + sym_float, + ACTIONS(2435), 1, + anon_sym_sizeof, + ACTIONS(2437), 1, + sym_string_start, + ACTIONS(2521), 1, + sym_identifier, + ACTIONS(2537), 1, anon_sym_LT, - ACTIONS(1392), 1, + ACTIONS(2543), 1, + anon_sym_await, + ACTIONS(3011), 1, + anon_sym_STAR, + ACTIONS(3395), 1, + anon_sym_not, + ACTIONS(3397), 1, anon_sym_lambda, - ACTIONS(1394), 1, + ACTIONS(3399), 1, + anon_sym_new, + STATE(2051), 1, + sym_primary_expression, + STATE(2099), 1, + sym_string, + STATE(2256), 1, + sym_list_splat_pattern, + STATE(2378), 1, + sym_expression, + STATE(5449), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2411), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2421), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2529), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2326), 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(2298), 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, + [28092] = 26, + ACTIONS(2413), 1, + anon_sym_LPAREN, + ACTIONS(2419), 1, + anon_sym_LBRACK, + ACTIONS(2423), 1, + anon_sym_LBRACE, + ACTIONS(2427), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, + ACTIONS(2429), 1, anon_sym_None, - ACTIONS(1400), 1, + ACTIONS(2431), 1, sym_float, - ACTIONS(1404), 1, - anon_sym_new, - ACTIONS(1406), 1, + ACTIONS(2435), 1, anon_sym_sizeof, - ACTIONS(1408), 1, + ACTIONS(2437), 1, sym_string_start, - ACTIONS(2439), 1, - anon_sym_LPAREN, - ACTIONS(2955), 1, + ACTIONS(2521), 1, sym_identifier, - ACTIONS(2961), 1, + ACTIONS(2535), 1, + anon_sym_not, + ACTIONS(2537), 1, + anon_sym_LT, + ACTIONS(2539), 1, + anon_sym_lambda, + ACTIONS(2543), 1, anon_sym_await, - ACTIONS(3481), 1, + ACTIONS(2545), 1, + anon_sym_new, + ACTIONS(3011), 1, anon_sym_STAR, - STATE(2151), 1, + STATE(2061), 1, sym_primary_expression, - STATE(2302), 1, + STATE(2099), 1, sym_string, - STATE(2671), 1, + STATE(2256), 1, sym_list_splat_pattern, - STATE(4243), 1, + STATE(3815), 1, sym_expression, - STATE(5468), 1, + STATE(5687), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1398), 3, + ACTIONS(2411), 3, sym_integer, sym_true, sym_false, - ACTIONS(1384), 4, + ACTIONS(2421), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2959), 5, + ACTIONS(2529), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2716), 8, + STATE(2326), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -146117,7 +145277,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2715), 20, + STATE(2298), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -146138,7 +145298,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [29840] = 26, + [28207] = 26, ACTIONS(1211), 1, sym_identifier, ACTIONS(1213), 1, @@ -146165,19 +145325,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2735), 1, + ACTIONS(2705), 1, anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(2955), 1, anon_sym_STAR, - STATE(2067), 1, + STATE(2072), 1, sym_primary_expression, - STATE(2140), 1, + STATE(2161), 1, sym_string, - STATE(2432), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(3795), 1, + STATE(4212), 1, sym_expression, - STATE(5469), 1, + STATE(5579), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -146197,7 +145357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3081), 8, + STATE(3088), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -146206,7 +145366,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -146227,66 +145387,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [29955] = 26, - ACTIONS(1382), 1, + [28322] = 26, + ACTIONS(1943), 1, + anon_sym_LPAREN, + ACTIONS(1949), 1, anon_sym_LBRACK, - ACTIONS(1386), 1, + ACTIONS(1953), 1, anon_sym_LBRACE, - ACTIONS(1388), 1, - anon_sym_not, - ACTIONS(1390), 1, - anon_sym_LT, - ACTIONS(1392), 1, - anon_sym_lambda, - ACTIONS(1394), 1, + ACTIONS(1957), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, + ACTIONS(1959), 1, anon_sym_None, - ACTIONS(1400), 1, + ACTIONS(1961), 1, sym_float, - ACTIONS(1404), 1, - anon_sym_new, - ACTIONS(1406), 1, + ACTIONS(1965), 1, anon_sym_sizeof, - ACTIONS(1408), 1, + ACTIONS(1967), 1, sym_string_start, - ACTIONS(2439), 1, - anon_sym_LPAREN, - ACTIONS(2955), 1, + ACTIONS(2661), 1, + anon_sym_STAR, + ACTIONS(2667), 1, + anon_sym_not, + ACTIONS(2669), 1, + anon_sym_LT, + ACTIONS(2671), 1, + anon_sym_lambda, + ACTIONS(2677), 1, + anon_sym_new, + ACTIONS(2923), 1, sym_identifier, - ACTIONS(2961), 1, + ACTIONS(2931), 1, anon_sym_await, - ACTIONS(3483), 1, - anon_sym_STAR, - STATE(2151), 1, + STATE(2057), 1, sym_primary_expression, - STATE(2302), 1, + STATE(2089), 1, sym_string, - STATE(2671), 1, + STATE(2284), 1, sym_list_splat_pattern, - STATE(4063), 1, + STATE(3835), 1, sym_expression, - STATE(5468), 1, + STATE(5410), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1398), 3, + ACTIONS(1941), 3, sym_integer, sym_true, sym_false, - ACTIONS(1384), 4, + ACTIONS(1951), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2959), 5, + ACTIONS(2927), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2716), 8, + STATE(3825), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -146295,7 +145455,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2715), 20, + STATE(2257), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -146316,66 +145476,132 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [30070] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, + [28437] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3401), 14, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(1219), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(1223), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(1225), 1, + 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, - ACTIONS(1231), 1, anon_sym_lambda, - ACTIONS(1233), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + anon_sym_yield, anon_sym_None, - ACTIONS(1239), 1, - sym_float, - ACTIONS(1241), 1, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(1243), 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(1245), 1, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, anon_sym_sizeof, - ACTIONS(1247), 1, + [28506] = 26, + ACTIONS(1943), 1, + anon_sym_LPAREN, + ACTIONS(1949), 1, + anon_sym_LBRACK, + ACTIONS(1953), 1, + anon_sym_LBRACE, + ACTIONS(1957), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1959), 1, + anon_sym_None, + ACTIONS(1961), 1, + sym_float, + ACTIONS(1965), 1, + anon_sym_sizeof, + ACTIONS(1967), 1, sym_string_start, - ACTIONS(2735), 1, - anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(2661), 1, anon_sym_STAR, - STATE(2067), 1, + ACTIONS(2667), 1, + anon_sym_not, + ACTIONS(2669), 1, + anon_sym_LT, + ACTIONS(2671), 1, + anon_sym_lambda, + ACTIONS(2677), 1, + anon_sym_new, + ACTIONS(2923), 1, + sym_identifier, + ACTIONS(2931), 1, + anon_sym_await, + STATE(2057), 1, sym_primary_expression, - STATE(2140), 1, + STATE(2089), 1, sym_string, - STATE(2432), 1, + STATE(2284), 1, sym_list_splat_pattern, - STATE(3797), 1, + STATE(3838), 1, sym_expression, - STATE(5469), 1, + STATE(5410), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(1941), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(1951), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(2927), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3081), 8, + STATE(3825), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -146384,7 +145610,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2257), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -146405,66 +145631,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [30185] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, + [28621] = 26, + ACTIONS(1943), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(1949), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1953), 1, anon_sym_LBRACE, - ACTIONS(1225), 1, - anon_sym_not, - ACTIONS(1231), 1, - anon_sym_lambda, - ACTIONS(1233), 1, + ACTIONS(1957), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1959), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1961), 1, sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1243), 1, - anon_sym_new, - ACTIONS(1245), 1, + ACTIONS(1965), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1967), 1, sym_string_start, - ACTIONS(2735), 1, - anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(2661), 1, anon_sym_STAR, - STATE(2067), 1, + ACTIONS(2667), 1, + anon_sym_not, + ACTIONS(2669), 1, + anon_sym_LT, + ACTIONS(2671), 1, + anon_sym_lambda, + ACTIONS(2677), 1, + anon_sym_new, + ACTIONS(2923), 1, + sym_identifier, + ACTIONS(2931), 1, + anon_sym_await, + STATE(2057), 1, sym_primary_expression, - STATE(2140), 1, + STATE(2089), 1, sym_string, - STATE(2432), 1, + STATE(2284), 1, sym_list_splat_pattern, - STATE(3801), 1, + STATE(3839), 1, sym_expression, - STATE(5469), 1, + STATE(5410), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(1941), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(1951), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(2927), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3081), 8, + STATE(3825), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -146473,7 +145699,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2257), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -146494,66 +145720,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [30300] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, + [28736] = 26, + ACTIONS(1943), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(1949), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1953), 1, anon_sym_LBRACE, - ACTIONS(1225), 1, - anon_sym_not, - ACTIONS(1231), 1, - anon_sym_lambda, - ACTIONS(1233), 1, + ACTIONS(1957), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1959), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1961), 1, sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1243), 1, - anon_sym_new, - ACTIONS(1245), 1, + ACTIONS(1965), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1967), 1, sym_string_start, - ACTIONS(2735), 1, - anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(2661), 1, anon_sym_STAR, - STATE(2067), 1, + ACTIONS(2667), 1, + anon_sym_not, + ACTIONS(2669), 1, + anon_sym_LT, + ACTIONS(2671), 1, + anon_sym_lambda, + ACTIONS(2677), 1, + anon_sym_new, + ACTIONS(2923), 1, + sym_identifier, + ACTIONS(2931), 1, + anon_sym_await, + STATE(2057), 1, sym_primary_expression, - STATE(2140), 1, + STATE(2089), 1, sym_string, - STATE(2432), 1, + STATE(2284), 1, sym_list_splat_pattern, - STATE(3076), 1, + STATE(3840), 1, sym_expression, - STATE(5469), 1, + STATE(5410), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(1941), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(1951), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(2927), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3081), 8, + STATE(3825), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -146562,7 +145788,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2257), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -146583,66 +145809,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [30415] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, + [28851] = 26, + ACTIONS(1943), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(1949), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1953), 1, anon_sym_LBRACE, - ACTIONS(1225), 1, - anon_sym_not, - ACTIONS(1231), 1, - anon_sym_lambda, - ACTIONS(1233), 1, + ACTIONS(1957), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1959), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1961), 1, sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1243), 1, - anon_sym_new, - ACTIONS(1245), 1, + ACTIONS(1965), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1967), 1, sym_string_start, - ACTIONS(2735), 1, - anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(2661), 1, anon_sym_STAR, - STATE(2067), 1, + ACTIONS(2667), 1, + anon_sym_not, + ACTIONS(2669), 1, + anon_sym_LT, + ACTIONS(2671), 1, + anon_sym_lambda, + ACTIONS(2677), 1, + anon_sym_new, + ACTIONS(2923), 1, + sym_identifier, + ACTIONS(2931), 1, + anon_sym_await, + STATE(2057), 1, sym_primary_expression, - STATE(2140), 1, + STATE(2089), 1, sym_string, - STATE(2432), 1, + STATE(2284), 1, sym_list_splat_pattern, - STATE(3802), 1, + STATE(3841), 1, sym_expression, - STATE(5469), 1, + STATE(5410), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(1941), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(1951), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(2927), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3081), 8, + STATE(3825), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -146651,7 +145877,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2257), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -146672,66 +145898,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [30530] = 26, - ACTIONS(1907), 1, + [28966] = 26, + ACTIONS(1943), 1, anon_sym_LPAREN, - ACTIONS(1913), 1, + ACTIONS(1949), 1, anon_sym_LBRACK, - ACTIONS(1917), 1, + ACTIONS(1953), 1, anon_sym_LBRACE, - ACTIONS(1921), 1, + ACTIONS(1957), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1923), 1, + ACTIONS(1959), 1, anon_sym_None, - ACTIONS(1925), 1, + ACTIONS(1961), 1, sym_float, - ACTIONS(1929), 1, + ACTIONS(1965), 1, anon_sym_sizeof, - ACTIONS(1931), 1, + ACTIONS(1967), 1, sym_string_start, - ACTIONS(2653), 1, - anon_sym_STAR, - ACTIONS(2659), 1, - anon_sym_not, ACTIONS(2661), 1, - anon_sym_LT, - ACTIONS(2663), 1, - anon_sym_lambda, + anon_sym_STAR, ACTIONS(2669), 1, - anon_sym_new, - ACTIONS(2793), 1, + anon_sym_LT, + ACTIONS(2923), 1, sym_identifier, - ACTIONS(2801), 1, + ACTIONS(2931), 1, anon_sym_await, - STATE(2046), 1, + ACTIONS(3405), 1, + anon_sym_not, + ACTIONS(3407), 1, + anon_sym_lambda, + ACTIONS(3409), 1, + anon_sym_new, + STATE(2052), 1, sym_primary_expression, - STATE(2073), 1, + STATE(2089), 1, sym_string, - STATE(2357), 1, - sym_list_splat_pattern, - STATE(3800), 1, + STATE(2248), 1, sym_expression, - STATE(5557), 1, + STATE(2284), 1, + sym_list_splat_pattern, + STATE(5464), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1905), 3, + ACTIONS(1941), 3, sym_integer, sym_true, sym_false, - ACTIONS(1915), 4, + ACTIONS(1951), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2797), 5, + ACTIONS(2927), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3846), 8, + STATE(2334), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -146740,7 +145966,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2255), 20, + STATE(2257), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -146761,66 +145987,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [30645] = 26, - ACTIONS(67), 1, + [29081] = 26, + ACTIONS(2461), 1, + anon_sym_LPAREN, + ACTIONS(2467), 1, + anon_sym_LBRACK, + ACTIONS(2471), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(77), 1, + ACTIONS(2475), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(2477), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(2479), 1, sym_float, - ACTIONS(105), 1, + ACTIONS(2483), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(2485), 1, sym_string_start, - ACTIONS(577), 1, - sym_identifier, - ACTIONS(614), 1, - anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3071), 1, - anon_sym_STAR, - ACTIONS(3485), 1, + ACTIONS(2647), 1, anon_sym_not, - ACTIONS(3487), 1, + ACTIONS(2649), 1, + anon_sym_LT, + ACTIONS(2651), 1, anon_sym_lambda, - ACTIONS(3489), 1, + ACTIONS(2653), 1, + anon_sym_await, + ACTIONS(2655), 1, anon_sym_new, - STATE(2032), 1, + ACTIONS(2935), 1, + sym_identifier, + ACTIONS(3103), 1, + anon_sym_STAR, + STATE(2107), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2200), 1, sym_string, - STATE(2088), 1, + STATE(2589), 1, sym_list_splat_pattern, - STATE(2090), 1, + STATE(4191), 1, sym_expression, - STATE(5496), 1, + STATE(5572), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(2459), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(2469), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(2641), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2074), 8, + STATE(2631), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -146829,7 +146055,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2630), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -146850,66 +146076,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [30760] = 26, - ACTIONS(67), 1, + [29196] = 26, + ACTIONS(1943), 1, + anon_sym_LPAREN, + ACTIONS(1949), 1, + anon_sym_LBRACK, + ACTIONS(1953), 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, + ACTIONS(1957), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1959), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1961), 1, sym_float, - ACTIONS(99), 1, - anon_sym_new, - ACTIONS(105), 1, + ACTIONS(1965), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1967), 1, sym_string_start, - ACTIONS(577), 1, + ACTIONS(2661), 1, + anon_sym_STAR, + ACTIONS(2667), 1, + anon_sym_not, + ACTIONS(2669), 1, + anon_sym_LT, + ACTIONS(2671), 1, + anon_sym_lambda, + ACTIONS(2677), 1, + anon_sym_new, + ACTIONS(2923), 1, sym_identifier, - ACTIONS(614), 1, + ACTIONS(2931), 1, anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3071), 1, - anon_sym_STAR, - STATE(2024), 1, + STATE(2057), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2089), 1, sym_string, - STATE(2088), 1, + STATE(2284), 1, sym_list_splat_pattern, - STATE(3504), 1, + STATE(3854), 1, sym_expression, - STATE(5564), 1, + STATE(5410), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1941), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1951), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(2927), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(3825), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -146918,7 +146144,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2257), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -146939,11 +146165,11 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [30875] = 3, + [29311] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3491), 14, + ACTIONS(2445), 14, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -146958,7 +146184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3493), 46, + ACTIONS(2443), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -147005,66 +146231,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [30944] = 26, - ACTIONS(1211), 1, + [29380] = 26, + ACTIONS(1943), 1, + anon_sym_LPAREN, + ACTIONS(1949), 1, + anon_sym_LBRACK, + ACTIONS(1953), 1, + anon_sym_LBRACE, + ACTIONS(1957), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1959), 1, + anon_sym_None, + ACTIONS(1961), 1, + sym_float, + ACTIONS(1965), 1, + anon_sym_sizeof, + ACTIONS(1967), 1, + sym_string_start, + ACTIONS(2661), 1, + anon_sym_STAR, + ACTIONS(2669), 1, + anon_sym_LT, + ACTIONS(2923), 1, sym_identifier, - ACTIONS(1213), 1, + ACTIONS(2931), 1, + anon_sym_await, + ACTIONS(3405), 1, + anon_sym_not, + ACTIONS(3407), 1, + anon_sym_lambda, + ACTIONS(3409), 1, + anon_sym_new, + STATE(2052), 1, + sym_primary_expression, + STATE(2089), 1, + sym_string, + STATE(2262), 1, + sym_expression, + STATE(2284), 1, + sym_list_splat_pattern, + STATE(5464), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1941), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1951), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2927), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2334), 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(2257), 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, + [29495] = 26, + ACTIONS(1943), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(1949), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1953), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1957), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1959), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1961), 1, sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1245), 1, + ACTIONS(1965), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1967), 1, sym_string_start, - ACTIONS(2735), 1, - anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(2661), 1, anon_sym_STAR, - ACTIONS(3495), 1, + ACTIONS(2667), 1, anon_sym_not, - ACTIONS(3497), 1, + ACTIONS(2669), 1, + anon_sym_LT, + ACTIONS(2671), 1, anon_sym_lambda, - ACTIONS(3499), 1, + ACTIONS(2677), 1, anon_sym_new, - STATE(2140), 1, - sym_string, - STATE(2265), 1, + ACTIONS(2923), 1, + sym_identifier, + ACTIONS(2931), 1, + anon_sym_await, + STATE(2057), 1, sym_primary_expression, - STATE(2432), 1, + STATE(2089), 1, + sym_string, + STATE(2284), 1, sym_list_splat_pattern, - STATE(3122), 1, + STATE(3862), 1, sym_expression, - STATE(5387), 1, + STATE(5410), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(1941), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(1951), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(2927), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3081), 8, + STATE(3825), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -147073,7 +146388,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2257), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -147094,72 +146409,75 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [31059] = 23, - ACTIONS(612), 1, - anon_sym_COMMA, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, + [29610] = 26, + ACTIONS(1328), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1332), 1, + anon_sym_LT, + ACTIONS(1338), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1340), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1344), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(1360), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1362), 1, sym_string_start, - ACTIONS(1302), 1, - anon_sym_STAR, - ACTIONS(1310), 1, - anon_sym_LT, - ACTIONS(1312), 1, + ACTIONS(1472), 1, + anon_sym_LBRACK, + ACTIONS(1474), 1, anon_sym_await, - STATE(2140), 1, + ACTIONS(2377), 1, + anon_sym_LPAREN, + ACTIONS(2787), 1, + sym_identifier, + ACTIONS(2965), 1, + anon_sym_STAR, + ACTIONS(3411), 1, + anon_sym_not, + ACTIONS(3413), 1, + anon_sym_lambda, + ACTIONS(3415), 1, + anon_sym_new, + STATE(2076), 1, + sym_primary_expression, + STATE(2147), 1, sym_string, - STATE(2432), 1, + STATE(2452), 1, + sym_expression, + STATE(2472), 1, sym_list_splat_pattern, - STATE(3190), 1, - sym_primary_expression, + STATE(5590), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(581), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(598), 2, - anon_sym_from, - anon_sym_in, - ACTIONS(1237), 4, + ACTIONS(1342), 3, sym_integer, - sym_identifier, sym_true, sym_false, - ACTIONS(1308), 4, + ACTIONS(1326), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1304), 5, + ACTIONS(1470), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - ACTIONS(579), 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(2549), 20, + STATE(2421), 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(2414), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -147180,66 +146498,132 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [31168] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, + [29725] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3417), 14, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(1219), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(1223), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(1225), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3419), 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(1231), 1, anon_sym_lambda, - ACTIONS(1233), 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, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [29794] = 26, + ACTIONS(1382), 1, + anon_sym_LBRACK, + ACTIONS(1386), 1, + anon_sym_LBRACE, + ACTIONS(1388), 1, + anon_sym_not, + ACTIONS(1390), 1, + anon_sym_LT, + ACTIONS(1392), 1, + anon_sym_lambda, + ACTIONS(1394), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1396), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1400), 1, sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1243), 1, + ACTIONS(1404), 1, anon_sym_new, - ACTIONS(1245), 1, + ACTIONS(1406), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1408), 1, sym_string_start, - ACTIONS(2735), 1, - anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(2397), 1, anon_sym_STAR, - STATE(2067), 1, + ACTIONS(2401), 1, + anon_sym_await, + ACTIONS(2449), 1, + anon_sym_LPAREN, + ACTIONS(3037), 1, + sym_identifier, + STATE(2163), 1, sym_primary_expression, - STATE(2140), 1, + STATE(2393), 1, sym_string, - STATE(2432), 1, + STATE(2644), 1, sym_list_splat_pattern, - STATE(3817), 1, + STATE(4199), 1, sym_expression, - STATE(5469), 1, + STATE(5398), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(1398), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(1384), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(2399), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3081), 8, + STATE(2652), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -147248,7 +146632,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2651), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -147269,11 +146653,11 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [31283] = 3, + [29909] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3501), 14, + ACTIONS(3421), 14, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -147288,7 +146672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3503), 46, + ACTIONS(3423), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -147335,66 +146719,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [31352] = 26, - ACTIONS(67), 1, + [29978] = 26, + ACTIONS(1382), 1, + anon_sym_LBRACK, + ACTIONS(1386), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(1388), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1390), 1, anon_sym_LT, - ACTIONS(73), 1, + ACTIONS(1392), 1, anon_sym_lambda, - ACTIONS(77), 1, + ACTIONS(1394), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1396), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1400), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(1404), 1, anon_sym_new, - ACTIONS(105), 1, + ACTIONS(1406), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1408), 1, sym_string_start, - ACTIONS(577), 1, - sym_identifier, - ACTIONS(614), 1, + ACTIONS(2397), 1, + anon_sym_STAR, + ACTIONS(2401), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(2449), 1, anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3071), 1, - anon_sym_STAR, - STATE(2024), 1, + ACTIONS(3037), 1, + sym_identifier, + STATE(2163), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2393), 1, sym_string, - STATE(2088), 1, + STATE(2644), 1, sym_list_splat_pattern, - STATE(4244), 1, + STATE(4272), 1, sym_expression, - STATE(5564), 1, + STATE(5398), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1398), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1384), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(2399), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(2652), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -147403,7 +146787,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2651), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -147424,66 +146808,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [31467] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, + [30093] = 26, + ACTIONS(1382), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1386), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1388), 1, + anon_sym_not, + ACTIONS(1390), 1, + anon_sym_LT, + ACTIONS(1392), 1, + anon_sym_lambda, + ACTIONS(1394), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1396), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1400), 1, sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1245), 1, + ACTIONS(1404), 1, + anon_sym_new, + ACTIONS(1406), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1408), 1, sym_string_start, - ACTIONS(2735), 1, - anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(2397), 1, anon_sym_STAR, - ACTIONS(3495), 1, - anon_sym_not, - ACTIONS(3497), 1, - anon_sym_lambda, - ACTIONS(3499), 1, - anon_sym_new, - STATE(2140), 1, - sym_string, - STATE(2265), 1, + ACTIONS(2401), 1, + anon_sym_await, + ACTIONS(2449), 1, + anon_sym_LPAREN, + ACTIONS(3037), 1, + sym_identifier, + STATE(2163), 1, sym_primary_expression, - STATE(2432), 1, + STATE(2393), 1, + sym_string, + STATE(2644), 1, sym_list_splat_pattern, - STATE(3127), 1, + STATE(4282), 1, sym_expression, - STATE(5387), 1, + STATE(5398), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(1398), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(1384), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(2399), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3081), 8, + STATE(2652), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -147492,7 +146876,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2651), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -147513,66 +146897,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [31582] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, + [30208] = 26, + ACTIONS(1382), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1386), 1, anon_sym_LBRACE, - ACTIONS(1225), 1, + ACTIONS(1388), 1, anon_sym_not, - ACTIONS(1231), 1, + ACTIONS(1390), 1, + anon_sym_LT, + ACTIONS(1392), 1, anon_sym_lambda, - ACTIONS(1233), 1, + ACTIONS(1394), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1396), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1400), 1, sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1243), 1, + ACTIONS(1404), 1, anon_sym_new, - ACTIONS(1245), 1, + ACTIONS(1406), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1408), 1, sym_string_start, - ACTIONS(2735), 1, - anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(2397), 1, anon_sym_STAR, - STATE(2067), 1, + ACTIONS(2401), 1, + anon_sym_await, + ACTIONS(2449), 1, + anon_sym_LPAREN, + ACTIONS(3037), 1, + sym_identifier, + STATE(2163), 1, sym_primary_expression, - STATE(2140), 1, + STATE(2393), 1, sym_string, - STATE(2432), 1, + STATE(2644), 1, sym_list_splat_pattern, - STATE(4148), 1, + STATE(2667), 1, sym_expression, - STATE(5469), 1, + STATE(5398), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(1398), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(1384), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(2399), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3081), 8, + STATE(2652), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -147581,7 +146965,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2651), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -147602,132 +146986,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [31697] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3505), 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(3507), 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, - [31766] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, + [30323] = 26, + ACTIONS(1382), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1386), 1, anon_sym_LBRACE, - ACTIONS(1225), 1, + ACTIONS(1388), 1, anon_sym_not, - ACTIONS(1231), 1, + ACTIONS(1390), 1, + anon_sym_LT, + ACTIONS(1392), 1, anon_sym_lambda, - ACTIONS(1233), 1, + ACTIONS(1394), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1396), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1400), 1, sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1243), 1, + ACTIONS(1404), 1, anon_sym_new, - ACTIONS(1245), 1, + ACTIONS(1406), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1408), 1, sym_string_start, - ACTIONS(2735), 1, - anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(2397), 1, anon_sym_STAR, - STATE(2067), 1, + ACTIONS(2401), 1, + anon_sym_await, + ACTIONS(2449), 1, + anon_sym_LPAREN, + ACTIONS(3037), 1, + sym_identifier, + STATE(2163), 1, sym_primary_expression, - STATE(2140), 1, + STATE(2393), 1, sym_string, - STATE(2432), 1, + STATE(2644), 1, sym_list_splat_pattern, - STATE(4308), 1, + STATE(4223), 1, sym_expression, - STATE(5469), 1, + STATE(5398), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(1398), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(1384), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(2399), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3081), 8, + STATE(2652), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -147736,7 +147054,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2651), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -147757,66 +147075,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [31881] = 26, - ACTIONS(67), 1, + [30438] = 26, + ACTIONS(1382), 1, + anon_sym_LBRACK, + ACTIONS(1386), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1390), 1, anon_sym_LT, - ACTIONS(73), 1, - anon_sym_lambda, - ACTIONS(77), 1, + ACTIONS(1394), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1396), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1400), 1, sym_float, - ACTIONS(99), 1, - anon_sym_new, - ACTIONS(105), 1, + ACTIONS(1406), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1408), 1, sym_string_start, - ACTIONS(577), 1, - sym_identifier, - ACTIONS(614), 1, + ACTIONS(2397), 1, + anon_sym_STAR, + ACTIONS(2401), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(2449), 1, anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3071), 1, - anon_sym_STAR, - STATE(2024), 1, + ACTIONS(3037), 1, + sym_identifier, + ACTIONS(3425), 1, + anon_sym_not, + ACTIONS(3427), 1, + anon_sym_lambda, + ACTIONS(3429), 1, + anon_sym_new, + STATE(2165), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2393), 1, sym_string, - STATE(2088), 1, + STATE(2644), 1, sym_list_splat_pattern, - STATE(3975), 1, + STATE(2683), 1, sym_expression, - STATE(5564), 1, + STATE(5476), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1398), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1384), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(2399), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(2652), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -147825,7 +147143,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2651), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -147846,66 +147164,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [31996] = 26, - ACTIONS(67), 1, + [30553] = 26, + ACTIONS(1382), 1, + anon_sym_LBRACK, + ACTIONS(1386), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(1388), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1390), 1, anon_sym_LT, - ACTIONS(73), 1, + ACTIONS(1392), 1, anon_sym_lambda, - ACTIONS(77), 1, + ACTIONS(1394), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1396), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1400), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(1404), 1, anon_sym_new, - ACTIONS(105), 1, + ACTIONS(1406), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1408), 1, sym_string_start, - ACTIONS(577), 1, - sym_identifier, - ACTIONS(614), 1, + ACTIONS(2397), 1, + anon_sym_STAR, + ACTIONS(2401), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(2449), 1, anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3071), 1, - anon_sym_STAR, - STATE(2024), 1, + ACTIONS(3037), 1, + sym_identifier, + STATE(2163), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2393), 1, sym_string, - STATE(2088), 1, + STATE(2644), 1, sym_list_splat_pattern, - STATE(3978), 1, + STATE(4268), 1, sym_expression, - STATE(5564), 1, + STATE(5398), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1398), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1384), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(2399), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(2652), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -147914,7 +147232,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2651), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -147935,66 +147253,132 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [32111] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, + [30668] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2391), 14, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(1219), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(1223), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(1225), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(2389), 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(1231), 1, anon_sym_lambda, - ACTIONS(1233), 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, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [30737] = 26, + ACTIONS(1328), 1, + anon_sym_LBRACE, + ACTIONS(1330), 1, + anon_sym_not, + ACTIONS(1332), 1, + anon_sym_LT, + ACTIONS(1334), 1, + anon_sym_lambda, + ACTIONS(1338), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1340), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1344), 1, sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1243), 1, + ACTIONS(1350), 1, anon_sym_new, - ACTIONS(1245), 1, + ACTIONS(1360), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1362), 1, sym_string_start, - ACTIONS(2735), 1, - anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(1472), 1, + anon_sym_LBRACK, + ACTIONS(1474), 1, + anon_sym_await, + ACTIONS(2377), 1, + anon_sym_LPAREN, + ACTIONS(2787), 1, + sym_identifier, + ACTIONS(2965), 1, anon_sym_STAR, - STATE(2067), 1, + STATE(2066), 1, sym_primary_expression, - STATE(2140), 1, + STATE(2147), 1, sym_string, - STATE(2432), 1, + STATE(2472), 1, sym_list_splat_pattern, - STATE(3839), 1, + STATE(3958), 1, sym_expression, - STATE(5469), 1, + STATE(5522), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(1342), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(1326), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(1470), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3081), 8, + STATE(2421), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -148003,7 +147387,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2414), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -148024,66 +147408,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [32226] = 26, - ACTIONS(67), 1, + [30852] = 26, + ACTIONS(1382), 1, + anon_sym_LBRACK, + ACTIONS(1386), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1390), 1, anon_sym_LT, - ACTIONS(73), 1, - anon_sym_lambda, - ACTIONS(77), 1, + ACTIONS(1394), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1396), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1400), 1, sym_float, - ACTIONS(99), 1, - anon_sym_new, - ACTIONS(105), 1, + ACTIONS(1406), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1408), 1, sym_string_start, - ACTIONS(577), 1, - sym_identifier, - ACTIONS(614), 1, + ACTIONS(2397), 1, + anon_sym_STAR, + ACTIONS(2401), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(2449), 1, anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3071), 1, - anon_sym_STAR, - STATE(2024), 1, + ACTIONS(3037), 1, + sym_identifier, + ACTIONS(3425), 1, + anon_sym_not, + ACTIONS(3427), 1, + anon_sym_lambda, + ACTIONS(3429), 1, + anon_sym_new, + STATE(2165), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2393), 1, sym_string, - STATE(2088), 1, + STATE(2644), 1, sym_list_splat_pattern, - STATE(3982), 1, + STATE(2685), 1, sym_expression, - STATE(5564), 1, + STATE(5476), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1398), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1384), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(2399), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(2652), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -148092,7 +147476,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2651), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -148113,66 +147497,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [32341] = 26, - ACTIONS(67), 1, + [30967] = 26, + ACTIONS(1382), 1, + anon_sym_LBRACK, + ACTIONS(1386), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(1388), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1390), 1, anon_sym_LT, - ACTIONS(73), 1, + ACTIONS(1392), 1, anon_sym_lambda, - ACTIONS(77), 1, + ACTIONS(1394), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1396), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1400), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(1404), 1, anon_sym_new, - ACTIONS(105), 1, + ACTIONS(1406), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1408), 1, sym_string_start, - ACTIONS(577), 1, - sym_identifier, - ACTIONS(614), 1, + ACTIONS(2397), 1, + anon_sym_STAR, + ACTIONS(2401), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(2449), 1, anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3071), 1, - anon_sym_STAR, - STATE(2024), 1, + ACTIONS(3037), 1, + sym_identifier, + STATE(2163), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2393), 1, sym_string, - STATE(2088), 1, + STATE(2644), 1, sym_list_splat_pattern, - STATE(4144), 1, + STATE(4170), 1, sym_expression, - STATE(5564), 1, + STATE(5398), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1398), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1384), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(2399), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(2652), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -148181,7 +147565,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2651), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -148202,66 +147586,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [32456] = 26, - ACTIONS(67), 1, + [31082] = 26, + ACTIONS(2461), 1, + anon_sym_LPAREN, + ACTIONS(2467), 1, + anon_sym_LBRACK, + ACTIONS(2471), 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, + ACTIONS(2475), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(2477), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(2479), 1, sym_float, - ACTIONS(99), 1, - anon_sym_new, - ACTIONS(105), 1, + ACTIONS(2483), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(2485), 1, sym_string_start, - ACTIONS(577), 1, - sym_identifier, - ACTIONS(614), 1, + ACTIONS(2647), 1, + anon_sym_not, + ACTIONS(2649), 1, + anon_sym_LT, + ACTIONS(2651), 1, + anon_sym_lambda, + ACTIONS(2653), 1, anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3071), 1, + ACTIONS(2655), 1, + anon_sym_new, + ACTIONS(2935), 1, + sym_identifier, + ACTIONS(3103), 1, anon_sym_STAR, - STATE(2024), 1, + STATE(2107), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2200), 1, sym_string, - STATE(2088), 1, + STATE(2589), 1, sym_list_splat_pattern, - STATE(3988), 1, + STATE(3816), 1, sym_expression, - STATE(5564), 1, + STATE(5572), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(2459), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(2469), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(2641), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(2631), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -148270,7 +147654,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2630), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -148291,66 +147675,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [32571] = 26, - ACTIONS(67), 1, + [31197] = 26, + ACTIONS(2461), 1, + anon_sym_LPAREN, + ACTIONS(2467), 1, + anon_sym_LBRACK, + ACTIONS(2471), 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, + ACTIONS(2475), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(2477), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(2479), 1, sym_float, - ACTIONS(99), 1, - anon_sym_new, - ACTIONS(105), 1, + ACTIONS(2483), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(2485), 1, sym_string_start, - ACTIONS(577), 1, - sym_identifier, - ACTIONS(614), 1, + ACTIONS(2647), 1, + anon_sym_not, + ACTIONS(2649), 1, + anon_sym_LT, + ACTIONS(2651), 1, + anon_sym_lambda, + ACTIONS(2653), 1, anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3071), 1, + ACTIONS(2655), 1, + anon_sym_new, + ACTIONS(2935), 1, + sym_identifier, + ACTIONS(3103), 1, anon_sym_STAR, - STATE(2024), 1, + STATE(2107), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2200), 1, sym_string, - STATE(2088), 1, + STATE(2589), 1, sym_list_splat_pattern, - STATE(3416), 1, + STATE(3824), 1, sym_expression, - STATE(5564), 1, + STATE(5572), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(2459), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(2469), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(2641), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(2631), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -148359,7 +147743,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2630), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -148380,66 +147764,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [32686] = 26, - ACTIONS(67), 1, + [31312] = 26, + ACTIONS(2461), 1, + anon_sym_LPAREN, + ACTIONS(2467), 1, + anon_sym_LBRACK, + ACTIONS(2471), 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, + ACTIONS(2475), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(2477), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(2479), 1, sym_float, - ACTIONS(99), 1, - anon_sym_new, - ACTIONS(105), 1, + ACTIONS(2483), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(2485), 1, sym_string_start, - ACTIONS(577), 1, - sym_identifier, - ACTIONS(614), 1, + ACTIONS(2647), 1, + anon_sym_not, + ACTIONS(2649), 1, + anon_sym_LT, + ACTIONS(2651), 1, + anon_sym_lambda, + ACTIONS(2653), 1, anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3071), 1, + ACTIONS(2655), 1, + anon_sym_new, + ACTIONS(2935), 1, + sym_identifier, + ACTIONS(3103), 1, anon_sym_STAR, - STATE(2024), 1, + STATE(2107), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2200), 1, sym_string, - STATE(2088), 1, + STATE(2589), 1, sym_list_splat_pattern, - STATE(3454), 1, + STATE(3836), 1, sym_expression, - STATE(5564), 1, + STATE(5572), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(2459), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(2469), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(2641), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(2631), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -148448,7 +147832,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2630), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -148469,198 +147853,155 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [32801] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2379), 14, - sym_string_start, - ts_builtin_sym_end, + [31427] = 26, + ACTIONS(2461), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(2467), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(2471), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, + ACTIONS(2475), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(2477), 1, + anon_sym_None, + ACTIONS(2479), 1, sym_float, - ACTIONS(2377), 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(2483), 1, + anon_sym_sizeof, + ACTIONS(2485), 1, + sym_string_start, + ACTIONS(2647), 1, anon_sym_not, + ACTIONS(2649), 1, + anon_sym_LT, + ACTIONS(2651), 1, anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, + ACTIONS(2653), 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(2655), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [32870] = 3, + ACTIONS(2935), 1, + sym_identifier, + ACTIONS(3103), 1, + anon_sym_STAR, + STATE(2107), 1, + sym_primary_expression, + STATE(2200), 1, + sym_string, + STATE(2589), 1, + sym_list_splat_pattern, + STATE(2636), 1, + sym_expression, + STATE(5572), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3387), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2459), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2469), 4, 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(3385), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2641), 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, - [32939] = 26, - ACTIONS(67), 1, + STATE(2631), 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(2630), 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, + [31542] = 26, + ACTIONS(2461), 1, + anon_sym_LPAREN, + ACTIONS(2467), 1, + anon_sym_LBRACK, + ACTIONS(2471), 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, + ACTIONS(2475), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(2477), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(2479), 1, sym_float, - ACTIONS(99), 1, - anon_sym_new, - ACTIONS(105), 1, + ACTIONS(2483), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(2485), 1, sym_string_start, - ACTIONS(577), 1, - sym_identifier, - ACTIONS(614), 1, + ACTIONS(2647), 1, + anon_sym_not, + ACTIONS(2649), 1, + anon_sym_LT, + ACTIONS(2651), 1, + anon_sym_lambda, + ACTIONS(2653), 1, anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3071), 1, + ACTIONS(2655), 1, + anon_sym_new, + ACTIONS(2935), 1, + sym_identifier, + ACTIONS(3103), 1, anon_sym_STAR, - STATE(2024), 1, + STATE(2107), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2200), 1, sym_string, - STATE(2088), 1, + STATE(2589), 1, sym_list_splat_pattern, - STATE(4059), 1, + STATE(3845), 1, sym_expression, - STATE(5564), 1, + STATE(5572), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(2459), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(2469), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(2641), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(2631), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -148669,7 +148010,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2630), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -148690,396 +148031,244 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [33054] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3391), 14, - sym_string_start, - ts_builtin_sym_end, + [31657] = 26, + ACTIONS(2461), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(2467), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(2471), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, + ACTIONS(2475), 1, 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, + ACTIONS(2477), 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, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, + ACTIONS(2479), 1, + sym_float, + ACTIONS(2483), 1, anon_sym_sizeof, - [33123] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3395), 14, + ACTIONS(2485), 1, 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(2649), 1, 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, + ACTIONS(2653), 1, + anon_sym_await, + ACTIONS(2935), 1, + sym_identifier, + ACTIONS(3103), 1, + anon_sym_STAR, + ACTIONS(3431), 1, anon_sym_not, + ACTIONS(3433), 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, + ACTIONS(3435), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [33192] = 3, + STATE(2094), 1, + sym_primary_expression, + STATE(2200), 1, + sym_string, + STATE(2589), 1, + sym_list_splat_pattern, + STATE(2600), 1, + sym_expression, + STATE(5490), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3399), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2459), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2469), 4, 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(3397), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2641), 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, - [33261] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3403), 14, - sym_string_start, - ts_builtin_sym_end, + STATE(2631), 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(2630), 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, + [31772] = 26, + ACTIONS(2461), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(2467), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(2471), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, + ACTIONS(2475), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(2477), 1, + anon_sym_None, + ACTIONS(2479), 1, sym_float, - ACTIONS(3401), 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(2483), 1, + anon_sym_sizeof, + ACTIONS(2485), 1, + sym_string_start, + ACTIONS(2647), 1, anon_sym_not, + ACTIONS(2649), 1, + anon_sym_LT, + ACTIONS(2651), 1, anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, + ACTIONS(2653), 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(2655), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [33330] = 3, + ACTIONS(2935), 1, + sym_identifier, + ACTIONS(3103), 1, + anon_sym_STAR, + STATE(2107), 1, + sym_primary_expression, + STATE(2200), 1, + sym_string, + STATE(2589), 1, + sym_list_splat_pattern, + STATE(3846), 1, + sym_expression, + STATE(5572), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3407), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2459), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2469), 4, 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(3405), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2641), 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, - [33399] = 26, - ACTIONS(67), 1, + STATE(2631), 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(2630), 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, + [31887] = 26, + ACTIONS(2461), 1, + anon_sym_LPAREN, + ACTIONS(2467), 1, + anon_sym_LBRACK, + ACTIONS(2471), 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, + ACTIONS(2475), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(2477), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(2479), 1, sym_float, - ACTIONS(99), 1, - anon_sym_new, - ACTIONS(105), 1, + ACTIONS(2483), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(2485), 1, sym_string_start, - ACTIONS(577), 1, - sym_identifier, - ACTIONS(614), 1, + ACTIONS(2649), 1, + anon_sym_LT, + ACTIONS(2653), 1, anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3071), 1, + ACTIONS(2935), 1, + sym_identifier, + ACTIONS(3103), 1, anon_sym_STAR, - STATE(2024), 1, + ACTIONS(3431), 1, + anon_sym_not, + ACTIONS(3433), 1, + anon_sym_lambda, + ACTIONS(3435), 1, + anon_sym_new, + STATE(2094), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2200), 1, sym_string, - STATE(2088), 1, + STATE(2589), 1, sym_list_splat_pattern, - STATE(3989), 1, + STATE(2608), 1, sym_expression, - STATE(5564), 1, + STATE(5490), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(2459), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(2469), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(2641), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(2631), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -149088,7 +148277,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2630), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -149109,66 +148298,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [33514] = 26, - ACTIONS(67), 1, + [32002] = 26, + ACTIONS(2461), 1, + anon_sym_LPAREN, + ACTIONS(2467), 1, + anon_sym_LBRACK, + ACTIONS(2471), 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, + ACTIONS(2475), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(2477), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(2479), 1, sym_float, - ACTIONS(99), 1, - anon_sym_new, - ACTIONS(105), 1, + ACTIONS(2483), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(2485), 1, sym_string_start, - ACTIONS(577), 1, - sym_identifier, - ACTIONS(614), 1, + ACTIONS(2647), 1, + anon_sym_not, + ACTIONS(2649), 1, + anon_sym_LT, + ACTIONS(2651), 1, + anon_sym_lambda, + ACTIONS(2653), 1, anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3071), 1, + ACTIONS(2655), 1, + anon_sym_new, + ACTIONS(2935), 1, + sym_identifier, + ACTIONS(3103), 1, anon_sym_STAR, - STATE(2024), 1, + STATE(2107), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2200), 1, sym_string, - STATE(2088), 1, + STATE(2589), 1, sym_list_splat_pattern, - STATE(3469), 1, + STATE(3859), 1, sym_expression, - STATE(5564), 1, + STATE(5572), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(2459), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(2469), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(2641), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(2631), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -149177,7 +148366,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2630), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -149198,66 +148387,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [33629] = 26, - ACTIONS(1382), 1, - anon_sym_LBRACK, - ACTIONS(1386), 1, + [32117] = 26, + ACTIONS(1328), 1, anon_sym_LBRACE, - ACTIONS(1388), 1, + ACTIONS(1330), 1, anon_sym_not, - ACTIONS(1390), 1, + ACTIONS(1332), 1, anon_sym_LT, - ACTIONS(1392), 1, + ACTIONS(1334), 1, anon_sym_lambda, - ACTIONS(1394), 1, + ACTIONS(1338), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, + ACTIONS(1340), 1, anon_sym_None, - ACTIONS(1400), 1, + ACTIONS(1344), 1, sym_float, - ACTIONS(1404), 1, + ACTIONS(1350), 1, anon_sym_new, - ACTIONS(1406), 1, + ACTIONS(1360), 1, anon_sym_sizeof, - ACTIONS(1408), 1, + ACTIONS(1362), 1, sym_string_start, - ACTIONS(2439), 1, + ACTIONS(1472), 1, + anon_sym_LBRACK, + ACTIONS(1474), 1, + anon_sym_await, + ACTIONS(2377), 1, anon_sym_LPAREN, - ACTIONS(2955), 1, + ACTIONS(2787), 1, sym_identifier, - ACTIONS(2961), 1, - anon_sym_await, - ACTIONS(3055), 1, + ACTIONS(2965), 1, anon_sym_STAR, - STATE(2151), 1, + STATE(2066), 1, sym_primary_expression, - STATE(2302), 1, + STATE(2147), 1, sym_string, - STATE(2671), 1, - sym_list_splat_pattern, - STATE(4147), 1, + STATE(2447), 1, sym_expression, - STATE(5468), 1, + STATE(2472), 1, + sym_list_splat_pattern, + STATE(5522), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1398), 3, + ACTIONS(1342), 3, sym_integer, sym_true, sym_false, - ACTIONS(1384), 4, + ACTIONS(1326), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2959), 5, + ACTIONS(1470), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2716), 8, + STATE(2421), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -149266,7 +148455,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2715), 20, + STATE(2414), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -149287,66 +148476,69 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [33744] = 26, - ACTIONS(1382), 1, + [32232] = 27, + ACTIONS(2461), 1, + anon_sym_LPAREN, + ACTIONS(2467), 1, anon_sym_LBRACK, - ACTIONS(1386), 1, + ACTIONS(2471), 1, anon_sym_LBRACE, - ACTIONS(1388), 1, - anon_sym_not, - ACTIONS(1390), 1, - anon_sym_LT, - ACTIONS(1392), 1, - anon_sym_lambda, - ACTIONS(1394), 1, + ACTIONS(2475), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, + ACTIONS(2477), 1, anon_sym_None, - ACTIONS(1400), 1, + ACTIONS(2479), 1, sym_float, - ACTIONS(1404), 1, - anon_sym_new, - ACTIONS(1406), 1, + ACTIONS(2483), 1, anon_sym_sizeof, - ACTIONS(1408), 1, + ACTIONS(2485), 1, sym_string_start, - ACTIONS(2439), 1, - anon_sym_LPAREN, - ACTIONS(2955), 1, + ACTIONS(2647), 1, + anon_sym_not, + ACTIONS(2649), 1, + anon_sym_LT, + ACTIONS(2651), 1, + anon_sym_lambda, + ACTIONS(2655), 1, + anon_sym_new, + ACTIONS(3103), 1, + anon_sym_STAR, + ACTIONS(3437), 1, sym_identifier, - ACTIONS(2961), 1, + ACTIONS(3441), 1, anon_sym_await, - ACTIONS(3055), 1, - anon_sym_STAR, - STATE(2151), 1, + STATE(2175), 1, sym_primary_expression, - STATE(2302), 1, + STATE(2200), 1, sym_string, - STATE(2671), 1, + STATE(2589), 1, sym_list_splat_pattern, - STATE(4194), 1, + STATE(4271), 1, sym_expression, - STATE(5468), 1, + STATE(5572), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1398), 3, + STATE(2468), 2, + sym_attribute, + sym_subscript, + ACTIONS(2459), 3, sym_integer, sym_true, sym_false, - ACTIONS(1384), 4, + ACTIONS(2469), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2959), 5, + ACTIONS(3439), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2716), 8, + STATE(2631), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -149355,11 +148547,9 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2715), 20, + STATE(2630), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -149376,11 +148566,11 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [33859] = 3, + [32349] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3509), 14, + ACTIONS(2405), 14, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -149395,7 +148585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3511), 46, + ACTIONS(2403), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -149442,66 +148632,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [33928] = 26, - ACTIONS(2479), 1, + [32418] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2409), 14, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(2485), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(2489), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(2493), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, anon_sym_DOT_DOT_DOT, - ACTIONS(2495), 1, - anon_sym_None, - ACTIONS(2497), 1, sym_float, - ACTIONS(2501), 1, + ACTIONS(2407), 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, - ACTIONS(2503), 1, - sym_string_start, - ACTIONS(2523), 1, + [32487] = 26, + ACTIONS(1382), 1, + anon_sym_LBRACK, + ACTIONS(1386), 1, + anon_sym_LBRACE, + ACTIONS(1388), 1, anon_sym_not, - ACTIONS(2525), 1, + ACTIONS(1390), 1, anon_sym_LT, - ACTIONS(2527), 1, + ACTIONS(1392), 1, anon_sym_lambda, - ACTIONS(2533), 1, + ACTIONS(1394), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1396), 1, + anon_sym_None, + ACTIONS(1400), 1, + sym_float, + ACTIONS(1404), 1, anon_sym_new, - ACTIONS(2803), 1, - sym_identifier, - ACTIONS(2811), 1, - anon_sym_await, - ACTIONS(2947), 1, + ACTIONS(1406), 1, + anon_sym_sizeof, + ACTIONS(1408), 1, + sym_string_start, + ACTIONS(2397), 1, anon_sym_STAR, - STATE(2063), 1, + ACTIONS(2401), 1, + anon_sym_await, + ACTIONS(2449), 1, + anon_sym_LPAREN, + ACTIONS(3037), 1, + sym_identifier, + STATE(2163), 1, sym_primary_expression, - STATE(2157), 1, + STATE(2393), 1, sym_string, - STATE(2523), 1, + STATE(2644), 1, sym_list_splat_pattern, - STATE(3882), 1, + STATE(4225), 1, sym_expression, - STATE(5414), 1, + STATE(5398), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 3, + ACTIONS(1398), 3, sym_integer, sym_true, sym_false, - ACTIONS(2487), 4, + ACTIONS(1384), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2807), 5, + ACTIONS(2399), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2421), 8, + STATE(2652), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -149510,7 +148766,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2418), 20, + STATE(2651), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -149531,66 +148787,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [34043] = 26, - ACTIONS(2479), 1, - anon_sym_LPAREN, - ACTIONS(2485), 1, - anon_sym_LBRACK, - ACTIONS(2489), 1, + [32602] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2493), 1, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2495), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2497), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(2501), 1, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(2503), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2523), 1, - anon_sym_not, - ACTIONS(2525), 1, - anon_sym_LT, - ACTIONS(2527), 1, - anon_sym_lambda, - ACTIONS(2533), 1, - anon_sym_new, - ACTIONS(2803), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(2811), 1, + ACTIONS(1041), 1, anon_sym_await, - ACTIONS(2947), 1, + ACTIONS(1281), 1, + anon_sym_LPAREN, + ACTIONS(1287), 1, + anon_sym_LBRACK, + ACTIONS(3073), 1, anon_sym_STAR, - STATE(2063), 1, + ACTIONS(3443), 1, + anon_sym_not, + ACTIONS(3445), 1, + anon_sym_lambda, + ACTIONS(3447), 1, + anon_sym_new, + STATE(2034), 1, sym_primary_expression, - STATE(2157), 1, + STATE(2043), 1, sym_string, - STATE(2523), 1, + STATE(2088), 1, sym_list_splat_pattern, - STATE(3884), 1, + STATE(2118), 1, sym_expression, - STATE(5414), 1, + STATE(5513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(2487), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2807), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2421), 8, + STATE(2115), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -149599,7 +148855,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2418), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -149620,66 +148876,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [34158] = 26, - ACTIONS(2479), 1, - anon_sym_LPAREN, - ACTIONS(2485), 1, - anon_sym_LBRACK, - ACTIONS(2489), 1, + [32717] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2493), 1, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2495), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2497), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(2501), 1, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(2503), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2523), 1, - anon_sym_not, - ACTIONS(2525), 1, - anon_sym_LT, - ACTIONS(2527), 1, - anon_sym_lambda, - ACTIONS(2533), 1, - anon_sym_new, - ACTIONS(2803), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(2811), 1, + ACTIONS(1041), 1, anon_sym_await, - ACTIONS(2947), 1, + ACTIONS(1281), 1, + anon_sym_LPAREN, + ACTIONS(1287), 1, + anon_sym_LBRACK, + ACTIONS(3073), 1, anon_sym_STAR, - STATE(2063), 1, + ACTIONS(3443), 1, + anon_sym_not, + ACTIONS(3445), 1, + anon_sym_lambda, + ACTIONS(3447), 1, + anon_sym_new, + STATE(2034), 1, sym_primary_expression, - STATE(2157), 1, + STATE(2043), 1, sym_string, - STATE(2523), 1, + STATE(2088), 1, sym_list_splat_pattern, - STATE(3885), 1, + STATE(2120), 1, sym_expression, - STATE(5414), 1, + STATE(5513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(2487), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2807), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2421), 8, + STATE(2115), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -149688,7 +148944,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2418), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -149709,66 +148965,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [34273] = 26, - ACTIONS(2479), 1, - anon_sym_LPAREN, - ACTIONS(2485), 1, - anon_sym_LBRACK, - ACTIONS(2489), 1, + [32832] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2493), 1, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2495), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2497), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(2501), 1, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(2503), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2523), 1, - anon_sym_not, - ACTIONS(2525), 1, - anon_sym_LT, - ACTIONS(2527), 1, - anon_sym_lambda, - ACTIONS(2533), 1, - anon_sym_new, - ACTIONS(2803), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(2811), 1, + ACTIONS(1041), 1, anon_sym_await, - ACTIONS(2947), 1, + ACTIONS(1281), 1, + anon_sym_LPAREN, + ACTIONS(1287), 1, + anon_sym_LBRACK, + ACTIONS(3073), 1, anon_sym_STAR, - STATE(2063), 1, + ACTIONS(3443), 1, + anon_sym_not, + ACTIONS(3445), 1, + anon_sym_lambda, + ACTIONS(3447), 1, + anon_sym_new, + STATE(2034), 1, sym_primary_expression, - STATE(2157), 1, + STATE(2043), 1, sym_string, - STATE(2441), 1, - sym_expression, - STATE(2523), 1, + STATE(2088), 1, sym_list_splat_pattern, - STATE(5414), 1, + STATE(2121), 1, + sym_expression, + STATE(5513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(2487), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2807), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2421), 8, + STATE(2115), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -149777,7 +149033,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2418), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -149798,66 +149054,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [34388] = 26, - ACTIONS(2479), 1, - anon_sym_LPAREN, - ACTIONS(2485), 1, - anon_sym_LBRACK, - ACTIONS(2489), 1, + [32947] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2493), 1, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2495), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2497), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(2501), 1, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(2503), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2523), 1, - anon_sym_not, - ACTIONS(2525), 1, - anon_sym_LT, - ACTIONS(2527), 1, - anon_sym_lambda, - ACTIONS(2533), 1, - anon_sym_new, - ACTIONS(2803), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(2811), 1, + ACTIONS(1041), 1, anon_sym_await, - ACTIONS(2947), 1, + ACTIONS(1281), 1, + anon_sym_LPAREN, + ACTIONS(1287), 1, + anon_sym_LBRACK, + ACTIONS(3073), 1, anon_sym_STAR, - STATE(2063), 1, + ACTIONS(3443), 1, + anon_sym_not, + ACTIONS(3445), 1, + anon_sym_lambda, + ACTIONS(3447), 1, + anon_sym_new, + STATE(2034), 1, sym_primary_expression, - STATE(2157), 1, + STATE(2043), 1, sym_string, - STATE(2523), 1, + STATE(2088), 1, sym_list_splat_pattern, - STATE(3886), 1, + STATE(2123), 1, sym_expression, - STATE(5414), 1, + STATE(5513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(2487), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2807), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2421), 8, + STATE(2115), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -149866,7 +149122,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2418), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -149887,66 +149143,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [34503] = 26, - ACTIONS(1382), 1, - anon_sym_LBRACK, - ACTIONS(1386), 1, + [33062] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1388), 1, - anon_sym_not, - ACTIONS(1390), 1, + ACTIONS(71), 1, anon_sym_LT, - ACTIONS(1392), 1, - anon_sym_lambda, - ACTIONS(1394), 1, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1400), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(1404), 1, - anon_sym_new, - ACTIONS(1406), 1, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(1408), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2439), 1, - anon_sym_LPAREN, - ACTIONS(2955), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(2961), 1, + ACTIONS(1041), 1, anon_sym_await, - ACTIONS(3055), 1, + ACTIONS(1281), 1, + anon_sym_LPAREN, + ACTIONS(1287), 1, + anon_sym_LBRACK, + ACTIONS(3073), 1, anon_sym_STAR, - STATE(2151), 1, + ACTIONS(3443), 1, + anon_sym_not, + ACTIONS(3445), 1, + anon_sym_lambda, + ACTIONS(3447), 1, + anon_sym_new, + STATE(2034), 1, sym_primary_expression, - STATE(2302), 1, + STATE(2043), 1, sym_string, - STATE(2671), 1, + STATE(2088), 1, sym_list_splat_pattern, - STATE(4164), 1, + STATE(2124), 1, sym_expression, - STATE(5468), 1, + STATE(5513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1398), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(1384), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2959), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2716), 8, + STATE(2115), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -149955,7 +149211,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2715), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -149976,66 +149232,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [34618] = 26, - ACTIONS(2479), 1, - anon_sym_LPAREN, - ACTIONS(2485), 1, + [33177] = 26, + ACTIONS(1382), 1, anon_sym_LBRACK, - ACTIONS(2489), 1, + ACTIONS(1386), 1, anon_sym_LBRACE, - ACTIONS(2493), 1, + ACTIONS(1388), 1, + anon_sym_not, + ACTIONS(1390), 1, + anon_sym_LT, + ACTIONS(1392), 1, + anon_sym_lambda, + ACTIONS(1394), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2495), 1, + ACTIONS(1396), 1, anon_sym_None, - ACTIONS(2497), 1, + ACTIONS(1400), 1, sym_float, - ACTIONS(2501), 1, + ACTIONS(1404), 1, + anon_sym_new, + ACTIONS(1406), 1, anon_sym_sizeof, - ACTIONS(2503), 1, + ACTIONS(1408), 1, sym_string_start, - ACTIONS(2525), 1, - anon_sym_LT, - ACTIONS(2803), 1, - sym_identifier, - ACTIONS(2811), 1, + ACTIONS(2401), 1, anon_sym_await, - ACTIONS(2947), 1, + ACTIONS(2449), 1, + anon_sym_LPAREN, + ACTIONS(3037), 1, + sym_identifier, + ACTIONS(3449), 1, anon_sym_STAR, - ACTIONS(3513), 1, - anon_sym_not, - ACTIONS(3515), 1, - anon_sym_lambda, - ACTIONS(3517), 1, - anon_sym_new, - STATE(2062), 1, + STATE(2163), 1, sym_primary_expression, - STATE(2157), 1, + STATE(2393), 1, sym_string, - STATE(2502), 1, - sym_expression, - STATE(2523), 1, + STATE(2644), 1, sym_list_splat_pattern, - STATE(5405), 1, + STATE(4204), 1, + sym_expression, + STATE(5398), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 3, + ACTIONS(1398), 3, sym_integer, sym_true, sym_false, - ACTIONS(2487), 4, + ACTIONS(1384), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2807), 5, + ACTIONS(2399), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2421), 8, + STATE(2652), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -150044,7 +149300,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2418), 20, + STATE(2651), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -150065,155 +149321,198 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [34733] = 26, - ACTIONS(2479), 1, + [33292] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3453), 14, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(2485), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(2489), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(2493), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, anon_sym_DOT_DOT_DOT, - ACTIONS(2495), 1, - anon_sym_None, - ACTIONS(2497), 1, sym_float, - ACTIONS(2501), 1, - anon_sym_sizeof, - ACTIONS(2503), 1, - sym_string_start, - ACTIONS(2523), 1, + ACTIONS(3451), 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(2525), 1, - anon_sym_LT, - ACTIONS(2527), 1, anon_sym_lambda, - ACTIONS(2533), 1, - anon_sym_new, - ACTIONS(2803), 1, + anon_sym_yield, + anon_sym_None, + sym_integer, sym_identifier, - ACTIONS(2811), 1, anon_sym_await, - ACTIONS(2947), 1, - anon_sym_STAR, - STATE(2063), 1, - sym_primary_expression, - STATE(2157), 1, - sym_string, - STATE(2523), 1, - sym_list_splat_pattern, - STATE(3901), 1, - sym_expression, - STATE(5414), 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, + [33361] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2487), 4, + ACTIONS(3457), 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(2807), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3455), 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_exec, - anon_sym_api, - STATE(2421), 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(2418), 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, - [34848] = 26, - ACTIONS(2479), 1, - anon_sym_LPAREN, - ACTIONS(2485), 1, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + 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, + [33430] = 26, + ACTIONS(1382), 1, anon_sym_LBRACK, - ACTIONS(2489), 1, + ACTIONS(1386), 1, anon_sym_LBRACE, - ACTIONS(2493), 1, + ACTIONS(1388), 1, + anon_sym_not, + ACTIONS(1390), 1, + anon_sym_LT, + ACTIONS(1392), 1, + anon_sym_lambda, + ACTIONS(1394), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2495), 1, + ACTIONS(1396), 1, anon_sym_None, - ACTIONS(2497), 1, + ACTIONS(1400), 1, sym_float, - ACTIONS(2501), 1, + ACTIONS(1404), 1, + anon_sym_new, + ACTIONS(1406), 1, anon_sym_sizeof, - ACTIONS(2503), 1, + ACTIONS(1408), 1, sym_string_start, - ACTIONS(2525), 1, - anon_sym_LT, - ACTIONS(2803), 1, - sym_identifier, - ACTIONS(2811), 1, + ACTIONS(2401), 1, anon_sym_await, - ACTIONS(2947), 1, + ACTIONS(2449), 1, + anon_sym_LPAREN, + ACTIONS(3037), 1, + sym_identifier, + ACTIONS(3459), 1, anon_sym_STAR, - ACTIONS(3513), 1, - anon_sym_not, - ACTIONS(3515), 1, - anon_sym_lambda, - ACTIONS(3517), 1, - anon_sym_new, - STATE(2062), 1, + STATE(2163), 1, sym_primary_expression, - STATE(2157), 1, + STATE(2393), 1, sym_string, - STATE(2505), 1, - sym_expression, - STATE(2523), 1, + STATE(2644), 1, sym_list_splat_pattern, - STATE(5405), 1, + STATE(4026), 1, + sym_expression, + STATE(5398), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 3, + ACTIONS(1398), 3, sym_integer, sym_true, sym_false, - ACTIONS(2487), 4, + ACTIONS(1384), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2807), 5, + ACTIONS(2399), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2421), 8, + STATE(2652), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -150222,7 +149521,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2418), 20, + STATE(2651), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -150243,13 +149542,13 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [34963] = 3, + [33545] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2391), 14, + ACTIONS(2771), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -150262,7 +149561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2389), 46, + ACTIONS(2769), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -150309,66 +149608,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [35032] = 26, - ACTIONS(2479), 1, + [33614] = 26, + ACTIONS(1943), 1, anon_sym_LPAREN, - ACTIONS(2485), 1, + ACTIONS(1949), 1, anon_sym_LBRACK, - ACTIONS(2489), 1, + ACTIONS(1953), 1, anon_sym_LBRACE, - ACTIONS(2493), 1, + ACTIONS(1957), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2495), 1, + ACTIONS(1959), 1, anon_sym_None, - ACTIONS(2497), 1, + ACTIONS(1961), 1, sym_float, - ACTIONS(2501), 1, + ACTIONS(1965), 1, anon_sym_sizeof, - ACTIONS(2503), 1, + ACTIONS(1967), 1, sym_string_start, - ACTIONS(2523), 1, - anon_sym_not, - ACTIONS(2525), 1, + ACTIONS(2661), 1, + anon_sym_STAR, + ACTIONS(2669), 1, anon_sym_LT, - ACTIONS(2527), 1, - anon_sym_lambda, - ACTIONS(2533), 1, - anon_sym_new, - ACTIONS(2803), 1, + ACTIONS(2923), 1, sym_identifier, - ACTIONS(2811), 1, + ACTIONS(2931), 1, anon_sym_await, - ACTIONS(2947), 1, - anon_sym_STAR, - STATE(2063), 1, + ACTIONS(3045), 1, + anon_sym_not, + ACTIONS(3047), 1, + anon_sym_lambda, + ACTIONS(3049), 1, + anon_sym_new, + STATE(2057), 1, sym_primary_expression, - STATE(2157), 1, + STATE(2089), 1, sym_string, - STATE(2523), 1, + STATE(2284), 1, sym_list_splat_pattern, - STATE(3907), 1, + STATE(4220), 1, sym_expression, - STATE(5414), 1, + STATE(5675), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 3, + ACTIONS(1941), 3, sym_integer, sym_true, sym_false, - ACTIONS(2487), 4, + ACTIONS(1951), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2807), 5, + ACTIONS(2927), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2421), 8, + STATE(3825), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -150377,7 +149676,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2418), 20, + STATE(2257), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -150398,66 +149697,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [35147] = 26, - ACTIONS(67), 1, + [33729] = 26, + ACTIONS(1382), 1, + anon_sym_LBRACK, + ACTIONS(1386), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(1388), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1390), 1, anon_sym_LT, - ACTIONS(73), 1, + ACTIONS(1392), 1, anon_sym_lambda, - ACTIONS(77), 1, + ACTIONS(1394), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1396), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1400), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(1404), 1, anon_sym_new, - ACTIONS(105), 1, + ACTIONS(1406), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1408), 1, sym_string_start, - ACTIONS(577), 1, - sym_identifier, - ACTIONS(614), 1, + ACTIONS(2397), 1, + anon_sym_STAR, + ACTIONS(2401), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(2449), 1, anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3071), 1, - anon_sym_STAR, - STATE(2024), 1, + ACTIONS(3037), 1, + sym_identifier, + STATE(2163), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2393), 1, sym_string, - STATE(2088), 1, + STATE(2644), 1, sym_list_splat_pattern, - STATE(3993), 1, + STATE(4210), 1, sym_expression, - STATE(5564), 1, + STATE(5398), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1398), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1384), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(2399), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(2652), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -150466,7 +149765,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2651), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -150487,66 +149786,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [35262] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, + [33844] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1225), 1, - anon_sym_not, - ACTIONS(1231), 1, - anon_sym_lambda, - ACTIONS(1233), 1, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1243), 1, - anon_sym_new, - ACTIONS(1245), 1, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2735), 1, - anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(1001), 1, + sym_identifier, + ACTIONS(1041), 1, + anon_sym_await, + ACTIONS(1281), 1, + anon_sym_LPAREN, + ACTIONS(1287), 1, + anon_sym_LBRACK, + ACTIONS(3073), 1, anon_sym_STAR, - STATE(2067), 1, + ACTIONS(3443), 1, + anon_sym_not, + ACTIONS(3445), 1, + anon_sym_lambda, + ACTIONS(3447), 1, + anon_sym_new, + STATE(2034), 1, sym_primary_expression, - STATE(2140), 1, + STATE(2043), 1, sym_string, - STATE(2432), 1, + STATE(2088), 1, sym_list_splat_pattern, - STATE(4438), 1, + STATE(2126), 1, sym_expression, - STATE(5469), 1, + STATE(5513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3081), 8, + STATE(2115), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -150555,7 +149854,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -150576,66 +149875,132 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [35377] = 26, - ACTIONS(2401), 1, + [33959] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3463), 14, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(2407), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(2411), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(2415), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, anon_sym_DOT_DOT_DOT, - ACTIONS(2417), 1, + sym_float, + ACTIONS(3461), 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(2419), 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, + [34028] = 26, + ACTIONS(2489), 1, + anon_sym_LPAREN, + ACTIONS(2495), 1, + anon_sym_LBRACK, + ACTIONS(2499), 1, + anon_sym_LBRACE, + ACTIONS(2503), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2505), 1, + anon_sym_None, + ACTIONS(2507), 1, sym_float, - ACTIONS(2423), 1, + ACTIONS(2511), 1, anon_sym_sizeof, - ACTIONS(2425), 1, + ACTIONS(2513), 1, sym_string_start, - ACTIONS(2535), 1, - sym_identifier, - ACTIONS(2549), 1, + ACTIONS(2561), 1, anon_sym_not, - ACTIONS(2551), 1, + ACTIONS(2563), 1, anon_sym_LT, - ACTIONS(2553), 1, + ACTIONS(2565), 1, anon_sym_lambda, - ACTIONS(2557), 1, - anon_sym_await, - ACTIONS(2559), 1, + ACTIONS(2571), 1, anon_sym_new, - ACTIONS(2981), 1, + ACTIONS(2815), 1, + sym_identifier, + ACTIONS(2823), 1, + anon_sym_await, + ACTIONS(2943), 1, anon_sym_STAR, - STATE(2054), 1, + STATE(2070), 1, sym_primary_expression, - STATE(2103), 1, + STATE(2177), 1, sym_string, - STATE(2309), 1, + STATE(2415), 1, sym_list_splat_pattern, - STATE(3835), 1, + STATE(4065), 1, sym_expression, - STATE(5519), 1, + STATE(5681), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2399), 3, + ACTIONS(2487), 3, sym_integer, sym_true, sym_false, - ACTIONS(2409), 4, + ACTIONS(2497), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2543), 5, + ACTIONS(2819), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2236), 8, + STATE(2493), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -150644,7 +150009,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2377), 20, + STATE(2470), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -150665,66 +150030,198 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [35492] = 26, - ACTIONS(2401), 1, + [34143] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3465), 14, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(2407), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(2411), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(2415), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, anon_sym_DOT_DOT_DOT, - ACTIONS(2417), 1, - anon_sym_None, - ACTIONS(2419), 1, sym_float, - ACTIONS(2423), 1, + ACTIONS(3467), 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, - ACTIONS(2425), 1, + [34212] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3469), 14, sym_string_start, - ACTIONS(2535), 1, - sym_identifier, - ACTIONS(2549), 1, - anon_sym_not, - ACTIONS(2551), 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(2553), 1, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3471), 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(2557), 1, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(2559), 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(2981), 1, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [34281] = 26, + ACTIONS(1328), 1, + anon_sym_LBRACE, + ACTIONS(1332), 1, + anon_sym_LT, + ACTIONS(1338), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1340), 1, + anon_sym_None, + ACTIONS(1344), 1, + sym_float, + ACTIONS(1360), 1, + anon_sym_sizeof, + ACTIONS(1362), 1, + sym_string_start, + ACTIONS(1472), 1, + anon_sym_LBRACK, + ACTIONS(1474), 1, + anon_sym_await, + ACTIONS(2377), 1, + anon_sym_LPAREN, + ACTIONS(2787), 1, + sym_identifier, + ACTIONS(2965), 1, anon_sym_STAR, - STATE(2054), 1, + ACTIONS(3411), 1, + anon_sym_not, + ACTIONS(3413), 1, + anon_sym_lambda, + ACTIONS(3415), 1, + anon_sym_new, + STATE(2076), 1, sym_primary_expression, - STATE(2103), 1, + STATE(2147), 1, sym_string, - STATE(2309), 1, + STATE(2472), 1, sym_list_splat_pattern, - STATE(3836), 1, + STATE(2475), 1, sym_expression, - STATE(5519), 1, + STATE(5590), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2399), 3, + ACTIONS(1342), 3, sym_integer, sym_true, sym_false, - ACTIONS(2409), 4, + ACTIONS(1326), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2543), 5, + ACTIONS(1470), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2236), 8, + STATE(2421), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -150733,7 +150230,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2377), 20, + STATE(2414), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -150754,66 +150251,132 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [35607] = 26, - ACTIONS(2401), 1, + [34396] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3475), 14, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(2407), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(2411), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(2415), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, anon_sym_DOT_DOT_DOT, - ACTIONS(2417), 1, - anon_sym_None, - ACTIONS(2419), 1, sym_float, - ACTIONS(2423), 1, - anon_sym_sizeof, - ACTIONS(2425), 1, - sym_string_start, - ACTIONS(2535), 1, + ACTIONS(3473), 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(2549), 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, + [34465] = 26, + ACTIONS(1328), 1, + anon_sym_LBRACE, + ACTIONS(1330), 1, anon_sym_not, - ACTIONS(2551), 1, + ACTIONS(1332), 1, anon_sym_LT, - ACTIONS(2553), 1, + ACTIONS(1334), 1, anon_sym_lambda, - ACTIONS(2557), 1, - anon_sym_await, - ACTIONS(2559), 1, + ACTIONS(1338), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1340), 1, + anon_sym_None, + ACTIONS(1344), 1, + sym_float, + ACTIONS(1350), 1, anon_sym_new, - ACTIONS(2981), 1, + ACTIONS(1360), 1, + anon_sym_sizeof, + ACTIONS(1362), 1, + sym_string_start, + ACTIONS(1472), 1, + anon_sym_LBRACK, + ACTIONS(1474), 1, + anon_sym_await, + ACTIONS(2377), 1, + anon_sym_LPAREN, + ACTIONS(2787), 1, + sym_identifier, + ACTIONS(2965), 1, anon_sym_STAR, - STATE(2054), 1, + STATE(2066), 1, sym_primary_expression, - STATE(2103), 1, + STATE(2147), 1, sym_string, - STATE(2309), 1, + STATE(2472), 1, sym_list_splat_pattern, - STATE(3837), 1, + STATE(3937), 1, sym_expression, - STATE(5519), 1, + STATE(5522), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2399), 3, + ACTIONS(1342), 3, sym_integer, sym_true, sym_false, - ACTIONS(2409), 4, + ACTIONS(1326), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2543), 5, + ACTIONS(1470), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2236), 8, + STATE(2421), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -150822,7 +150385,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2377), 20, + STATE(2414), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -150843,66 +150406,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [35722] = 26, - ACTIONS(2401), 1, - anon_sym_LPAREN, - ACTIONS(2407), 1, + [34580] = 26, + ACTIONS(1382), 1, anon_sym_LBRACK, - ACTIONS(2411), 1, + ACTIONS(1386), 1, anon_sym_LBRACE, - ACTIONS(2415), 1, + ACTIONS(1388), 1, + anon_sym_not, + ACTIONS(1390), 1, + anon_sym_LT, + ACTIONS(1392), 1, + anon_sym_lambda, + ACTIONS(1394), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2417), 1, + ACTIONS(1396), 1, anon_sym_None, - ACTIONS(2419), 1, + ACTIONS(1400), 1, sym_float, - ACTIONS(2423), 1, + ACTIONS(1404), 1, + anon_sym_new, + ACTIONS(1406), 1, anon_sym_sizeof, - ACTIONS(2425), 1, + ACTIONS(1408), 1, sym_string_start, - ACTIONS(2535), 1, - sym_identifier, - ACTIONS(2549), 1, - anon_sym_not, - ACTIONS(2551), 1, - anon_sym_LT, - ACTIONS(2553), 1, - anon_sym_lambda, - ACTIONS(2557), 1, - anon_sym_await, - ACTIONS(2559), 1, - anon_sym_new, - ACTIONS(2981), 1, + ACTIONS(2397), 1, anon_sym_STAR, - STATE(2054), 1, + ACTIONS(2401), 1, + anon_sym_await, + ACTIONS(2449), 1, + anon_sym_LPAREN, + ACTIONS(3037), 1, + sym_identifier, + STATE(2163), 1, sym_primary_expression, - STATE(2103), 1, + STATE(2393), 1, sym_string, - STATE(2309), 1, + STATE(2644), 1, sym_list_splat_pattern, - STATE(2320), 1, + STATE(4207), 1, sym_expression, - STATE(5519), 1, + STATE(5398), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2399), 3, + ACTIONS(1398), 3, sym_integer, sym_true, sym_false, - ACTIONS(2409), 4, + ACTIONS(1384), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2543), 5, + ACTIONS(2399), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2236), 8, + STATE(2652), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -150911,7 +150474,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2377), 20, + STATE(2651), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -150932,66 +150495,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [35837] = 26, - ACTIONS(2401), 1, - anon_sym_LPAREN, - ACTIONS(2407), 1, - anon_sym_LBRACK, - ACTIONS(2411), 1, + [34695] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2415), 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(2417), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2419), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(2423), 1, + ACTIONS(99), 1, + anon_sym_new, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(2425), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2535), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(2549), 1, - anon_sym_not, - ACTIONS(2551), 1, - anon_sym_LT, - ACTIONS(2553), 1, - anon_sym_lambda, - ACTIONS(2557), 1, + ACTIONS(1041), 1, anon_sym_await, - ACTIONS(2559), 1, - anon_sym_new, - ACTIONS(2981), 1, + ACTIONS(1281), 1, + anon_sym_LPAREN, + ACTIONS(1287), 1, + anon_sym_LBRACK, + ACTIONS(3073), 1, anon_sym_STAR, - STATE(2054), 1, + STATE(2032), 1, sym_primary_expression, - STATE(2103), 1, + STATE(2043), 1, sym_string, - STATE(2309), 1, + STATE(2088), 1, sym_list_splat_pattern, - STATE(3838), 1, + STATE(4151), 1, sym_expression, - STATE(5519), 1, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2399), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(2409), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2543), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2236), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -151000,7 +150563,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2377), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -151021,66 +150584,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [35952] = 26, - ACTIONS(2401), 1, - anon_sym_LPAREN, - ACTIONS(2407), 1, - anon_sym_LBRACK, - ACTIONS(2411), 1, + [34810] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2415), 1, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2417), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2419), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(2423), 1, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(2425), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2535), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(2551), 1, - anon_sym_LT, - ACTIONS(2557), 1, + ACTIONS(1041), 1, anon_sym_await, - ACTIONS(2981), 1, + ACTIONS(1281), 1, + anon_sym_LPAREN, + ACTIONS(1287), 1, + anon_sym_LBRACK, + ACTIONS(3073), 1, anon_sym_STAR, - ACTIONS(3519), 1, + ACTIONS(3443), 1, anon_sym_not, - ACTIONS(3521), 1, + ACTIONS(3445), 1, anon_sym_lambda, - ACTIONS(3523), 1, + ACTIONS(3447), 1, anon_sym_new, - STATE(2040), 1, + STATE(2034), 1, sym_primary_expression, - STATE(2103), 1, + STATE(2043), 1, sym_string, - STATE(2279), 1, - sym_expression, - STATE(2309), 1, + STATE(2088), 1, sym_list_splat_pattern, - STATE(5426), 1, + STATE(2129), 1, + sym_expression, + STATE(5513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2399), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(2409), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2543), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2236), 8, + STATE(2115), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -151089,7 +150652,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2377), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -151110,13 +150673,13 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [36067] = 3, + [34925] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3525), 14, + ACTIONS(3479), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -151129,7 +150692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3527), 46, + ACTIONS(3477), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -151176,96 +150739,205 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [36136] = 26, - ACTIONS(2401), 1, + [34994] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3483), 14, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(2407), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(2411), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(2415), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, anon_sym_DOT_DOT_DOT, - ACTIONS(2417), 1, - anon_sym_None, - ACTIONS(2419), 1, sym_float, - ACTIONS(2423), 1, - anon_sym_sizeof, - ACTIONS(2425), 1, - sym_string_start, - ACTIONS(2535), 1, - sym_identifier, - ACTIONS(2549), 1, + ACTIONS(3481), 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(2551), 1, - anon_sym_LT, - ACTIONS(2553), 1, anon_sym_lambda, - ACTIONS(2557), 1, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(2559), 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(2981), 1, - anon_sym_STAR, - STATE(2054), 1, - sym_primary_expression, - STATE(2103), 1, - sym_string, - STATE(2309), 1, - sym_list_splat_pattern, - STATE(3840), 1, - sym_expression, - STATE(5519), 1, - sym__named_expression_lhs, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [35063] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2399), 3, + ACTIONS(3487), 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(3485), 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(2409), 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, + [35132] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3491), 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(2543), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3489), 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(2236), 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(2377), 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, - [36251] = 26, + 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, + [35201] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -151286,25 +150958,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(107), 1, sym_string_start, - ACTIONS(577), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(614), 1, + ACTIONS(1041), 1, anon_sym_await, ACTIONS(1281), 1, anon_sym_LPAREN, ACTIONS(1287), 1, anon_sym_LBRACK, - ACTIONS(3071), 1, + ACTIONS(3073), 1, anon_sym_STAR, - STATE(2024), 1, + STATE(2032), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2043), 1, sym_string, STATE(2088), 1, sym_list_splat_pattern, - STATE(4089), 1, + STATE(4047), 1, sym_expression, - STATE(5564), 1, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -151318,13 +150990,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -151333,7 +151005,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -151354,280 +151026,79 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [36366] = 26, - ACTIONS(2401), 1, - anon_sym_LPAREN, - ACTIONS(2407), 1, - anon_sym_LBRACK, - ACTIONS(2411), 1, - anon_sym_LBRACE, - ACTIONS(2415), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2417), 1, - anon_sym_None, - ACTIONS(2419), 1, - sym_float, - ACTIONS(2423), 1, - anon_sym_sizeof, - ACTIONS(2425), 1, - sym_string_start, - ACTIONS(2535), 1, - sym_identifier, - ACTIONS(2551), 1, - anon_sym_LT, - ACTIONS(2557), 1, - anon_sym_await, - ACTIONS(2981), 1, - anon_sym_STAR, - ACTIONS(3519), 1, - anon_sym_not, - ACTIONS(3521), 1, - anon_sym_lambda, - ACTIONS(3523), 1, - anon_sym_new, - STATE(2040), 1, - sym_primary_expression, - STATE(2103), 1, - sym_string, - STATE(2287), 1, - sym_expression, - STATE(2309), 1, - sym_list_splat_pattern, - STATE(5426), 1, - sym__named_expression_lhs, + [35316] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2399), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2409), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2543), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2236), 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(2377), 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, - [36481] = 26, - ACTIONS(2401), 1, - anon_sym_LPAREN, - ACTIONS(2407), 1, - anon_sym_LBRACK, - ACTIONS(2411), 1, - anon_sym_LBRACE, - ACTIONS(2415), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2417), 1, - anon_sym_None, - ACTIONS(2419), 1, - sym_float, - ACTIONS(2423), 1, - anon_sym_sizeof, - ACTIONS(2425), 1, + ACTIONS(3495), 14, + sym__dedent, sym_string_start, - ACTIONS(2535), 1, - sym_identifier, - ACTIONS(2549), 1, - anon_sym_not, - ACTIONS(2551), 1, - anon_sym_LT, - ACTIONS(2553), 1, - anon_sym_lambda, - ACTIONS(2557), 1, - anon_sym_await, - ACTIONS(2559), 1, - anon_sym_new, - ACTIONS(2981), 1, + anon_sym_LPAREN, anon_sym_STAR, - STATE(2054), 1, - sym_primary_expression, - STATE(2103), 1, - sym_string, - STATE(2309), 1, - sym_list_splat_pattern, - STATE(3844), 1, - sym_expression, - STATE(5519), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2399), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2409), 4, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2543), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3493), 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(2236), 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(2377), 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, - [36596] = 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(77), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + anon_sym_yield, 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(577), 1, - sym_identifier, - ACTIONS(614), 1, - anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3071), 1, - anon_sym_STAR, - STATE(2024), 1, - sym_primary_expression, - STATE(2034), 1, - sym_string, - STATE(2088), 1, - sym_list_splat_pattern, - STATE(4120), 1, - sym_expression, - STATE(5564), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(81), 3, 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(592), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3429), 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(2123), 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, - [36711] = 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, + [35385] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3529), 14, + ACTIONS(3499), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -151640,7 +151111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3531), 46, + ACTIONS(3497), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -151687,66 +151158,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [36780] = 26, - ACTIONS(1907), 1, + [35454] = 26, + ACTIONS(2461), 1, anon_sym_LPAREN, - ACTIONS(1913), 1, + ACTIONS(2467), 1, anon_sym_LBRACK, - ACTIONS(1917), 1, + ACTIONS(2471), 1, anon_sym_LBRACE, - ACTIONS(1921), 1, + ACTIONS(2475), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1923), 1, + ACTIONS(2477), 1, anon_sym_None, - ACTIONS(1925), 1, + ACTIONS(2479), 1, sym_float, - ACTIONS(1929), 1, + ACTIONS(2483), 1, anon_sym_sizeof, - ACTIONS(1931), 1, + ACTIONS(2485), 1, sym_string_start, - ACTIONS(2653), 1, - anon_sym_STAR, - ACTIONS(2659), 1, + ACTIONS(2647), 1, anon_sym_not, - ACTIONS(2661), 1, + ACTIONS(2649), 1, anon_sym_LT, - ACTIONS(2663), 1, + ACTIONS(2651), 1, anon_sym_lambda, - ACTIONS(2669), 1, + ACTIONS(2653), 1, + anon_sym_await, + ACTIONS(2655), 1, anon_sym_new, - ACTIONS(2793), 1, + ACTIONS(2935), 1, sym_identifier, - ACTIONS(2801), 1, - anon_sym_await, - STATE(2046), 1, + ACTIONS(3103), 1, + anon_sym_STAR, + STATE(2107), 1, sym_primary_expression, - STATE(2073), 1, + STATE(2200), 1, sym_string, - STATE(2357), 1, + STATE(2589), 1, sym_list_splat_pattern, - STATE(3853), 1, + STATE(4053), 1, sym_expression, - STATE(5557), 1, + STATE(5572), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1905), 3, + ACTIONS(2459), 3, sym_integer, sym_true, sym_false, - ACTIONS(1915), 4, + ACTIONS(2469), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2797), 5, + ACTIONS(2641), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3846), 8, + STATE(2631), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -151755,7 +151226,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2255), 20, + STATE(2630), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -151776,13 +151247,13 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [36895] = 3, + [35569] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3533), 14, + ACTIONS(3503), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -151795,7 +151266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3535), 46, + ACTIONS(3501), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -151842,66 +151313,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [36964] = 26, - ACTIONS(1907), 1, + [35638] = 26, + ACTIONS(1211), 1, + sym_identifier, + ACTIONS(1213), 1, anon_sym_LPAREN, - ACTIONS(1913), 1, + ACTIONS(1219), 1, anon_sym_LBRACK, - ACTIONS(1917), 1, + ACTIONS(1223), 1, anon_sym_LBRACE, - ACTIONS(1921), 1, + ACTIONS(1225), 1, + anon_sym_not, + ACTIONS(1231), 1, + anon_sym_lambda, + ACTIONS(1233), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1923), 1, + ACTIONS(1235), 1, anon_sym_None, - ACTIONS(1925), 1, + ACTIONS(1239), 1, sym_float, - ACTIONS(1929), 1, + ACTIONS(1241), 1, + anon_sym_await, + ACTIONS(1243), 1, + anon_sym_new, + ACTIONS(1245), 1, anon_sym_sizeof, - ACTIONS(1931), 1, + ACTIONS(1247), 1, sym_string_start, - ACTIONS(2653), 1, - anon_sym_STAR, - ACTIONS(2659), 1, - anon_sym_not, - ACTIONS(2661), 1, + ACTIONS(2705), 1, anon_sym_LT, - ACTIONS(2663), 1, - anon_sym_lambda, - ACTIONS(2669), 1, - anon_sym_new, - ACTIONS(2793), 1, - sym_identifier, - ACTIONS(2801), 1, - anon_sym_await, - STATE(2046), 1, + ACTIONS(2955), 1, + anon_sym_STAR, + STATE(2072), 1, sym_primary_expression, - STATE(2073), 1, + STATE(2161), 1, sym_string, - STATE(2357), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(3855), 1, + STATE(4172), 1, sym_expression, - STATE(5557), 1, + STATE(5579), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1905), 3, + ACTIONS(1237), 3, sym_integer, sym_true, sym_false, - ACTIONS(1915), 4, + ACTIONS(1227), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2797), 5, + ACTIONS(1217), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3846), 8, + STATE(3088), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -151910,7 +151381,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2255), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -151931,66 +151402,132 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [37079] = 26, - ACTIONS(1907), 1, + [35753] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3331), 14, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(1913), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(1917), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(1921), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, anon_sym_DOT_DOT_DOT, - ACTIONS(1923), 1, - anon_sym_None, - ACTIONS(1925), 1, sym_float, - ACTIONS(1929), 1, + 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, + 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, - ACTIONS(1931), 1, - sym_string_start, - ACTIONS(2653), 1, - anon_sym_STAR, - ACTIONS(2659), 1, + [35822] = 26, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(2661), 1, + ACTIONS(71), 1, anon_sym_LT, - ACTIONS(2663), 1, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(2669), 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(2793), 1, + ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, + sym_string_start, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(2801), 1, + ACTIONS(1041), 1, anon_sym_await, - STATE(2046), 1, + ACTIONS(1281), 1, + anon_sym_LPAREN, + ACTIONS(1287), 1, + anon_sym_LBRACK, + ACTIONS(3073), 1, + anon_sym_STAR, + STATE(2032), 1, sym_primary_expression, - STATE(2073), 1, + STATE(2043), 1, sym_string, - STATE(2357), 1, + STATE(2088), 1, sym_list_splat_pattern, - STATE(3856), 1, + STATE(4050), 1, sym_expression, - STATE(5557), 1, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1905), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(1915), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2797), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3846), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -151999,7 +151536,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2255), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -152020,66 +151557,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [37194] = 26, - ACTIONS(1907), 1, - anon_sym_LPAREN, - ACTIONS(1913), 1, - anon_sym_LBRACK, - ACTIONS(1917), 1, + [35937] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1921), 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(1923), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1925), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(1929), 1, + ACTIONS(99), 1, + anon_sym_new, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(1931), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2653), 1, - anon_sym_STAR, - ACTIONS(2659), 1, - anon_sym_not, - ACTIONS(2661), 1, - anon_sym_LT, - ACTIONS(2663), 1, - anon_sym_lambda, - ACTIONS(2669), 1, - anon_sym_new, - ACTIONS(2793), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(2801), 1, + ACTIONS(1041), 1, anon_sym_await, - STATE(2046), 1, + ACTIONS(1281), 1, + anon_sym_LPAREN, + ACTIONS(1287), 1, + anon_sym_LBRACK, + ACTIONS(3073), 1, + anon_sym_STAR, + STATE(2032), 1, sym_primary_expression, - STATE(2073), 1, + STATE(2043), 1, sym_string, - STATE(2357), 1, + STATE(2088), 1, sym_list_splat_pattern, - STATE(3857), 1, + STATE(4070), 1, sym_expression, - STATE(5557), 1, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1905), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(1915), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2797), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3846), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -152088,7 +151625,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2255), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -152109,185 +151646,205 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [37309] = 26, - ACTIONS(1907), 1, + [36052] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2689), 14, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(1913), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(1917), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(1921), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, anon_sym_DOT_DOT_DOT, - ACTIONS(1923), 1, - anon_sym_None, - ACTIONS(1925), 1, sym_float, - ACTIONS(1929), 1, - anon_sym_sizeof, - ACTIONS(1931), 1, - sym_string_start, - ACTIONS(2653), 1, - anon_sym_STAR, - ACTIONS(2659), 1, + ACTIONS(2691), 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(2661), 1, - anon_sym_LT, - ACTIONS(2663), 1, anon_sym_lambda, - ACTIONS(2669), 1, - anon_sym_new, - ACTIONS(2793), 1, + anon_sym_yield, + anon_sym_None, + sym_integer, sym_identifier, - ACTIONS(2801), 1, anon_sym_await, - STATE(2046), 1, - sym_primary_expression, - STATE(2073), 1, - sym_string, - STATE(2357), 1, - sym_list_splat_pattern, - STATE(3858), 1, - sym_expression, - STATE(5557), 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, + [36121] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1905), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1915), 4, + ACTIONS(3505), 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(2797), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3507), 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(3846), 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(2255), 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, - [37424] = 26, - ACTIONS(1907), 1, - anon_sym_LPAREN, - ACTIONS(1913), 1, - anon_sym_LBRACK, - ACTIONS(1917), 1, - anon_sym_LBRACE, - ACTIONS(1921), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1923), 1, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, anon_sym_None, - ACTIONS(1925), 1, - sym_float, - ACTIONS(1929), 1, - anon_sym_sizeof, - ACTIONS(1931), 1, - sym_string_start, - ACTIONS(2653), 1, - anon_sym_STAR, - ACTIONS(2661), 1, - anon_sym_LT, - ACTIONS(2793), 1, + sym_integer, sym_identifier, - ACTIONS(2801), 1, anon_sym_await, - ACTIONS(3537), 1, - anon_sym_not, - ACTIONS(3539), 1, - anon_sym_lambda, - ACTIONS(3541), 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, - STATE(2051), 1, - sym_primary_expression, - STATE(2073), 1, - sym_string, - STATE(2338), 1, - sym_expression, - STATE(2357), 1, - sym_list_splat_pattern, - STATE(5442), 1, - sym__named_expression_lhs, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [36190] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1905), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1915), 4, + ACTIONS(3509), 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(2797), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3511), 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(2345), 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(2255), 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, - [37539] = 26, + 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, + [36259] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -152308,25 +151865,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(107), 1, sym_string_start, - ACTIONS(577), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(614), 1, + ACTIONS(1041), 1, anon_sym_await, ACTIONS(1281), 1, anon_sym_LPAREN, ACTIONS(1287), 1, anon_sym_LBRACK, - ACTIONS(3071), 1, + ACTIONS(3073), 1, anon_sym_STAR, - STATE(2024), 1, + STATE(2032), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2043), 1, sym_string, STATE(2088), 1, sym_list_splat_pattern, - STATE(4040), 1, + STATE(4075), 1, sym_expression, - STATE(5564), 1, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -152340,13 +151897,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -152355,7 +151912,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -152376,66 +151933,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [37654] = 26, - ACTIONS(1907), 1, - anon_sym_LPAREN, - ACTIONS(1913), 1, + [36374] = 26, + ACTIONS(1382), 1, anon_sym_LBRACK, - ACTIONS(1917), 1, + ACTIONS(1386), 1, anon_sym_LBRACE, - ACTIONS(1921), 1, + ACTIONS(1388), 1, + anon_sym_not, + ACTIONS(1390), 1, + anon_sym_LT, + ACTIONS(1392), 1, + anon_sym_lambda, + ACTIONS(1394), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1923), 1, + ACTIONS(1396), 1, anon_sym_None, - ACTIONS(1925), 1, + ACTIONS(1400), 1, sym_float, - ACTIONS(1929), 1, + ACTIONS(1404), 1, + anon_sym_new, + ACTIONS(1406), 1, anon_sym_sizeof, - ACTIONS(1931), 1, + ACTIONS(1408), 1, sym_string_start, - ACTIONS(2653), 1, + ACTIONS(2397), 1, anon_sym_STAR, - ACTIONS(2659), 1, - anon_sym_not, - ACTIONS(2661), 1, - anon_sym_LT, - ACTIONS(2663), 1, - anon_sym_lambda, - ACTIONS(2669), 1, - anon_sym_new, - ACTIONS(2793), 1, - sym_identifier, - ACTIONS(2801), 1, + ACTIONS(2401), 1, anon_sym_await, - STATE(2046), 1, + ACTIONS(2449), 1, + anon_sym_LPAREN, + ACTIONS(3037), 1, + sym_identifier, + STATE(2163), 1, sym_primary_expression, - STATE(2073), 1, + STATE(2393), 1, sym_string, - STATE(2357), 1, + STATE(2644), 1, sym_list_splat_pattern, - STATE(3860), 1, + STATE(4262), 1, sym_expression, - STATE(5557), 1, + STATE(5398), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1905), 3, + ACTIONS(1398), 3, sym_integer, sym_true, sym_false, - ACTIONS(1915), 4, + ACTIONS(1384), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2797), 5, + ACTIONS(2399), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3846), 8, + STATE(2652), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -152444,7 +152001,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2255), 20, + STATE(2651), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -152465,7 +152022,139 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [37769] = 26, + [36489] = 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, + [36558] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3417), 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(3419), 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, + [36627] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -152486,25 +152175,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(107), 1, sym_string_start, - ACTIONS(577), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(614), 1, + ACTIONS(1041), 1, anon_sym_await, ACTIONS(1281), 1, anon_sym_LPAREN, ACTIONS(1287), 1, anon_sym_LBRACK, - ACTIONS(3071), 1, + ACTIONS(3073), 1, anon_sym_STAR, - STATE(2024), 1, + STATE(2032), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2043), 1, sym_string, STATE(2088), 1, sym_list_splat_pattern, - STATE(4054), 1, + STATE(4081), 1, sym_expression, - STATE(5564), 1, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -152518,13 +152207,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -152533,7 +152222,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -152554,280 +152243,409 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [37884] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, + [36742] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3513), 14, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(1219), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(1223), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(1225), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3515), 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(1231), 1, anon_sym_lambda, - ACTIONS(1233), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + anon_sym_yield, anon_sym_None, - ACTIONS(1239), 1, - sym_float, - ACTIONS(1241), 1, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(1243), 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(1245), 1, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, anon_sym_sizeof, - ACTIONS(1247), 1, - sym_string_start, - ACTIONS(2735), 1, - anon_sym_LT, - ACTIONS(3009), 1, - anon_sym_STAR, - STATE(2067), 1, - sym_primary_expression, - STATE(2140), 1, - sym_string, - STATE(2432), 1, - sym_list_splat_pattern, - STATE(4188), 1, - sym_expression, - STATE(5469), 1, - sym__named_expression_lhs, + [36811] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1227), 4, + ACTIONS(3505), 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(1217), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3507), 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(3081), 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(2549), 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, - [37999] = 26, - ACTIONS(1907), 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, + [36880] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3509), 14, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(1913), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(1917), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(1921), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, anon_sym_DOT_DOT_DOT, - ACTIONS(1923), 1, - anon_sym_None, - ACTIONS(1925), 1, sym_float, - ACTIONS(1929), 1, - anon_sym_sizeof, - ACTIONS(1931), 1, - sym_string_start, - ACTIONS(2653), 1, - anon_sym_STAR, - ACTIONS(2661), 1, - anon_sym_LT, - ACTIONS(2793), 1, - sym_identifier, - ACTIONS(2801), 1, - anon_sym_await, - ACTIONS(3537), 1, + ACTIONS(3511), 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(3539), 1, anon_sym_lambda, - ACTIONS(3541), 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(2051), 1, - sym_primary_expression, - STATE(2073), 1, - sym_string, - STATE(2347), 1, - sym_expression, - STATE(2357), 1, - sym_list_splat_pattern, - STATE(5442), 1, - sym__named_expression_lhs, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [36949] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1905), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1915), 4, + ACTIONS(3513), 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(2797), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3515), 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(2345), 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(2255), 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, - [38114] = 26, - ACTIONS(1907), 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, + [37018] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3519), 14, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(1913), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(1917), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(1921), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, anon_sym_DOT_DOT_DOT, - ACTIONS(1923), 1, - anon_sym_None, - ACTIONS(1925), 1, sym_float, - ACTIONS(1929), 1, - anon_sym_sizeof, - ACTIONS(1931), 1, - sym_string_start, - ACTIONS(2653), 1, - anon_sym_STAR, - ACTIONS(2659), 1, + ACTIONS(3517), 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(2661), 1, - anon_sym_LT, - ACTIONS(2663), 1, anon_sym_lambda, - ACTIONS(2669), 1, - anon_sym_new, - ACTIONS(2793), 1, + anon_sym_yield, + anon_sym_None, + sym_integer, sym_identifier, - ACTIONS(2801), 1, anon_sym_await, - STATE(2046), 1, - sym_primary_expression, - STATE(2073), 1, - sym_string, - STATE(2357), 1, - sym_list_splat_pattern, - STATE(3862), 1, - sym_expression, - STATE(5557), 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, + [37087] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1905), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1915), 4, + ACTIONS(3523), 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(2797), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3521), 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(3846), 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(2255), 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, - [38229] = 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, + [37156] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3543), 14, + ACTIONS(3527), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -152840,7 +152658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3545), 46, + ACTIONS(3525), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -152887,185 +152705,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [38298] = 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(577), 1, - sym_identifier, - ACTIONS(614), 1, - anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3071), 1, - anon_sym_STAR, - STATE(2024), 1, - sym_primary_expression, - STATE(2034), 1, - sym_string, - STATE(2088), 1, - sym_list_splat_pattern, - STATE(3948), 1, - sym_expression, - STATE(5564), 1, - sym__named_expression_lhs, + [37225] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(65), 4, + ACTIONS(3531), 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(592), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3529), 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(3429), 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(2123), 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, - [38413] = 26, - ACTIONS(1382), 1, - anon_sym_LBRACK, - ACTIONS(1386), 1, - anon_sym_LBRACE, - ACTIONS(1388), 1, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(1390), 1, - anon_sym_LT, - ACTIONS(1392), 1, anon_sym_lambda, - ACTIONS(1394), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, + anon_sym_yield, anon_sym_None, - ACTIONS(1400), 1, - sym_float, - ACTIONS(1404), 1, - anon_sym_new, - ACTIONS(1406), 1, - anon_sym_sizeof, - ACTIONS(1408), 1, - sym_string_start, - ACTIONS(2439), 1, - anon_sym_LPAREN, - ACTIONS(2955), 1, + sym_integer, sym_identifier, - ACTIONS(2961), 1, anon_sym_await, - ACTIONS(3055), 1, - anon_sym_STAR, - STATE(2151), 1, - sym_primary_expression, - STATE(2302), 1, - sym_string, - STATE(2671), 1, - sym_list_splat_pattern, - STATE(4251), 1, - sym_expression, - STATE(5468), 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, + [37294] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1398), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1384), 4, + ACTIONS(3535), 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(2959), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3533), 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(2716), 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(2715), 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, - [38528] = 26, + 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, + [37363] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -153086,25 +152858,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(107), 1, sym_string_start, - ACTIONS(577), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(614), 1, + ACTIONS(1041), 1, anon_sym_await, ACTIONS(1281), 1, anon_sym_LPAREN, ACTIONS(1287), 1, anon_sym_LBRACK, - ACTIONS(3071), 1, + ACTIONS(3073), 1, anon_sym_STAR, - STATE(2024), 1, + STATE(2032), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2043), 1, sym_string, STATE(2088), 1, sym_list_splat_pattern, - STATE(3887), 1, + STATE(3504), 1, sym_expression, - STATE(5564), 1, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -153118,13 +152890,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -153133,7 +152905,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -153154,547 +152926,409 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [38643] = 26, - ACTIONS(1382), 1, - anon_sym_LBRACK, - ACTIONS(1386), 1, - anon_sym_LBRACE, - ACTIONS(1388), 1, - anon_sym_not, - ACTIONS(1390), 1, - anon_sym_LT, - ACTIONS(1392), 1, - anon_sym_lambda, - ACTIONS(1394), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, - anon_sym_None, - ACTIONS(1400), 1, - sym_float, - ACTIONS(1404), 1, - anon_sym_new, - ACTIONS(1406), 1, - anon_sym_sizeof, - ACTIONS(1408), 1, - sym_string_start, - ACTIONS(2439), 1, - anon_sym_LPAREN, - ACTIONS(2955), 1, - sym_identifier, - ACTIONS(2961), 1, - anon_sym_await, - ACTIONS(3055), 1, - anon_sym_STAR, - STATE(2151), 1, - sym_primary_expression, - STATE(2302), 1, - sym_string, - STATE(2671), 1, - sym_list_splat_pattern, - STATE(4253), 1, - sym_expression, - STATE(5468), 1, - sym__named_expression_lhs, + [37478] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1398), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1384), 4, + ACTIONS(3539), 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(2959), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3537), 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(2716), 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(2715), 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, - [38758] = 26, - ACTIONS(1382), 1, - anon_sym_LBRACK, - ACTIONS(1386), 1, - anon_sym_LBRACE, - ACTIONS(1388), 1, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(1390), 1, - anon_sym_LT, - ACTIONS(1392), 1, anon_sym_lambda, - ACTIONS(1394), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, + anon_sym_yield, anon_sym_None, - ACTIONS(1400), 1, - sym_float, - ACTIONS(1404), 1, - anon_sym_new, - ACTIONS(1406), 1, - anon_sym_sizeof, - ACTIONS(1408), 1, - sym_string_start, - ACTIONS(2439), 1, - anon_sym_LPAREN, - ACTIONS(2955), 1, + sym_integer, sym_identifier, - ACTIONS(2961), 1, anon_sym_await, - ACTIONS(3055), 1, - anon_sym_STAR, - STATE(2151), 1, - sym_primary_expression, - STATE(2302), 1, - sym_string, - STATE(2671), 1, - sym_list_splat_pattern, - STATE(4255), 1, - sym_expression, - STATE(5468), 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, + [37547] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1398), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1384), 4, + ACTIONS(3543), 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(2959), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3541), 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(2716), 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(2715), 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, - [38873] = 26, - ACTIONS(1382), 1, - anon_sym_LBRACK, - ACTIONS(1386), 1, - anon_sym_LBRACE, - ACTIONS(1388), 1, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(1390), 1, - anon_sym_LT, - ACTIONS(1392), 1, anon_sym_lambda, - ACTIONS(1394), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, + anon_sym_yield, anon_sym_None, - ACTIONS(1400), 1, - sym_float, - ACTIONS(1404), 1, - anon_sym_new, - ACTIONS(1406), 1, - anon_sym_sizeof, - ACTIONS(1408), 1, - sym_string_start, - ACTIONS(2439), 1, - anon_sym_LPAREN, - ACTIONS(2955), 1, + sym_integer, sym_identifier, - ACTIONS(2961), 1, anon_sym_await, - ACTIONS(3055), 1, - anon_sym_STAR, - STATE(2151), 1, - sym_primary_expression, - STATE(2302), 1, - sym_string, - STATE(2669), 1, - sym_expression, - STATE(2671), 1, - sym_list_splat_pattern, - STATE(5468), 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, + [37616] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1398), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1384), 4, + ACTIONS(3547), 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(2959), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3545), 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(2716), 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(2715), 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, - [38988] = 26, - ACTIONS(1382), 1, - anon_sym_LBRACK, - ACTIONS(1386), 1, - anon_sym_LBRACE, - ACTIONS(1388), 1, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(1390), 1, - anon_sym_LT, - ACTIONS(1392), 1, anon_sym_lambda, - ACTIONS(1394), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, + anon_sym_yield, anon_sym_None, - ACTIONS(1400), 1, - sym_float, - ACTIONS(1404), 1, - anon_sym_new, - ACTIONS(1406), 1, - anon_sym_sizeof, - ACTIONS(1408), 1, - sym_string_start, - ACTIONS(2439), 1, - anon_sym_LPAREN, - ACTIONS(2955), 1, + sym_integer, sym_identifier, - ACTIONS(2961), 1, anon_sym_await, - ACTIONS(3055), 1, - anon_sym_STAR, - STATE(2151), 1, - sym_primary_expression, - STATE(2302), 1, - sym_string, - STATE(2671), 1, - sym_list_splat_pattern, - STATE(4261), 1, - sym_expression, - STATE(5468), 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, + [37685] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1398), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1384), 4, + ACTIONS(3551), 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(2959), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3549), 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(2716), 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(2715), 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, - [39103] = 26, - ACTIONS(1382), 1, - anon_sym_LBRACK, - ACTIONS(1386), 1, - anon_sym_LBRACE, - ACTIONS(1390), 1, - anon_sym_LT, - ACTIONS(1394), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, anon_sym_None, - ACTIONS(1400), 1, - sym_float, - ACTIONS(1406), 1, - anon_sym_sizeof, - ACTIONS(1408), 1, - sym_string_start, - ACTIONS(2439), 1, - anon_sym_LPAREN, - ACTIONS(2955), 1, + sym_integer, sym_identifier, - ACTIONS(2961), 1, anon_sym_await, - ACTIONS(3055), 1, - anon_sym_STAR, - ACTIONS(3547), 1, - anon_sym_not, - ACTIONS(3549), 1, - anon_sym_lambda, - ACTIONS(3551), 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, - STATE(2152), 1, - sym_primary_expression, - STATE(2302), 1, - sym_string, - STATE(2671), 1, - sym_list_splat_pattern, - STATE(2717), 1, - sym_expression, - STATE(5454), 1, - sym__named_expression_lhs, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [37754] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1398), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1384), 4, + ACTIONS(3555), 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(2959), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3553), 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(2716), 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(2715), 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, - [39218] = 26, - ACTIONS(1382), 1, - anon_sym_LBRACK, - ACTIONS(1386), 1, - anon_sym_LBRACE, - ACTIONS(1388), 1, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(1390), 1, - anon_sym_LT, - ACTIONS(1392), 1, anon_sym_lambda, - ACTIONS(1394), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, + anon_sym_yield, anon_sym_None, - ACTIONS(1400), 1, - sym_float, - ACTIONS(1404), 1, - anon_sym_new, - ACTIONS(1406), 1, - anon_sym_sizeof, - ACTIONS(1408), 1, - sym_string_start, - ACTIONS(2439), 1, - anon_sym_LPAREN, - ACTIONS(2955), 1, + sym_integer, sym_identifier, - ACTIONS(2961), 1, anon_sym_await, - ACTIONS(3055), 1, - anon_sym_STAR, - STATE(2151), 1, - sym_primary_expression, - STATE(2302), 1, - sym_string, - STATE(2671), 1, - sym_list_splat_pattern, - STATE(4273), 1, - sym_expression, - STATE(5468), 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, + [37823] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1398), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1384), 4, + ACTIONS(3559), 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(2959), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3557), 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(2716), 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(2715), 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, - [39333] = 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, + [37892] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3553), 14, + ACTIONS(3337), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -153707,7 +153341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3555), 46, + ACTIONS(3339), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -153754,278 +153388,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [39402] = 26, - ACTIONS(1382), 1, - anon_sym_LBRACK, - ACTIONS(1386), 1, - anon_sym_LBRACE, - ACTIONS(1390), 1, - anon_sym_LT, - ACTIONS(1394), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, - anon_sym_None, - ACTIONS(1400), 1, - sym_float, - ACTIONS(1406), 1, - anon_sym_sizeof, - ACTIONS(1408), 1, - sym_string_start, - ACTIONS(2439), 1, - anon_sym_LPAREN, - ACTIONS(2955), 1, - sym_identifier, - ACTIONS(2961), 1, - anon_sym_await, - ACTIONS(3055), 1, - anon_sym_STAR, - ACTIONS(3547), 1, - anon_sym_not, - ACTIONS(3549), 1, - anon_sym_lambda, - ACTIONS(3551), 1, - anon_sym_new, - STATE(2152), 1, - sym_primary_expression, - STATE(2302), 1, - sym_string, - STATE(2671), 1, - sym_list_splat_pattern, - STATE(2701), 1, - sym_expression, - STATE(5454), 1, - sym__named_expression_lhs, + [37961] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1398), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1384), 4, + ACTIONS(3563), 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(2959), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3561), 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(2716), 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(2715), 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, - [39517] = 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(77), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + anon_sym_yield, 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(577), 1, + sym_integer, sym_identifier, - ACTIONS(614), 1, anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3071), 1, - anon_sym_STAR, - STATE(2024), 1, - sym_primary_expression, - STATE(2034), 1, - sym_string, - STATE(2088), 1, - sym_list_splat_pattern, - STATE(4221), 1, - sym_expression, - STATE(5564), 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, + [38030] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(65), 4, + ACTIONS(3567), 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(592), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3565), 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(3429), 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(2123), 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, - [39632] = 26, - ACTIONS(1382), 1, - anon_sym_LBRACK, - ACTIONS(1386), 1, - anon_sym_LBRACE, - ACTIONS(1388), 1, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(1390), 1, - anon_sym_LT, - ACTIONS(1392), 1, anon_sym_lambda, - ACTIONS(1394), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, + anon_sym_yield, anon_sym_None, - ACTIONS(1400), 1, - sym_float, - ACTIONS(1404), 1, - anon_sym_new, - ACTIONS(1406), 1, - anon_sym_sizeof, - ACTIONS(1408), 1, - sym_string_start, - ACTIONS(2439), 1, - anon_sym_LPAREN, - ACTIONS(2955), 1, + sym_integer, sym_identifier, - ACTIONS(2961), 1, anon_sym_await, - ACTIONS(3055), 1, - anon_sym_STAR, - STATE(2151), 1, - sym_primary_expression, - STATE(2302), 1, - sym_string, - STATE(2671), 1, - sym_list_splat_pattern, - STATE(4262), 1, - sym_expression, - STATE(5468), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1398), 3, - sym_integer, + anon_sym_api, sym_true, sym_false, - ACTIONS(1384), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2959), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2716), 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(2715), 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, - [39747] = 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, + [38099] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3557), 14, + ACTIONS(2363), 14, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -154040,7 +153539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3559), 46, + ACTIONS(2361), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -154087,66 +153586,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [39816] = 26, - ACTIONS(67), 1, + [38168] = 26, + ACTIONS(1382), 1, + anon_sym_LBRACK, + ACTIONS(1386), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(1388), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1390), 1, anon_sym_LT, - ACTIONS(73), 1, + ACTIONS(1392), 1, anon_sym_lambda, - ACTIONS(77), 1, + ACTIONS(1394), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1396), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1400), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(1404), 1, anon_sym_new, - ACTIONS(105), 1, + ACTIONS(1406), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1408), 1, sym_string_start, - ACTIONS(577), 1, - sym_identifier, - ACTIONS(614), 1, + ACTIONS(2401), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(2449), 1, anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3071), 1, + ACTIONS(3037), 1, + sym_identifier, + ACTIONS(3569), 1, anon_sym_STAR, - STATE(2024), 1, + STATE(2163), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2393), 1, sym_string, - STATE(2088), 1, + STATE(2644), 1, sym_list_splat_pattern, - STATE(4314), 1, + STATE(4086), 1, sym_expression, - STATE(5564), 1, + STATE(5398), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1398), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1384), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(2399), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(2652), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -154155,7 +153654,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2651), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -154176,66 +153675,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [39931] = 26, - ACTIONS(2451), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_LBRACK, - ACTIONS(2461), 1, + [38283] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2465), 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(2467), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2469), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(2473), 1, + ACTIONS(99), 1, + anon_sym_new, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(2475), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2637), 1, - anon_sym_not, - ACTIONS(2639), 1, - anon_sym_LT, - ACTIONS(2641), 1, - anon_sym_lambda, - ACTIONS(2643), 1, - anon_sym_await, - ACTIONS(2645), 1, - anon_sym_new, - ACTIONS(2963), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(3105), 1, + ACTIONS(1041), 1, + anon_sym_await, + ACTIONS(1281), 1, + anon_sym_LPAREN, + ACTIONS(1287), 1, + anon_sym_LBRACK, + ACTIONS(3073), 1, anon_sym_STAR, - STATE(2077), 1, + STATE(2032), 1, sym_primary_expression, - STATE(2218), 1, + STATE(2043), 1, sym_string, - STATE(2591), 1, + STATE(2088), 1, sym_list_splat_pattern, - STATE(3851), 1, + STATE(4192), 1, sym_expression, - STATE(5609), 1, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2449), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(2459), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2631), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2604), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -154244,7 +153743,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2631), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -154265,66 +153764,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [40046] = 26, - ACTIONS(2451), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_LBRACK, - ACTIONS(2461), 1, + [38398] = 26, + ACTIONS(1328), 1, anon_sym_LBRACE, - ACTIONS(2465), 1, + ACTIONS(1330), 1, + anon_sym_not, + ACTIONS(1332), 1, + anon_sym_LT, + ACTIONS(1334), 1, + anon_sym_lambda, + ACTIONS(1338), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2467), 1, + ACTIONS(1340), 1, anon_sym_None, - ACTIONS(2469), 1, + ACTIONS(1344), 1, sym_float, - ACTIONS(2473), 1, + ACTIONS(1350), 1, + anon_sym_new, + ACTIONS(1360), 1, anon_sym_sizeof, - ACTIONS(2475), 1, + ACTIONS(1362), 1, sym_string_start, - ACTIONS(2637), 1, - anon_sym_not, - ACTIONS(2639), 1, - anon_sym_LT, - ACTIONS(2641), 1, - anon_sym_lambda, - ACTIONS(2643), 1, + ACTIONS(1472), 1, + anon_sym_LBRACK, + ACTIONS(1474), 1, anon_sym_await, - ACTIONS(2645), 1, - anon_sym_new, - ACTIONS(2963), 1, + ACTIONS(2377), 1, + anon_sym_LPAREN, + ACTIONS(2787), 1, sym_identifier, - ACTIONS(3105), 1, + ACTIONS(2965), 1, anon_sym_STAR, - STATE(2077), 1, + STATE(2066), 1, sym_primary_expression, - STATE(2218), 1, + STATE(2147), 1, sym_string, - STATE(2591), 1, + STATE(2472), 1, sym_list_splat_pattern, - STATE(3859), 1, + STATE(4129), 1, sym_expression, - STATE(5609), 1, + STATE(5522), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2449), 3, + ACTIONS(1342), 3, sym_integer, sym_true, sym_false, - ACTIONS(2459), 4, + ACTIONS(1326), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2631), 5, + ACTIONS(1470), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2604), 8, + STATE(2421), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -154333,7 +153832,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2631), 20, + STATE(2414), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -154354,66 +153853,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [40161] = 26, - ACTIONS(2451), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_LBRACK, - ACTIONS(2461), 1, + [38513] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2465), 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(2467), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2469), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(2473), 1, + ACTIONS(99), 1, + anon_sym_new, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(2475), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2637), 1, - anon_sym_not, - ACTIONS(2639), 1, - anon_sym_LT, - ACTIONS(2641), 1, - anon_sym_lambda, - ACTIONS(2643), 1, - anon_sym_await, - ACTIONS(2645), 1, - anon_sym_new, - ACTIONS(2963), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(3105), 1, + ACTIONS(1041), 1, + anon_sym_await, + ACTIONS(1281), 1, + anon_sym_LPAREN, + ACTIONS(1287), 1, + anon_sym_LBRACK, + ACTIONS(3073), 1, anon_sym_STAR, - STATE(2077), 1, + STATE(2032), 1, sym_primary_expression, - STATE(2218), 1, + STATE(2043), 1, sym_string, - STATE(2591), 1, + STATE(2088), 1, sym_list_splat_pattern, - STATE(3863), 1, + STATE(3946), 1, sym_expression, - STATE(5609), 1, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2449), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(2459), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2631), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2604), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -154422,7 +153921,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2631), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -154443,333 +153942,396 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [40276] = 26, - ACTIONS(2451), 1, + [38628] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3573), 14, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(2457), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(2461), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(2465), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, anon_sym_DOT_DOT_DOT, - ACTIONS(2467), 1, - anon_sym_None, - ACTIONS(2469), 1, sym_float, - ACTIONS(2473), 1, - anon_sym_sizeof, - ACTIONS(2475), 1, - sym_string_start, - ACTIONS(2637), 1, + ACTIONS(3571), 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(2639), 1, - anon_sym_LT, - ACTIONS(2641), 1, anon_sym_lambda, - ACTIONS(2643), 1, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(2645), 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(2963), 1, - sym_identifier, - ACTIONS(3105), 1, - anon_sym_STAR, - STATE(2077), 1, - sym_primary_expression, - STATE(2218), 1, - sym_string, - STATE(2567), 1, - sym_expression, - STATE(2591), 1, - sym_list_splat_pattern, - STATE(5609), 1, - sym__named_expression_lhs, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [38697] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2449), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2459), 4, + ACTIONS(3577), 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(2631), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3575), 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(2604), 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(2631), 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, - [40391] = 26, - ACTIONS(2451), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_LBRACK, - ACTIONS(2461), 1, - anon_sym_LBRACE, - ACTIONS(2465), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2467), 1, - anon_sym_None, - ACTIONS(2469), 1, - sym_float, - ACTIONS(2473), 1, - anon_sym_sizeof, - ACTIONS(2475), 1, - sym_string_start, - ACTIONS(2637), 1, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(2639), 1, - anon_sym_LT, - ACTIONS(2641), 1, anon_sym_lambda, - ACTIONS(2643), 1, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(2645), 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(2963), 1, - sym_identifier, - ACTIONS(3105), 1, - anon_sym_STAR, - STATE(2077), 1, - sym_primary_expression, - STATE(2218), 1, - sym_string, - STATE(2591), 1, - sym_list_splat_pattern, - STATE(3867), 1, - sym_expression, - STATE(5609), 1, - sym__named_expression_lhs, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [38766] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2449), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2459), 4, + ACTIONS(3579), 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(2631), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3581), 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(2604), 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(2631), 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, - [40506] = 26, - ACTIONS(2451), 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, + [38835] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3583), 14, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(2457), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(2461), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(2465), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, anon_sym_DOT_DOT_DOT, - ACTIONS(2467), 1, - anon_sym_None, - ACTIONS(2469), 1, sym_float, - ACTIONS(2473), 1, - anon_sym_sizeof, - ACTIONS(2475), 1, - sym_string_start, - ACTIONS(2639), 1, - anon_sym_LT, - ACTIONS(2643), 1, - anon_sym_await, - ACTIONS(2963), 1, - sym_identifier, - ACTIONS(3105), 1, - anon_sym_STAR, - ACTIONS(3561), 1, + ACTIONS(3585), 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(3563), 1, anon_sym_lambda, - ACTIONS(3565), 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(2099), 1, - sym_primary_expression, - STATE(2218), 1, - sym_string, - STATE(2570), 1, - sym_expression, - STATE(2591), 1, - sym_list_splat_pattern, - STATE(5466), 1, - sym__named_expression_lhs, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [38904] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2449), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2459), 4, + ACTIONS(3587), 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(2631), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3589), 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(2604), 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(2631), 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, - [40621] = 26, - ACTIONS(2451), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_LBRACK, - ACTIONS(2461), 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, + [38973] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2465), 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(2467), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2469), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(2473), 1, + ACTIONS(99), 1, + anon_sym_new, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(2475), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2637), 1, - anon_sym_not, - ACTIONS(2639), 1, - anon_sym_LT, - ACTIONS(2641), 1, - anon_sym_lambda, - ACTIONS(2643), 1, - anon_sym_await, - ACTIONS(2645), 1, - anon_sym_new, - ACTIONS(2963), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(3105), 1, + ACTIONS(1041), 1, + anon_sym_await, + ACTIONS(1281), 1, + anon_sym_LPAREN, + ACTIONS(1287), 1, + anon_sym_LBRACK, + ACTIONS(3073), 1, anon_sym_STAR, - STATE(2077), 1, + STATE(2032), 1, sym_primary_expression, - STATE(2218), 1, + STATE(2043), 1, sym_string, - STATE(2591), 1, + STATE(2088), 1, sym_list_splat_pattern, - STATE(3790), 1, + STATE(3964), 1, sym_expression, - STATE(5609), 1, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2449), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(2459), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2631), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2604), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -154778,7 +154340,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2631), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -154799,101 +154361,77 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [40736] = 27, - ACTIONS(1382), 1, - anon_sym_LBRACK, - ACTIONS(1386), 1, - anon_sym_LBRACE, - ACTIONS(1388), 1, - anon_sym_not, - ACTIONS(1390), 1, - anon_sym_LT, - ACTIONS(1392), 1, - anon_sym_lambda, - ACTIONS(1394), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, - anon_sym_None, - ACTIONS(1400), 1, - sym_float, - ACTIONS(1404), 1, - anon_sym_new, - ACTIONS(1406), 1, - anon_sym_sizeof, - ACTIONS(1408), 1, - sym_string_start, - ACTIONS(2439), 1, - anon_sym_LPAREN, - ACTIONS(3055), 1, - anon_sym_STAR, - ACTIONS(3567), 1, - sym_identifier, - ACTIONS(3571), 1, - anon_sym_await, - STATE(2154), 1, - sym_primary_expression, - STATE(2302), 1, - sym_string, - STATE(2671), 1, - sym_list_splat_pattern, - STATE(4248), 1, - sym_expression, - STATE(5468), 1, - sym__named_expression_lhs, + [39088] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2468), 2, - sym_attribute, - sym_subscript, - ACTIONS(1398), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1384), 4, + ACTIONS(3591), 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(3569), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3593), 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(2716), 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(2715), 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, - [40853] = 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, + [39157] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3317), 14, + ACTIONS(3595), 14, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -154908,7 +154446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3319), 46, + ACTIONS(3597), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -154955,191 +154493,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [40922] = 26, - ACTIONS(2451), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_LBRACK, - ACTIONS(2461), 1, - anon_sym_LBRACE, - ACTIONS(2465), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2467), 1, - anon_sym_None, - ACTIONS(2469), 1, - sym_float, - ACTIONS(2473), 1, - anon_sym_sizeof, - ACTIONS(2475), 1, - sym_string_start, - ACTIONS(2639), 1, - anon_sym_LT, - ACTIONS(2643), 1, - anon_sym_await, - ACTIONS(2963), 1, - sym_identifier, - ACTIONS(3105), 1, - anon_sym_STAR, - ACTIONS(3561), 1, - anon_sym_not, - ACTIONS(3563), 1, - anon_sym_lambda, - ACTIONS(3565), 1, - anon_sym_new, - STATE(2099), 1, - sym_primary_expression, - STATE(2218), 1, - sym_string, - STATE(2572), 1, - sym_expression, - STATE(2591), 1, - sym_list_splat_pattern, - STATE(5466), 1, - sym__named_expression_lhs, + [39226] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2449), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2459), 4, + ACTIONS(3453), 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(2631), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3451), 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(2604), 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(2631), 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, - [41037] = 26, - ACTIONS(2451), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_LBRACK, - ACTIONS(2461), 1, - anon_sym_LBRACE, - ACTIONS(2465), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2467), 1, - anon_sym_None, - ACTIONS(2469), 1, - sym_float, - ACTIONS(2473), 1, - anon_sym_sizeof, - ACTIONS(2475), 1, - sym_string_start, - ACTIONS(2637), 1, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(2639), 1, - anon_sym_LT, - ACTIONS(2641), 1, anon_sym_lambda, - ACTIONS(2643), 1, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(2645), 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(2963), 1, - sym_identifier, - ACTIONS(3105), 1, - anon_sym_STAR, - STATE(2077), 1, - sym_primary_expression, - STATE(2218), 1, - sym_string, - STATE(2591), 1, - sym_list_splat_pattern, - STATE(3796), 1, - sym_expression, - STATE(5609), 1, - sym__named_expression_lhs, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [39295] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2449), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2459), 4, + ACTIONS(3601), 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(2631), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3599), 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(2604), 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(2631), 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, - [41152] = 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, + [39364] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2779), 14, + ACTIONS(3605), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -155152,7 +154644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2777), 46, + ACTIONS(3603), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -155199,66 +154691,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [41221] = 26, - ACTIONS(1328), 1, + [39433] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1330), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1332), 1, + ACTIONS(71), 1, anon_sym_LT, - ACTIONS(1334), 1, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(1338), 1, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1340), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1344), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(1350), 1, + ACTIONS(99), 1, anon_sym_new, - ACTIONS(1360), 1, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(1362), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(1472), 1, - anon_sym_LBRACK, - ACTIONS(1474), 1, + ACTIONS(1001), 1, + sym_identifier, + ACTIONS(1041), 1, anon_sym_await, - ACTIONS(2427), 1, + ACTIONS(1281), 1, anon_sym_LPAREN, - ACTIONS(2761), 1, - sym_identifier, - ACTIONS(2939), 1, + ACTIONS(1287), 1, + anon_sym_LBRACK, + ACTIONS(3073), 1, anon_sym_STAR, - STATE(2060), 1, + STATE(2032), 1, sym_primary_expression, - STATE(2170), 1, + STATE(2043), 1, sym_string, - STATE(2475), 1, - sym_expression, - STATE(2477), 1, + STATE(2088), 1, sym_list_splat_pattern, - STATE(5688), 1, + STATE(4101), 1, + sym_expression, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1342), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(1326), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1470), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2459), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -155267,7 +154759,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2457), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -155288,13 +154780,13 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [41336] = 3, + [39548] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3419), 14, + ACTIONS(3609), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -155307,7 +154799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3417), 46, + ACTIONS(3607), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -155354,103 +154846,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [41405] = 27, - ACTIONS(2451), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_LBRACK, - ACTIONS(2461), 1, - anon_sym_LBRACE, - ACTIONS(2465), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2467), 1, - anon_sym_None, - ACTIONS(2469), 1, - sym_float, - ACTIONS(2473), 1, - anon_sym_sizeof, - ACTIONS(2475), 1, - sym_string_start, - ACTIONS(2637), 1, - anon_sym_not, - ACTIONS(2639), 1, - anon_sym_LT, - ACTIONS(2641), 1, - anon_sym_lambda, - ACTIONS(2645), 1, - anon_sym_new, - ACTIONS(3105), 1, - anon_sym_STAR, - ACTIONS(3573), 1, - sym_identifier, - ACTIONS(3577), 1, - anon_sym_await, - STATE(2168), 1, - sym_primary_expression, - STATE(2218), 1, - sym_string, - STATE(2591), 1, - sym_list_splat_pattern, - STATE(4168), 1, - sym_expression, - STATE(5609), 1, - sym__named_expression_lhs, + [39617] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2476), 2, - sym_attribute, - sym_subscript, - ACTIONS(2449), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2459), 4, + ACTIONS(3613), 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(3575), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3611), 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(2604), 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(2631), 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, - [41522] = 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, + [39686] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3423), 14, + ACTIONS(3617), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -155463,7 +154931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3421), 46, + ACTIONS(3615), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -155510,11 +154978,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [41591] = 3, + [39755] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3427), 14, + ACTIONS(3457), 14, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -155529,7 +154997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3425), 46, + ACTIONS(3455), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -155576,66 +155044,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [41660] = 26, - ACTIONS(1382), 1, - anon_sym_LBRACK, - ACTIONS(1386), 1, + [39824] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1388), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1390), 1, + ACTIONS(71), 1, anon_sym_LT, - ACTIONS(1392), 1, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(1394), 1, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1400), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(1404), 1, + ACTIONS(99), 1, anon_sym_new, - ACTIONS(1406), 1, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(1408), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2439), 1, - anon_sym_LPAREN, - ACTIONS(2955), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(2961), 1, + ACTIONS(1041), 1, anon_sym_await, - ACTIONS(3055), 1, + ACTIONS(1281), 1, + anon_sym_LPAREN, + ACTIONS(1287), 1, + anon_sym_LBRACK, + ACTIONS(3073), 1, anon_sym_STAR, - STATE(2151), 1, + STATE(2032), 1, sym_primary_expression, - STATE(2302), 1, + STATE(2043), 1, sym_string, - STATE(2671), 1, + STATE(2088), 1, sym_list_splat_pattern, - STATE(4220), 1, + STATE(4106), 1, sym_expression, - STATE(5468), 1, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1398), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(1384), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2959), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2716), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -155644,7 +155112,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2715), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -155665,46 +155133,46 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [41775] = 26, + [39939] = 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(577), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(614), 1, + ACTIONS(1041), 1, anon_sym_await, ACTIONS(1281), 1, anon_sym_LPAREN, ACTIONS(1287), 1, anon_sym_LBRACK, - ACTIONS(3071), 1, + ACTIONS(3073), 1, anon_sym_STAR, - ACTIONS(3485), 1, - anon_sym_not, - ACTIONS(3487), 1, - anon_sym_lambda, - ACTIONS(3489), 1, - anon_sym_new, STATE(2032), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2043), 1, sym_string, STATE(2088), 1, sym_list_splat_pattern, - STATE(2115), 1, + STATE(3505), 1, sym_expression, - STATE(5496), 1, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -155718,13 +155186,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2074), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -155733,7 +155201,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -155754,13 +155222,13 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [41890] = 3, + [40054] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3579), 14, + ACTIONS(3621), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -155773,7 +155241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3581), 46, + ACTIONS(3619), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -155820,66 +155288,264 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [41959] = 26, - ACTIONS(67), 1, + [40123] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3625), 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(71), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, anon_sym_LT, - ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + sym_float, + ACTIONS(3623), 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(83), 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, + [40192] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3629), 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(105), 1, + ACTIONS(3627), 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, - ACTIONS(107), 1, + [40261] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3633), 14, + sym__dedent, sym_string_start, - ACTIONS(577), 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, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3631), 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(614), 1, anon_sym_await, - ACTIONS(1281), 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, + [40330] = 26, + ACTIONS(1211), 1, + sym_identifier, + ACTIONS(1213), 1, anon_sym_LPAREN, - ACTIONS(1287), 1, + ACTIONS(1219), 1, anon_sym_LBRACK, - ACTIONS(3071), 1, - anon_sym_STAR, - ACTIONS(3485), 1, + ACTIONS(1223), 1, + anon_sym_LBRACE, + ACTIONS(1225), 1, anon_sym_not, - ACTIONS(3487), 1, + ACTIONS(1231), 1, anon_sym_lambda, - ACTIONS(3489), 1, + ACTIONS(1233), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1235), 1, + anon_sym_None, + ACTIONS(1239), 1, + sym_float, + ACTIONS(1241), 1, + anon_sym_await, + ACTIONS(1243), 1, anon_sym_new, - STATE(2032), 1, + ACTIONS(1245), 1, + anon_sym_sizeof, + ACTIONS(1247), 1, + sym_string_start, + ACTIONS(2705), 1, + anon_sym_LT, + ACTIONS(2955), 1, + anon_sym_STAR, + STATE(2072), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2161), 1, sym_string, - STATE(2088), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(2118), 1, + STATE(4337), 1, sym_expression, - STATE(5496), 1, + STATE(5579), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1237), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1227), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(1217), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2074), 8, + STATE(3088), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -155888,7 +155554,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -155909,46 +155575,46 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [42074] = 26, + [40445] = 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(577), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(614), 1, + ACTIONS(1041), 1, anon_sym_await, ACTIONS(1281), 1, anon_sym_LPAREN, ACTIONS(1287), 1, anon_sym_LBRACK, - ACTIONS(3071), 1, + ACTIONS(3073), 1, anon_sym_STAR, - ACTIONS(3485), 1, - anon_sym_not, - ACTIONS(3487), 1, - anon_sym_lambda, - ACTIONS(3489), 1, - anon_sym_new, STATE(2032), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2043), 1, sym_string, STATE(2088), 1, sym_list_splat_pattern, - STATE(2105), 1, + STATE(3443), 1, sym_expression, - STATE(5496), 1, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -155962,13 +155628,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2074), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -155977,7 +155643,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -155998,46 +155664,46 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [42189] = 26, + [40560] = 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(577), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(614), 1, + ACTIONS(1041), 1, anon_sym_await, ACTIONS(1281), 1, anon_sym_LPAREN, ACTIONS(1287), 1, anon_sym_LBRACK, - ACTIONS(3071), 1, + ACTIONS(3073), 1, anon_sym_STAR, - ACTIONS(3485), 1, - anon_sym_not, - ACTIONS(3487), 1, - anon_sym_lambda, - ACTIONS(3489), 1, - anon_sym_new, STATE(2032), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2043), 1, sym_string, STATE(2088), 1, sym_list_splat_pattern, - STATE(2104), 1, + STATE(3506), 1, sym_expression, - STATE(5496), 1, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -156051,13 +155717,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2074), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -156066,7 +155732,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -156087,46 +155753,46 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [42304] = 26, + [40675] = 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(577), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(614), 1, + ACTIONS(1041), 1, anon_sym_await, ACTIONS(1281), 1, anon_sym_LPAREN, ACTIONS(1287), 1, anon_sym_LBRACK, - ACTIONS(3071), 1, + ACTIONS(3073), 1, anon_sym_STAR, - ACTIONS(3485), 1, - anon_sym_not, - ACTIONS(3487), 1, - anon_sym_lambda, - ACTIONS(3489), 1, - anon_sym_new, STATE(2032), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2043), 1, sym_string, STATE(2088), 1, sym_list_splat_pattern, - STATE(2094), 1, + STATE(4306), 1, sym_expression, - STATE(5496), 1, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -156140,13 +155806,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2074), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -156155,7 +155821,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -156176,100 +155842,430 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [42419] = 26, - ACTIONS(67), 1, + [40790] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3465), 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(3467), 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, + [40859] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3469), 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(3471), 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(77), 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, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [40928] = 26, + ACTIONS(1211), 1, + sym_identifier, + ACTIONS(1213), 1, + anon_sym_LPAREN, + ACTIONS(1219), 1, + anon_sym_LBRACK, + ACTIONS(1223), 1, + anon_sym_LBRACE, + ACTIONS(1225), 1, + anon_sym_not, + ACTIONS(1231), 1, + anon_sym_lambda, + ACTIONS(1233), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1235), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1239), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(1241), 1, + anon_sym_await, + ACTIONS(1243), 1, anon_sym_new, - ACTIONS(105), 1, + ACTIONS(1245), 1, + anon_sym_sizeof, + ACTIONS(1247), 1, + sym_string_start, + ACTIONS(2705), 1, + anon_sym_LT, + ACTIONS(2955), 1, + anon_sym_STAR, + STATE(2072), 1, + sym_primary_expression, + STATE(2161), 1, + sym_string, + STATE(2536), 1, + sym_list_splat_pattern, + STATE(4375), 1, + sym_expression, + STATE(5579), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1237), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1227), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1217), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3088), 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(2401), 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, + [41043] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2771), 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(2769), 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, + [41112] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3463), 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(3461), 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, - ACTIONS(107), 1, - sym_string_start, - ACTIONS(577), 1, - sym_identifier, - ACTIONS(614), 1, - anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3071), 1, - anon_sym_STAR, - STATE(2024), 1, - sym_primary_expression, - STATE(2034), 1, - sym_string, - STATE(2088), 1, - sym_list_splat_pattern, - STATE(3914), 1, - sym_expression, - STATE(5564), 1, - sym__named_expression_lhs, + [41181] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(65), 4, + ACTIONS(3519), 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(592), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3517), 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(3429), 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(2123), 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, - [42534] = 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, + [41250] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3435), 14, + ACTIONS(3523), 14, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -156284,7 +156280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3433), 46, + ACTIONS(3521), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -156331,11 +156327,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [42603] = 3, + [41319] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3583), 14, + ACTIONS(3527), 14, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -156350,7 +156346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3585), 46, + ACTIONS(3525), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -156397,7 +156393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [42672] = 26, + [41388] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -156418,25 +156414,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(107), 1, sym_string_start, - ACTIONS(577), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(614), 1, + ACTIONS(1041), 1, anon_sym_await, ACTIONS(1281), 1, anon_sym_LPAREN, ACTIONS(1287), 1, anon_sym_LBRACK, - ACTIONS(3071), 1, + ACTIONS(3073), 1, anon_sym_STAR, - STATE(2024), 1, + STATE(2032), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2043), 1, sym_string, STATE(2088), 1, sym_list_splat_pattern, - STATE(3414), 1, + STATE(4138), 1, sym_expression, - STATE(5564), 1, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -156450,13 +156446,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -156465,7 +156461,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -156486,274 +156482,205 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [42787] = 26, - ACTIONS(1907), 1, - anon_sym_LPAREN, - ACTIONS(1913), 1, - anon_sym_LBRACK, - ACTIONS(1917), 1, - anon_sym_LBRACE, - ACTIONS(1921), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1923), 1, - anon_sym_None, - ACTIONS(1925), 1, - sym_float, - ACTIONS(1929), 1, - anon_sym_sizeof, - ACTIONS(1931), 1, - sym_string_start, - ACTIONS(2653), 1, - anon_sym_STAR, - ACTIONS(2661), 1, - anon_sym_LT, - ACTIONS(2793), 1, - sym_identifier, - ACTIONS(2801), 1, - anon_sym_await, - ACTIONS(2931), 1, - anon_sym_not, - ACTIONS(2933), 1, - anon_sym_lambda, - ACTIONS(2935), 1, - anon_sym_new, - STATE(2046), 1, - sym_primary_expression, - STATE(2073), 1, - sym_string, - STATE(2357), 1, - sym_list_splat_pattern, - STATE(4167), 1, - sym_expression, - STATE(5657), 1, - sym__named_expression_lhs, + [41503] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1905), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1915), 4, + ACTIONS(3531), 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(2797), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3529), 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(3846), 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(2255), 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, - [42902] = 26, - ACTIONS(1382), 1, - anon_sym_LBRACK, - ACTIONS(1386), 1, - anon_sym_LBRACE, - ACTIONS(1388), 1, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(1390), 1, - anon_sym_LT, - ACTIONS(1392), 1, anon_sym_lambda, - ACTIONS(1394), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, + anon_sym_yield, anon_sym_None, - ACTIONS(1400), 1, - sym_float, - ACTIONS(1404), 1, - anon_sym_new, - ACTIONS(1406), 1, - anon_sym_sizeof, - ACTIONS(1408), 1, - sym_string_start, - ACTIONS(2439), 1, - anon_sym_LPAREN, - ACTIONS(2955), 1, + sym_integer, sym_identifier, - ACTIONS(2961), 1, anon_sym_await, - ACTIONS(3055), 1, - anon_sym_STAR, - STATE(2151), 1, - sym_primary_expression, - STATE(2302), 1, - sym_string, - STATE(2671), 1, - sym_list_splat_pattern, - STATE(4267), 1, - sym_expression, - STATE(5468), 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, + [41572] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1398), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1384), 4, + ACTIONS(3535), 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(2959), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3533), 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(2716), 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(2715), 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, - [43017] = 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_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, anon_sym_None, - ACTIONS(83), 1, - sym_float, - ACTIONS(105), 1, - anon_sym_sizeof, - ACTIONS(107), 1, - sym_string_start, - ACTIONS(577), 1, + sym_integer, sym_identifier, - ACTIONS(614), 1, anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3071), 1, - anon_sym_STAR, - ACTIONS(3485), 1, - anon_sym_not, - ACTIONS(3487), 1, - anon_sym_lambda, - ACTIONS(3489), 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, - STATE(2032), 1, - sym_primary_expression, - STATE(2034), 1, - sym_string, - STATE(2072), 1, - sym_expression, - STATE(2088), 1, - sym_list_splat_pattern, - STATE(5496), 1, - sym__named_expression_lhs, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [41641] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(65), 4, + ACTIONS(3579), 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(592), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3581), 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(2074), 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(2123), 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, - [43132] = 26, + 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, + [41710] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -156774,25 +156701,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(107), 1, sym_string_start, - ACTIONS(577), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(614), 1, + ACTIONS(1041), 1, anon_sym_await, ACTIONS(1281), 1, anon_sym_LPAREN, ACTIONS(1287), 1, anon_sym_LBRACK, - ACTIONS(3071), 1, + ACTIONS(3073), 1, anon_sym_STAR, - STATE(2024), 1, + STATE(2032), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2043), 1, sym_string, STATE(2088), 1, sym_list_splat_pattern, - STATE(4091), 1, + STATE(4144), 1, sym_expression, - STATE(5564), 1, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -156806,13 +156733,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -156821,7 +156748,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -156842,155 +156769,132 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [43247] = 26, - ACTIONS(2479), 1, - anon_sym_LPAREN, - ACTIONS(2485), 1, - anon_sym_LBRACK, - ACTIONS(2489), 1, - anon_sym_LBRACE, - ACTIONS(2493), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2495), 1, - anon_sym_None, - ACTIONS(2497), 1, - sym_float, - ACTIONS(2501), 1, - anon_sym_sizeof, - ACTIONS(2503), 1, - sym_string_start, - ACTIONS(2523), 1, - anon_sym_not, - ACTIONS(2525), 1, - anon_sym_LT, - ACTIONS(2527), 1, - anon_sym_lambda, - ACTIONS(2533), 1, - anon_sym_new, - ACTIONS(2803), 1, - sym_identifier, - ACTIONS(2811), 1, - anon_sym_await, - ACTIONS(2947), 1, - anon_sym_STAR, - STATE(2063), 1, - sym_primary_expression, - STATE(2157), 1, - sym_string, - STATE(2523), 1, - sym_list_splat_pattern, - STATE(4029), 1, - sym_expression, - STATE(5414), 1, - sym__named_expression_lhs, + [41825] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2487), 4, + ACTIONS(3583), 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(2807), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3585), 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(2421), 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(2418), 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, - [43362] = 26, - ACTIONS(67), 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, + [41894] = 26, + ACTIONS(1328), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1332), 1, anon_sym_LT, - ACTIONS(73), 1, - anon_sym_lambda, - ACTIONS(77), 1, + ACTIONS(1338), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1340), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1344), 1, sym_float, - ACTIONS(99), 1, - anon_sym_new, - ACTIONS(105), 1, + ACTIONS(1360), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1362), 1, sym_string_start, - ACTIONS(577), 1, - sym_identifier, - ACTIONS(614), 1, + ACTIONS(1472), 1, + anon_sym_LBRACK, + ACTIONS(1474), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(2377), 1, anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3071), 1, + ACTIONS(2787), 1, + sym_identifier, + ACTIONS(2965), 1, anon_sym_STAR, - STATE(2024), 1, + ACTIONS(3411), 1, + anon_sym_not, + ACTIONS(3413), 1, + anon_sym_lambda, + ACTIONS(3415), 1, + anon_sym_new, + STATE(2076), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2147), 1, sym_string, - STATE(2088), 1, + STATE(2472), 1, sym_list_splat_pattern, - STATE(4236), 1, + STATE(2550), 1, sym_expression, - STATE(5564), 1, + STATE(5590), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1342), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1326), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(1470), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(2421), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -156999,7 +156903,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2414), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -157020,66 +156924,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [43477] = 26, - ACTIONS(2401), 1, + [42009] = 26, + ACTIONS(2461), 1, anon_sym_LPAREN, - ACTIONS(2407), 1, + ACTIONS(2467), 1, anon_sym_LBRACK, - ACTIONS(2411), 1, + ACTIONS(2471), 1, anon_sym_LBRACE, - ACTIONS(2415), 1, + ACTIONS(2475), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2417), 1, + ACTIONS(2477), 1, anon_sym_None, - ACTIONS(2419), 1, + ACTIONS(2479), 1, sym_float, - ACTIONS(2423), 1, + ACTIONS(2483), 1, anon_sym_sizeof, - ACTIONS(2425), 1, + ACTIONS(2485), 1, sym_string_start, - ACTIONS(2535), 1, - sym_identifier, - ACTIONS(2549), 1, + ACTIONS(2647), 1, anon_sym_not, - ACTIONS(2551), 1, + ACTIONS(2649), 1, anon_sym_LT, - ACTIONS(2553), 1, + ACTIONS(2651), 1, anon_sym_lambda, - ACTIONS(2557), 1, + ACTIONS(2653), 1, anon_sym_await, - ACTIONS(2559), 1, + ACTIONS(2655), 1, anon_sym_new, - ACTIONS(2981), 1, + ACTIONS(2935), 1, + sym_identifier, + ACTIONS(3103), 1, anon_sym_STAR, - STATE(2054), 1, + STATE(2107), 1, sym_primary_expression, - STATE(2103), 1, + STATE(2200), 1, sym_string, - STATE(2309), 1, + STATE(2589), 1, sym_list_splat_pattern, - STATE(3870), 1, + STATE(4251), 1, sym_expression, - STATE(5519), 1, + STATE(5572), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2399), 3, + ACTIONS(2459), 3, sym_integer, sym_true, sym_false, - ACTIONS(2409), 4, + ACTIONS(2469), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2543), 5, + ACTIONS(2641), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2236), 8, + STATE(2631), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -157088,7 +156992,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2377), 20, + STATE(2630), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -157109,66 +157013,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [43592] = 26, - ACTIONS(1382), 1, - anon_sym_LBRACK, - ACTIONS(1386), 1, + [42124] = 26, + ACTIONS(1328), 1, anon_sym_LBRACE, - ACTIONS(1388), 1, - anon_sym_not, - ACTIONS(1390), 1, + ACTIONS(1332), 1, anon_sym_LT, - ACTIONS(1392), 1, - anon_sym_lambda, - ACTIONS(1394), 1, + ACTIONS(1338), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, + ACTIONS(1340), 1, anon_sym_None, - ACTIONS(1400), 1, + ACTIONS(1344), 1, sym_float, - ACTIONS(1404), 1, - anon_sym_new, - ACTIONS(1406), 1, + ACTIONS(1360), 1, anon_sym_sizeof, - ACTIONS(1408), 1, + ACTIONS(1362), 1, sym_string_start, - ACTIONS(2439), 1, + ACTIONS(1472), 1, + anon_sym_LBRACK, + ACTIONS(1474), 1, + anon_sym_await, + ACTIONS(2377), 1, anon_sym_LPAREN, - ACTIONS(2955), 1, + ACTIONS(2787), 1, sym_identifier, - ACTIONS(2961), 1, - anon_sym_await, - ACTIONS(3055), 1, + ACTIONS(2965), 1, anon_sym_STAR, - STATE(2151), 1, + ACTIONS(3411), 1, + anon_sym_not, + ACTIONS(3413), 1, + anon_sym_lambda, + ACTIONS(3415), 1, + anon_sym_new, + STATE(2076), 1, sym_primary_expression, - STATE(2302), 1, + STATE(2147), 1, sym_string, - STATE(2671), 1, + STATE(2472), 1, sym_list_splat_pattern, - STATE(4175), 1, + STATE(2564), 1, sym_expression, - STATE(5468), 1, + STATE(5590), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1398), 3, + ACTIONS(1342), 3, sym_integer, sym_true, sym_false, - ACTIONS(1384), 4, + ACTIONS(1326), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2959), 5, + ACTIONS(1470), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2716), 8, + STATE(2421), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -157177,7 +157081,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2715), 20, + STATE(2414), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -157198,66 +157102,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [43707] = 26, - ACTIONS(2451), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_LBRACK, - ACTIONS(2461), 1, + [42239] = 26, + ACTIONS(1328), 1, anon_sym_LBRACE, - ACTIONS(2465), 1, + ACTIONS(1332), 1, + anon_sym_LT, + ACTIONS(1338), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2467), 1, + ACTIONS(1340), 1, anon_sym_None, - ACTIONS(2469), 1, + ACTIONS(1344), 1, sym_float, - ACTIONS(2473), 1, + ACTIONS(1360), 1, anon_sym_sizeof, - ACTIONS(2475), 1, + ACTIONS(1362), 1, sym_string_start, - ACTIONS(2637), 1, - anon_sym_not, - ACTIONS(2639), 1, - anon_sym_LT, - ACTIONS(2641), 1, - anon_sym_lambda, - ACTIONS(2643), 1, + ACTIONS(1472), 1, + anon_sym_LBRACK, + ACTIONS(1474), 1, anon_sym_await, - ACTIONS(2645), 1, - anon_sym_new, - ACTIONS(2963), 1, + ACTIONS(2377), 1, + anon_sym_LPAREN, + ACTIONS(2787), 1, sym_identifier, - ACTIONS(3105), 1, + ACTIONS(2965), 1, anon_sym_STAR, - STATE(2077), 1, + ACTIONS(3411), 1, + anon_sym_not, + ACTIONS(3413), 1, + anon_sym_lambda, + ACTIONS(3415), 1, + anon_sym_new, + STATE(2076), 1, sym_primary_expression, - STATE(2218), 1, + STATE(2147), 1, sym_string, - STATE(2591), 1, + STATE(2472), 1, sym_list_splat_pattern, - STATE(4090), 1, + STATE(2565), 1, sym_expression, - STATE(5609), 1, + STATE(5590), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2449), 3, + ACTIONS(1342), 3, sym_integer, sym_true, sym_false, - ACTIONS(2459), 4, + ACTIONS(1326), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2631), 5, + ACTIONS(1470), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2604), 8, + STATE(2421), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -157266,7 +157170,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2631), 20, + STATE(2414), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -157287,66 +157191,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [43822] = 26, - ACTIONS(67), 1, + [42354] = 26, + ACTIONS(1328), 1, anon_sym_LBRACE, - ACTIONS(71), 1, + ACTIONS(1332), 1, anon_sym_LT, - ACTIONS(77), 1, + ACTIONS(1338), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1340), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1344), 1, sym_float, - ACTIONS(105), 1, + ACTIONS(1360), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1362), 1, sym_string_start, - ACTIONS(577), 1, - sym_identifier, - ACTIONS(614), 1, + ACTIONS(1472), 1, + anon_sym_LBRACK, + ACTIONS(1474), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(2377), 1, anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3071), 1, + ACTIONS(2787), 1, + sym_identifier, + ACTIONS(2965), 1, anon_sym_STAR, - ACTIONS(3485), 1, + ACTIONS(3411), 1, anon_sym_not, - ACTIONS(3487), 1, + ACTIONS(3413), 1, anon_sym_lambda, - ACTIONS(3489), 1, + ACTIONS(3415), 1, anon_sym_new, - STATE(2032), 1, + STATE(2076), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2147), 1, sym_string, - STATE(2088), 1, - sym_list_splat_pattern, - STATE(2101), 1, + STATE(2409), 1, sym_expression, - STATE(5496), 1, + STATE(2472), 1, + sym_list_splat_pattern, + STATE(5590), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1342), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1326), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(1470), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2074), 8, + STATE(2421), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -157355,7 +157259,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2414), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -157376,66 +157280,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [43937] = 26, - ACTIONS(67), 1, + [42469] = 26, + ACTIONS(1328), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1332), 1, anon_sym_LT, - ACTIONS(73), 1, - anon_sym_lambda, - ACTIONS(77), 1, + ACTIONS(1338), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1340), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1344), 1, sym_float, - ACTIONS(99), 1, - anon_sym_new, - ACTIONS(105), 1, + ACTIONS(1360), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1362), 1, sym_string_start, - ACTIONS(577), 1, - sym_identifier, - ACTIONS(614), 1, + ACTIONS(1472), 1, + anon_sym_LBRACK, + ACTIONS(1474), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(2377), 1, anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3071), 1, + ACTIONS(2787), 1, + sym_identifier, + ACTIONS(2965), 1, anon_sym_STAR, - STATE(2024), 1, + ACTIONS(3411), 1, + anon_sym_not, + ACTIONS(3413), 1, + anon_sym_lambda, + ACTIONS(3415), 1, + anon_sym_new, + STATE(2076), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2147), 1, sym_string, - STATE(2088), 1, + STATE(2472), 1, sym_list_splat_pattern, - STATE(4050), 1, + STATE(2568), 1, sym_expression, - STATE(5564), 1, + STATE(5590), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1342), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1326), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(1470), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(2421), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -157444,7 +157348,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2414), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -157465,66 +157369,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [44052] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, + [42584] = 26, + ACTIONS(1328), 1, anon_sym_LBRACE, - ACTIONS(1225), 1, - anon_sym_not, - ACTIONS(1231), 1, - anon_sym_lambda, - ACTIONS(1233), 1, + ACTIONS(1332), 1, + anon_sym_LT, + ACTIONS(1338), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1340), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1344), 1, sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1243), 1, - anon_sym_new, - ACTIONS(1245), 1, + ACTIONS(1360), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1362), 1, sym_string_start, - ACTIONS(2735), 1, - anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(1472), 1, + anon_sym_LBRACK, + ACTIONS(1474), 1, + anon_sym_await, + ACTIONS(2377), 1, + anon_sym_LPAREN, + ACTIONS(2787), 1, + sym_identifier, + ACTIONS(2965), 1, anon_sym_STAR, - STATE(2067), 1, + ACTIONS(3411), 1, + anon_sym_not, + ACTIONS(3413), 1, + anon_sym_lambda, + ACTIONS(3415), 1, + anon_sym_new, + STATE(2076), 1, sym_primary_expression, - STATE(2140), 1, + STATE(2147), 1, sym_string, - STATE(2432), 1, + STATE(2472), 1, sym_list_splat_pattern, - STATE(4205), 1, + STATE(2574), 1, sym_expression, - STATE(5469), 1, + STATE(5590), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(1342), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(1326), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(1470), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3081), 8, + STATE(2421), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -157533,7 +157437,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2414), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -157548,270 +157452,72 @@ static const uint16_t ts_small_parse_table[] = { 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, - [44167] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3587), 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(3589), 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, - [44236] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3591), 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(3593), 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, - [44305] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3595), 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(3597), 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, - [44374] = 26, - ACTIONS(1382), 1, - anon_sym_LBRACK, - ACTIONS(1386), 1, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [42699] = 26, + ACTIONS(1328), 1, anon_sym_LBRACE, - ACTIONS(1388), 1, - anon_sym_not, - ACTIONS(1390), 1, + ACTIONS(1332), 1, anon_sym_LT, - ACTIONS(1392), 1, - anon_sym_lambda, - ACTIONS(1394), 1, + ACTIONS(1338), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, + ACTIONS(1340), 1, anon_sym_None, - ACTIONS(1400), 1, + ACTIONS(1344), 1, sym_float, - ACTIONS(1404), 1, - anon_sym_new, - ACTIONS(1406), 1, + ACTIONS(1360), 1, anon_sym_sizeof, - ACTIONS(1408), 1, + ACTIONS(1362), 1, sym_string_start, - ACTIONS(2439), 1, + ACTIONS(1472), 1, + anon_sym_LBRACK, + ACTIONS(1474), 1, + anon_sym_await, + ACTIONS(2377), 1, anon_sym_LPAREN, - ACTIONS(2955), 1, + ACTIONS(2787), 1, sym_identifier, - ACTIONS(2961), 1, - anon_sym_await, - ACTIONS(3055), 1, + ACTIONS(2965), 1, anon_sym_STAR, - STATE(2151), 1, + ACTIONS(3411), 1, + anon_sym_not, + ACTIONS(3413), 1, + anon_sym_lambda, + ACTIONS(3415), 1, + anon_sym_new, + STATE(2076), 1, sym_primary_expression, - STATE(2302), 1, + STATE(2147), 1, sym_string, - STATE(2671), 1, - sym_list_splat_pattern, - STATE(4172), 1, + STATE(2400), 1, sym_expression, - STATE(5468), 1, + STATE(2472), 1, + sym_list_splat_pattern, + STATE(5590), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1398), 3, + ACTIONS(1342), 3, sym_integer, sym_true, sym_false, - ACTIONS(1384), 4, + ACTIONS(1326), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2959), 5, + ACTIONS(1470), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2716), 8, + STATE(2421), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -157820,7 +157526,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2715), 20, + STATE(2414), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -157841,13 +157547,13 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [44489] = 3, + [42814] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3475), 14, + ACTIONS(3587), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -157860,7 +157566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3473), 46, + ACTIONS(3589), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -157907,132 +157613,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [44558] = 3, + [42883] = 26, + ACTIONS(1211), 1, + sym_identifier, + ACTIONS(1213), 1, + anon_sym_LPAREN, + ACTIONS(1219), 1, + anon_sym_LBRACK, + ACTIONS(1223), 1, + anon_sym_LBRACE, + ACTIONS(1233), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1235), 1, + anon_sym_None, + ACTIONS(1239), 1, + sym_float, + ACTIONS(1241), 1, + anon_sym_await, + ACTIONS(1245), 1, + anon_sym_sizeof, + ACTIONS(1247), 1, + sym_string_start, + ACTIONS(2705), 1, + anon_sym_LT, + ACTIONS(2955), 1, + anon_sym_STAR, + ACTIONS(3635), 1, + anon_sym_not, + ACTIONS(3637), 1, + anon_sym_lambda, + ACTIONS(3639), 1, + anon_sym_new, + STATE(2161), 1, + sym_string, + STATE(2304), 1, + sym_primary_expression, + STATE(2536), 1, + sym_list_splat_pattern, + STATE(3144), 1, + sym_expression, + STATE(5436), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2395), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1237), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1227), 4, 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(2393), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1217), 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, - [44627] = 26, - ACTIONS(1382), 1, + STATE(3088), 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(2401), 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, + [42998] = 26, + ACTIONS(1211), 1, + sym_identifier, + ACTIONS(1213), 1, + anon_sym_LPAREN, + ACTIONS(1219), 1, anon_sym_LBRACK, - ACTIONS(1386), 1, + ACTIONS(1223), 1, anon_sym_LBRACE, - ACTIONS(1388), 1, - anon_sym_not, - ACTIONS(1390), 1, - anon_sym_LT, - ACTIONS(1392), 1, - anon_sym_lambda, - ACTIONS(1394), 1, + ACTIONS(1233), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, + ACTIONS(1235), 1, anon_sym_None, - ACTIONS(1400), 1, + ACTIONS(1239), 1, sym_float, - ACTIONS(1404), 1, - anon_sym_new, - ACTIONS(1406), 1, + ACTIONS(1241), 1, + anon_sym_await, + ACTIONS(1245), 1, anon_sym_sizeof, - ACTIONS(1408), 1, + ACTIONS(1247), 1, sym_string_start, - ACTIONS(2439), 1, - anon_sym_LPAREN, + ACTIONS(2705), 1, + anon_sym_LT, ACTIONS(2955), 1, - sym_identifier, - ACTIONS(2961), 1, - anon_sym_await, - ACTIONS(3599), 1, anon_sym_STAR, - STATE(2151), 1, - sym_primary_expression, - STATE(2302), 1, + ACTIONS(3635), 1, + anon_sym_not, + ACTIONS(3637), 1, + anon_sym_lambda, + ACTIONS(3639), 1, + anon_sym_new, + STATE(2161), 1, sym_string, - STATE(2671), 1, + STATE(2304), 1, + sym_primary_expression, + STATE(2536), 1, sym_list_splat_pattern, - STATE(4121), 1, + STATE(3147), 1, sym_expression, - STATE(5468), 1, + STATE(5436), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1398), 3, + ACTIONS(1237), 3, sym_integer, sym_true, sym_false, - ACTIONS(1384), 4, + ACTIONS(1227), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2959), 5, + ACTIONS(1217), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2716), 8, + STATE(3088), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -158041,7 +157770,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2715), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -158062,66 +157791,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [44742] = 26, - ACTIONS(67), 1, + [43113] = 26, + ACTIONS(1211), 1, + sym_identifier, + ACTIONS(1213), 1, + anon_sym_LPAREN, + ACTIONS(1219), 1, + anon_sym_LBRACK, + ACTIONS(1223), 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, + ACTIONS(1233), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1235), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1239), 1, sym_float, - ACTIONS(99), 1, - anon_sym_new, - ACTIONS(105), 1, + ACTIONS(1241), 1, + anon_sym_await, + ACTIONS(1245), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1247), 1, sym_string_start, - ACTIONS(577), 1, - sym_identifier, - ACTIONS(614), 1, - anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3071), 1, + ACTIONS(2705), 1, + anon_sym_LT, + ACTIONS(2955), 1, anon_sym_STAR, - STATE(2024), 1, - sym_primary_expression, - STATE(2034), 1, + ACTIONS(3635), 1, + anon_sym_not, + ACTIONS(3637), 1, + anon_sym_lambda, + ACTIONS(3639), 1, + anon_sym_new, + STATE(2161), 1, sym_string, - STATE(2088), 1, + STATE(2304), 1, + sym_primary_expression, + STATE(2536), 1, sym_list_splat_pattern, - STATE(4268), 1, + STATE(3149), 1, sym_expression, - STATE(5564), 1, + STATE(5436), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1237), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1227), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(1217), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(3088), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -158130,7 +157859,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -158151,66 +157880,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [44857] = 26, - ACTIONS(67), 1, + [43228] = 26, + ACTIONS(1211), 1, + sym_identifier, + ACTIONS(1213), 1, + anon_sym_LPAREN, + ACTIONS(1219), 1, + anon_sym_LBRACK, + ACTIONS(1223), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(77), 1, + ACTIONS(1233), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1235), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1239), 1, sym_float, - ACTIONS(105), 1, + ACTIONS(1241), 1, + anon_sym_await, + ACTIONS(1245), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1247), 1, sym_string_start, - ACTIONS(577), 1, - sym_identifier, - ACTIONS(614), 1, - anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3071), 1, + ACTIONS(2705), 1, + anon_sym_LT, + ACTIONS(2955), 1, anon_sym_STAR, - ACTIONS(3485), 1, + ACTIONS(3635), 1, anon_sym_not, - ACTIONS(3487), 1, + ACTIONS(3637), 1, anon_sym_lambda, - ACTIONS(3489), 1, + ACTIONS(3639), 1, anon_sym_new, - STATE(2032), 1, - sym_primary_expression, - STATE(2034), 1, + STATE(2161), 1, sym_string, - STATE(2088), 1, + STATE(2304), 1, + sym_primary_expression, + STATE(2536), 1, sym_list_splat_pattern, - STATE(2114), 1, + STATE(3095), 1, sym_expression, - STATE(5496), 1, + STATE(5436), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1237), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1227), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(1217), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2074), 8, + STATE(3088), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -158219,7 +157948,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -158240,66 +157969,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [44972] = 26, - ACTIONS(67), 1, + [43343] = 26, + ACTIONS(1211), 1, + sym_identifier, + ACTIONS(1213), 1, + anon_sym_LPAREN, + ACTIONS(1219), 1, + anon_sym_LBRACK, + ACTIONS(1223), 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, + ACTIONS(1233), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1235), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1239), 1, sym_float, - ACTIONS(99), 1, - anon_sym_new, - ACTIONS(105), 1, + ACTIONS(1241), 1, + anon_sym_await, + ACTIONS(1245), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1247), 1, sym_string_start, - ACTIONS(577), 1, - sym_identifier, - ACTIONS(614), 1, - anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3071), 1, + ACTIONS(2705), 1, + anon_sym_LT, + ACTIONS(2955), 1, anon_sym_STAR, - STATE(2024), 1, - sym_primary_expression, - STATE(2034), 1, + ACTIONS(3635), 1, + anon_sym_not, + ACTIONS(3637), 1, + anon_sym_lambda, + ACTIONS(3639), 1, + anon_sym_new, + STATE(2161), 1, sym_string, - STATE(2088), 1, + STATE(2304), 1, + sym_primary_expression, + STATE(2536), 1, sym_list_splat_pattern, - STATE(3883), 1, + STATE(3150), 1, sym_expression, - STATE(5564), 1, + STATE(5436), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1237), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1227), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(1217), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(3088), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -158308,7 +158037,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -158329,66 +158058,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [45087] = 26, - ACTIONS(67), 1, + [43458] = 26, + ACTIONS(1211), 1, + sym_identifier, + ACTIONS(1213), 1, + anon_sym_LPAREN, + ACTIONS(1219), 1, + anon_sym_LBRACK, + ACTIONS(1223), 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, + ACTIONS(1233), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1235), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1239), 1, sym_float, - ACTIONS(99), 1, - anon_sym_new, - ACTIONS(105), 1, + ACTIONS(1241), 1, + anon_sym_await, + ACTIONS(1245), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1247), 1, sym_string_start, - ACTIONS(577), 1, - sym_identifier, - ACTIONS(614), 1, - anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3071), 1, + ACTIONS(2705), 1, + anon_sym_LT, + ACTIONS(2955), 1, anon_sym_STAR, - STATE(2024), 1, + ACTIONS(3641), 1, + anon_sym_not, + ACTIONS(3643), 1, + anon_sym_lambda, + ACTIONS(3645), 1, + anon_sym_new, + STATE(2075), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2161), 1, sym_string, - STATE(2088), 1, - sym_list_splat_pattern, - STATE(3994), 1, + STATE(2464), 1, sym_expression, - STATE(5564), 1, + STATE(2536), 1, + sym_list_splat_pattern, + STATE(5626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1237), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1227), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(1217), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(2543), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -158397,7 +158126,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -158418,66 +158147,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [45202] = 26, - ACTIONS(67), 1, + [43573] = 26, + ACTIONS(1211), 1, + sym_identifier, + ACTIONS(1213), 1, + anon_sym_LPAREN, + ACTIONS(1219), 1, + anon_sym_LBRACK, + ACTIONS(1223), 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, + ACTIONS(1233), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1235), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1239), 1, sym_float, - ACTIONS(99), 1, - anon_sym_new, - ACTIONS(105), 1, + ACTIONS(1241), 1, + anon_sym_await, + ACTIONS(1245), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1247), 1, sym_string_start, - ACTIONS(577), 1, - sym_identifier, - ACTIONS(614), 1, - anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3071), 1, + ACTIONS(2705), 1, + anon_sym_LT, + ACTIONS(2955), 1, anon_sym_STAR, - STATE(2024), 1, - sym_primary_expression, - STATE(2034), 1, + ACTIONS(3635), 1, + anon_sym_not, + ACTIONS(3637), 1, + anon_sym_lambda, + ACTIONS(3639), 1, + anon_sym_new, + STATE(2161), 1, sym_string, - STATE(2088), 1, + STATE(2304), 1, + sym_primary_expression, + STATE(2536), 1, sym_list_splat_pattern, - STATE(4008), 1, + STATE(3151), 1, sym_expression, - STATE(5564), 1, + STATE(5436), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1237), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1227), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(1217), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(3088), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -158486,7 +158215,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -158507,7 +158236,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [45317] = 26, + [43688] = 26, ACTIONS(1211), 1, sym_identifier, ACTIONS(1213), 1, @@ -158516,10 +158245,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1223), 1, anon_sym_LBRACE, - ACTIONS(1225), 1, - anon_sym_not, - ACTIONS(1231), 1, - anon_sym_lambda, ACTIONS(1233), 1, anon_sym_DOT_DOT_DOT, ACTIONS(1235), 1, @@ -158528,25 +158253,29 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(1241), 1, anon_sym_await, - ACTIONS(1243), 1, - anon_sym_new, ACTIONS(1245), 1, anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2735), 1, + ACTIONS(2705), 1, anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(2955), 1, anon_sym_STAR, - STATE(2067), 1, + ACTIONS(3641), 1, + anon_sym_not, + ACTIONS(3643), 1, + anon_sym_lambda, + ACTIONS(3645), 1, + anon_sym_new, + STATE(2075), 1, sym_primary_expression, - STATE(2140), 1, + STATE(2161), 1, sym_string, - STATE(2432), 1, - sym_list_splat_pattern, - STATE(4444), 1, + STATE(2410), 1, sym_expression, - STATE(5469), 1, + STATE(2536), 1, + sym_list_splat_pattern, + STATE(5626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -158566,7 +158295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3081), 8, + STATE(2543), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -158575,7 +158304,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -158596,7 +158325,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [45432] = 26, + [43803] = 26, ACTIONS(1211), 1, sym_identifier, ACTIONS(1213), 1, @@ -158605,10 +158334,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1223), 1, anon_sym_LBRACE, - ACTIONS(1225), 1, - anon_sym_not, - ACTIONS(1231), 1, - anon_sym_lambda, ACTIONS(1233), 1, anon_sym_DOT_DOT_DOT, ACTIONS(1235), 1, @@ -158617,25 +158342,29 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(1241), 1, anon_sym_await, - ACTIONS(1243), 1, - anon_sym_new, ACTIONS(1245), 1, anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2735), 1, + ACTIONS(2705), 1, anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(2955), 1, anon_sym_STAR, - STATE(2067), 1, - sym_primary_expression, - STATE(2140), 1, + ACTIONS(3635), 1, + anon_sym_not, + ACTIONS(3637), 1, + anon_sym_lambda, + ACTIONS(3639), 1, + anon_sym_new, + STATE(2161), 1, sym_string, - STATE(2432), 1, + STATE(2304), 1, + sym_primary_expression, + STATE(2536), 1, sym_list_splat_pattern, - STATE(4181), 1, + STATE(3155), 1, sym_expression, - STATE(5469), 1, + STATE(5436), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -158655,7 +158384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3081), 8, + STATE(3088), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -158664,7 +158393,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -158685,66 +158414,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [45547] = 26, - ACTIONS(67), 1, + [43918] = 26, + ACTIONS(2489), 1, + anon_sym_LPAREN, + ACTIONS(2495), 1, + anon_sym_LBRACK, + ACTIONS(2499), 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, + ACTIONS(2503), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(2505), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(2507), 1, sym_float, - ACTIONS(99), 1, - anon_sym_new, - ACTIONS(105), 1, + ACTIONS(2511), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(2513), 1, sym_string_start, - ACTIONS(577), 1, + ACTIONS(2563), 1, + anon_sym_LT, + ACTIONS(2815), 1, sym_identifier, - ACTIONS(614), 1, + ACTIONS(2823), 1, anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3071), 1, + ACTIONS(2943), 1, anon_sym_STAR, - STATE(2024), 1, + ACTIONS(3385), 1, + anon_sym_not, + ACTIONS(3387), 1, + anon_sym_lambda, + ACTIONS(3389), 1, + anon_sym_new, + STATE(2071), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2177), 1, sym_string, - STATE(2088), 1, + STATE(2415), 1, sym_list_splat_pattern, - STATE(3451), 1, + STATE(2443), 1, sym_expression, - STATE(5564), 1, + STATE(5414), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(2487), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(2497), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(2819), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(2493), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -158753,7 +158482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2470), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -158774,138 +158503,253 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [45662] = 3, + [44033] = 26, + ACTIONS(2489), 1, + anon_sym_LPAREN, + ACTIONS(2495), 1, + anon_sym_LBRACK, + ACTIONS(2499), 1, + anon_sym_LBRACE, + ACTIONS(2503), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2505), 1, + anon_sym_None, + ACTIONS(2507), 1, + sym_float, + ACTIONS(2511), 1, + anon_sym_sizeof, + ACTIONS(2513), 1, + sym_string_start, + ACTIONS(2563), 1, + anon_sym_LT, + ACTIONS(2815), 1, + sym_identifier, + ACTIONS(2823), 1, + anon_sym_await, + ACTIONS(2943), 1, + anon_sym_STAR, + ACTIONS(3385), 1, + anon_sym_not, + ACTIONS(3387), 1, + anon_sym_lambda, + ACTIONS(3389), 1, + anon_sym_new, + STATE(2071), 1, + sym_primary_expression, + STATE(2177), 1, + sym_string, + STATE(2415), 1, + sym_list_splat_pattern, + STATE(2450), 1, + sym_expression, + STATE(5414), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3601), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2487), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2497), 4, 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(3603), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2819), 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_api, + STATE(2493), 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(2470), 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, + [44148] = 26, + ACTIONS(2489), 1, + anon_sym_LPAREN, + ACTIONS(2495), 1, + anon_sym_LBRACK, + ACTIONS(2499), 1, + anon_sym_LBRACE, + ACTIONS(2503), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2505), 1, anon_sym_None, - sym_integer, + ACTIONS(2507), 1, + sym_float, + ACTIONS(2511), 1, + anon_sym_sizeof, + ACTIONS(2513), 1, + sym_string_start, + ACTIONS(2563), 1, + anon_sym_LT, + ACTIONS(2815), 1, sym_identifier, + ACTIONS(2823), 1, anon_sym_await, - anon_sym_api, + ACTIONS(2943), 1, + anon_sym_STAR, + ACTIONS(3385), 1, + anon_sym_not, + ACTIONS(3387), 1, + anon_sym_lambda, + ACTIONS(3389), 1, + anon_sym_new, + STATE(2071), 1, + sym_primary_expression, + STATE(2177), 1, + sym_string, + STATE(2415), 1, + sym_list_splat_pattern, + STATE(2453), 1, + sym_expression, + STATE(5414), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2487), 3, + sym_integer, 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, - [45731] = 23, - ACTIONS(1213), 1, + ACTIONS(2497), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2819), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2493), 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(2470), 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, + [44263] = 26, + ACTIONS(2489), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(2495), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(2499), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(2503), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(2505), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(2507), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(2511), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(2513), 1, sym_string_start, - ACTIONS(1295), 1, - anon_sym_COMMA, - ACTIONS(1302), 1, - anon_sym_STAR, - ACTIONS(1310), 1, + ACTIONS(2563), 1, anon_sym_LT, - ACTIONS(1312), 1, + ACTIONS(2815), 1, + sym_identifier, + ACTIONS(2823), 1, anon_sym_await, - STATE(2140), 1, + ACTIONS(2943), 1, + anon_sym_STAR, + ACTIONS(3385), 1, + anon_sym_not, + ACTIONS(3387), 1, + anon_sym_lambda, + ACTIONS(3389), 1, + anon_sym_new, + STATE(2071), 1, + sym_primary_expression, + STATE(2177), 1, sym_string, - STATE(2432), 1, + STATE(2415), 1, sym_list_splat_pattern, - STATE(3190), 1, - sym_primary_expression, + STATE(2460), 1, + sym_expression, + STATE(5414), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1297), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(1300), 2, - anon_sym_from, - anon_sym_in, - ACTIONS(1237), 4, + ACTIONS(2487), 3, sym_integer, - sym_identifier, sym_true, sym_false, - ACTIONS(1308), 4, + ACTIONS(2497), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1304), 5, + ACTIONS(2819), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - ACTIONS(1498), 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(2549), 20, + STATE(2493), 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(2470), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -158926,66 +158770,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [45840] = 26, - ACTIONS(67), 1, + [44378] = 26, + ACTIONS(2489), 1, + anon_sym_LPAREN, + ACTIONS(2495), 1, + anon_sym_LBRACK, + ACTIONS(2499), 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, + ACTIONS(2503), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(2505), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(2507), 1, sym_float, - ACTIONS(99), 1, - anon_sym_new, - ACTIONS(105), 1, + ACTIONS(2511), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(2513), 1, sym_string_start, - ACTIONS(577), 1, + ACTIONS(2563), 1, + anon_sym_LT, + ACTIONS(2815), 1, sym_identifier, - ACTIONS(614), 1, + ACTIONS(2823), 1, anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3071), 1, + ACTIONS(2943), 1, anon_sym_STAR, - STATE(2024), 1, + ACTIONS(3385), 1, + anon_sym_not, + ACTIONS(3387), 1, + anon_sym_lambda, + ACTIONS(3389), 1, + anon_sym_new, + STATE(2071), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2177), 1, sym_string, - STATE(2088), 1, + STATE(2415), 1, sym_list_splat_pattern, - STATE(4346), 1, + STATE(2454), 1, sym_expression, - STATE(5564), 1, + STATE(5414), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(2487), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(2497), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(2819), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(2493), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -158994,7 +158838,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2470), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -159015,66 +158859,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [45955] = 26, - ACTIONS(1328), 1, + [44493] = 26, + ACTIONS(2461), 1, + anon_sym_LPAREN, + ACTIONS(2467), 1, + anon_sym_LBRACK, + ACTIONS(2471), 1, anon_sym_LBRACE, - ACTIONS(1330), 1, - anon_sym_not, - ACTIONS(1332), 1, - anon_sym_LT, - ACTIONS(1334), 1, - anon_sym_lambda, - ACTIONS(1338), 1, + ACTIONS(2475), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1340), 1, + ACTIONS(2477), 1, anon_sym_None, - ACTIONS(1344), 1, + ACTIONS(2479), 1, sym_float, - ACTIONS(1350), 1, - anon_sym_new, - ACTIONS(1360), 1, + ACTIONS(2483), 1, anon_sym_sizeof, - ACTIONS(1362), 1, + ACTIONS(2485), 1, sym_string_start, - ACTIONS(1472), 1, - anon_sym_LBRACK, - ACTIONS(1474), 1, + ACTIONS(2647), 1, + anon_sym_not, + ACTIONS(2649), 1, + anon_sym_LT, + ACTIONS(2651), 1, + anon_sym_lambda, + ACTIONS(2653), 1, anon_sym_await, - ACTIONS(2427), 1, - anon_sym_LPAREN, - ACTIONS(2761), 1, + ACTIONS(2655), 1, + anon_sym_new, + ACTIONS(2935), 1, sym_identifier, - ACTIONS(2939), 1, + ACTIONS(3103), 1, anon_sym_STAR, - STATE(2060), 1, + STATE(2107), 1, sym_primary_expression, - STATE(2170), 1, + STATE(2200), 1, sym_string, - STATE(2477), 1, + STATE(2589), 1, sym_list_splat_pattern, - STATE(3909), 1, + STATE(4267), 1, sym_expression, - STATE(5688), 1, + STATE(5572), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1342), 3, + ACTIONS(2459), 3, sym_integer, sym_true, sym_false, - ACTIONS(1326), 4, + ACTIONS(2469), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1470), 5, + ACTIONS(2641), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2459), 8, + STATE(2631), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -159083,7 +158927,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2457), 20, + STATE(2630), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -159104,66 +158948,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [46070] = 26, - ACTIONS(1382), 1, + [44608] = 26, + ACTIONS(2489), 1, + anon_sym_LPAREN, + ACTIONS(2495), 1, anon_sym_LBRACK, - ACTIONS(1386), 1, + ACTIONS(2499), 1, anon_sym_LBRACE, - ACTIONS(1388), 1, - anon_sym_not, - ACTIONS(1390), 1, - anon_sym_LT, - ACTIONS(1392), 1, - anon_sym_lambda, - ACTIONS(1394), 1, + ACTIONS(2503), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, + ACTIONS(2505), 1, anon_sym_None, - ACTIONS(1400), 1, + ACTIONS(2507), 1, sym_float, - ACTIONS(1404), 1, - anon_sym_new, - ACTIONS(1406), 1, + ACTIONS(2511), 1, anon_sym_sizeof, - ACTIONS(1408), 1, + ACTIONS(2513), 1, sym_string_start, - ACTIONS(2439), 1, - anon_sym_LPAREN, - ACTIONS(2955), 1, + ACTIONS(2563), 1, + anon_sym_LT, + ACTIONS(2815), 1, sym_identifier, - ACTIONS(2961), 1, + ACTIONS(2823), 1, anon_sym_await, - ACTIONS(3055), 1, + ACTIONS(2943), 1, anon_sym_STAR, - STATE(2151), 1, + ACTIONS(3385), 1, + anon_sym_not, + ACTIONS(3387), 1, + anon_sym_lambda, + ACTIONS(3389), 1, + anon_sym_new, + STATE(2071), 1, sym_primary_expression, - STATE(2302), 1, + STATE(2177), 1, sym_string, - STATE(2671), 1, + STATE(2415), 1, sym_list_splat_pattern, - STATE(4182), 1, + STATE(2456), 1, sym_expression, - STATE(5468), 1, + STATE(5414), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1398), 3, + ACTIONS(2487), 3, sym_integer, sym_true, sym_false, - ACTIONS(1384), 4, + ACTIONS(2497), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2959), 5, + ACTIONS(2819), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2716), 8, + STATE(2493), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -159172,7 +159016,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2715), 20, + STATE(2470), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -159193,132 +159037,155 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [46185] = 3, + [44723] = 26, + ACTIONS(2489), 1, + anon_sym_LPAREN, + ACTIONS(2495), 1, + anon_sym_LBRACK, + ACTIONS(2499), 1, + anon_sym_LBRACE, + ACTIONS(2503), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2505), 1, + anon_sym_None, + ACTIONS(2507), 1, + sym_float, + ACTIONS(2511), 1, + anon_sym_sizeof, + ACTIONS(2513), 1, + sym_string_start, + ACTIONS(2563), 1, + anon_sym_LT, + ACTIONS(2815), 1, + sym_identifier, + ACTIONS(2823), 1, + anon_sym_await, + ACTIONS(2943), 1, + anon_sym_STAR, + ACTIONS(3385), 1, + anon_sym_not, + ACTIONS(3387), 1, + anon_sym_lambda, + ACTIONS(3389), 1, + anon_sym_new, + STATE(2071), 1, + sym_primary_expression, + STATE(2177), 1, + sym_string, + STATE(2415), 1, + sym_list_splat_pattern, + STATE(2459), 1, + sym_expression, + STATE(5414), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3437), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2487), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2497), 4, 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(3439), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2819), 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, - [46254] = 26, - ACTIONS(1328), 1, + STATE(2493), 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(2470), 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, + [44838] = 26, + ACTIONS(2413), 1, + anon_sym_LPAREN, + ACTIONS(2419), 1, + anon_sym_LBRACK, + ACTIONS(2423), 1, anon_sym_LBRACE, - ACTIONS(1330), 1, - anon_sym_not, - ACTIONS(1332), 1, - anon_sym_LT, - ACTIONS(1334), 1, - anon_sym_lambda, - ACTIONS(1338), 1, + ACTIONS(2427), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1340), 1, + ACTIONS(2429), 1, anon_sym_None, - ACTIONS(1344), 1, + ACTIONS(2431), 1, sym_float, - ACTIONS(1350), 1, - anon_sym_new, - ACTIONS(1360), 1, + ACTIONS(2435), 1, anon_sym_sizeof, - ACTIONS(1362), 1, + ACTIONS(2437), 1, sym_string_start, - ACTIONS(1472), 1, - anon_sym_LBRACK, - ACTIONS(1474), 1, - anon_sym_await, - ACTIONS(2427), 1, - anon_sym_LPAREN, - ACTIONS(2761), 1, + ACTIONS(2521), 1, sym_identifier, - ACTIONS(2939), 1, + ACTIONS(2537), 1, + anon_sym_LT, + ACTIONS(2543), 1, + anon_sym_await, + ACTIONS(3011), 1, anon_sym_STAR, - STATE(2060), 1, + ACTIONS(3395), 1, + anon_sym_not, + ACTIONS(3397), 1, + anon_sym_lambda, + ACTIONS(3399), 1, + anon_sym_new, + STATE(2051), 1, sym_primary_expression, - STATE(2170), 1, + STATE(2099), 1, sym_string, - STATE(2477), 1, + STATE(2256), 1, sym_list_splat_pattern, - STATE(3961), 1, + STATE(2332), 1, sym_expression, - STATE(5688), 1, + STATE(5449), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1342), 3, + ACTIONS(2411), 3, sym_integer, sym_true, sym_false, - ACTIONS(1326), 4, + ACTIONS(2421), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1470), 5, + ACTIONS(2529), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2459), 8, + STATE(2326), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -159327,7 +159194,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2457), 20, + STATE(2298), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -159348,66 +159215,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [46369] = 26, - ACTIONS(1328), 1, + [44953] = 26, + ACTIONS(2413), 1, + anon_sym_LPAREN, + ACTIONS(2419), 1, + anon_sym_LBRACK, + ACTIONS(2423), 1, anon_sym_LBRACE, - ACTIONS(1330), 1, - anon_sym_not, - ACTIONS(1332), 1, - anon_sym_LT, - ACTIONS(1334), 1, - anon_sym_lambda, - ACTIONS(1338), 1, + ACTIONS(2427), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1340), 1, + ACTIONS(2429), 1, anon_sym_None, - ACTIONS(1344), 1, + ACTIONS(2431), 1, sym_float, - ACTIONS(1350), 1, - anon_sym_new, - ACTIONS(1360), 1, + ACTIONS(2435), 1, anon_sym_sizeof, - ACTIONS(1362), 1, + ACTIONS(2437), 1, sym_string_start, - ACTIONS(1472), 1, - anon_sym_LBRACK, - ACTIONS(1474), 1, - anon_sym_await, - ACTIONS(2427), 1, - anon_sym_LPAREN, - ACTIONS(2761), 1, + ACTIONS(2521), 1, sym_identifier, - ACTIONS(2939), 1, + ACTIONS(2537), 1, + anon_sym_LT, + ACTIONS(2543), 1, + anon_sym_await, + ACTIONS(3011), 1, anon_sym_STAR, - STATE(2060), 1, + ACTIONS(3395), 1, + anon_sym_not, + ACTIONS(3397), 1, + anon_sym_lambda, + ACTIONS(3399), 1, + anon_sym_new, + STATE(2051), 1, sym_primary_expression, - STATE(2170), 1, + STATE(2099), 1, sym_string, - STATE(2477), 1, + STATE(2256), 1, sym_list_splat_pattern, - STATE(3969), 1, + STATE(2333), 1, sym_expression, - STATE(5688), 1, + STATE(5449), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1342), 3, + ACTIONS(2411), 3, sym_integer, sym_true, sym_false, - ACTIONS(1326), 4, + ACTIONS(2421), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1470), 5, + ACTIONS(2529), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2459), 8, + STATE(2326), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -159416,7 +159283,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2457), 20, + STATE(2298), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -159437,66 +159304,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [46484] = 26, - ACTIONS(1328), 1, + [45068] = 26, + ACTIONS(2413), 1, + anon_sym_LPAREN, + ACTIONS(2419), 1, + anon_sym_LBRACK, + ACTIONS(2423), 1, anon_sym_LBRACE, - ACTIONS(1330), 1, - anon_sym_not, - ACTIONS(1332), 1, - anon_sym_LT, - ACTIONS(1334), 1, - anon_sym_lambda, - ACTIONS(1338), 1, + ACTIONS(2427), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1340), 1, + ACTIONS(2429), 1, anon_sym_None, - ACTIONS(1344), 1, + ACTIONS(2431), 1, sym_float, - ACTIONS(1350), 1, - anon_sym_new, - ACTIONS(1360), 1, + ACTIONS(2435), 1, anon_sym_sizeof, - ACTIONS(1362), 1, + ACTIONS(2437), 1, sym_string_start, - ACTIONS(1472), 1, - anon_sym_LBRACK, - ACTIONS(1474), 1, - anon_sym_await, - ACTIONS(2427), 1, - anon_sym_LPAREN, - ACTIONS(2761), 1, + ACTIONS(2521), 1, sym_identifier, - ACTIONS(2939), 1, + ACTIONS(2537), 1, + anon_sym_LT, + ACTIONS(2543), 1, + anon_sym_await, + ACTIONS(3011), 1, anon_sym_STAR, - STATE(2060), 1, + ACTIONS(3395), 1, + anon_sym_not, + ACTIONS(3397), 1, + anon_sym_lambda, + ACTIONS(3399), 1, + anon_sym_new, + STATE(2051), 1, sym_primary_expression, - STATE(2170), 1, + STATE(2099), 1, sym_string, - STATE(2477), 1, + STATE(2256), 1, sym_list_splat_pattern, - STATE(2519), 1, + STATE(2335), 1, sym_expression, - STATE(5688), 1, + STATE(5449), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1342), 3, + ACTIONS(2411), 3, sym_integer, sym_true, sym_false, - ACTIONS(1326), 4, + ACTIONS(2421), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1470), 5, + ACTIONS(2529), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2459), 8, + STATE(2326), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -159505,7 +159372,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2457), 20, + STATE(2298), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -159526,66 +159393,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [46599] = 26, - ACTIONS(1328), 1, + [45183] = 26, + ACTIONS(2413), 1, + anon_sym_LPAREN, + ACTIONS(2419), 1, + anon_sym_LBRACK, + ACTIONS(2423), 1, anon_sym_LBRACE, - ACTIONS(1330), 1, - anon_sym_not, - ACTIONS(1332), 1, - anon_sym_LT, - ACTIONS(1334), 1, - anon_sym_lambda, - ACTIONS(1338), 1, + ACTIONS(2427), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1340), 1, + ACTIONS(2429), 1, anon_sym_None, - ACTIONS(1344), 1, + ACTIONS(2431), 1, sym_float, - ACTIONS(1350), 1, - anon_sym_new, - ACTIONS(1360), 1, + ACTIONS(2435), 1, anon_sym_sizeof, - ACTIONS(1362), 1, + ACTIONS(2437), 1, sym_string_start, - ACTIONS(1472), 1, - anon_sym_LBRACK, - ACTIONS(1474), 1, - anon_sym_await, - ACTIONS(2427), 1, - anon_sym_LPAREN, - ACTIONS(2761), 1, + ACTIONS(2521), 1, sym_identifier, - ACTIONS(2939), 1, + ACTIONS(2537), 1, + anon_sym_LT, + ACTIONS(2543), 1, + anon_sym_await, + ACTIONS(3011), 1, anon_sym_STAR, - STATE(2060), 1, + ACTIONS(3395), 1, + anon_sym_not, + ACTIONS(3397), 1, + anon_sym_lambda, + ACTIONS(3399), 1, + anon_sym_new, + STATE(2051), 1, sym_primary_expression, - STATE(2170), 1, + STATE(2099), 1, sym_string, - STATE(2477), 1, + STATE(2256), 1, sym_list_splat_pattern, - STATE(3871), 1, + STATE(2341), 1, sym_expression, - STATE(5688), 1, + STATE(5449), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1342), 3, + ACTIONS(2411), 3, sym_integer, sym_true, sym_false, - ACTIONS(1326), 4, + ACTIONS(2421), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1470), 5, + ACTIONS(2529), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2459), 8, + STATE(2326), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -159594,7 +159461,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2457), 20, + STATE(2298), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -159615,66 +159482,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [46714] = 26, - ACTIONS(1328), 1, + [45298] = 26, + ACTIONS(2413), 1, + anon_sym_LPAREN, + ACTIONS(2419), 1, + anon_sym_LBRACK, + ACTIONS(2423), 1, anon_sym_LBRACE, - ACTIONS(1332), 1, - anon_sym_LT, - ACTIONS(1338), 1, + ACTIONS(2427), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1340), 1, + ACTIONS(2429), 1, anon_sym_None, - ACTIONS(1344), 1, + ACTIONS(2431), 1, sym_float, - ACTIONS(1360), 1, + ACTIONS(2435), 1, anon_sym_sizeof, - ACTIONS(1362), 1, + ACTIONS(2437), 1, sym_string_start, - ACTIONS(1472), 1, - anon_sym_LBRACK, - ACTIONS(1474), 1, - anon_sym_await, - ACTIONS(2427), 1, - anon_sym_LPAREN, - ACTIONS(2761), 1, + ACTIONS(2521), 1, sym_identifier, - ACTIONS(2939), 1, + ACTIONS(2537), 1, + anon_sym_LT, + ACTIONS(2543), 1, + anon_sym_await, + ACTIONS(3011), 1, anon_sym_STAR, - ACTIONS(3605), 1, + ACTIONS(3395), 1, anon_sym_not, - ACTIONS(3607), 1, + ACTIONS(3397), 1, anon_sym_lambda, - ACTIONS(3609), 1, + ACTIONS(3399), 1, anon_sym_new, - STATE(2061), 1, + STATE(2051), 1, sym_primary_expression, - STATE(2170), 1, + STATE(2099), 1, sym_string, - STATE(2477), 1, + STATE(2256), 1, sym_list_splat_pattern, - STATE(2478), 1, + STATE(2337), 1, sym_expression, - STATE(5478), 1, + STATE(5449), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1342), 3, + ACTIONS(2411), 3, sym_integer, sym_true, sym_false, - ACTIONS(1326), 4, + ACTIONS(2421), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1470), 5, + ACTIONS(2529), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2459), 8, + STATE(2326), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -159683,7 +159550,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2457), 20, + STATE(2298), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -159704,66 +159571,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [46829] = 26, - ACTIONS(2451), 1, + [45413] = 26, + ACTIONS(2413), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(2419), 1, anon_sym_LBRACK, - ACTIONS(2461), 1, + ACTIONS(2423), 1, anon_sym_LBRACE, - ACTIONS(2465), 1, + ACTIONS(2427), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2467), 1, + ACTIONS(2429), 1, anon_sym_None, - ACTIONS(2469), 1, + ACTIONS(2431), 1, sym_float, - ACTIONS(2473), 1, + ACTIONS(2435), 1, anon_sym_sizeof, - ACTIONS(2475), 1, + ACTIONS(2437), 1, sym_string_start, - ACTIONS(2637), 1, - anon_sym_not, - ACTIONS(2639), 1, + ACTIONS(2521), 1, + sym_identifier, + ACTIONS(2537), 1, anon_sym_LT, - ACTIONS(2641), 1, - anon_sym_lambda, - ACTIONS(2643), 1, + ACTIONS(2543), 1, anon_sym_await, - ACTIONS(2645), 1, - anon_sym_new, - ACTIONS(2963), 1, - sym_identifier, - ACTIONS(3105), 1, + ACTIONS(3011), 1, anon_sym_STAR, - STATE(2077), 1, + ACTIONS(3395), 1, + anon_sym_not, + ACTIONS(3397), 1, + anon_sym_lambda, + ACTIONS(3399), 1, + anon_sym_new, + STATE(2051), 1, sym_primary_expression, - STATE(2218), 1, + STATE(2099), 1, sym_string, - STATE(2591), 1, + STATE(2256), 1, sym_list_splat_pattern, - STATE(4154), 1, + STATE(2338), 1, sym_expression, - STATE(5609), 1, + STATE(5449), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2449), 3, + ACTIONS(2411), 3, sym_integer, sym_true, sym_false, - ACTIONS(2459), 4, + ACTIONS(2421), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2631), 5, + ACTIONS(2529), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2604), 8, + STATE(2326), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -159772,7 +159639,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2631), 20, + STATE(2298), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -159793,66 +159660,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [46944] = 26, - ACTIONS(1328), 1, + [45528] = 26, + ACTIONS(2413), 1, + anon_sym_LPAREN, + ACTIONS(2419), 1, + anon_sym_LBRACK, + ACTIONS(2423), 1, anon_sym_LBRACE, - ACTIONS(1332), 1, - anon_sym_LT, - ACTIONS(1338), 1, + ACTIONS(2427), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1340), 1, + ACTIONS(2429), 1, anon_sym_None, - ACTIONS(1344), 1, + ACTIONS(2431), 1, sym_float, - ACTIONS(1360), 1, + ACTIONS(2435), 1, anon_sym_sizeof, - ACTIONS(1362), 1, + ACTIONS(2437), 1, sym_string_start, - ACTIONS(1472), 1, - anon_sym_LBRACK, - ACTIONS(1474), 1, - anon_sym_await, - ACTIONS(2427), 1, - anon_sym_LPAREN, - ACTIONS(2761), 1, + ACTIONS(2521), 1, sym_identifier, - ACTIONS(2939), 1, + ACTIONS(2537), 1, + anon_sym_LT, + ACTIONS(2543), 1, + anon_sym_await, + ACTIONS(3011), 1, anon_sym_STAR, - ACTIONS(3605), 1, + ACTIONS(3395), 1, anon_sym_not, - ACTIONS(3607), 1, + ACTIONS(3397), 1, anon_sym_lambda, - ACTIONS(3609), 1, + ACTIONS(3399), 1, anon_sym_new, - STATE(2061), 1, + STATE(2051), 1, sym_primary_expression, - STATE(2170), 1, + STATE(2099), 1, sym_string, - STATE(2477), 1, + STATE(2256), 1, sym_list_splat_pattern, - STATE(2480), 1, + STATE(2340), 1, sym_expression, - STATE(5478), 1, + STATE(5449), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1342), 3, + ACTIONS(2411), 3, sym_integer, sym_true, sym_false, - ACTIONS(1326), 4, + ACTIONS(2421), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1470), 5, + ACTIONS(2529), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2459), 8, + STATE(2326), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -159861,7 +159728,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2457), 20, + STATE(2298), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -159882,66 +159749,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [47059] = 26, - ACTIONS(1328), 1, + [45643] = 26, + ACTIONS(1943), 1, + anon_sym_LPAREN, + ACTIONS(1949), 1, + anon_sym_LBRACK, + ACTIONS(1953), 1, anon_sym_LBRACE, - ACTIONS(1332), 1, - anon_sym_LT, - ACTIONS(1338), 1, + ACTIONS(1957), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1340), 1, + ACTIONS(1959), 1, anon_sym_None, - ACTIONS(1344), 1, + ACTIONS(1961), 1, sym_float, - ACTIONS(1360), 1, + ACTIONS(1965), 1, anon_sym_sizeof, - ACTIONS(1362), 1, + ACTIONS(1967), 1, sym_string_start, - ACTIONS(1472), 1, - anon_sym_LBRACK, - ACTIONS(1474), 1, - anon_sym_await, - ACTIONS(2427), 1, - anon_sym_LPAREN, - ACTIONS(2761), 1, - sym_identifier, - ACTIONS(2939), 1, + ACTIONS(2661), 1, anon_sym_STAR, - ACTIONS(3605), 1, + ACTIONS(2669), 1, + anon_sym_LT, + ACTIONS(2923), 1, + sym_identifier, + ACTIONS(2931), 1, + anon_sym_await, + ACTIONS(3405), 1, anon_sym_not, - ACTIONS(3607), 1, + ACTIONS(3407), 1, anon_sym_lambda, - ACTIONS(3609), 1, + ACTIONS(3409), 1, anon_sym_new, - STATE(2061), 1, + STATE(2052), 1, sym_primary_expression, - STATE(2170), 1, + STATE(2089), 1, sym_string, - STATE(2477), 1, + STATE(2284), 1, sym_list_splat_pattern, - STATE(2481), 1, + STATE(2345), 1, sym_expression, - STATE(5478), 1, + STATE(5464), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1342), 3, + ACTIONS(1941), 3, sym_integer, sym_true, sym_false, - ACTIONS(1326), 4, + ACTIONS(1951), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1470), 5, + ACTIONS(2927), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2459), 8, + STATE(2334), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -159950,7 +159817,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2457), 20, + STATE(2257), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -159971,66 +159838,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [47174] = 26, - ACTIONS(1328), 1, + [45758] = 26, + ACTIONS(1943), 1, + anon_sym_LPAREN, + ACTIONS(1949), 1, + anon_sym_LBRACK, + ACTIONS(1953), 1, anon_sym_LBRACE, - ACTIONS(1332), 1, - anon_sym_LT, - ACTIONS(1338), 1, + ACTIONS(1957), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1340), 1, + ACTIONS(1959), 1, anon_sym_None, - ACTIONS(1344), 1, + ACTIONS(1961), 1, sym_float, - ACTIONS(1360), 1, + ACTIONS(1965), 1, anon_sym_sizeof, - ACTIONS(1362), 1, + ACTIONS(1967), 1, sym_string_start, - ACTIONS(1472), 1, - anon_sym_LBRACK, - ACTIONS(1474), 1, - anon_sym_await, - ACTIONS(2427), 1, - anon_sym_LPAREN, - ACTIONS(2761), 1, - sym_identifier, - ACTIONS(2939), 1, + ACTIONS(2661), 1, anon_sym_STAR, - ACTIONS(3605), 1, + ACTIONS(2669), 1, + anon_sym_LT, + ACTIONS(2923), 1, + sym_identifier, + ACTIONS(2931), 1, + anon_sym_await, + ACTIONS(3405), 1, anon_sym_not, - ACTIONS(3607), 1, + ACTIONS(3407), 1, anon_sym_lambda, - ACTIONS(3609), 1, + ACTIONS(3409), 1, anon_sym_new, - STATE(2061), 1, + STATE(2052), 1, sym_primary_expression, - STATE(2170), 1, + STATE(2089), 1, sym_string, - STATE(2477), 1, + STATE(2284), 1, sym_list_splat_pattern, - STATE(2519), 1, + STATE(2347), 1, sym_expression, - STATE(5478), 1, + STATE(5464), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1342), 3, + ACTIONS(1941), 3, sym_integer, sym_true, sym_false, - ACTIONS(1326), 4, + ACTIONS(1951), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1470), 5, + ACTIONS(2927), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2459), 8, + STATE(2334), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -160039,7 +159906,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2457), 20, + STATE(2257), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -160060,66 +159927,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [47289] = 26, - ACTIONS(1328), 1, + [45873] = 26, + ACTIONS(1943), 1, + anon_sym_LPAREN, + ACTIONS(1949), 1, + anon_sym_LBRACK, + ACTIONS(1953), 1, anon_sym_LBRACE, - ACTIONS(1332), 1, - anon_sym_LT, - ACTIONS(1338), 1, + ACTIONS(1957), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1340), 1, + ACTIONS(1959), 1, anon_sym_None, - ACTIONS(1344), 1, + ACTIONS(1961), 1, sym_float, - ACTIONS(1360), 1, + ACTIONS(1965), 1, anon_sym_sizeof, - ACTIONS(1362), 1, + ACTIONS(1967), 1, sym_string_start, - ACTIONS(1472), 1, - anon_sym_LBRACK, - ACTIONS(1474), 1, - anon_sym_await, - ACTIONS(2427), 1, - anon_sym_LPAREN, - ACTIONS(2761), 1, - sym_identifier, - ACTIONS(2939), 1, + ACTIONS(2661), 1, anon_sym_STAR, - ACTIONS(3605), 1, + ACTIONS(2669), 1, + anon_sym_LT, + ACTIONS(2923), 1, + sym_identifier, + ACTIONS(2931), 1, + anon_sym_await, + ACTIONS(3405), 1, anon_sym_not, - ACTIONS(3607), 1, + ACTIONS(3407), 1, anon_sym_lambda, - ACTIONS(3609), 1, + ACTIONS(3409), 1, anon_sym_new, - STATE(2061), 1, + STATE(2052), 1, sym_primary_expression, - STATE(2170), 1, + STATE(2089), 1, sym_string, - STATE(2477), 1, + STATE(2284), 1, sym_list_splat_pattern, - STATE(2482), 1, + STATE(2348), 1, sym_expression, - STATE(5478), 1, + STATE(5464), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1342), 3, + ACTIONS(1941), 3, sym_integer, sym_true, sym_false, - ACTIONS(1326), 4, + ACTIONS(1951), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1470), 5, + ACTIONS(2927), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2459), 8, + STATE(2334), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -160128,7 +159995,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2457), 20, + STATE(2257), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -160149,66 +160016,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [47404] = 26, - ACTIONS(1328), 1, + [45988] = 26, + ACTIONS(1943), 1, + anon_sym_LPAREN, + ACTIONS(1949), 1, + anon_sym_LBRACK, + ACTIONS(1953), 1, anon_sym_LBRACE, - ACTIONS(1332), 1, - anon_sym_LT, - ACTIONS(1338), 1, + ACTIONS(1957), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1340), 1, + ACTIONS(1959), 1, anon_sym_None, - ACTIONS(1344), 1, + ACTIONS(1961), 1, sym_float, - ACTIONS(1360), 1, + ACTIONS(1965), 1, anon_sym_sizeof, - ACTIONS(1362), 1, + ACTIONS(1967), 1, sym_string_start, - ACTIONS(1472), 1, - anon_sym_LBRACK, - ACTIONS(1474), 1, - anon_sym_await, - ACTIONS(2427), 1, - anon_sym_LPAREN, - ACTIONS(2761), 1, - sym_identifier, - ACTIONS(2939), 1, + ACTIONS(2661), 1, anon_sym_STAR, - ACTIONS(3605), 1, + ACTIONS(2669), 1, + anon_sym_LT, + ACTIONS(2923), 1, + sym_identifier, + ACTIONS(2931), 1, + anon_sym_await, + ACTIONS(3405), 1, anon_sym_not, - ACTIONS(3607), 1, + ACTIONS(3407), 1, anon_sym_lambda, - ACTIONS(3609), 1, + ACTIONS(3409), 1, anon_sym_new, - STATE(2061), 1, + STATE(2052), 1, sym_primary_expression, - STATE(2170), 1, + STATE(2089), 1, sym_string, - STATE(2477), 1, + STATE(2284), 1, sym_list_splat_pattern, - STATE(2483), 1, + STATE(2349), 1, sym_expression, - STATE(5478), 1, + STATE(5464), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1342), 3, + ACTIONS(1941), 3, sym_integer, sym_true, sym_false, - ACTIONS(1326), 4, + ACTIONS(1951), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1470), 5, + ACTIONS(2927), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2459), 8, + STATE(2334), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -160217,7 +160084,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2457), 20, + STATE(2257), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -160238,66 +160105,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [47519] = 26, - ACTIONS(1328), 1, + [46103] = 26, + ACTIONS(1943), 1, + anon_sym_LPAREN, + ACTIONS(1949), 1, + anon_sym_LBRACK, + ACTIONS(1953), 1, anon_sym_LBRACE, - ACTIONS(1332), 1, - anon_sym_LT, - ACTIONS(1338), 1, + ACTIONS(1957), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1340), 1, + ACTIONS(1959), 1, anon_sym_None, - ACTIONS(1344), 1, + ACTIONS(1961), 1, sym_float, - ACTIONS(1360), 1, + ACTIONS(1965), 1, anon_sym_sizeof, - ACTIONS(1362), 1, + ACTIONS(1967), 1, sym_string_start, - ACTIONS(1472), 1, - anon_sym_LBRACK, - ACTIONS(1474), 1, - anon_sym_await, - ACTIONS(2427), 1, - anon_sym_LPAREN, - ACTIONS(2761), 1, - sym_identifier, - ACTIONS(2939), 1, + ACTIONS(2661), 1, anon_sym_STAR, - ACTIONS(3605), 1, + ACTIONS(2669), 1, + anon_sym_LT, + ACTIONS(2923), 1, + sym_identifier, + ACTIONS(2931), 1, + anon_sym_await, + ACTIONS(3405), 1, anon_sym_not, - ACTIONS(3607), 1, + ACTIONS(3407), 1, anon_sym_lambda, - ACTIONS(3609), 1, + ACTIONS(3409), 1, anon_sym_new, - STATE(2061), 1, + STATE(2052), 1, sym_primary_expression, - STATE(2170), 1, + STATE(2089), 1, sym_string, - STATE(2477), 1, + STATE(2284), 1, sym_list_splat_pattern, - STATE(2566), 1, + STATE(2350), 1, sym_expression, - STATE(5478), 1, + STATE(5464), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1342), 3, + ACTIONS(1941), 3, sym_integer, sym_true, sym_false, - ACTIONS(1326), 4, + ACTIONS(1951), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1470), 5, + ACTIONS(2927), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2459), 8, + STATE(2334), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -160306,7 +160173,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2457), 20, + STATE(2257), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -160327,66 +160194,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [47634] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, + [46218] = 26, + ACTIONS(1943), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(1949), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1953), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1957), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1959), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1961), 1, sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1245), 1, + ACTIONS(1965), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1967), 1, sym_string_start, - ACTIONS(2735), 1, - anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(2661), 1, anon_sym_STAR, - ACTIONS(3495), 1, + ACTIONS(2669), 1, + anon_sym_LT, + ACTIONS(2923), 1, + sym_identifier, + ACTIONS(2931), 1, + anon_sym_await, + ACTIONS(3405), 1, anon_sym_not, - ACTIONS(3497), 1, + ACTIONS(3407), 1, anon_sym_lambda, - ACTIONS(3499), 1, + ACTIONS(3409), 1, anon_sym_new, - STATE(2140), 1, - sym_string, - STATE(2265), 1, + STATE(2052), 1, sym_primary_expression, - STATE(2432), 1, + STATE(2089), 1, + sym_string, + STATE(2284), 1, sym_list_splat_pattern, - STATE(3136), 1, + STATE(2359), 1, sym_expression, - STATE(5387), 1, + STATE(5464), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(1941), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(1951), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(2927), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3081), 8, + STATE(2334), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -160395,7 +160262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2257), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -160416,66 +160283,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [47749] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, + [46333] = 26, + ACTIONS(1943), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(1949), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1953), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1957), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1959), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1961), 1, sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1245), 1, + ACTIONS(1965), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1967), 1, sym_string_start, - ACTIONS(2735), 1, - anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(2661), 1, anon_sym_STAR, - ACTIONS(3495), 1, + ACTIONS(2669), 1, + anon_sym_LT, + ACTIONS(2923), 1, + sym_identifier, + ACTIONS(2931), 1, + anon_sym_await, + ACTIONS(3405), 1, anon_sym_not, - ACTIONS(3497), 1, + ACTIONS(3407), 1, anon_sym_lambda, - ACTIONS(3499), 1, + ACTIONS(3409), 1, anon_sym_new, - STATE(2140), 1, - sym_string, - STATE(2265), 1, + STATE(2052), 1, sym_primary_expression, - STATE(2432), 1, + STATE(2089), 1, + sym_string, + STATE(2284), 1, sym_list_splat_pattern, - STATE(3133), 1, + STATE(2363), 1, sym_expression, - STATE(5387), 1, + STATE(5464), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(1941), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(1951), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(2927), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3081), 8, + STATE(2334), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -160484,7 +160351,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2257), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -160505,66 +160372,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [47864] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, + [46448] = 26, + ACTIONS(1382), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1386), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1390), 1, + anon_sym_LT, + ACTIONS(1394), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1396), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1400), 1, sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1245), 1, + ACTIONS(1406), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1408), 1, sym_string_start, - ACTIONS(2735), 1, - anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(2397), 1, anon_sym_STAR, - ACTIONS(3495), 1, + ACTIONS(2401), 1, + anon_sym_await, + ACTIONS(2449), 1, + anon_sym_LPAREN, + ACTIONS(3037), 1, + sym_identifier, + ACTIONS(3425), 1, anon_sym_not, - ACTIONS(3497), 1, + ACTIONS(3427), 1, anon_sym_lambda, - ACTIONS(3499), 1, + ACTIONS(3429), 1, anon_sym_new, - STATE(2140), 1, - sym_string, - STATE(2265), 1, + STATE(2165), 1, sym_primary_expression, - STATE(2432), 1, + STATE(2393), 1, + sym_string, + STATE(2644), 1, sym_list_splat_pattern, - STATE(3123), 1, + STATE(2709), 1, sym_expression, - STATE(5387), 1, + STATE(5476), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(1398), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(1384), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(2399), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3081), 8, + STATE(2652), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -160573,7 +160440,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2651), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -160594,66 +160461,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [47979] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, + [46563] = 26, + ACTIONS(1382), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1386), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1390), 1, + anon_sym_LT, + ACTIONS(1394), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1396), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1400), 1, sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1245), 1, + ACTIONS(1406), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1408), 1, sym_string_start, - ACTIONS(2735), 1, - anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(2397), 1, anon_sym_STAR, - ACTIONS(3495), 1, + ACTIONS(2401), 1, + anon_sym_await, + ACTIONS(2449), 1, + anon_sym_LPAREN, + ACTIONS(3037), 1, + sym_identifier, + ACTIONS(3425), 1, anon_sym_not, - ACTIONS(3497), 1, + ACTIONS(3427), 1, anon_sym_lambda, - ACTIONS(3499), 1, + ACTIONS(3429), 1, anon_sym_new, - STATE(2140), 1, - sym_string, - STATE(2265), 1, + STATE(2165), 1, sym_primary_expression, - STATE(2432), 1, + STATE(2393), 1, + sym_string, + STATE(2644), 1, sym_list_splat_pattern, - STATE(3076), 1, + STATE(2710), 1, sym_expression, - STATE(5387), 1, + STATE(5476), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(1398), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(1384), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(2399), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3081), 8, + STATE(2652), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -160662,7 +160529,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2651), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -160683,66 +160550,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [48094] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, + [46678] = 26, + ACTIONS(1382), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1386), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1390), 1, + anon_sym_LT, + ACTIONS(1394), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1396), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1400), 1, sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1245), 1, + ACTIONS(1406), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1408), 1, sym_string_start, - ACTIONS(2735), 1, - anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(2397), 1, anon_sym_STAR, - ACTIONS(3495), 1, + ACTIONS(2401), 1, + anon_sym_await, + ACTIONS(2449), 1, + anon_sym_LPAREN, + ACTIONS(3037), 1, + sym_identifier, + ACTIONS(3425), 1, anon_sym_not, - ACTIONS(3497), 1, + ACTIONS(3427), 1, anon_sym_lambda, - ACTIONS(3499), 1, + ACTIONS(3429), 1, anon_sym_new, - STATE(2140), 1, - sym_string, - STATE(2265), 1, + STATE(2165), 1, sym_primary_expression, - STATE(2432), 1, + STATE(2393), 1, + sym_string, + STATE(2644), 1, sym_list_splat_pattern, - STATE(3128), 1, + STATE(2711), 1, sym_expression, - STATE(5387), 1, + STATE(5476), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(1398), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(1384), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(2399), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3081), 8, + STATE(2652), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -160751,7 +160618,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2651), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -160772,66 +160639,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [48209] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, + [46793] = 26, + ACTIONS(1382), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1386), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1390), 1, + anon_sym_LT, + ACTIONS(1394), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1396), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1400), 1, sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1245), 1, + ACTIONS(1406), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1408), 1, sym_string_start, - ACTIONS(2735), 1, - anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(2397), 1, anon_sym_STAR, - ACTIONS(3611), 1, + ACTIONS(2401), 1, + anon_sym_await, + ACTIONS(2449), 1, + anon_sym_LPAREN, + ACTIONS(3037), 1, + sym_identifier, + ACTIONS(3425), 1, anon_sym_not, - ACTIONS(3613), 1, + ACTIONS(3427), 1, anon_sym_lambda, - ACTIONS(3615), 1, + ACTIONS(3429), 1, anon_sym_new, - STATE(2058), 1, + STATE(2165), 1, sym_primary_expression, - STATE(2140), 1, + STATE(2393), 1, sym_string, - STATE(2432), 1, + STATE(2644), 1, sym_list_splat_pattern, - STATE(2450), 1, + STATE(2667), 1, sym_expression, - STATE(5599), 1, + STATE(5476), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(1398), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(1384), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(2399), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2393), 8, + STATE(2652), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -160840,7 +160707,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2651), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -160861,66 +160728,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [48324] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, + [46908] = 26, + ACTIONS(1382), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1386), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1390), 1, + anon_sym_LT, + ACTIONS(1394), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1396), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1400), 1, sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1245), 1, + ACTIONS(1406), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1408), 1, sym_string_start, - ACTIONS(2735), 1, - anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(2397), 1, anon_sym_STAR, - ACTIONS(3495), 1, + ACTIONS(2401), 1, + anon_sym_await, + ACTIONS(2449), 1, + anon_sym_LPAREN, + ACTIONS(3037), 1, + sym_identifier, + ACTIONS(3425), 1, anon_sym_not, - ACTIONS(3497), 1, + ACTIONS(3427), 1, anon_sym_lambda, - ACTIONS(3499), 1, + ACTIONS(3429), 1, anon_sym_new, - STATE(2140), 1, - sym_string, - STATE(2265), 1, + STATE(2165), 1, sym_primary_expression, - STATE(2432), 1, + STATE(2393), 1, + sym_string, + STATE(2644), 1, sym_list_splat_pattern, - STATE(3129), 1, + STATE(2712), 1, sym_expression, - STATE(5387), 1, + STATE(5476), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(1398), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(1384), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(2399), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3081), 8, + STATE(2652), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -160929,7 +160796,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2651), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -160950,66 +160817,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [48439] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, + [47023] = 26, + ACTIONS(1382), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1386), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1390), 1, + anon_sym_LT, + ACTIONS(1394), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1396), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1400), 1, sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1245), 1, + ACTIONS(1406), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1408), 1, sym_string_start, - ACTIONS(2735), 1, - anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(2397), 1, anon_sym_STAR, - ACTIONS(3611), 1, + ACTIONS(2401), 1, + anon_sym_await, + ACTIONS(2449), 1, + anon_sym_LPAREN, + ACTIONS(3037), 1, + sym_identifier, + ACTIONS(3425), 1, anon_sym_not, - ACTIONS(3613), 1, + ACTIONS(3427), 1, anon_sym_lambda, - ACTIONS(3615), 1, + ACTIONS(3429), 1, anon_sym_new, - STATE(2058), 1, + STATE(2165), 1, sym_primary_expression, - STATE(2140), 1, + STATE(2393), 1, sym_string, - STATE(2432), 1, + STATE(2644), 1, sym_list_splat_pattern, - STATE(2458), 1, + STATE(2713), 1, sym_expression, - STATE(5599), 1, + STATE(5476), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(1398), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(1384), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(2399), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2393), 8, + STATE(2652), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -161018,7 +160885,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2651), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -161039,66 +160906,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [48554] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, + [47138] = 26, + ACTIONS(1382), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1386), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1390), 1, + anon_sym_LT, + ACTIONS(1394), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1396), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1400), 1, sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1245), 1, + ACTIONS(1406), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1408), 1, sym_string_start, - ACTIONS(2735), 1, - anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(2397), 1, anon_sym_STAR, - ACTIONS(3495), 1, + ACTIONS(2401), 1, + anon_sym_await, + ACTIONS(2449), 1, + anon_sym_LPAREN, + ACTIONS(3037), 1, + sym_identifier, + ACTIONS(3425), 1, anon_sym_not, - ACTIONS(3497), 1, + ACTIONS(3427), 1, anon_sym_lambda, - ACTIONS(3499), 1, + ACTIONS(3429), 1, anon_sym_new, - STATE(2140), 1, - sym_string, - STATE(2265), 1, + STATE(2165), 1, sym_primary_expression, - STATE(2432), 1, + STATE(2393), 1, + sym_string, + STATE(2644), 1, sym_list_splat_pattern, - STATE(3134), 1, + STATE(2714), 1, sym_expression, - STATE(5387), 1, + STATE(5476), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(1398), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(1384), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(2399), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3081), 8, + STATE(2652), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -161107,7 +160974,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2651), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -161128,66 +160995,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [48669] = 26, - ACTIONS(2479), 1, + [47253] = 26, + ACTIONS(2461), 1, anon_sym_LPAREN, - ACTIONS(2485), 1, + ACTIONS(2467), 1, anon_sym_LBRACK, - ACTIONS(2489), 1, + ACTIONS(2471), 1, anon_sym_LBRACE, - ACTIONS(2493), 1, + ACTIONS(2475), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2495), 1, + ACTIONS(2477), 1, anon_sym_None, - ACTIONS(2497), 1, + ACTIONS(2479), 1, sym_float, - ACTIONS(2501), 1, + ACTIONS(2483), 1, anon_sym_sizeof, - ACTIONS(2503), 1, + ACTIONS(2485), 1, sym_string_start, - ACTIONS(2525), 1, + ACTIONS(2649), 1, anon_sym_LT, - ACTIONS(2803), 1, - sym_identifier, - ACTIONS(2811), 1, + ACTIONS(2653), 1, anon_sym_await, - ACTIONS(2947), 1, + ACTIONS(2935), 1, + sym_identifier, + ACTIONS(3103), 1, anon_sym_STAR, - ACTIONS(3513), 1, + ACTIONS(3431), 1, anon_sym_not, - ACTIONS(3515), 1, + ACTIONS(3433), 1, anon_sym_lambda, - ACTIONS(3517), 1, + ACTIONS(3435), 1, anon_sym_new, - STATE(2062), 1, + STATE(2094), 1, sym_primary_expression, - STATE(2157), 1, + STATE(2200), 1, sym_string, - STATE(2486), 1, + STATE(2579), 1, sym_expression, - STATE(2523), 1, + STATE(2589), 1, sym_list_splat_pattern, - STATE(5405), 1, + STATE(5490), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 3, + ACTIONS(2459), 3, sym_integer, sym_true, sym_false, - ACTIONS(2487), 4, + ACTIONS(2469), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2807), 5, + ACTIONS(2641), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2421), 8, + STATE(2631), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -161196,7 +161063,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2418), 20, + STATE(2630), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -161217,66 +161084,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [48784] = 26, - ACTIONS(2479), 1, + [47368] = 26, + ACTIONS(2461), 1, anon_sym_LPAREN, - ACTIONS(2485), 1, + ACTIONS(2467), 1, anon_sym_LBRACK, - ACTIONS(2489), 1, + ACTIONS(2471), 1, anon_sym_LBRACE, - ACTIONS(2493), 1, + ACTIONS(2475), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2495), 1, + ACTIONS(2477), 1, anon_sym_None, - ACTIONS(2497), 1, + ACTIONS(2479), 1, sym_float, - ACTIONS(2501), 1, + ACTIONS(2483), 1, anon_sym_sizeof, - ACTIONS(2503), 1, + ACTIONS(2485), 1, sym_string_start, - ACTIONS(2525), 1, + ACTIONS(2649), 1, anon_sym_LT, - ACTIONS(2803), 1, - sym_identifier, - ACTIONS(2811), 1, + ACTIONS(2653), 1, anon_sym_await, - ACTIONS(2947), 1, + ACTIONS(2935), 1, + sym_identifier, + ACTIONS(3103), 1, anon_sym_STAR, - ACTIONS(3513), 1, + ACTIONS(3431), 1, anon_sym_not, - ACTIONS(3515), 1, + ACTIONS(3433), 1, anon_sym_lambda, - ACTIONS(3517), 1, + ACTIONS(3435), 1, anon_sym_new, - STATE(2062), 1, + STATE(2094), 1, sym_primary_expression, - STATE(2157), 1, + STATE(2200), 1, sym_string, - STATE(2487), 1, + STATE(2582), 1, sym_expression, - STATE(2523), 1, + STATE(2589), 1, sym_list_splat_pattern, - STATE(5405), 1, + STATE(5490), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 3, + ACTIONS(2459), 3, sym_integer, sym_true, sym_false, - ACTIONS(2487), 4, + ACTIONS(2469), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2807), 5, + ACTIONS(2641), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2421), 8, + STATE(2631), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -161285,7 +161152,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2418), 20, + STATE(2630), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -161306,66 +161173,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [48899] = 26, - ACTIONS(2479), 1, + [47483] = 26, + ACTIONS(2461), 1, anon_sym_LPAREN, - ACTIONS(2485), 1, + ACTIONS(2467), 1, anon_sym_LBRACK, - ACTIONS(2489), 1, + ACTIONS(2471), 1, anon_sym_LBRACE, - ACTIONS(2493), 1, + ACTIONS(2475), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2495), 1, + ACTIONS(2477), 1, anon_sym_None, - ACTIONS(2497), 1, + ACTIONS(2479), 1, sym_float, - ACTIONS(2501), 1, + ACTIONS(2483), 1, anon_sym_sizeof, - ACTIONS(2503), 1, + ACTIONS(2485), 1, sym_string_start, - ACTIONS(2525), 1, + ACTIONS(2649), 1, anon_sym_LT, - ACTIONS(2803), 1, - sym_identifier, - ACTIONS(2811), 1, + ACTIONS(2653), 1, anon_sym_await, - ACTIONS(2947), 1, + ACTIONS(2935), 1, + sym_identifier, + ACTIONS(3103), 1, anon_sym_STAR, - ACTIONS(3513), 1, + ACTIONS(3431), 1, anon_sym_not, - ACTIONS(3515), 1, + ACTIONS(3433), 1, anon_sym_lambda, - ACTIONS(3517), 1, + ACTIONS(3435), 1, anon_sym_new, - STATE(2062), 1, + STATE(2094), 1, sym_primary_expression, - STATE(2157), 1, + STATE(2200), 1, sym_string, - STATE(2488), 1, + STATE(2583), 1, sym_expression, - STATE(2523), 1, + STATE(2589), 1, sym_list_splat_pattern, - STATE(5405), 1, + STATE(5490), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 3, + ACTIONS(2459), 3, sym_integer, sym_true, sym_false, - ACTIONS(2487), 4, + ACTIONS(2469), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2807), 5, + ACTIONS(2641), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2421), 8, + STATE(2631), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -161374,7 +161241,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2418), 20, + STATE(2630), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -161395,66 +161262,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [49014] = 26, - ACTIONS(2479), 1, + [47598] = 26, + ACTIONS(2461), 1, anon_sym_LPAREN, - ACTIONS(2485), 1, + ACTIONS(2467), 1, anon_sym_LBRACK, - ACTIONS(2489), 1, + ACTIONS(2471), 1, anon_sym_LBRACE, - ACTIONS(2493), 1, + ACTIONS(2475), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2495), 1, + ACTIONS(2477), 1, anon_sym_None, - ACTIONS(2497), 1, + ACTIONS(2479), 1, sym_float, - ACTIONS(2501), 1, + ACTIONS(2483), 1, anon_sym_sizeof, - ACTIONS(2503), 1, + ACTIONS(2485), 1, sym_string_start, - ACTIONS(2525), 1, + ACTIONS(2649), 1, anon_sym_LT, - ACTIONS(2803), 1, - sym_identifier, - ACTIONS(2811), 1, + ACTIONS(2653), 1, anon_sym_await, - ACTIONS(2947), 1, + ACTIONS(2935), 1, + sym_identifier, + ACTIONS(3103), 1, anon_sym_STAR, - ACTIONS(3513), 1, + ACTIONS(3431), 1, anon_sym_not, - ACTIONS(3515), 1, + ACTIONS(3433), 1, anon_sym_lambda, - ACTIONS(3517), 1, + ACTIONS(3435), 1, anon_sym_new, - STATE(2062), 1, + STATE(2094), 1, sym_primary_expression, - STATE(2157), 1, + STATE(2200), 1, sym_string, - STATE(2441), 1, - sym_expression, - STATE(2523), 1, + STATE(2589), 1, sym_list_splat_pattern, - STATE(5405), 1, + STATE(2636), 1, + sym_expression, + STATE(5490), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 3, + ACTIONS(2459), 3, sym_integer, sym_true, sym_false, - ACTIONS(2487), 4, + ACTIONS(2469), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2807), 5, + ACTIONS(2641), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2421), 8, + STATE(2631), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -161463,7 +161330,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2418), 20, + STATE(2630), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -161484,66 +161351,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [49129] = 26, - ACTIONS(2479), 1, + [47713] = 26, + ACTIONS(2461), 1, anon_sym_LPAREN, - ACTIONS(2485), 1, + ACTIONS(2467), 1, anon_sym_LBRACK, - ACTIONS(2489), 1, + ACTIONS(2471), 1, anon_sym_LBRACE, - ACTIONS(2493), 1, + ACTIONS(2475), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2495), 1, + ACTIONS(2477), 1, anon_sym_None, - ACTIONS(2497), 1, + ACTIONS(2479), 1, sym_float, - ACTIONS(2501), 1, + ACTIONS(2483), 1, anon_sym_sizeof, - ACTIONS(2503), 1, + ACTIONS(2485), 1, sym_string_start, - ACTIONS(2525), 1, + ACTIONS(2649), 1, anon_sym_LT, - ACTIONS(2803), 1, - sym_identifier, - ACTIONS(2811), 1, + ACTIONS(2653), 1, anon_sym_await, - ACTIONS(2947), 1, + ACTIONS(2935), 1, + sym_identifier, + ACTIONS(3103), 1, anon_sym_STAR, - ACTIONS(3513), 1, + ACTIONS(3431), 1, anon_sym_not, - ACTIONS(3515), 1, + ACTIONS(3433), 1, anon_sym_lambda, - ACTIONS(3517), 1, + ACTIONS(3435), 1, anon_sym_new, - STATE(2062), 1, + STATE(2094), 1, sym_primary_expression, - STATE(2157), 1, + STATE(2200), 1, sym_string, - STATE(2489), 1, + STATE(2584), 1, sym_expression, - STATE(2523), 1, + STATE(2589), 1, sym_list_splat_pattern, - STATE(5405), 1, + STATE(5490), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 3, + ACTIONS(2459), 3, sym_integer, sym_true, sym_false, - ACTIONS(2487), 4, + ACTIONS(2469), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2807), 5, + ACTIONS(2641), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2421), 8, + STATE(2631), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -161552,7 +161419,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2418), 20, + STATE(2630), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -161573,66 +161440,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [49244] = 26, - ACTIONS(2451), 1, + [47828] = 26, + ACTIONS(2461), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(2467), 1, anon_sym_LBRACK, - ACTIONS(2461), 1, + ACTIONS(2471), 1, anon_sym_LBRACE, - ACTIONS(2465), 1, + ACTIONS(2475), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2467), 1, + ACTIONS(2477), 1, anon_sym_None, - ACTIONS(2469), 1, + ACTIONS(2479), 1, sym_float, - ACTIONS(2473), 1, + ACTIONS(2483), 1, anon_sym_sizeof, - ACTIONS(2475), 1, + ACTIONS(2485), 1, sym_string_start, - ACTIONS(2637), 1, - anon_sym_not, - ACTIONS(2639), 1, + ACTIONS(2649), 1, anon_sym_LT, - ACTIONS(2641), 1, - anon_sym_lambda, - ACTIONS(2643), 1, + ACTIONS(2653), 1, anon_sym_await, - ACTIONS(2645), 1, - anon_sym_new, - ACTIONS(2963), 1, + ACTIONS(2935), 1, sym_identifier, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_STAR, - STATE(2077), 1, + ACTIONS(3431), 1, + anon_sym_not, + ACTIONS(3433), 1, + anon_sym_lambda, + ACTIONS(3435), 1, + anon_sym_new, + STATE(2094), 1, sym_primary_expression, - STATE(2218), 1, + STATE(2200), 1, sym_string, - STATE(2591), 1, - sym_list_splat_pattern, - STATE(4186), 1, + STATE(2585), 1, sym_expression, - STATE(5609), 1, + STATE(2589), 1, + sym_list_splat_pattern, + STATE(5490), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2449), 3, + ACTIONS(2459), 3, sym_integer, sym_true, sym_false, - ACTIONS(2459), 4, + ACTIONS(2469), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2631), 5, + ACTIONS(2641), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2604), 8, + STATE(2631), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -161641,7 +161508,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2631), 20, + STATE(2630), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -161662,66 +161529,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [49359] = 26, - ACTIONS(2479), 1, + [47943] = 26, + ACTIONS(2461), 1, anon_sym_LPAREN, - ACTIONS(2485), 1, + ACTIONS(2467), 1, anon_sym_LBRACK, - ACTIONS(2489), 1, + ACTIONS(2471), 1, anon_sym_LBRACE, - ACTIONS(2493), 1, + ACTIONS(2475), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2495), 1, + ACTIONS(2477), 1, anon_sym_None, - ACTIONS(2497), 1, + ACTIONS(2479), 1, sym_float, - ACTIONS(2501), 1, + ACTIONS(2483), 1, anon_sym_sizeof, - ACTIONS(2503), 1, + ACTIONS(2485), 1, sym_string_start, - ACTIONS(2525), 1, + ACTIONS(2649), 1, anon_sym_LT, - ACTIONS(2803), 1, - sym_identifier, - ACTIONS(2811), 1, + ACTIONS(2653), 1, anon_sym_await, - ACTIONS(2947), 1, + ACTIONS(2935), 1, + sym_identifier, + ACTIONS(3103), 1, anon_sym_STAR, - ACTIONS(3513), 1, + ACTIONS(3431), 1, anon_sym_not, - ACTIONS(3515), 1, + ACTIONS(3433), 1, anon_sym_lambda, - ACTIONS(3517), 1, + ACTIONS(3435), 1, anon_sym_new, - STATE(2062), 1, + STATE(2094), 1, sym_primary_expression, - STATE(2157), 1, + STATE(2200), 1, sym_string, - STATE(2490), 1, + STATE(2587), 1, sym_expression, - STATE(2523), 1, + STATE(2589), 1, sym_list_splat_pattern, - STATE(5405), 1, + STATE(5490), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 3, + ACTIONS(2459), 3, sym_integer, sym_true, sym_false, - ACTIONS(2487), 4, + ACTIONS(2469), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2807), 5, + ACTIONS(2641), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2421), 8, + STATE(2631), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -161730,7 +161597,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2418), 20, + STATE(2630), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -161751,66 +161618,198 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [49474] = 26, - ACTIONS(2479), 1, + [48058] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3591), 14, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(2485), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(2489), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(2493), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, anon_sym_DOT_DOT_DOT, - ACTIONS(2495), 1, - anon_sym_None, - ACTIONS(2497), 1, sym_float, - ACTIONS(2501), 1, + ACTIONS(3593), 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, - ACTIONS(2503), 1, + [48127] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3539), 14, sym_string_start, - ACTIONS(2525), 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(2803), 1, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3537), 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(2811), 1, anon_sym_await, - ACTIONS(2947), 1, - anon_sym_STAR, - ACTIONS(3513), 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, + [48196] = 26, + ACTIONS(1211), 1, + sym_identifier, + ACTIONS(1213), 1, + anon_sym_LPAREN, + ACTIONS(1219), 1, + anon_sym_LBRACK, + ACTIONS(1223), 1, + anon_sym_LBRACE, + ACTIONS(1225), 1, anon_sym_not, - ACTIONS(3515), 1, + ACTIONS(1231), 1, anon_sym_lambda, - ACTIONS(3517), 1, + ACTIONS(1233), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1235), 1, + anon_sym_None, + ACTIONS(1239), 1, + sym_float, + ACTIONS(1241), 1, + anon_sym_await, + ACTIONS(1243), 1, anon_sym_new, - STATE(2062), 1, + ACTIONS(1245), 1, + anon_sym_sizeof, + ACTIONS(1247), 1, + sym_string_start, + ACTIONS(2705), 1, + anon_sym_LT, + ACTIONS(2955), 1, + anon_sym_STAR, + STATE(2072), 1, sym_primary_expression, - STATE(2157), 1, + STATE(2161), 1, sym_string, - STATE(2491), 1, - sym_expression, - STATE(2523), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(5405), 1, + STATE(3089), 1, + sym_expression, + STATE(5579), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 3, + ACTIONS(1237), 3, sym_integer, sym_true, sym_false, - ACTIONS(2487), 4, + ACTIONS(1227), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2807), 5, + ACTIONS(1217), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2421), 8, + STATE(3088), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -161819,7 +161818,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2418), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -161840,66 +161839,69 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [49589] = 26, - ACTIONS(2401), 1, + [48311] = 27, + ACTIONS(1943), 1, anon_sym_LPAREN, - ACTIONS(2407), 1, + ACTIONS(1949), 1, anon_sym_LBRACK, - ACTIONS(2411), 1, + ACTIONS(1953), 1, anon_sym_LBRACE, - ACTIONS(2415), 1, + ACTIONS(1957), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2417), 1, + ACTIONS(1959), 1, anon_sym_None, - ACTIONS(2419), 1, + ACTIONS(1961), 1, sym_float, - ACTIONS(2423), 1, + ACTIONS(1965), 1, anon_sym_sizeof, - ACTIONS(2425), 1, + ACTIONS(1967), 1, sym_string_start, - ACTIONS(2535), 1, - sym_identifier, - ACTIONS(2551), 1, - anon_sym_LT, - ACTIONS(2557), 1, - anon_sym_await, - ACTIONS(2981), 1, + ACTIONS(2661), 1, anon_sym_STAR, - ACTIONS(3519), 1, + ACTIONS(2669), 1, + anon_sym_LT, + ACTIONS(3045), 1, anon_sym_not, - ACTIONS(3521), 1, + ACTIONS(3047), 1, anon_sym_lambda, - ACTIONS(3523), 1, + ACTIONS(3049), 1, anon_sym_new, - STATE(2040), 1, - sym_primary_expression, - STATE(2103), 1, + ACTIONS(3647), 1, + sym_identifier, + ACTIONS(3651), 1, + anon_sym_await, + STATE(2089), 1, sym_string, - STATE(2250), 1, - sym_expression, - STATE(2309), 1, + STATE(2162), 1, + sym_primary_expression, + STATE(2284), 1, sym_list_splat_pattern, - STATE(5426), 1, + STATE(4229), 1, + sym_expression, + STATE(5675), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2399), 3, + STATE(2270), 2, + sym_attribute, + sym_subscript, + ACTIONS(1941), 3, sym_integer, sym_true, sym_false, - ACTIONS(2409), 4, + ACTIONS(1951), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2543), 5, + ACTIONS(3649), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2236), 8, + STATE(3825), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -161908,11 +161910,9 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2377), 20, + STATE(2257), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -161929,66 +161929,264 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [49704] = 26, - ACTIONS(2401), 1, + [48428] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3595), 14, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(2407), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(2411), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(2415), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, anon_sym_DOT_DOT_DOT, - ACTIONS(2417), 1, - anon_sym_None, - ACTIONS(2419), 1, sym_float, - ACTIONS(2423), 1, + ACTIONS(3597), 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, - ACTIONS(2425), 1, + [48497] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3655), 14, + sym__dedent, sym_string_start, - ACTIONS(2535), 1, - sym_identifier, - ACTIONS(2551), 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(2557), 1, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3653), 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(2981), 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, + [48566] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3543), 14, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, anon_sym_STAR, - ACTIONS(3519), 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(3541), 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, + [48635] = 26, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(3521), 1, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(3523), 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, - STATE(2040), 1, + ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, + sym_string_start, + ACTIONS(1001), 1, + sym_identifier, + ACTIONS(1041), 1, + anon_sym_await, + ACTIONS(1281), 1, + anon_sym_LPAREN, + ACTIONS(1287), 1, + anon_sym_LBRACK, + ACTIONS(3073), 1, + anon_sym_STAR, + STATE(2032), 1, sym_primary_expression, - STATE(2103), 1, + STATE(2043), 1, sym_string, - STATE(2254), 1, - sym_expression, - STATE(2309), 1, + STATE(2088), 1, sym_list_splat_pattern, - STATE(5426), 1, + STATE(4134), 1, + sym_expression, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2399), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(2409), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2543), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2236), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -161997,7 +162195,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2377), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -162018,66 +162216,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [49819] = 26, - ACTIONS(2401), 1, - anon_sym_LPAREN, - ACTIONS(2407), 1, - anon_sym_LBRACK, - ACTIONS(2411), 1, + [48750] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2415), 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(2417), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2419), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(2423), 1, + ACTIONS(99), 1, + anon_sym_new, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(2425), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2535), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(2551), 1, - anon_sym_LT, - ACTIONS(2557), 1, + ACTIONS(1041), 1, anon_sym_await, - ACTIONS(2981), 1, + ACTIONS(1281), 1, + anon_sym_LPAREN, + ACTIONS(1287), 1, + anon_sym_LBRACK, + ACTIONS(3073), 1, anon_sym_STAR, - ACTIONS(3519), 1, - anon_sym_not, - ACTIONS(3521), 1, - anon_sym_lambda, - ACTIONS(3523), 1, - anon_sym_new, - STATE(2040), 1, + STATE(2032), 1, sym_primary_expression, - STATE(2103), 1, + STATE(2043), 1, sym_string, - STATE(2256), 1, - sym_expression, - STATE(2309), 1, + STATE(2088), 1, sym_list_splat_pattern, - STATE(5426), 1, + STATE(4148), 1, + sym_expression, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2399), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(2409), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2543), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2236), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -162086,7 +162284,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2377), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -162107,66 +162305,69 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [49934] = 26, - ACTIONS(2401), 1, - anon_sym_LPAREN, - ACTIONS(2407), 1, + [48865] = 27, + ACTIONS(1382), 1, anon_sym_LBRACK, - ACTIONS(2411), 1, + ACTIONS(1386), 1, anon_sym_LBRACE, - ACTIONS(2415), 1, + ACTIONS(1388), 1, + anon_sym_not, + ACTIONS(1390), 1, + anon_sym_LT, + ACTIONS(1392), 1, + anon_sym_lambda, + ACTIONS(1394), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2417), 1, + ACTIONS(1396), 1, anon_sym_None, - ACTIONS(2419), 1, + ACTIONS(1400), 1, sym_float, - ACTIONS(2423), 1, + ACTIONS(1404), 1, + anon_sym_new, + ACTIONS(1406), 1, anon_sym_sizeof, - ACTIONS(2425), 1, + ACTIONS(1408), 1, sym_string_start, - ACTIONS(2535), 1, + ACTIONS(2397), 1, + anon_sym_STAR, + ACTIONS(2449), 1, + anon_sym_LPAREN, + ACTIONS(3657), 1, sym_identifier, - ACTIONS(2551), 1, - anon_sym_LT, - ACTIONS(2557), 1, + ACTIONS(3661), 1, anon_sym_await, - ACTIONS(2981), 1, - anon_sym_STAR, - ACTIONS(3519), 1, - anon_sym_not, - ACTIONS(3521), 1, - anon_sym_lambda, - ACTIONS(3523), 1, - anon_sym_new, - STATE(2040), 1, + STATE(2151), 1, sym_primary_expression, - STATE(2103), 1, + STATE(2393), 1, sym_string, - STATE(2309), 1, + STATE(2644), 1, sym_list_splat_pattern, - STATE(2320), 1, + STATE(4153), 1, sym_expression, - STATE(5426), 1, + STATE(5398), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2399), 3, + STATE(2430), 2, + sym_attribute, + sym_subscript, + ACTIONS(1398), 3, sym_integer, sym_true, sym_false, - ACTIONS(2409), 4, + ACTIONS(1384), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2543), 5, + ACTIONS(3659), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2236), 8, + STATE(2652), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -162175,11 +162376,9 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2377), 20, + STATE(2651), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -162196,66 +162395,132 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [50049] = 26, - ACTIONS(2401), 1, + [48982] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3547), 14, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(2407), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(2411), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(2415), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, anon_sym_DOT_DOT_DOT, - ACTIONS(2417), 1, + sym_float, + ACTIONS(3545), 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, + [49051] = 26, + ACTIONS(2413), 1, + anon_sym_LPAREN, ACTIONS(2419), 1, - sym_float, + anon_sym_LBRACK, ACTIONS(2423), 1, + anon_sym_LBRACE, + ACTIONS(2427), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2429), 1, + anon_sym_None, + ACTIONS(2431), 1, + sym_float, + ACTIONS(2435), 1, anon_sym_sizeof, - ACTIONS(2425), 1, + ACTIONS(2437), 1, sym_string_start, - ACTIONS(2535), 1, + ACTIONS(2521), 1, sym_identifier, - ACTIONS(2551), 1, - anon_sym_LT, - ACTIONS(2557), 1, - anon_sym_await, - ACTIONS(2981), 1, - anon_sym_STAR, - ACTIONS(3519), 1, + ACTIONS(2535), 1, anon_sym_not, - ACTIONS(3521), 1, + ACTIONS(2537), 1, + anon_sym_LT, + ACTIONS(2539), 1, anon_sym_lambda, - ACTIONS(3523), 1, + ACTIONS(2543), 1, + anon_sym_await, + ACTIONS(2545), 1, anon_sym_new, - STATE(2040), 1, + ACTIONS(3011), 1, + anon_sym_STAR, + STATE(2061), 1, sym_primary_expression, - STATE(2103), 1, + STATE(2099), 1, sym_string, - STATE(2257), 1, - sym_expression, - STATE(2309), 1, + STATE(2256), 1, sym_list_splat_pattern, - STATE(5426), 1, + STATE(4100), 1, + sym_expression, + STATE(5687), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2399), 3, + ACTIONS(2411), 3, sym_integer, sym_true, sym_false, - ACTIONS(2409), 4, + ACTIONS(2421), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2543), 5, + ACTIONS(2529), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2236), 8, + STATE(2326), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -162264,7 +162529,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2377), 20, + STATE(2298), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -162285,66 +162550,198 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [50164] = 26, - ACTIONS(2401), 1, + [49166] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3393), 14, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(2407), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(2411), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(2415), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, anon_sym_DOT_DOT_DOT, - ACTIONS(2417), 1, - anon_sym_None, - ACTIONS(2419), 1, sym_float, - ACTIONS(2423), 1, + ACTIONS(3391), 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, - ACTIONS(2425), 1, + [49235] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3551), 14, sym_string_start, - ACTIONS(2535), 1, - sym_identifier, - ACTIONS(2551), 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(2557), 1, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3549), 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(2981), 1, - anon_sym_STAR, - ACTIONS(3519), 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, + [49304] = 26, + ACTIONS(1211), 1, + sym_identifier, + ACTIONS(1213), 1, + anon_sym_LPAREN, + ACTIONS(1219), 1, + anon_sym_LBRACK, + ACTIONS(1223), 1, + anon_sym_LBRACE, + ACTIONS(1225), 1, anon_sym_not, - ACTIONS(3521), 1, + ACTIONS(1231), 1, anon_sym_lambda, - ACTIONS(3523), 1, + ACTIONS(1233), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1235), 1, + anon_sym_None, + ACTIONS(1239), 1, + sym_float, + ACTIONS(1241), 1, + anon_sym_await, + ACTIONS(1243), 1, anon_sym_new, - STATE(2040), 1, + ACTIONS(1245), 1, + anon_sym_sizeof, + ACTIONS(1247), 1, + sym_string_start, + ACTIONS(2705), 1, + anon_sym_LT, + ACTIONS(2955), 1, + anon_sym_STAR, + STATE(2072), 1, sym_primary_expression, - STATE(2103), 1, + STATE(2161), 1, sym_string, - STATE(2259), 1, + STATE(2536), 1, + sym_list_splat_pattern, + STATE(4369), 1, sym_expression, - STATE(2309), 1, - sym_list_splat_pattern, - STATE(5426), 1, + STATE(5579), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2399), 3, + ACTIONS(1237), 3, sym_integer, sym_true, sym_false, - ACTIONS(2409), 4, + ACTIONS(1227), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2543), 5, + ACTIONS(1217), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2236), 8, + STATE(3088), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -162353,7 +162750,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2377), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -162374,66 +162771,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [50279] = 26, - ACTIONS(2401), 1, + [49419] = 26, + ACTIONS(1211), 1, + sym_identifier, + ACTIONS(1213), 1, anon_sym_LPAREN, - ACTIONS(2407), 1, + ACTIONS(1219), 1, anon_sym_LBRACK, - ACTIONS(2411), 1, + ACTIONS(1223), 1, anon_sym_LBRACE, - ACTIONS(2415), 1, + ACTIONS(1225), 1, + anon_sym_not, + ACTIONS(1231), 1, + anon_sym_lambda, + ACTIONS(1233), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2417), 1, + ACTIONS(1235), 1, anon_sym_None, - ACTIONS(2419), 1, + ACTIONS(1239), 1, sym_float, - ACTIONS(2423), 1, + ACTIONS(1241), 1, + anon_sym_await, + ACTIONS(1243), 1, + anon_sym_new, + ACTIONS(1245), 1, anon_sym_sizeof, - ACTIONS(2425), 1, + ACTIONS(1247), 1, sym_string_start, - ACTIONS(2535), 1, - sym_identifier, - ACTIONS(2551), 1, + ACTIONS(2705), 1, anon_sym_LT, - ACTIONS(2557), 1, - anon_sym_await, - ACTIONS(2981), 1, + ACTIONS(2955), 1, anon_sym_STAR, - ACTIONS(3519), 1, - anon_sym_not, - ACTIONS(3521), 1, - anon_sym_lambda, - ACTIONS(3523), 1, - anon_sym_new, - STATE(2040), 1, + STATE(2072), 1, sym_primary_expression, - STATE(2103), 1, + STATE(2161), 1, sym_string, - STATE(2264), 1, - sym_expression, - STATE(2309), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(5426), 1, + STATE(4195), 1, + sym_expression, + STATE(5579), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2399), 3, + ACTIONS(1237), 3, sym_integer, sym_true, sym_false, - ACTIONS(2409), 4, + ACTIONS(1227), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2543), 5, + ACTIONS(1217), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2236), 8, + STATE(3088), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -162442,7 +162839,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2377), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -162463,66 +162860,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [50394] = 26, - ACTIONS(1907), 1, + [49534] = 26, + ACTIONS(1211), 1, + sym_identifier, + ACTIONS(1213), 1, anon_sym_LPAREN, - ACTIONS(1913), 1, + ACTIONS(1219), 1, anon_sym_LBRACK, - ACTIONS(1917), 1, + ACTIONS(1223), 1, anon_sym_LBRACE, - ACTIONS(1921), 1, + ACTIONS(1225), 1, + anon_sym_not, + ACTIONS(1231), 1, + anon_sym_lambda, + ACTIONS(1233), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1923), 1, + ACTIONS(1235), 1, anon_sym_None, - ACTIONS(1925), 1, + ACTIONS(1239), 1, sym_float, - ACTIONS(1929), 1, + ACTIONS(1241), 1, + anon_sym_await, + ACTIONS(1243), 1, + anon_sym_new, + ACTIONS(1245), 1, anon_sym_sizeof, - ACTIONS(1931), 1, + ACTIONS(1247), 1, sym_string_start, - ACTIONS(2653), 1, - anon_sym_STAR, - ACTIONS(2661), 1, + ACTIONS(2705), 1, anon_sym_LT, - ACTIONS(2793), 1, - sym_identifier, - ACTIONS(2801), 1, - anon_sym_await, - ACTIONS(3537), 1, - anon_sym_not, - ACTIONS(3539), 1, - anon_sym_lambda, - ACTIONS(3541), 1, - anon_sym_new, - STATE(2051), 1, + ACTIONS(2955), 1, + anon_sym_STAR, + STATE(2072), 1, sym_primary_expression, - STATE(2073), 1, + STATE(2161), 1, sym_string, - STATE(2258), 1, - sym_expression, - STATE(2357), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(5442), 1, + STATE(4347), 1, + sym_expression, + STATE(5579), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1905), 3, + ACTIONS(1237), 3, sym_integer, sym_true, sym_false, - ACTIONS(1915), 4, + ACTIONS(1227), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2797), 5, + ACTIONS(1217), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2345), 8, + STATE(3088), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -162531,7 +162928,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2255), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -162552,511 +162949,924 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [50509] = 26, - ACTIONS(1907), 1, + [49649] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3555), 14, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(1913), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(1917), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(1921), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, anon_sym_DOT_DOT_DOT, - ACTIONS(1923), 1, - anon_sym_None, - ACTIONS(1925), 1, sym_float, - ACTIONS(1929), 1, - anon_sym_sizeof, - ACTIONS(1931), 1, - sym_string_start, - ACTIONS(2653), 1, - anon_sym_STAR, - ACTIONS(2661), 1, - anon_sym_LT, - ACTIONS(2793), 1, - sym_identifier, - ACTIONS(2801), 1, - anon_sym_await, - ACTIONS(3537), 1, + ACTIONS(3553), 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(3539), 1, anon_sym_lambda, - ACTIONS(3541), 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(2051), 1, - sym_primary_expression, - STATE(2073), 1, - sym_string, - STATE(2357), 1, - sym_list_splat_pattern, - STATE(2378), 1, - sym_expression, - STATE(5442), 1, - sym__named_expression_lhs, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [49718] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1905), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1915), 4, + ACTIONS(3559), 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(2797), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3557), 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(2345), 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(2255), 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, - [50624] = 26, - ACTIONS(1907), 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, + [49787] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3337), 14, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(1913), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(1917), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(1921), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, anon_sym_DOT_DOT_DOT, - ACTIONS(1923), 1, - anon_sym_None, - ACTIONS(1925), 1, sym_float, - ACTIONS(1929), 1, - anon_sym_sizeof, - ACTIONS(1931), 1, - sym_string_start, - ACTIONS(2653), 1, - anon_sym_STAR, - ACTIONS(2661), 1, - anon_sym_LT, - ACTIONS(2793), 1, - sym_identifier, - ACTIONS(2801), 1, - anon_sym_await, - ACTIONS(3537), 1, + ACTIONS(3339), 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(3539), 1, anon_sym_lambda, - ACTIONS(3541), 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(2051), 1, - sym_primary_expression, - STATE(2073), 1, - sym_string, - STATE(2357), 1, - sym_list_splat_pattern, - STATE(2381), 1, - sym_expression, - STATE(5442), 1, - sym__named_expression_lhs, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [49856] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1905), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1915), 4, + ACTIONS(3663), 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(2797), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3665), 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(2345), 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(2255), 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, - [50739] = 26, - ACTIONS(1907), 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, + [49925] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3667), 14, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(1913), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(1917), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(1921), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, anon_sym_DOT_DOT_DOT, - ACTIONS(1923), 1, - anon_sym_None, - ACTIONS(1925), 1, sym_float, - ACTIONS(1929), 1, + ACTIONS(3669), 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, - ACTIONS(1931), 1, + [49994] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3671), 14, sym_string_start, - ACTIONS(2653), 1, + ts_builtin_sym_end, + anon_sym_LPAREN, anon_sym_STAR, - ACTIONS(2661), 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(2793), 1, - sym_identifier, - ACTIONS(2801), 1, - anon_sym_await, - ACTIONS(3537), 1, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3673), 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(3539), 1, anon_sym_lambda, - ACTIONS(3541), 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(2051), 1, - sym_primary_expression, - STATE(2073), 1, - sym_string, - STATE(2357), 1, - sym_list_splat_pattern, - STATE(2359), 1, - sym_expression, - STATE(5442), 1, - sym__named_expression_lhs, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [50063] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1905), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1915), 4, + ACTIONS(3563), 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(2797), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3561), 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(2345), 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(2255), 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, - [50854] = 26, - ACTIONS(1907), 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, + [50132] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3663), 14, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(1913), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(1917), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(1921), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, anon_sym_DOT_DOT_DOT, - ACTIONS(1923), 1, - anon_sym_None, - ACTIONS(1925), 1, sym_float, - ACTIONS(1929), 1, + ACTIONS(3665), 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, - ACTIONS(1931), 1, + [50201] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3667), 14, + sym__dedent, sym_string_start, - ACTIONS(2653), 1, + anon_sym_LPAREN, anon_sym_STAR, - ACTIONS(2661), 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(2793), 1, - sym_identifier, - ACTIONS(2801), 1, - anon_sym_await, - ACTIONS(3537), 1, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3669), 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(3539), 1, anon_sym_lambda, - ACTIONS(3541), 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(2051), 1, - sym_primary_expression, - STATE(2073), 1, - sym_string, - STATE(2238), 1, - sym_expression, - STATE(2357), 1, - sym_list_splat_pattern, - STATE(5442), 1, - sym__named_expression_lhs, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [50270] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1905), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1915), 4, + ACTIONS(3671), 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(2797), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3673), 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(2345), 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(2255), 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, - [50969] = 26, - ACTIONS(1907), 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, + [50339] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3567), 14, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(1913), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(1917), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(1921), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, anon_sym_DOT_DOT_DOT, - ACTIONS(1923), 1, - anon_sym_None, - ACTIONS(1925), 1, sym_float, - ACTIONS(1929), 1, + ACTIONS(3565), 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, - ACTIONS(1931), 1, + [50408] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3677), 14, + sym__dedent, sym_string_start, - ACTIONS(2653), 1, + anon_sym_LPAREN, anon_sym_STAR, - ACTIONS(2661), 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(2793), 1, - sym_identifier, - ACTIONS(2801), 1, - anon_sym_await, - ACTIONS(3537), 1, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3675), 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(3539), 1, anon_sym_lambda, - ACTIONS(3541), 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(2051), 1, - sym_primary_expression, - STATE(2073), 1, - sym_string, - STATE(2327), 1, - sym_expression, - STATE(2357), 1, - sym_list_splat_pattern, - STATE(5442), 1, - sym__named_expression_lhs, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [50477] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1905), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1915), 4, + ACTIONS(3677), 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(2797), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3675), 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(2345), 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(2255), 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, - [51084] = 26, - ACTIONS(1907), 1, - anon_sym_LPAREN, - ACTIONS(1913), 1, - anon_sym_LBRACK, - ACTIONS(1917), 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, + [50546] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1921), 1, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1923), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1925), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(1929), 1, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(1931), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2653), 1, - anon_sym_STAR, - ACTIONS(2661), 1, - anon_sym_LT, - ACTIONS(2793), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(2801), 1, + ACTIONS(1041), 1, anon_sym_await, - ACTIONS(3537), 1, + ACTIONS(1281), 1, + anon_sym_LPAREN, + ACTIONS(1287), 1, + anon_sym_LBRACK, + ACTIONS(3073), 1, + anon_sym_STAR, + ACTIONS(3443), 1, anon_sym_not, - ACTIONS(3539), 1, + ACTIONS(3445), 1, anon_sym_lambda, - ACTIONS(3541), 1, + ACTIONS(3447), 1, anon_sym_new, - STATE(2051), 1, + STATE(2034), 1, sym_primary_expression, - STATE(2073), 1, + STATE(2043), 1, sym_string, - STATE(2357), 1, + STATE(2088), 1, sym_list_splat_pattern, - STATE(2360), 1, + STATE(2096), 1, sym_expression, - STATE(5442), 1, + STATE(5513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1905), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(1915), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2797), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2345), 8, + STATE(2115), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -163065,7 +163875,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2255), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -163086,66 +163896,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [51199] = 26, - ACTIONS(1382), 1, + [50661] = 26, + ACTIONS(1211), 1, + sym_identifier, + ACTIONS(1213), 1, + anon_sym_LPAREN, + ACTIONS(1219), 1, anon_sym_LBRACK, - ACTIONS(1386), 1, + ACTIONS(1223), 1, anon_sym_LBRACE, - ACTIONS(1390), 1, - anon_sym_LT, - ACTIONS(1394), 1, + ACTIONS(1225), 1, + anon_sym_not, + ACTIONS(1231), 1, + anon_sym_lambda, + ACTIONS(1233), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, + ACTIONS(1235), 1, anon_sym_None, - ACTIONS(1400), 1, + ACTIONS(1239), 1, sym_float, - ACTIONS(1406), 1, + ACTIONS(1241), 1, + anon_sym_await, + ACTIONS(1243), 1, + anon_sym_new, + ACTIONS(1245), 1, anon_sym_sizeof, - ACTIONS(1408), 1, + ACTIONS(1247), 1, sym_string_start, - ACTIONS(2439), 1, - anon_sym_LPAREN, + ACTIONS(2705), 1, + anon_sym_LT, ACTIONS(2955), 1, - sym_identifier, - ACTIONS(2961), 1, - anon_sym_await, - ACTIONS(3055), 1, anon_sym_STAR, - ACTIONS(3547), 1, - anon_sym_not, - ACTIONS(3549), 1, - anon_sym_lambda, - ACTIONS(3551), 1, - anon_sym_new, - STATE(2152), 1, + STATE(2072), 1, sym_primary_expression, - STATE(2302), 1, + STATE(2161), 1, sym_string, - STATE(2635), 1, - sym_expression, - STATE(2671), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(5454), 1, + STATE(4196), 1, + sym_expression, + STATE(5579), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1398), 3, + ACTIONS(1237), 3, sym_integer, sym_true, sym_false, - ACTIONS(1384), 4, + ACTIONS(1227), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2959), 5, + ACTIONS(1217), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2716), 8, + STATE(3088), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -163154,7 +163964,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2715), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -163175,135 +163985,112 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [51314] = 26, - ACTIONS(1382), 1, - anon_sym_LBRACK, - ACTIONS(1386), 1, - anon_sym_LBRACE, - ACTIONS(1390), 1, - anon_sym_LT, - ACTIONS(1394), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, - anon_sym_None, - ACTIONS(1400), 1, - sym_float, - ACTIONS(1406), 1, - anon_sym_sizeof, - ACTIONS(1408), 1, - sym_string_start, - ACTIONS(2439), 1, - anon_sym_LPAREN, - ACTIONS(2955), 1, - sym_identifier, - ACTIONS(2961), 1, - anon_sym_await, - ACTIONS(3055), 1, - anon_sym_STAR, - ACTIONS(3547), 1, - anon_sym_not, - ACTIONS(3549), 1, - anon_sym_lambda, - ACTIONS(3551), 1, - anon_sym_new, - STATE(2152), 1, - sym_primary_expression, - STATE(2302), 1, - sym_string, - STATE(2637), 1, - sym_expression, - STATE(2671), 1, - sym_list_splat_pattern, - STATE(5454), 1, - sym__named_expression_lhs, + [50776] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1398), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1384), 4, + ACTIONS(3475), 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(2959), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3473), 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(2716), 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(2715), 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, - [51429] = 26, + 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, + [50845] = 26, ACTIONS(1382), 1, anon_sym_LBRACK, ACTIONS(1386), 1, anon_sym_LBRACE, + ACTIONS(1388), 1, + anon_sym_not, ACTIONS(1390), 1, anon_sym_LT, + ACTIONS(1392), 1, + anon_sym_lambda, ACTIONS(1394), 1, anon_sym_DOT_DOT_DOT, ACTIONS(1396), 1, anon_sym_None, ACTIONS(1400), 1, sym_float, + ACTIONS(1404), 1, + anon_sym_new, ACTIONS(1406), 1, anon_sym_sizeof, ACTIONS(1408), 1, sym_string_start, - ACTIONS(2439), 1, + ACTIONS(2401), 1, + anon_sym_await, + ACTIONS(2449), 1, anon_sym_LPAREN, - ACTIONS(2955), 1, + ACTIONS(3037), 1, sym_identifier, - ACTIONS(2961), 1, - anon_sym_await, - ACTIONS(3055), 1, + ACTIONS(3679), 1, anon_sym_STAR, - ACTIONS(3547), 1, - anon_sym_not, - ACTIONS(3549), 1, - anon_sym_lambda, - ACTIONS(3551), 1, - anon_sym_new, - STATE(2152), 1, + STATE(2163), 1, sym_primary_expression, - STATE(2302), 1, + STATE(2393), 1, sym_string, - STATE(2640), 1, - sym_expression, - STATE(2671), 1, + STATE(2644), 1, sym_list_splat_pattern, - STATE(5454), 1, + STATE(4187), 1, + sym_expression, + STATE(5398), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -163317,13 +164104,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2959), 5, + ACTIONS(2399), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2716), 8, + STATE(2652), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -163332,7 +164119,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2715), 20, + STATE(2651), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -163353,155 +164140,198 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [51544] = 26, - ACTIONS(1382), 1, + [50960] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3573), 14, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(1386), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(1390), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, anon_sym_LT, - ACTIONS(1394), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, - anon_sym_None, - ACTIONS(1400), 1, sym_float, - ACTIONS(1406), 1, - anon_sym_sizeof, - ACTIONS(1408), 1, - sym_string_start, - ACTIONS(2439), 1, - anon_sym_LPAREN, - ACTIONS(2955), 1, - sym_identifier, - ACTIONS(2961), 1, - anon_sym_await, - ACTIONS(3055), 1, - anon_sym_STAR, - ACTIONS(3547), 1, + ACTIONS(3571), 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(3549), 1, anon_sym_lambda, - ACTIONS(3551), 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(2152), 1, - sym_primary_expression, - STATE(2302), 1, - sym_string, - STATE(2669), 1, - sym_expression, - STATE(2671), 1, - sym_list_splat_pattern, - STATE(5454), 1, - sym__named_expression_lhs, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [51029] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1398), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1384), 4, + ACTIONS(3577), 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(2959), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3575), 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(2716), 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(2715), 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, - [51659] = 26, - ACTIONS(1382), 1, - anon_sym_LBRACK, - ACTIONS(1386), 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, + [51098] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1390), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_LT, - ACTIONS(1394), 1, + ACTIONS(73), 1, + anon_sym_lambda, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1400), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(1406), 1, + ACTIONS(99), 1, + anon_sym_new, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(1408), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2439), 1, - anon_sym_LPAREN, - ACTIONS(2955), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(2961), 1, + ACTIONS(1041), 1, anon_sym_await, - ACTIONS(3055), 1, + ACTIONS(1281), 1, + anon_sym_LPAREN, + ACTIONS(1287), 1, + anon_sym_LBRACK, + ACTIONS(3073), 1, anon_sym_STAR, - ACTIONS(3547), 1, - anon_sym_not, - ACTIONS(3549), 1, - anon_sym_lambda, - ACTIONS(3551), 1, - anon_sym_new, - STATE(2152), 1, + STATE(2032), 1, sym_primary_expression, - STATE(2302), 1, + STATE(2043), 1, sym_string, - STATE(2641), 1, - sym_expression, - STATE(2671), 1, + STATE(2088), 1, sym_list_splat_pattern, - STATE(5454), 1, + STATE(3919), 1, + sym_expression, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1398), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(1384), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2959), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2716), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -163510,7 +164340,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2715), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -163531,66 +164361,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [51774] = 26, - ACTIONS(1382), 1, - anon_sym_LBRACK, - ACTIONS(1386), 1, + [51213] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1390), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_LT, - ACTIONS(1394), 1, + ACTIONS(73), 1, + anon_sym_lambda, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1400), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(1406), 1, + ACTIONS(99), 1, + anon_sym_new, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(1408), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2439), 1, - anon_sym_LPAREN, - ACTIONS(2955), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(2961), 1, + ACTIONS(1041), 1, anon_sym_await, - ACTIONS(3055), 1, + ACTIONS(1281), 1, + anon_sym_LPAREN, + ACTIONS(1287), 1, + anon_sym_LBRACK, + ACTIONS(3073), 1, anon_sym_STAR, - ACTIONS(3547), 1, - anon_sym_not, - ACTIONS(3549), 1, - anon_sym_lambda, - ACTIONS(3551), 1, - anon_sym_new, - STATE(2152), 1, + STATE(2032), 1, sym_primary_expression, - STATE(2302), 1, + STATE(2043), 1, sym_string, - STATE(2644), 1, - sym_expression, - STATE(2671), 1, + STATE(2088), 1, sym_list_splat_pattern, - STATE(5454), 1, + STATE(3423), 1, + sym_expression, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1398), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(1384), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2959), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2716), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -163599,7 +164429,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2715), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -163620,66 +164450,132 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [51889] = 26, - ACTIONS(1382), 1, + [51328] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3683), 14, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(1386), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(1390), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, anon_sym_LT, - ACTIONS(1394), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, + sym_float, + ACTIONS(3681), 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(1400), 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, + [51397] = 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(1406), 1, + ACTIONS(99), 1, + anon_sym_new, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(1408), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2439), 1, - anon_sym_LPAREN, - ACTIONS(2955), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(2961), 1, + ACTIONS(1041), 1, anon_sym_await, - ACTIONS(3055), 1, + ACTIONS(1281), 1, + anon_sym_LPAREN, + ACTIONS(1287), 1, + anon_sym_LBRACK, + ACTIONS(3073), 1, anon_sym_STAR, - ACTIONS(3547), 1, - anon_sym_not, - ACTIONS(3549), 1, - anon_sym_lambda, - ACTIONS(3551), 1, - anon_sym_new, - STATE(2152), 1, + STATE(2032), 1, sym_primary_expression, - STATE(2302), 1, + STATE(2043), 1, sym_string, - STATE(2648), 1, - sym_expression, - STATE(2671), 1, + STATE(2088), 1, sym_list_splat_pattern, - STATE(5454), 1, + STATE(4160), 1, + sym_expression, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1398), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(1384), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2959), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2716), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -163688,7 +164584,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2715), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -163709,66 +164605,132 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [52004] = 26, - ACTIONS(2451), 1, + [51512] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2375), 14, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(2457), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(2461), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(2465), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, anon_sym_DOT_DOT_DOT, - ACTIONS(2467), 1, + sym_float, + ACTIONS(2373), 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, + [51581] = 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(2469), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(2473), 1, + ACTIONS(99), 1, + anon_sym_new, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(2475), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2639), 1, - anon_sym_LT, - ACTIONS(2643), 1, - anon_sym_await, - ACTIONS(2963), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(3105), 1, + ACTIONS(1041), 1, + anon_sym_await, + ACTIONS(1281), 1, + anon_sym_LPAREN, + ACTIONS(1287), 1, + anon_sym_LBRACK, + ACTIONS(3073), 1, anon_sym_STAR, - ACTIONS(3561), 1, - anon_sym_not, - ACTIONS(3563), 1, - anon_sym_lambda, - ACTIONS(3565), 1, - anon_sym_new, - STATE(2099), 1, + STATE(2032), 1, sym_primary_expression, - STATE(2218), 1, + STATE(2043), 1, sym_string, - STATE(2591), 1, + STATE(2088), 1, sym_list_splat_pattern, - STATE(2593), 1, + STATE(4094), 1, sym_expression, - STATE(5466), 1, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2449), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(2459), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2631), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2604), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -163777,7 +164739,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2631), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -163798,155 +164760,198 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [52119] = 26, - ACTIONS(2451), 1, + [51696] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2367), 14, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(2457), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(2461), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(2465), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, anon_sym_DOT_DOT_DOT, - ACTIONS(2467), 1, - anon_sym_None, - ACTIONS(2469), 1, sym_float, - ACTIONS(2473), 1, - anon_sym_sizeof, - ACTIONS(2475), 1, - sym_string_start, - ACTIONS(2639), 1, - anon_sym_LT, - ACTIONS(2643), 1, - anon_sym_await, - ACTIONS(2963), 1, - sym_identifier, - ACTIONS(3105), 1, - anon_sym_STAR, - ACTIONS(3561), 1, + ACTIONS(2365), 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(3563), 1, anon_sym_lambda, - ACTIONS(3565), 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(2099), 1, - sym_primary_expression, - STATE(2218), 1, - sym_string, - STATE(2591), 1, - sym_list_splat_pattern, - STATE(2597), 1, - sym_expression, - STATE(5466), 1, - sym__named_expression_lhs, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [51765] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2449), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2459), 4, + ACTIONS(2371), 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(2631), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(2369), 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(2604), 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(2631), 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, - [52234] = 26, - ACTIONS(2451), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_LBRACK, - ACTIONS(2461), 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, + [51834] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2465), 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(2467), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2469), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(2473), 1, + ACTIONS(99), 1, + anon_sym_new, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(2475), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2639), 1, - anon_sym_LT, - ACTIONS(2643), 1, - anon_sym_await, - ACTIONS(2963), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(3105), 1, + ACTIONS(1041), 1, + anon_sym_await, + ACTIONS(1281), 1, + anon_sym_LPAREN, + ACTIONS(1287), 1, + anon_sym_LBRACK, + ACTIONS(3073), 1, anon_sym_STAR, - ACTIONS(3561), 1, - anon_sym_not, - ACTIONS(3563), 1, - anon_sym_lambda, - ACTIONS(3565), 1, - anon_sym_new, - STATE(2099), 1, + STATE(2032), 1, sym_primary_expression, - STATE(2218), 1, + STATE(2043), 1, sym_string, - STATE(2591), 1, + STATE(2088), 1, sym_list_splat_pattern, - STATE(2598), 1, + STATE(4120), 1, sym_expression, - STATE(5466), 1, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2449), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(2459), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2631), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2604), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -163955,7 +164960,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2631), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -163976,66 +164981,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [52349] = 26, - ACTIONS(2451), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_LBRACK, - ACTIONS(2461), 1, + [51949] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2465), 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(2467), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2469), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(2473), 1, + ACTIONS(99), 1, + anon_sym_new, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(2475), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2639), 1, - anon_sym_LT, - ACTIONS(2643), 1, - anon_sym_await, - ACTIONS(2963), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(3105), 1, + ACTIONS(1041), 1, + anon_sym_await, + ACTIONS(1281), 1, + anon_sym_LPAREN, + ACTIONS(1287), 1, + anon_sym_LBRACK, + ACTIONS(3073), 1, anon_sym_STAR, - ACTIONS(3561), 1, - anon_sym_not, - ACTIONS(3563), 1, - anon_sym_lambda, - ACTIONS(3565), 1, - anon_sym_new, - STATE(2099), 1, + STATE(2032), 1, sym_primary_expression, - STATE(2218), 1, + STATE(2043), 1, sym_string, - STATE(2567), 1, - sym_expression, - STATE(2591), 1, + STATE(2088), 1, sym_list_splat_pattern, - STATE(5466), 1, + STATE(4202), 1, + sym_expression, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2449), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(2459), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2631), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2604), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -164044,7 +165049,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2631), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -164065,66 +165070,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [52464] = 26, - ACTIONS(2451), 1, + [52064] = 26, + ACTIONS(1211), 1, + sym_identifier, + ACTIONS(1213), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(1219), 1, anon_sym_LBRACK, - ACTIONS(2461), 1, + ACTIONS(1223), 1, anon_sym_LBRACE, - ACTIONS(2465), 1, + ACTIONS(1225), 1, + anon_sym_not, + ACTIONS(1231), 1, + anon_sym_lambda, + ACTIONS(1233), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2467), 1, + ACTIONS(1235), 1, anon_sym_None, - ACTIONS(2469), 1, + ACTIONS(1239), 1, sym_float, - ACTIONS(2473), 1, + ACTIONS(1241), 1, + anon_sym_await, + ACTIONS(1243), 1, + anon_sym_new, + ACTIONS(1245), 1, anon_sym_sizeof, - ACTIONS(2475), 1, + ACTIONS(1247), 1, sym_string_start, - ACTIONS(2639), 1, + ACTIONS(2705), 1, anon_sym_LT, - ACTIONS(2643), 1, - anon_sym_await, - ACTIONS(2963), 1, - sym_identifier, - ACTIONS(3105), 1, + ACTIONS(2955), 1, anon_sym_STAR, - ACTIONS(3561), 1, - anon_sym_not, - ACTIONS(3563), 1, - anon_sym_lambda, - ACTIONS(3565), 1, - anon_sym_new, - STATE(2099), 1, + STATE(2072), 1, sym_primary_expression, - STATE(2218), 1, + STATE(2161), 1, sym_string, - STATE(2591), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(2619), 1, + STATE(4395), 1, sym_expression, - STATE(5466), 1, + STATE(5579), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2449), 3, + ACTIONS(1237), 3, sym_integer, sym_true, sym_false, - ACTIONS(2459), 4, + ACTIONS(1227), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2631), 5, + ACTIONS(1217), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2604), 8, + STATE(3088), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -164133,7 +165138,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2631), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -164154,66 +165159,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [52579] = 26, - ACTIONS(2451), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_LBRACK, - ACTIONS(2461), 1, + [52179] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2465), 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(2467), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2469), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(2473), 1, + ACTIONS(99), 1, + anon_sym_new, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(2475), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2639), 1, - anon_sym_LT, - ACTIONS(2643), 1, - anon_sym_await, - ACTIONS(2963), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(3105), 1, + ACTIONS(1041), 1, + anon_sym_await, + ACTIONS(1281), 1, + anon_sym_LPAREN, + ACTIONS(1287), 1, + anon_sym_LBRACK, + ACTIONS(3073), 1, anon_sym_STAR, - ACTIONS(3561), 1, - anon_sym_not, - ACTIONS(3563), 1, - anon_sym_lambda, - ACTIONS(3565), 1, - anon_sym_new, - STATE(2099), 1, + STATE(2032), 1, sym_primary_expression, - STATE(2218), 1, + STATE(2043), 1, sym_string, - STATE(2591), 1, + STATE(2088), 1, sym_list_splat_pattern, - STATE(2620), 1, + STATE(4263), 1, sym_expression, - STATE(5466), 1, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2449), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(2459), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2631), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2604), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -164222,7 +165227,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2631), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -164243,66 +165248,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [52694] = 26, - ACTIONS(2451), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_LBRACK, - ACTIONS(2461), 1, + [52294] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2465), 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(2467), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2469), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(2473), 1, + ACTIONS(99), 1, + anon_sym_new, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(2475), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2639), 1, - anon_sym_LT, - ACTIONS(2643), 1, - anon_sym_await, - ACTIONS(2963), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(3105), 1, + ACTIONS(1041), 1, + anon_sym_await, + ACTIONS(1281), 1, + anon_sym_LPAREN, + ACTIONS(1287), 1, + anon_sym_LBRACK, + ACTIONS(3073), 1, anon_sym_STAR, - ACTIONS(3561), 1, - anon_sym_not, - ACTIONS(3563), 1, - anon_sym_lambda, - ACTIONS(3565), 1, - anon_sym_new, - STATE(2099), 1, + STATE(2032), 1, sym_primary_expression, - STATE(2218), 1, + STATE(2043), 1, sym_string, - STATE(2591), 1, + STATE(2088), 1, sym_list_splat_pattern, - STATE(2621), 1, + STATE(4078), 1, sym_expression, - STATE(5466), 1, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2449), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(2459), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2631), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2604), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -164311,7 +165316,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2631), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -164332,66 +165337,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [52809] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, + [52409] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1225), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1231), 1, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(1233), 1, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1243), 1, + ACTIONS(99), 1, anon_sym_new, - ACTIONS(1245), 1, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2735), 1, - anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(1001), 1, + sym_identifier, + ACTIONS(1041), 1, + anon_sym_await, + ACTIONS(1281), 1, + anon_sym_LPAREN, + ACTIONS(1287), 1, + anon_sym_LBRACK, + ACTIONS(3073), 1, anon_sym_STAR, - STATE(2067), 1, + STATE(2032), 1, sym_primary_expression, - STATE(2140), 1, + STATE(2043), 1, sym_string, - STATE(2432), 1, + STATE(2088), 1, sym_list_splat_pattern, - STATE(3080), 1, + STATE(4089), 1, sym_expression, - STATE(5469), 1, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3081), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -164400,7 +165405,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -164421,69 +165426,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [52924] = 27, - ACTIONS(1907), 1, - anon_sym_LPAREN, - ACTIONS(1913), 1, - anon_sym_LBRACK, - ACTIONS(1917), 1, + [52524] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1921), 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(1923), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1925), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(1929), 1, + ACTIONS(99), 1, + anon_sym_new, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(1931), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2653), 1, - anon_sym_STAR, - ACTIONS(2661), 1, - anon_sym_LT, - ACTIONS(2931), 1, - anon_sym_not, - ACTIONS(2933), 1, - anon_sym_lambda, - ACTIONS(2935), 1, - anon_sym_new, - ACTIONS(3617), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(3621), 1, + ACTIONS(1041), 1, anon_sym_await, - STATE(2073), 1, - sym_string, - STATE(2171), 1, + ACTIONS(1281), 1, + anon_sym_LPAREN, + ACTIONS(1287), 1, + anon_sym_LBRACK, + ACTIONS(3073), 1, + anon_sym_STAR, + STATE(2032), 1, sym_primary_expression, - STATE(2357), 1, + STATE(2043), 1, + sym_string, + STATE(2088), 1, sym_list_splat_pattern, - STATE(4152), 1, + STATE(4173), 1, sym_expression, - STATE(5657), 1, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2261), 2, - sym_attribute, - sym_subscript, - ACTIONS(1905), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(1915), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3619), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3846), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -164492,9 +165494,11 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2255), 18, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -164511,132 +165515,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [53041] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3509), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + [52639] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(3511), 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, - 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, - [53110] = 26, - ACTIONS(2401), 1, - anon_sym_LPAREN, - ACTIONS(2407), 1, - anon_sym_LBRACK, - ACTIONS(2411), 1, - anon_sym_LBRACE, - ACTIONS(2415), 1, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2417), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2419), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(2423), 1, + ACTIONS(99), 1, + anon_sym_new, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(2425), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2535), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(2549), 1, - anon_sym_not, - ACTIONS(2551), 1, - anon_sym_LT, - ACTIONS(2553), 1, - anon_sym_lambda, - ACTIONS(2557), 1, + ACTIONS(1041), 1, anon_sym_await, - ACTIONS(2559), 1, - anon_sym_new, - ACTIONS(2981), 1, + ACTIONS(1281), 1, + anon_sym_LPAREN, + ACTIONS(1287), 1, + anon_sym_LBRACK, + ACTIONS(3073), 1, anon_sym_STAR, - STATE(2054), 1, + STATE(2032), 1, sym_primary_expression, - STATE(2103), 1, + STATE(2043), 1, sym_string, - STATE(2309), 1, + STATE(2088), 1, sym_list_splat_pattern, - STATE(4014), 1, + STATE(3892), 1, sym_expression, - STATE(5519), 1, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2399), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(2409), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2543), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2236), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -164645,7 +165583,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2377), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -164666,66 +165604,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [53225] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, + [52754] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1225), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1231), 1, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(1233), 1, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1243), 1, + ACTIONS(99), 1, anon_sym_new, - ACTIONS(1245), 1, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2735), 1, - anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(1001), 1, + sym_identifier, + ACTIONS(1041), 1, + anon_sym_await, + ACTIONS(1281), 1, + anon_sym_LPAREN, + ACTIONS(1287), 1, + anon_sym_LBRACK, + ACTIONS(3073), 1, anon_sym_STAR, - STATE(2067), 1, + STATE(2032), 1, sym_primary_expression, - STATE(2140), 1, + STATE(2043), 1, sym_string, - STATE(2432), 1, + STATE(2088), 1, sym_list_splat_pattern, - STATE(4240), 1, + STATE(4095), 1, sym_expression, - STATE(5469), 1, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3081), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -164734,7 +165672,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -164755,11 +165693,11 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [53340] = 3, + [52869] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3623), 14, + ACTIONS(3683), 14, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -164774,7 +165712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3625), 46, + ACTIONS(3681), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -164821,132 +165759,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [53409] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3627), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + [52938] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(3629), 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, - 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, - [53478] = 26, - ACTIONS(1328), 1, - anon_sym_LBRACE, - ACTIONS(1332), 1, + ACTIONS(71), 1, anon_sym_LT, - ACTIONS(1338), 1, + ACTIONS(73), 1, + anon_sym_lambda, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1340), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1344), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(1360), 1, + ACTIONS(99), 1, + anon_sym_new, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(1362), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(1472), 1, - anon_sym_LBRACK, - ACTIONS(1474), 1, + ACTIONS(1001), 1, + sym_identifier, + ACTIONS(1041), 1, anon_sym_await, - ACTIONS(2427), 1, + ACTIONS(1281), 1, anon_sym_LPAREN, - ACTIONS(2761), 1, - sym_identifier, - ACTIONS(2939), 1, + ACTIONS(1287), 1, + anon_sym_LBRACK, + ACTIONS(3073), 1, anon_sym_STAR, - ACTIONS(3605), 1, - anon_sym_not, - ACTIONS(3607), 1, - anon_sym_lambda, - ACTIONS(3609), 1, - anon_sym_new, - STATE(2061), 1, + STATE(2032), 1, sym_primary_expression, - STATE(2170), 1, + STATE(2043), 1, sym_string, - STATE(2477), 1, + STATE(2088), 1, sym_list_splat_pattern, - STATE(2532), 1, + STATE(3479), 1, sym_expression, - STATE(5478), 1, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1342), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(1326), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1470), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2459), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -164955,7 +165827,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2457), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -164976,66 +165848,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [53593] = 26, - ACTIONS(1328), 1, + [53053] = 26, + ACTIONS(1382), 1, + anon_sym_LBRACK, + ACTIONS(1386), 1, anon_sym_LBRACE, - ACTIONS(1330), 1, + ACTIONS(1388), 1, anon_sym_not, - ACTIONS(1332), 1, + ACTIONS(1390), 1, anon_sym_LT, - ACTIONS(1334), 1, + ACTIONS(1392), 1, anon_sym_lambda, - ACTIONS(1338), 1, + ACTIONS(1394), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1340), 1, + ACTIONS(1396), 1, anon_sym_None, - ACTIONS(1344), 1, + ACTIONS(1400), 1, sym_float, - ACTIONS(1350), 1, + ACTIONS(1404), 1, anon_sym_new, - ACTIONS(1360), 1, + ACTIONS(1406), 1, anon_sym_sizeof, - ACTIONS(1362), 1, + ACTIONS(1408), 1, sym_string_start, - ACTIONS(1472), 1, - anon_sym_LBRACK, - ACTIONS(1474), 1, + ACTIONS(2397), 1, + anon_sym_STAR, + ACTIONS(2401), 1, anon_sym_await, - ACTIONS(2427), 1, + ACTIONS(2449), 1, anon_sym_LPAREN, - ACTIONS(2761), 1, + ACTIONS(3037), 1, sym_identifier, - ACTIONS(2939), 1, - anon_sym_STAR, - STATE(2060), 1, + STATE(2163), 1, sym_primary_expression, - STATE(2170), 1, + STATE(2393), 1, sym_string, - STATE(2477), 1, + STATE(2644), 1, sym_list_splat_pattern, - STATE(3897), 1, + STATE(4242), 1, sym_expression, - STATE(5688), 1, + STATE(5398), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1342), 3, + ACTIONS(1398), 3, sym_integer, sym_true, sym_false, - ACTIONS(1326), 4, + ACTIONS(1384), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1470), 5, + ACTIONS(2399), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2459), 8, + STATE(2652), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -165044,7 +165916,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2457), 20, + STATE(2651), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -165065,726 +165937,244 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [53708] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3631), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + [53168] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(3633), 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, + ACTIONS(105), 1, anon_sym_sizeof, - [53777] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3635), 14, + ACTIONS(107), 1, 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(3637), 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, + ACTIONS(1001), 1, sym_identifier, + ACTIONS(1041), 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, - [53846] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3639), 14, - sym_string_start, - ts_builtin_sym_end, + ACTIONS(1281), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(1287), 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(3641), 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, - [53915] = 3, + ACTIONS(3073), 1, + anon_sym_STAR, + STATE(2032), 1, + sym_primary_expression, + STATE(2043), 1, + sym_string, + STATE(2088), 1, + sym_list_splat_pattern, + STATE(4119), 1, + sym_expression, + STATE(5682), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3409), 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(3411), 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(81), 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, - [53984] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3413), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(65), 4, 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(3415), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1016), 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, - [54053] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3643), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + STATE(3442), 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(2111), 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, + [53283] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(3645), 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, + ACTIONS(105), 1, anon_sym_sizeof, - [54122] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3647), 14, + ACTIONS(107), 1, 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(3649), 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, + ACTIONS(1001), 1, sym_identifier, + ACTIONS(1041), 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, - [54191] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2691), 14, - sym__dedent, - sym_string_start, + ACTIONS(1281), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(1287), 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(2693), 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, - [54260] = 3, + ACTIONS(3073), 1, + anon_sym_STAR, + STATE(2032), 1, + sym_primary_expression, + STATE(2043), 1, + sym_string, + STATE(2088), 1, + sym_list_splat_pattern, + STATE(4126), 1, + sym_expression, + STATE(5682), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3445), 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(3447), 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(81), 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, - [54329] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3651), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(65), 4, 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(3653), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1016), 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, - [54398] = 26, - ACTIONS(1328), 1, + STATE(3442), 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(2111), 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, + [53398] = 26, + ACTIONS(1382), 1, + anon_sym_LBRACK, + ACTIONS(1386), 1, anon_sym_LBRACE, - ACTIONS(1332), 1, + ACTIONS(1388), 1, + anon_sym_not, + ACTIONS(1390), 1, anon_sym_LT, - ACTIONS(1338), 1, + ACTIONS(1392), 1, + anon_sym_lambda, + ACTIONS(1394), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1340), 1, + ACTIONS(1396), 1, anon_sym_None, - ACTIONS(1344), 1, + ACTIONS(1400), 1, sym_float, - ACTIONS(1360), 1, + ACTIONS(1404), 1, + anon_sym_new, + ACTIONS(1406), 1, anon_sym_sizeof, - ACTIONS(1362), 1, + ACTIONS(1408), 1, sym_string_start, - ACTIONS(1472), 1, - anon_sym_LBRACK, - ACTIONS(1474), 1, + ACTIONS(2397), 1, + anon_sym_STAR, + ACTIONS(2401), 1, anon_sym_await, - ACTIONS(2427), 1, + ACTIONS(2449), 1, anon_sym_LPAREN, - ACTIONS(2761), 1, + ACTIONS(3037), 1, sym_identifier, - ACTIONS(2939), 1, - anon_sym_STAR, - ACTIONS(3605), 1, - anon_sym_not, - ACTIONS(3607), 1, - anon_sym_lambda, - ACTIONS(3609), 1, - anon_sym_new, - STATE(2061), 1, + STATE(2163), 1, sym_primary_expression, - STATE(2170), 1, + STATE(2393), 1, sym_string, - STATE(2477), 1, + STATE(2644), 1, sym_list_splat_pattern, - STATE(2544), 1, + STATE(4243), 1, sym_expression, - STATE(5478), 1, + STATE(5398), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1342), 3, + ACTIONS(1398), 3, sym_integer, sym_true, sym_false, - ACTIONS(1326), 4, + ACTIONS(1384), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1470), 5, + ACTIONS(2399), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2459), 8, + STATE(2652), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -165793,7 +166183,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2457), 20, + STATE(2651), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -165814,198 +166204,155 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [54513] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3505), 14, - sym__dedent, - sym_string_start, + [53513] = 26, + ACTIONS(1211), 1, + sym_identifier, + ACTIONS(1213), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(1219), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(1223), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(3507), 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(1225), 1, anon_sym_not, + ACTIONS(1231), 1, anon_sym_lambda, - anon_sym_yield, + ACTIONS(1233), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1235), 1, anon_sym_None, - sym_integer, - sym_identifier, + ACTIONS(1239), 1, + sym_float, + ACTIONS(1241), 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(1243), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, + ACTIONS(1245), 1, anon_sym_sizeof, - [54582] = 3, + ACTIONS(1247), 1, + sym_string_start, + ACTIONS(2705), 1, + anon_sym_LT, + ACTIONS(2955), 1, + anon_sym_STAR, + STATE(2072), 1, + sym_primary_expression, + STATE(2161), 1, + sym_string, + STATE(2536), 1, + sym_list_splat_pattern, + STATE(3848), 1, + sym_expression, + STATE(5579), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3655), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1237), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1227), 4, 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(3657), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1217), 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, - [54651] = 26, - ACTIONS(1907), 1, + STATE(3088), 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(2401), 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, + [53628] = 26, + ACTIONS(1943), 1, anon_sym_LPAREN, - ACTIONS(1913), 1, + ACTIONS(1949), 1, anon_sym_LBRACK, - ACTIONS(1917), 1, + ACTIONS(1953), 1, anon_sym_LBRACE, - ACTIONS(1921), 1, + ACTIONS(1957), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1923), 1, + ACTIONS(1959), 1, anon_sym_None, - ACTIONS(1925), 1, + ACTIONS(1961), 1, sym_float, - ACTIONS(1929), 1, + ACTIONS(1965), 1, anon_sym_sizeof, - ACTIONS(1931), 1, + ACTIONS(1967), 1, sym_string_start, - ACTIONS(2653), 1, - anon_sym_STAR, ACTIONS(2661), 1, + anon_sym_STAR, + ACTIONS(2669), 1, anon_sym_LT, - ACTIONS(2793), 1, + ACTIONS(2923), 1, sym_identifier, - ACTIONS(2801), 1, - anon_sym_await, ACTIONS(2931), 1, + anon_sym_await, + ACTIONS(3045), 1, anon_sym_not, - ACTIONS(2933), 1, + ACTIONS(3047), 1, anon_sym_lambda, - ACTIONS(2935), 1, + ACTIONS(3049), 1, anon_sym_new, - STATE(2046), 1, + STATE(2057), 1, sym_primary_expression, - STATE(2073), 1, + STATE(2089), 1, sym_string, - STATE(2357), 1, + STATE(2284), 1, sym_list_splat_pattern, - STATE(4158), 1, + STATE(4171), 1, sym_expression, - STATE(5657), 1, + STATE(5675), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1905), 3, + ACTIONS(1941), 3, sym_integer, sym_true, sym_false, - ACTIONS(1915), 4, + ACTIONS(1951), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2797), 5, + ACTIONS(2927), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3846), 8, + STATE(3825), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -166014,7 +166361,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2255), 20, + STATE(2257), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -166035,7 +166382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [54766] = 26, + [53743] = 26, ACTIONS(1211), 1, sym_identifier, ACTIONS(1213), 1, @@ -166056,25 +166403,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2735), 1, + ACTIONS(2705), 1, anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(2955), 1, anon_sym_STAR, - ACTIONS(3611), 1, + ACTIONS(3641), 1, anon_sym_not, - ACTIONS(3613), 1, + ACTIONS(3643), 1, anon_sym_lambda, - ACTIONS(3615), 1, + ACTIONS(3645), 1, anon_sym_new, - STATE(2058), 1, + STATE(2075), 1, sym_primary_expression, - STATE(2140), 1, + STATE(2161), 1, sym_string, - STATE(2399), 1, - sym_expression, - STATE(2432), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(5599), 1, + STATE(2552), 1, + sym_expression, + STATE(5626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -166094,7 +166441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2393), 8, + STATE(2543), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -166103,7 +166450,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -166124,7 +166471,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [54881] = 26, + [53858] = 26, ACTIONS(1211), 1, sym_identifier, ACTIONS(1213), 1, @@ -166145,25 +166492,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2735), 1, + ACTIONS(2705), 1, anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(2955), 1, anon_sym_STAR, - ACTIONS(3611), 1, + ACTIONS(3641), 1, anon_sym_not, - ACTIONS(3613), 1, + ACTIONS(3643), 1, anon_sym_lambda, - ACTIONS(3615), 1, + ACTIONS(3645), 1, anon_sym_new, - STATE(2058), 1, + STATE(2075), 1, sym_primary_expression, - STATE(2140), 1, + STATE(2161), 1, sym_string, - STATE(2401), 1, - sym_expression, - STATE(2432), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(5599), 1, + STATE(2554), 1, + sym_expression, + STATE(5626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -166183,7 +166530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2393), 8, + STATE(2543), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -166192,7 +166539,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -166213,7 +166560,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [54996] = 26, + [53973] = 26, ACTIONS(1211), 1, sym_identifier, ACTIONS(1213), 1, @@ -166234,25 +166581,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2735), 1, + ACTIONS(2705), 1, anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(2955), 1, anon_sym_STAR, - ACTIONS(3611), 1, + ACTIONS(3641), 1, anon_sym_not, - ACTIONS(3613), 1, + ACTIONS(3643), 1, anon_sym_lambda, - ACTIONS(3615), 1, + ACTIONS(3645), 1, anon_sym_new, - STATE(2058), 1, + STATE(2075), 1, sym_primary_expression, - STATE(2140), 1, + STATE(2161), 1, sym_string, - STATE(2402), 1, - sym_expression, - STATE(2432), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(5599), 1, + STATE(2555), 1, + sym_expression, + STATE(5626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -166272,7 +166619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2393), 8, + STATE(2543), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -166281,7 +166628,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -166302,7 +166649,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [55111] = 26, + [54088] = 26, ACTIONS(1211), 1, sym_identifier, ACTIONS(1213), 1, @@ -166323,25 +166670,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2735), 1, + ACTIONS(2705), 1, anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(2955), 1, anon_sym_STAR, - ACTIONS(3611), 1, + ACTIONS(3641), 1, anon_sym_not, - ACTIONS(3613), 1, + ACTIONS(3643), 1, anon_sym_lambda, - ACTIONS(3615), 1, + ACTIONS(3645), 1, anon_sym_new, - STATE(2058), 1, + STATE(2075), 1, sym_primary_expression, - STATE(2140), 1, + STATE(2161), 1, sym_string, - STATE(2403), 1, - sym_expression, - STATE(2432), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(5599), 1, + STATE(2556), 1, + sym_expression, + STATE(5626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -166361,7 +166708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2393), 8, + STATE(2543), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -166370,7 +166717,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -166391,7 +166738,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [55226] = 26, + [54203] = 26, ACTIONS(1211), 1, sym_identifier, ACTIONS(1213), 1, @@ -166412,25 +166759,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2735), 1, + ACTIONS(2705), 1, anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(2955), 1, anon_sym_STAR, - ACTIONS(3611), 1, + ACTIONS(3641), 1, anon_sym_not, - ACTIONS(3613), 1, + ACTIONS(3643), 1, anon_sym_lambda, - ACTIONS(3615), 1, + ACTIONS(3645), 1, anon_sym_new, - STATE(2058), 1, + STATE(2075), 1, sym_primary_expression, - STATE(2140), 1, + STATE(2161), 1, sym_string, - STATE(2404), 1, - sym_expression, - STATE(2432), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(5599), 1, + STATE(2557), 1, + sym_expression, + STATE(5626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -166450,7 +166797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2393), 8, + STATE(2543), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -166459,7 +166806,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -166480,7 +166827,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [55341] = 26, + [54318] = 26, ACTIONS(1211), 1, sym_identifier, ACTIONS(1213), 1, @@ -166501,25 +166848,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2735), 1, + ACTIONS(2705), 1, anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(2955), 1, anon_sym_STAR, - ACTIONS(3611), 1, + ACTIONS(3641), 1, anon_sym_not, - ACTIONS(3613), 1, + ACTIONS(3643), 1, anon_sym_lambda, - ACTIONS(3615), 1, + ACTIONS(3645), 1, anon_sym_new, - STATE(2058), 1, + STATE(2075), 1, sym_primary_expression, - STATE(2140), 1, + STATE(2161), 1, sym_string, - STATE(2405), 1, - sym_expression, - STATE(2432), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(5599), 1, + STATE(2558), 1, + sym_expression, + STATE(5626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -166539,7 +166886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2393), 8, + STATE(2543), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -166548,7 +166895,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -166569,7 +166916,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [55456] = 26, + [54433] = 26, ACTIONS(1211), 1, sym_identifier, ACTIONS(1213), 1, @@ -166590,25 +166937,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2735), 1, + ACTIONS(2705), 1, anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(2955), 1, anon_sym_STAR, - ACTIONS(3611), 1, + ACTIONS(3641), 1, anon_sym_not, - ACTIONS(3613), 1, + ACTIONS(3643), 1, anon_sym_lambda, - ACTIONS(3615), 1, + ACTIONS(3645), 1, anon_sym_new, - STATE(2058), 1, + STATE(2075), 1, sym_primary_expression, - STATE(2140), 1, + STATE(2161), 1, sym_string, - STATE(2406), 1, - sym_expression, - STATE(2432), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(5599), 1, + STATE(2560), 1, + sym_expression, + STATE(5626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -166628,7 +166975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2393), 8, + STATE(2543), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -166637,7 +166984,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -166658,66 +167005,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [55571] = 26, - ACTIONS(1328), 1, + [54548] = 26, + ACTIONS(1211), 1, + sym_identifier, + ACTIONS(1213), 1, + anon_sym_LPAREN, + ACTIONS(1219), 1, + anon_sym_LBRACK, + ACTIONS(1223), 1, anon_sym_LBRACE, - ACTIONS(1330), 1, + ACTIONS(1225), 1, anon_sym_not, - ACTIONS(1332), 1, - anon_sym_LT, - ACTIONS(1334), 1, + ACTIONS(1231), 1, anon_sym_lambda, - ACTIONS(1338), 1, + ACTIONS(1233), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1340), 1, + ACTIONS(1235), 1, anon_sym_None, - ACTIONS(1344), 1, + ACTIONS(1239), 1, sym_float, - ACTIONS(1350), 1, + ACTIONS(1241), 1, + anon_sym_await, + ACTIONS(1243), 1, anon_sym_new, - ACTIONS(1360), 1, + ACTIONS(1245), 1, anon_sym_sizeof, - ACTIONS(1362), 1, + ACTIONS(1247), 1, sym_string_start, - ACTIONS(1472), 1, - anon_sym_LBRACK, - ACTIONS(1474), 1, - anon_sym_await, - ACTIONS(2427), 1, - anon_sym_LPAREN, - ACTIONS(2761), 1, - sym_identifier, - ACTIONS(2939), 1, + ACTIONS(2705), 1, + anon_sym_LT, + ACTIONS(2955), 1, anon_sym_STAR, - STATE(2060), 1, + STATE(2072), 1, sym_primary_expression, - STATE(2170), 1, + STATE(2161), 1, sym_string, - STATE(2477), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(3933), 1, + STATE(3853), 1, sym_expression, - STATE(5688), 1, + STATE(5579), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1342), 3, + ACTIONS(1237), 3, sym_integer, sym_true, sym_false, - ACTIONS(1326), 4, + ACTIONS(1227), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1470), 5, + ACTIONS(1217), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2459), 8, + STATE(3088), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -166726,7 +167073,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2457), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -166747,66 +167094,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [55686] = 26, - ACTIONS(2479), 1, + [54663] = 26, + ACTIONS(2489), 1, anon_sym_LPAREN, - ACTIONS(2485), 1, + ACTIONS(2495), 1, anon_sym_LBRACK, - ACTIONS(2489), 1, + ACTIONS(2499), 1, anon_sym_LBRACE, - ACTIONS(2493), 1, + ACTIONS(2503), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2495), 1, + ACTIONS(2505), 1, anon_sym_None, - ACTIONS(2497), 1, + ACTIONS(2507), 1, sym_float, - ACTIONS(2501), 1, + ACTIONS(2511), 1, anon_sym_sizeof, - ACTIONS(2503), 1, + ACTIONS(2513), 1, sym_string_start, - ACTIONS(2523), 1, + ACTIONS(2561), 1, anon_sym_not, - ACTIONS(2525), 1, + ACTIONS(2563), 1, anon_sym_LT, - ACTIONS(2527), 1, + ACTIONS(2565), 1, anon_sym_lambda, - ACTIONS(2533), 1, + ACTIONS(2571), 1, anon_sym_new, - ACTIONS(2803), 1, + ACTIONS(2815), 1, sym_identifier, - ACTIONS(2811), 1, + ACTIONS(2823), 1, anon_sym_await, - ACTIONS(2947), 1, + ACTIONS(2943), 1, anon_sym_STAR, - STATE(2063), 1, + STATE(2070), 1, sym_primary_expression, - STATE(2157), 1, + STATE(2177), 1, sym_string, - STATE(2430), 1, - sym_expression, - STATE(2523), 1, + STATE(2415), 1, sym_list_splat_pattern, - STATE(5414), 1, + STATE(2530), 1, + sym_expression, + STATE(5681), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 3, + ACTIONS(2487), 3, sym_integer, sym_true, sym_false, - ACTIONS(2487), 4, + ACTIONS(2497), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2807), 5, + ACTIONS(2819), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2421), 8, + STATE(2493), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -166815,7 +167162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2418), 20, + STATE(2470), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -166836,7 +167183,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [55801] = 27, + [54778] = 27, ACTIONS(1382), 1, anon_sym_LBRACK, ACTIONS(1386), 1, @@ -166859,28 +167206,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1408), 1, sym_string_start, - ACTIONS(2439), 1, - anon_sym_LPAREN, - ACTIONS(3055), 1, + ACTIONS(2397), 1, anon_sym_STAR, - ACTIONS(3571), 1, + ACTIONS(2449), 1, + anon_sym_LPAREN, + ACTIONS(3661), 1, anon_sym_await, - ACTIONS(3659), 1, + ACTIONS(3685), 1, sym_identifier, - STATE(2151), 1, + STATE(2163), 1, sym_primary_expression, - STATE(2302), 1, + STATE(2393), 1, sym_string, - STATE(2671), 1, + STATE(2644), 1, sym_list_splat_pattern, - STATE(4248), 1, + STATE(4153), 1, sym_expression, - STATE(5468), 1, + STATE(5398), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2707), 2, + STATE(2702), 2, sym_attribute, sym_subscript, ACTIONS(1398), 3, @@ -166892,13 +167239,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3661), 5, + ACTIONS(3687), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2716), 8, + STATE(2652), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -166907,7 +167254,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2715), 18, + STATE(2651), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -166926,66 +167273,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [55918] = 26, - ACTIONS(67), 1, + [54895] = 26, + ACTIONS(1211), 1, + sym_identifier, + ACTIONS(1213), 1, + anon_sym_LPAREN, + ACTIONS(1219), 1, + anon_sym_LBRACK, + ACTIONS(1223), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(1225), 1, anon_sym_not, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(73), 1, + ACTIONS(1231), 1, anon_sym_lambda, - ACTIONS(77), 1, + ACTIONS(1233), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1235), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1239), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(1241), 1, + anon_sym_await, + ACTIONS(1243), 1, anon_sym_new, - ACTIONS(105), 1, + ACTIONS(1245), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1247), 1, sym_string_start, - ACTIONS(577), 1, - sym_identifier, - ACTIONS(614), 1, - anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3071), 1, + ACTIONS(2705), 1, + anon_sym_LT, + ACTIONS(2955), 1, anon_sym_STAR, - STATE(2024), 1, + STATE(2072), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2161), 1, sym_string, - STATE(2088), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(4038), 1, + STATE(3856), 1, sym_expression, - STATE(5564), 1, + STATE(5579), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1237), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1227), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(1217), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(3088), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -166994,7 +167341,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -167015,7 +167362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [56033] = 26, + [55010] = 26, ACTIONS(1211), 1, sym_identifier, ACTIONS(1213), 1, @@ -167042,19 +167389,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2735), 1, + ACTIONS(2705), 1, anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(2955), 1, anon_sym_STAR, - STATE(2067), 1, + STATE(2072), 1, sym_primary_expression, - STATE(2140), 1, + STATE(2161), 1, sym_string, - STATE(2432), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(4423), 1, + STATE(3095), 1, sym_expression, - STATE(5469), 1, + STATE(5579), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -167074,7 +167421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3081), 8, + STATE(3088), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -167083,7 +167430,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -167104,7 +167451,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [56148] = 26, + [55125] = 26, ACTIONS(1211), 1, sym_identifier, ACTIONS(1213), 1, @@ -167131,19 +167478,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2735), 1, + ACTIONS(2705), 1, anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(2955), 1, anon_sym_STAR, - STATE(2067), 1, + STATE(2072), 1, sym_primary_expression, - STATE(2140), 1, + STATE(2161), 1, sym_string, - STATE(2432), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(4263), 1, + STATE(3858), 1, sym_expression, - STATE(5469), 1, + STATE(5579), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -167163,7 +167510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3081), 8, + STATE(3088), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -167172,7 +167519,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -167193,73 +167540,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [56263] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3525), 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(3527), 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, - [56332] = 26, + [55240] = 26, ACTIONS(1211), 1, sym_identifier, ACTIONS(1213), 1, @@ -167286,19 +167567,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2735), 1, + ACTIONS(2705), 1, anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(2955), 1, anon_sym_STAR, - STATE(2067), 1, + STATE(2072), 1, sym_primary_expression, - STATE(2140), 1, + STATE(2161), 1, sym_string, - STATE(2432), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(4353), 1, + STATE(4411), 1, sym_expression, - STATE(5469), 1, + STATE(5579), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -167318,7 +167599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3081), 8, + STATE(3088), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -167327,7 +167608,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -167348,66 +167629,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [56447] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, + [55355] = 26, + ACTIONS(2413), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(2419), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(2423), 1, anon_sym_LBRACE, - ACTIONS(1225), 1, - anon_sym_not, - ACTIONS(1231), 1, - anon_sym_lambda, - ACTIONS(1233), 1, + ACTIONS(2427), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(2429), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(2431), 1, sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1243), 1, - anon_sym_new, - ACTIONS(1245), 1, + ACTIONS(2435), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(2437), 1, sym_string_start, - ACTIONS(2735), 1, + ACTIONS(2521), 1, + sym_identifier, + ACTIONS(2535), 1, + anon_sym_not, + ACTIONS(2537), 1, anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(2539), 1, + anon_sym_lambda, + ACTIONS(2543), 1, + anon_sym_await, + ACTIONS(2545), 1, + anon_sym_new, + ACTIONS(3011), 1, anon_sym_STAR, - STATE(2067), 1, + STATE(2061), 1, sym_primary_expression, - STATE(2140), 1, + STATE(2099), 1, sym_string, - STATE(2432), 1, + STATE(2256), 1, sym_list_splat_pattern, - STATE(4425), 1, + STATE(2389), 1, sym_expression, - STATE(5469), 1, + STATE(5687), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(2411), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(2421), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(2529), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3081), 8, + STATE(2326), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -167416,7 +167697,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2298), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -167437,473 +167718,543 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [56562] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3381), 14, - sym__dedent, - sym_string_start, + [55470] = 27, + ACTIONS(2461), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(2467), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(2471), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, + ACTIONS(2475), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(2477), 1, + anon_sym_None, + ACTIONS(2479), 1, 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, + ACTIONS(2483), 1, + anon_sym_sizeof, + ACTIONS(2485), 1, + sym_string_start, + ACTIONS(2647), 1, anon_sym_not, + ACTIONS(2649), 1, + anon_sym_LT, + ACTIONS(2651), 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, + ACTIONS(2655), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [56631] = 3, + ACTIONS(3103), 1, + anon_sym_STAR, + ACTIONS(3441), 1, + anon_sym_await, + ACTIONS(3689), 1, + sym_identifier, + STATE(2107), 1, + sym_primary_expression, + STATE(2200), 1, + sym_string, + STATE(2589), 1, + sym_list_splat_pattern, + STATE(4271), 1, + sym_expression, + STATE(5572), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3529), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + STATE(2703), 2, + sym_attribute, + sym_subscript, + ACTIONS(2459), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2469), 4, 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(3531), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(3691), 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(2631), 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(2630), 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, + [55587] = 26, + ACTIONS(1943), 1, + anon_sym_LPAREN, + ACTIONS(1949), 1, + anon_sym_LBRACK, + ACTIONS(1953), 1, + anon_sym_LBRACE, + ACTIONS(1957), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1959), 1, + anon_sym_None, + ACTIONS(1961), 1, + sym_float, + ACTIONS(1965), 1, + anon_sym_sizeof, + ACTIONS(1967), 1, + sym_string_start, + ACTIONS(2661), 1, + anon_sym_STAR, + ACTIONS(2667), 1, anon_sym_not, + ACTIONS(2669), 1, + anon_sym_LT, + ACTIONS(2671), 1, anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, + ACTIONS(2677), 1, + anon_sym_new, + ACTIONS(2923), 1, sym_identifier, + ACTIONS(2931), 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, - [56700] = 3, + STATE(2057), 1, + sym_primary_expression, + STATE(2089), 1, + sym_string, + STATE(2284), 1, + sym_list_splat_pattern, + STATE(3855), 1, + sym_expression, + STATE(5410), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3533), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1941), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1951), 4, 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(3535), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2927), 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(3825), 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(2257), 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, + [55702] = 26, + ACTIONS(1211), 1, + sym_identifier, + ACTIONS(1213), 1, + anon_sym_LPAREN, + ACTIONS(1219), 1, + anon_sym_LBRACK, + ACTIONS(1223), 1, + anon_sym_LBRACE, + ACTIONS(1225), 1, anon_sym_not, + ACTIONS(1231), 1, anon_sym_lambda, - anon_sym_yield, + ACTIONS(1233), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1235), 1, anon_sym_None, - sym_integer, - sym_identifier, + ACTIONS(1239), 1, + sym_float, + ACTIONS(1241), 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(1243), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, + ACTIONS(1245), 1, anon_sym_sizeof, - [56769] = 3, + ACTIONS(1247), 1, + sym_string_start, + ACTIONS(2705), 1, + anon_sym_LT, + ACTIONS(2955), 1, + anon_sym_STAR, + STATE(2072), 1, + sym_primary_expression, + STATE(2161), 1, + sym_string, + STATE(2536), 1, + sym_list_splat_pattern, + STATE(4420), 1, + sym_expression, + STATE(5579), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3543), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1237), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1227), 4, 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(3545), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1217), 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, + anon_sym_api, + STATE(3088), 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(2401), 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, + [55817] = 26, + ACTIONS(1211), 1, sym_identifier, + ACTIONS(1213), 1, + anon_sym_LPAREN, + ACTIONS(1219), 1, + anon_sym_LBRACK, + ACTIONS(1223), 1, + anon_sym_LBRACE, + ACTIONS(1233), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1235), 1, + anon_sym_None, + ACTIONS(1239), 1, + sym_float, + ACTIONS(1241), 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, + ACTIONS(1245), 1, anon_sym_sizeof, - [56838] = 3, + ACTIONS(1247), 1, + sym_string_start, + ACTIONS(2705), 1, + anon_sym_LT, + ACTIONS(2955), 1, + anon_sym_STAR, + ACTIONS(3635), 1, + anon_sym_not, + ACTIONS(3637), 1, + anon_sym_lambda, + ACTIONS(3639), 1, + anon_sym_new, + STATE(2161), 1, + sym_string, + STATE(2304), 1, + sym_primary_expression, + STATE(2536), 1, + sym_list_splat_pattern, + STATE(3160), 1, + sym_expression, + STATE(5436), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3553), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1237), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1227), 4, 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(3555), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1217), 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, + STATE(3088), 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(2401), 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, + [55932] = 23, + ACTIONS(1039), 1, + anon_sym_COMMA, + ACTIONS(1213), 1, + anon_sym_LPAREN, + ACTIONS(1219), 1, + anon_sym_LBRACK, + ACTIONS(1223), 1, + anon_sym_LBRACE, + ACTIONS(1233), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1235), 1, + anon_sym_None, + ACTIONS(1239), 1, + sym_float, + ACTIONS(1245), 1, anon_sym_sizeof, - [56907] = 3, + ACTIONS(1247), 1, + sym_string_start, + ACTIONS(1302), 1, + anon_sym_STAR, + ACTIONS(1310), 1, + anon_sym_LT, + ACTIONS(1312), 1, + anon_sym_await, + STATE(2161), 1, + sym_string, + STATE(2536), 1, + sym_list_splat_pattern, + STATE(3239), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3663), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1005), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(1025), 2, + anon_sym_from, + anon_sym_in, + ACTIONS(1237), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1308), 4, 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(3665), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1304), 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, + ACTIONS(1003), 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(2401), 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, + [56041] = 26, + ACTIONS(1211), 1, + sym_identifier, + ACTIONS(1213), 1, + anon_sym_LPAREN, + ACTIONS(1219), 1, + anon_sym_LBRACK, + ACTIONS(1223), 1, + anon_sym_LBRACE, + ACTIONS(1225), 1, anon_sym_not, + ACTIONS(1231), 1, anon_sym_lambda, - anon_sym_yield, + ACTIONS(1233), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1235), 1, anon_sym_None, - sym_integer, - sym_identifier, + ACTIONS(1239), 1, + sym_float, + ACTIONS(1241), 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(1243), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, + ACTIONS(1245), 1, anon_sym_sizeof, - [56976] = 3, + ACTIONS(1247), 1, + sym_string_start, + ACTIONS(2705), 1, + anon_sym_LT, + ACTIONS(2955), 1, + anon_sym_STAR, + STATE(2072), 1, + sym_primary_expression, + STATE(2161), 1, + sym_string, + STATE(2536), 1, + sym_list_splat_pattern, + STATE(3868), 1, + sym_expression, + STATE(5579), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3557), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1237), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1227), 4, 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(3559), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1217), 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, - [57045] = 3, + STATE(3088), 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(2401), 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, + [56156] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3667), 14, + ACTIONS(2441), 14, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -167918,7 +168269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3669), 46, + ACTIONS(2439), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -167965,66 +168316,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [57114] = 26, - ACTIONS(2401), 1, + [56225] = 26, + ACTIONS(1943), 1, anon_sym_LPAREN, - ACTIONS(2407), 1, + ACTIONS(1949), 1, anon_sym_LBRACK, - ACTIONS(2411), 1, + ACTIONS(1953), 1, anon_sym_LBRACE, - ACTIONS(2415), 1, + ACTIONS(1957), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2417), 1, + ACTIONS(1959), 1, anon_sym_None, - ACTIONS(2419), 1, + ACTIONS(1961), 1, sym_float, - ACTIONS(2423), 1, + ACTIONS(1965), 1, anon_sym_sizeof, - ACTIONS(2425), 1, + ACTIONS(1967), 1, sym_string_start, - ACTIONS(2535), 1, - sym_identifier, - ACTIONS(2549), 1, + ACTIONS(2661), 1, + anon_sym_STAR, + ACTIONS(2667), 1, anon_sym_not, - ACTIONS(2551), 1, + ACTIONS(2669), 1, anon_sym_LT, - ACTIONS(2553), 1, + ACTIONS(2671), 1, anon_sym_lambda, - ACTIONS(2557), 1, - anon_sym_await, - ACTIONS(2559), 1, + ACTIONS(2677), 1, anon_sym_new, - ACTIONS(2981), 1, - anon_sym_STAR, - STATE(2054), 1, + ACTIONS(2923), 1, + sym_identifier, + ACTIONS(2931), 1, + anon_sym_await, + STATE(2057), 1, sym_primary_expression, - STATE(2103), 1, + STATE(2089), 1, sym_string, - STATE(2277), 1, - sym_expression, - STATE(2309), 1, + STATE(2284), 1, sym_list_splat_pattern, - STATE(5519), 1, + STATE(3830), 1, + sym_expression, + STATE(5410), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2399), 3, + ACTIONS(1941), 3, sym_integer, sym_true, sym_false, - ACTIONS(2409), 4, + ACTIONS(1951), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2543), 5, + ACTIONS(2927), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2236), 8, + STATE(3825), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -168033,7 +168384,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2377), 20, + STATE(2257), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -168054,69 +168405,69 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [57229] = 27, - ACTIONS(2451), 1, + [56340] = 27, + ACTIONS(1943), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(1949), 1, anon_sym_LBRACK, - ACTIONS(2461), 1, + ACTIONS(1953), 1, anon_sym_LBRACE, - ACTIONS(2465), 1, + ACTIONS(1957), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2467), 1, + ACTIONS(1959), 1, anon_sym_None, - ACTIONS(2469), 1, + ACTIONS(1961), 1, sym_float, - ACTIONS(2473), 1, + ACTIONS(1965), 1, anon_sym_sizeof, - ACTIONS(2475), 1, + ACTIONS(1967), 1, sym_string_start, - ACTIONS(2637), 1, - anon_sym_not, - ACTIONS(2639), 1, + ACTIONS(2661), 1, + anon_sym_STAR, + ACTIONS(2669), 1, anon_sym_LT, - ACTIONS(2641), 1, + ACTIONS(3045), 1, + anon_sym_not, + ACTIONS(3047), 1, anon_sym_lambda, - ACTIONS(2645), 1, + ACTIONS(3049), 1, anon_sym_new, - ACTIONS(3105), 1, - anon_sym_STAR, - ACTIONS(3577), 1, + ACTIONS(3651), 1, anon_sym_await, - ACTIONS(3671), 1, + ACTIONS(3693), 1, sym_identifier, - STATE(2077), 1, + STATE(2057), 1, sym_primary_expression, - STATE(2218), 1, + STATE(2089), 1, sym_string, - STATE(2591), 1, + STATE(2284), 1, sym_list_splat_pattern, - STATE(4168), 1, + STATE(4229), 1, sym_expression, - STATE(5609), 1, + STATE(5675), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2712), 2, + STATE(2704), 2, sym_attribute, sym_subscript, - ACTIONS(2449), 3, + ACTIONS(1941), 3, sym_integer, sym_true, sym_false, - ACTIONS(2459), 4, + ACTIONS(1951), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3673), 5, + ACTIONS(3695), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2604), 8, + STATE(3825), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -168125,7 +168476,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2631), 18, + STATE(2257), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -168144,343 +168495,369 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [57346] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3317), 14, - sym__dedent, - sym_string_start, + [56457] = 26, + ACTIONS(2413), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(2419), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(2423), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, + ACTIONS(2427), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(2429), 1, + anon_sym_None, + ACTIONS(2431), 1, sym_float, - ACTIONS(3319), 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(2435), 1, + anon_sym_sizeof, + ACTIONS(2437), 1, + sym_string_start, + ACTIONS(2521), 1, + sym_identifier, + ACTIONS(2535), 1, anon_sym_not, + ACTIONS(2537), 1, + anon_sym_LT, + ACTIONS(2539), 1, anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, + ACTIONS(2543), 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(2545), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [57415] = 3, + ACTIONS(3011), 1, + anon_sym_STAR, + STATE(2061), 1, + sym_primary_expression, + STATE(2099), 1, + sym_string, + STATE(2256), 1, + sym_list_splat_pattern, + STATE(3877), 1, + sym_expression, + STATE(5687), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2083), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2411), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2421), 4, 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(2079), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2529), 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(2326), 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(2298), 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, + [56572] = 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, - [57484] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3267), 14, + ACTIONS(107), 1, sym_string_start, - ts_builtin_sym_end, + ACTIONS(1001), 1, + sym_identifier, + ACTIONS(1041), 1, + anon_sym_await, + ACTIONS(1281), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(1287), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(3073), 1, + anon_sym_STAR, + STATE(2032), 1, + sym_primary_expression, + STATE(2043), 1, + sym_string, + STATE(2088), 1, + sym_list_splat_pattern, + STATE(4097), 1, + sym_expression, + STATE(5682), 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, - anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(3265), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1016), 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, + anon_sym_api, + STATE(3442), 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(2111), 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, + [56687] = 26, + ACTIONS(1211), 1, sym_identifier, + ACTIONS(1213), 1, + anon_sym_LPAREN, + ACTIONS(1219), 1, + anon_sym_LBRACK, + ACTIONS(1223), 1, + anon_sym_LBRACE, + ACTIONS(1233), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1235), 1, + anon_sym_None, + ACTIONS(1239), 1, + sym_float, + ACTIONS(1241), 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, + ACTIONS(1245), 1, anon_sym_sizeof, - [57553] = 3, + ACTIONS(1247), 1, + sym_string_start, + ACTIONS(2705), 1, + anon_sym_LT, + ACTIONS(2955), 1, + anon_sym_STAR, + ACTIONS(3635), 1, + anon_sym_not, + ACTIONS(3637), 1, + anon_sym_lambda, + ACTIONS(3639), 1, + anon_sym_new, + STATE(2161), 1, + sym_string, + STATE(2304), 1, + sym_primary_expression, + STATE(2536), 1, + sym_list_splat_pattern, + STATE(3146), 1, + sym_expression, + STATE(5436), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2779), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1237), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1227), 4, 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(2777), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1217), 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(3088), 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(2401), 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, + [56802] = 26, + ACTIONS(1211), 1, + sym_identifier, + ACTIONS(1213), 1, + anon_sym_LPAREN, + ACTIONS(1219), 1, + anon_sym_LBRACK, + ACTIONS(1223), 1, + anon_sym_LBRACE, + ACTIONS(1225), 1, anon_sym_not, + ACTIONS(1231), 1, anon_sym_lambda, - anon_sym_yield, + ACTIONS(1233), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1235), 1, anon_sym_None, - sym_integer, - sym_identifier, + ACTIONS(1239), 1, + sym_float, + ACTIONS(1241), 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(1243), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, + ACTIONS(1245), 1, anon_sym_sizeof, - [57622] = 3, + ACTIONS(1247), 1, + sym_string_start, + ACTIONS(2705), 1, + anon_sym_LT, + ACTIONS(2955), 1, + anon_sym_STAR, + STATE(2072), 1, + sym_primary_expression, + STATE(2161), 1, + sym_string, + STATE(2536), 1, + sym_list_splat_pattern, + STATE(4441), 1, + sym_expression, + STATE(5579), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3675), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1237), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1227), 4, 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(3677), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1217), 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, - [57691] = 3, + STATE(3088), 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(2401), 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, + [56917] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3579), 14, - sym__dedent, + ACTIONS(3479), 14, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -168493,7 +168870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3581), 46, + ACTIONS(3477), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -168540,77 +168917,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [57760] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3583), 14, - sym__dedent, + [56986] = 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(83), 1, + sym_float, + ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, sym_string_start, + ACTIONS(1001), 1, + sym_identifier, + ACTIONS(1041), 1, + anon_sym_await, + ACTIONS(1281), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(1287), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(3073), 1, + anon_sym_STAR, + ACTIONS(3443), 1, + anon_sym_not, + ACTIONS(3445), 1, + anon_sym_lambda, + ACTIONS(3447), 1, + anon_sym_new, + STATE(2034), 1, + sym_primary_expression, + STATE(2043), 1, + sym_string, + STATE(2085), 1, + sym_expression, + STATE(2088), 1, + sym_list_splat_pattern, + STATE(5513), 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, - anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(3585), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1016), 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, - [57829] = 3, + STATE(2115), 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(2111), 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, + [57101] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3679), 14, + ACTIONS(3601), 14, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -168625,7 +169025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3681), 46, + ACTIONS(3599), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -168672,158 +169072,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [57898] = 26, - ACTIONS(1907), 1, + [57170] = 26, + ACTIONS(1943), 1, anon_sym_LPAREN, - ACTIONS(1913), 1, + ACTIONS(1949), 1, anon_sym_LBRACK, - ACTIONS(1917), 1, + ACTIONS(1953), 1, anon_sym_LBRACE, - ACTIONS(1921), 1, + ACTIONS(1957), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1923), 1, + ACTIONS(1959), 1, anon_sym_None, - ACTIONS(1925), 1, + ACTIONS(1961), 1, sym_float, - ACTIONS(1929), 1, + ACTIONS(1965), 1, anon_sym_sizeof, - ACTIONS(1931), 1, + ACTIONS(1967), 1, sym_string_start, - ACTIONS(2653), 1, - anon_sym_STAR, - ACTIONS(2659), 1, - anon_sym_not, ACTIONS(2661), 1, - anon_sym_LT, - ACTIONS(2663), 1, - anon_sym_lambda, - ACTIONS(2669), 1, - anon_sym_new, - ACTIONS(2793), 1, - sym_identifier, - ACTIONS(2801), 1, - anon_sym_await, - STATE(2046), 1, - sym_primary_expression, - STATE(2073), 1, - sym_string, - STATE(2357), 1, - sym_list_splat_pattern, - STATE(3848), 1, - sym_expression, - STATE(5557), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1905), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1915), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2797), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3846), 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(2255), 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, - [58013] = 27, - ACTIONS(1907), 1, - anon_sym_LPAREN, - ACTIONS(1913), 1, - anon_sym_LBRACK, - ACTIONS(1917), 1, - anon_sym_LBRACE, - ACTIONS(1921), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1923), 1, - anon_sym_None, - ACTIONS(1925), 1, - sym_float, - ACTIONS(1929), 1, - anon_sym_sizeof, - ACTIONS(1931), 1, - sym_string_start, - ACTIONS(2653), 1, anon_sym_STAR, - ACTIONS(2661), 1, + ACTIONS(2669), 1, anon_sym_LT, + ACTIONS(2923), 1, + sym_identifier, ACTIONS(2931), 1, + anon_sym_await, + ACTIONS(3045), 1, anon_sym_not, - ACTIONS(2933), 1, + ACTIONS(3047), 1, anon_sym_lambda, - ACTIONS(2935), 1, + ACTIONS(3049), 1, anon_sym_new, - ACTIONS(3621), 1, - anon_sym_await, - ACTIONS(3683), 1, - sym_identifier, - STATE(2046), 1, + STATE(2057), 1, sym_primary_expression, - STATE(2073), 1, + STATE(2089), 1, sym_string, - STATE(2357), 1, + STATE(2284), 1, sym_list_splat_pattern, - STATE(4152), 1, + STATE(4201), 1, sym_expression, - STATE(5657), 1, + STATE(5675), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2639), 2, - sym_attribute, - sym_subscript, - ACTIONS(1905), 3, + ACTIONS(1941), 3, sym_integer, sym_true, sym_false, - ACTIONS(1915), 4, + ACTIONS(1951), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3685), 5, + ACTIONS(2927), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3846), 8, + STATE(3825), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -168832,9 +169140,11 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2255), 18, + STATE(2257), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -168851,79 +169161,13 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [58130] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3587), 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(3589), 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, - [58199] = 3, + [57285] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3591), 14, - sym__dedent, + ACTIONS(3605), 14, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -168936,7 +169180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3593), 46, + ACTIONS(3603), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -168983,13 +169227,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [58268] = 3, + [57354] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3595), 14, - sym__dedent, + ACTIONS(3483), 14, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -169002,7 +169246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3597), 46, + ACTIONS(3481), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -169049,96 +169293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [58337] = 26, - ACTIONS(1907), 1, - anon_sym_LPAREN, - ACTIONS(1913), 1, - anon_sym_LBRACK, - ACTIONS(1917), 1, - anon_sym_LBRACE, - ACTIONS(1921), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1923), 1, - anon_sym_None, - ACTIONS(1925), 1, - sym_float, - ACTIONS(1929), 1, - anon_sym_sizeof, - ACTIONS(1931), 1, - sym_string_start, - ACTIONS(2653), 1, - anon_sym_STAR, - ACTIONS(2661), 1, - anon_sym_LT, - ACTIONS(2793), 1, - sym_identifier, - ACTIONS(2801), 1, - anon_sym_await, - ACTIONS(2931), 1, - anon_sym_not, - ACTIONS(2933), 1, - anon_sym_lambda, - ACTIONS(2935), 1, - anon_sym_new, - STATE(2046), 1, - sym_primary_expression, - STATE(2073), 1, - sym_string, - STATE(2357), 1, - sym_list_splat_pattern, - STATE(4247), 1, - sym_expression, - STATE(5657), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1905), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1915), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2797), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3846), 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(2255), 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, - [58452] = 26, + [57423] = 26, ACTIONS(1382), 1, anon_sym_LBRACK, ACTIONS(1386), 1, @@ -169161,23 +169316,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1408), 1, sym_string_start, - ACTIONS(2439), 1, + ACTIONS(2397), 1, + anon_sym_STAR, + ACTIONS(2401), 1, + anon_sym_await, + ACTIONS(2449), 1, anon_sym_LPAREN, - ACTIONS(2955), 1, + ACTIONS(3037), 1, sym_identifier, - ACTIONS(2961), 1, - anon_sym_await, - ACTIONS(3055), 1, - anon_sym_STAR, - STATE(2151), 1, + STATE(2163), 1, sym_primary_expression, - STATE(2302), 1, + STATE(2393), 1, sym_string, - STATE(2646), 1, - sym_expression, - STATE(2671), 1, + STATE(2644), 1, sym_list_splat_pattern, - STATE(5468), 1, + STATE(2659), 1, + sym_expression, + STATE(5398), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -169191,13 +169346,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2959), 5, + ACTIONS(2399), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2716), 8, + STATE(2652), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -169206,7 +169361,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2715), 20, + STATE(2651), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -169227,13 +169382,13 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [58567] = 3, + [57538] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3623), 14, - sym__dedent, + ACTIONS(3487), 14, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -169246,7 +169401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3625), 46, + ACTIONS(3485), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -169293,13 +169448,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [58636] = 3, + [57607] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3627), 14, - sym__dedent, + ACTIONS(3609), 14, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -169312,7 +169467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3629), 46, + ACTIONS(3607), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -169359,13 +169514,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [58705] = 3, + [57676] = 26, + ACTIONS(1211), 1, + sym_identifier, + ACTIONS(1213), 1, + anon_sym_LPAREN, + ACTIONS(1219), 1, + anon_sym_LBRACK, + ACTIONS(1223), 1, + anon_sym_LBRACE, + ACTIONS(1225), 1, + anon_sym_not, + ACTIONS(1231), 1, + anon_sym_lambda, + ACTIONS(1233), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1235), 1, + anon_sym_None, + ACTIONS(1239), 1, + sym_float, + ACTIONS(1241), 1, + anon_sym_await, + ACTIONS(1243), 1, + anon_sym_new, + ACTIONS(1245), 1, + anon_sym_sizeof, + ACTIONS(1247), 1, + sym_string_start, + ACTIONS(2705), 1, + anon_sym_LT, + ACTIONS(2955), 1, + anon_sym_STAR, + STATE(2072), 1, + sym_primary_expression, + STATE(2161), 1, + sym_string, + STATE(2536), 1, + sym_list_splat_pattern, + STATE(3857), 1, + sym_expression, + STATE(5579), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3631), 14, - sym__dedent, + ACTIONS(1237), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1227), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1217), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3088), 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(2401), 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, + [57791] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3491), 14, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -169378,7 +169622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3633), 46, + ACTIONS(3489), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -169425,13 +169669,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [58774] = 3, + [57860] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3635), 14, - sym__dedent, + ACTIONS(3613), 14, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -169444,7 +169688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3637), 46, + ACTIONS(3611), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -169491,13 +169735,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [58843] = 3, + [57929] = 26, + ACTIONS(1211), 1, + sym_identifier, + ACTIONS(1213), 1, + anon_sym_LPAREN, + ACTIONS(1219), 1, + anon_sym_LBRACK, + ACTIONS(1223), 1, + anon_sym_LBRACE, + ACTIONS(1225), 1, + anon_sym_not, + ACTIONS(1231), 1, + anon_sym_lambda, + ACTIONS(1233), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1235), 1, + anon_sym_None, + ACTIONS(1239), 1, + sym_float, + ACTIONS(1241), 1, + anon_sym_await, + ACTIONS(1243), 1, + anon_sym_new, + ACTIONS(1245), 1, + anon_sym_sizeof, + ACTIONS(1247), 1, + sym_string_start, + ACTIONS(2705), 1, + anon_sym_LT, + ACTIONS(2955), 1, + anon_sym_STAR, + STATE(2072), 1, + sym_primary_expression, + STATE(2161), 1, + sym_string, + STATE(2536), 1, + sym_list_splat_pattern, + STATE(4188), 1, + sym_expression, + STATE(5579), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3639), 14, - sym__dedent, + ACTIONS(1237), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1227), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1217), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3088), 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(2401), 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, + [58044] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3617), 14, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -169510,7 +169843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3641), 46, + ACTIONS(3615), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -169557,13 +169890,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [58912] = 3, + [58113] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3643), 14, - sym__dedent, + ACTIONS(3495), 14, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -169576,7 +169909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3645), 46, + ACTIONS(3493), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -169623,66 +169956,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [58981] = 26, - ACTIONS(2451), 1, + [58182] = 26, + ACTIONS(1211), 1, + sym_identifier, + ACTIONS(1213), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(1219), 1, anon_sym_LBRACK, - ACTIONS(2461), 1, + ACTIONS(1223), 1, anon_sym_LBRACE, - ACTIONS(2465), 1, + ACTIONS(1225), 1, + anon_sym_not, + ACTIONS(1231), 1, + anon_sym_lambda, + ACTIONS(1233), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2467), 1, + ACTIONS(1235), 1, anon_sym_None, - ACTIONS(2469), 1, + ACTIONS(1239), 1, sym_float, - ACTIONS(2473), 1, + ACTIONS(1241), 1, + anon_sym_await, + ACTIONS(1243), 1, + anon_sym_new, + ACTIONS(1245), 1, anon_sym_sizeof, - ACTIONS(2475), 1, + ACTIONS(1247), 1, sym_string_start, - ACTIONS(2637), 1, + ACTIONS(2705), 1, + anon_sym_LT, + ACTIONS(2955), 1, + anon_sym_STAR, + STATE(2072), 1, + sym_primary_expression, + STATE(2161), 1, + sym_string, + STATE(2536), 1, + sym_list_splat_pattern, + STATE(4194), 1, + sym_expression, + STATE(5579), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1237), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1227), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1217), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3088), 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(2401), 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, + [58297] = 26, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(2639), 1, + ACTIONS(71), 1, anon_sym_LT, - ACTIONS(2641), 1, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(2643), 1, - anon_sym_await, - ACTIONS(2645), 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(2963), 1, + ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, + sym_string_start, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(3105), 1, + ACTIONS(1041), 1, + anon_sym_await, + ACTIONS(1281), 1, + anon_sym_LPAREN, + ACTIONS(1287), 1, + anon_sym_LBRACK, + ACTIONS(3073), 1, anon_sym_STAR, - STATE(2077), 1, + STATE(2032), 1, sym_primary_expression, - STATE(2218), 1, + STATE(2043), 1, sym_string, - STATE(2591), 1, + STATE(2088), 1, sym_list_splat_pattern, - STATE(2609), 1, + STATE(3497), 1, sym_expression, - STATE(5609), 1, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2449), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(2459), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2631), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2604), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -169691,7 +170113,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2631), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -169712,13 +170134,13 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [59096] = 3, + [58412] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3647), 14, - sym__dedent, + ACTIONS(3697), 14, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -169731,7 +170153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3649), 46, + ACTIONS(3699), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -169778,13 +170200,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [59165] = 3, + [58481] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3651), 14, - sym__dedent, + ACTIONS(3621), 14, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -169797,7 +170219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3653), 46, + ACTIONS(3619), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -169844,145 +170266,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [59234] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3655), 14, - sym__dedent, - sym_string_start, + [58550] = 26, + ACTIONS(2461), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(2467), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(2471), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, + ACTIONS(2475), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(2477), 1, + anon_sym_None, + ACTIONS(2479), 1, sym_float, - ACTIONS(3657), 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(2483), 1, + anon_sym_sizeof, + ACTIONS(2485), 1, + sym_string_start, + ACTIONS(2647), 1, anon_sym_not, + ACTIONS(2649), 1, + anon_sym_LT, + ACTIONS(2651), 1, anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, + ACTIONS(2653), 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(2655), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [59303] = 3, + ACTIONS(2935), 1, + sym_identifier, + ACTIONS(3103), 1, + anon_sym_STAR, + STATE(2107), 1, + sym_primary_expression, + STATE(2200), 1, + sym_string, + STATE(2589), 1, + sym_list_splat_pattern, + STATE(2601), 1, + sym_expression, + STATE(5572), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3663), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2459), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2469), 4, 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(3665), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2641), 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, - [59372] = 3, + STATE(2631), 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(2630), 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, + [58665] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3667), 14, - sym__dedent, + ACTIONS(3625), 14, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -169995,7 +170374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3669), 46, + ACTIONS(3623), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -170042,13 +170421,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [59441] = 3, + [58734] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3267), 14, - sym__dedent, + ACTIONS(3499), 14, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -170061,7 +170440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3265), 46, + ACTIONS(3497), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -170108,13 +170487,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [59510] = 3, + [58803] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3675), 14, - sym__dedent, + ACTIONS(3629), 14, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -170127,7 +170506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3677), 46, + ACTIONS(3627), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -170174,13 +170553,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [59579] = 3, + [58872] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3679), 14, - sym__dedent, + ACTIONS(3633), 14, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -170193,7 +170572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3681), 46, + ACTIONS(3631), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -170240,46 +170619,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [59648] = 26, + [58941] = 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(577), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(614), 1, + ACTIONS(1041), 1, anon_sym_await, ACTIONS(1281), 1, anon_sym_LPAREN, ACTIONS(1287), 1, anon_sym_LBRACK, - ACTIONS(3071), 1, + ACTIONS(3073), 1, anon_sym_STAR, - ACTIONS(3485), 1, - anon_sym_not, - ACTIONS(3487), 1, - anon_sym_lambda, - ACTIONS(3489), 1, - anon_sym_new, STATE(2032), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2043), 1, sym_string, STATE(2088), 1, sym_list_splat_pattern, - STATE(2093), 1, + STATE(4307), 1, sym_expression, - STATE(5496), 1, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -170293,13 +170672,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2074), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -170308,7 +170687,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -170329,11 +170708,11 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [59763] = 3, + [59056] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3687), 14, + ACTIONS(3503), 14, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -170348,7 +170727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3689), 46, + ACTIONS(3501), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -170395,139 +170774,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [59832] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3687), 14, - sym__dedent, + [59125] = 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(1001), 1, + sym_identifier, + ACTIONS(1041), 1, + anon_sym_await, + ACTIONS(1281), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(1287), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(3073), 1, + anon_sym_STAR, + STATE(2032), 1, + sym_primary_expression, + STATE(2043), 1, + sym_string, + STATE(2088), 1, + sym_list_splat_pattern, + STATE(3476), 1, + sym_expression, + STATE(5682), 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(1016), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3442), 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(2111), 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, + [59240] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, + ACTIONS(71), 1, anon_sym_LT, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(3689), 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, + ACTIONS(79), 1, anon_sym_None, - sym_integer, + ACTIONS(83), 1, + sym_float, + ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, + sym_string_start, + ACTIONS(1001), 1, sym_identifier, + ACTIONS(1041), 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(1281), 1, + anon_sym_LPAREN, + ACTIONS(1287), 1, + anon_sym_LBRACK, + ACTIONS(3073), 1, + anon_sym_STAR, + ACTIONS(3443), 1, + anon_sym_not, + ACTIONS(3445), 1, + anon_sym_lambda, + ACTIONS(3447), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [59901] = 3, + STATE(2034), 1, + sym_primary_expression, + STATE(2043), 1, + sym_string, + STATE(2088), 1, + sym_list_splat_pattern, + STATE(2117), 1, + sym_expression, + STATE(5513), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3693), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + 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, - anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(3691), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1016), 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, - [59970] = 26, + STATE(2115), 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(2111), 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, + [59355] = 26, ACTIONS(1328), 1, anon_sym_LBRACE, ACTIONS(1332), 1, @@ -170546,27 +170971,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1474), 1, anon_sym_await, - ACTIONS(2427), 1, + ACTIONS(2377), 1, anon_sym_LPAREN, - ACTIONS(2761), 1, + ACTIONS(2787), 1, sym_identifier, - ACTIONS(2939), 1, + ACTIONS(2965), 1, anon_sym_STAR, - ACTIONS(3605), 1, + ACTIONS(3411), 1, anon_sym_not, - ACTIONS(3607), 1, + ACTIONS(3413), 1, anon_sym_lambda, - ACTIONS(3609), 1, + ACTIONS(3415), 1, anon_sym_new, - STATE(2061), 1, + STATE(2076), 1, sym_primary_expression, - STATE(2170), 1, + STATE(2147), 1, sym_string, - STATE(2475), 1, + STATE(2447), 1, sym_expression, - STATE(2477), 1, + STATE(2472), 1, sym_list_splat_pattern, - STATE(5478), 1, + STATE(5590), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -170586,7 +171011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2459), 8, + STATE(2421), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -170595,7 +171020,93 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2457), 20, + STATE(2414), 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, + [59470] = 23, + ACTIONS(1213), 1, + anon_sym_LPAREN, + ACTIONS(1219), 1, + anon_sym_LBRACK, + ACTIONS(1223), 1, + anon_sym_LBRACE, + ACTIONS(1233), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1235), 1, + anon_sym_None, + ACTIONS(1239), 1, + sym_float, + ACTIONS(1245), 1, + anon_sym_sizeof, + ACTIONS(1247), 1, + sym_string_start, + ACTIONS(1295), 1, + anon_sym_COMMA, + ACTIONS(1302), 1, + anon_sym_STAR, + ACTIONS(1310), 1, + anon_sym_LT, + ACTIONS(1312), 1, + anon_sym_await, + STATE(2161), 1, + sym_string, + STATE(2536), 1, + sym_list_splat_pattern, + STATE(3239), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1297), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(1300), 2, + anon_sym_from, + anon_sym_in, + ACTIONS(1237), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1308), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1304), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + ACTIONS(1498), 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(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -170616,7 +171127,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [60085] = 26, + [59579] = 26, ACTIONS(1211), 1, sym_identifier, ACTIONS(1213), 1, @@ -170637,25 +171148,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2735), 1, + ACTIONS(2705), 1, anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(2955), 1, anon_sym_STAR, - ACTIONS(3495), 1, + ACTIONS(3635), 1, anon_sym_not, - ACTIONS(3497), 1, + ACTIONS(3637), 1, anon_sym_lambda, - ACTIONS(3499), 1, + ACTIONS(3639), 1, anon_sym_new, - STATE(2140), 1, + STATE(2161), 1, sym_string, - STATE(2265), 1, + STATE(2304), 1, sym_primary_expression, - STATE(2432), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(3080), 1, + STATE(3089), 1, sym_expression, - STATE(5387), 1, + STATE(5436), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -170675,7 +171186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3081), 8, + STATE(3088), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -170684,7 +171195,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -170705,11 +171216,11 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [60200] = 3, + [59694] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3693), 14, + ACTIONS(3331), 14, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -170724,7 +171235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3691), 46, + ACTIONS(3329), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -170771,7 +171282,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [60269] = 26, + [59763] = 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(1001), 1, + sym_identifier, + ACTIONS(1041), 1, + anon_sym_await, + ACTIONS(1281), 1, + anon_sym_LPAREN, + ACTIONS(1287), 1, + anon_sym_LBRACK, + ACTIONS(3073), 1, + anon_sym_STAR, + STATE(2032), 1, + sym_primary_expression, + STATE(2043), 1, + sym_string, + STATE(2088), 1, + sym_list_splat_pattern, + STATE(4253), 1, + sym_expression, + STATE(5682), 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(1016), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3442), 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(2111), 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, + [59878] = 26, ACTIONS(1211), 1, sym_identifier, ACTIONS(1213), 1, @@ -170792,25 +171392,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2735), 1, + ACTIONS(2705), 1, anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(2955), 1, anon_sym_STAR, - ACTIONS(3611), 1, + ACTIONS(3641), 1, anon_sym_not, - ACTIONS(3613), 1, + ACTIONS(3643), 1, anon_sym_lambda, - ACTIONS(3615), 1, + ACTIONS(3645), 1, anon_sym_new, - STATE(2058), 1, + STATE(2075), 1, sym_primary_expression, - STATE(2140), 1, + STATE(2161), 1, sym_string, - STATE(2398), 1, - sym_expression, - STATE(2432), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(5599), 1, + STATE(2549), 1, + sym_expression, + STATE(5626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -170830,7 +171430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2393), 8, + STATE(2543), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -170839,7 +171439,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -170860,60 +171460,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [60384] = 26, - ACTIONS(2479), 1, - anon_sym_LPAREN, - ACTIONS(2485), 1, - anon_sym_LBRACK, - ACTIONS(2489), 1, + [59993] = 26, + ACTIONS(1328), 1, anon_sym_LBRACE, - ACTIONS(2493), 1, + ACTIONS(1330), 1, + anon_sym_not, + ACTIONS(1332), 1, + anon_sym_LT, + ACTIONS(1334), 1, + anon_sym_lambda, + ACTIONS(1338), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2495), 1, + ACTIONS(1340), 1, anon_sym_None, - ACTIONS(2497), 1, + ACTIONS(1344), 1, sym_float, - ACTIONS(2501), 1, + ACTIONS(1350), 1, + anon_sym_new, + ACTIONS(1360), 1, anon_sym_sizeof, - ACTIONS(2503), 1, + ACTIONS(1362), 1, sym_string_start, - ACTIONS(2525), 1, - anon_sym_LT, - ACTIONS(2803), 1, - sym_identifier, - ACTIONS(2811), 1, + ACTIONS(1472), 1, + anon_sym_LBRACK, + ACTIONS(1474), 1, anon_sym_await, - ACTIONS(2947), 1, + ACTIONS(2377), 1, + anon_sym_LPAREN, + ACTIONS(2787), 1, + sym_identifier, + ACTIONS(2965), 1, anon_sym_STAR, - ACTIONS(3513), 1, - anon_sym_not, - ACTIONS(3515), 1, - anon_sym_lambda, - ACTIONS(3517), 1, - anon_sym_new, - STATE(2062), 1, + STATE(2066), 1, sym_primary_expression, - STATE(2157), 1, + STATE(2147), 1, sym_string, - STATE(2430), 1, - sym_expression, - STATE(2523), 1, + STATE(2472), 1, sym_list_splat_pattern, - STATE(5405), 1, + STATE(3962), 1, + sym_expression, + STATE(5522), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 3, + ACTIONS(1342), 3, sym_integer, sym_true, sym_false, - ACTIONS(2487), 4, + ACTIONS(1326), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2807), 5, + ACTIONS(1470), 5, anon_sym_print, anon_sym_match, anon_sym_async, @@ -170928,7 +171528,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2418), 20, + STATE(2414), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -170949,66 +171549,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [60499] = 26, - ACTIONS(2401), 1, + [60108] = 26, + ACTIONS(2489), 1, anon_sym_LPAREN, - ACTIONS(2407), 1, + ACTIONS(2495), 1, anon_sym_LBRACK, - ACTIONS(2411), 1, + ACTIONS(2499), 1, anon_sym_LBRACE, - ACTIONS(2415), 1, + ACTIONS(2503), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2417), 1, + ACTIONS(2505), 1, anon_sym_None, - ACTIONS(2419), 1, + ACTIONS(2507), 1, sym_float, - ACTIONS(2423), 1, + ACTIONS(2511), 1, anon_sym_sizeof, - ACTIONS(2425), 1, + ACTIONS(2513), 1, sym_string_start, - ACTIONS(2535), 1, - sym_identifier, - ACTIONS(2551), 1, + ACTIONS(2563), 1, anon_sym_LT, - ACTIONS(2557), 1, + ACTIONS(2815), 1, + sym_identifier, + ACTIONS(2823), 1, anon_sym_await, - ACTIONS(2981), 1, + ACTIONS(2943), 1, anon_sym_STAR, - ACTIONS(3519), 1, + ACTIONS(3385), 1, anon_sym_not, - ACTIONS(3521), 1, + ACTIONS(3387), 1, anon_sym_lambda, - ACTIONS(3523), 1, + ACTIONS(3389), 1, anon_sym_new, - STATE(2040), 1, + STATE(2071), 1, sym_primary_expression, - STATE(2103), 1, + STATE(2177), 1, sym_string, - STATE(2277), 1, - sym_expression, - STATE(2309), 1, + STATE(2415), 1, sym_list_splat_pattern, - STATE(5426), 1, + STATE(2530), 1, + sym_expression, + STATE(5414), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2399), 3, + ACTIONS(2487), 3, sym_integer, sym_true, sym_false, - ACTIONS(2409), 4, + ACTIONS(2497), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2543), 5, + ACTIONS(2819), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2236), 8, + STATE(2493), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -171017,7 +171617,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2377), 20, + STATE(2470), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -171038,66 +171638,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [60614] = 26, - ACTIONS(1907), 1, - anon_sym_LPAREN, - ACTIONS(1913), 1, + [60223] = 26, + ACTIONS(1382), 1, anon_sym_LBRACK, - ACTIONS(1917), 1, + ACTIONS(1386), 1, anon_sym_LBRACE, - ACTIONS(1921), 1, + ACTIONS(1388), 1, + anon_sym_not, + ACTIONS(1390), 1, + anon_sym_LT, + ACTIONS(1392), 1, + anon_sym_lambda, + ACTIONS(1394), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1923), 1, + ACTIONS(1396), 1, anon_sym_None, - ACTIONS(1925), 1, + ACTIONS(1400), 1, sym_float, - ACTIONS(1929), 1, + ACTIONS(1404), 1, + anon_sym_new, + ACTIONS(1406), 1, anon_sym_sizeof, - ACTIONS(1931), 1, + ACTIONS(1408), 1, sym_string_start, - ACTIONS(2653), 1, + ACTIONS(2397), 1, anon_sym_STAR, - ACTIONS(2661), 1, - anon_sym_LT, - ACTIONS(2793), 1, - sym_identifier, - ACTIONS(2801), 1, + ACTIONS(2401), 1, anon_sym_await, - ACTIONS(3537), 1, - anon_sym_not, - ACTIONS(3539), 1, - anon_sym_lambda, - ACTIONS(3541), 1, - anon_sym_new, - STATE(2051), 1, + ACTIONS(2449), 1, + anon_sym_LPAREN, + ACTIONS(3037), 1, + sym_identifier, + STATE(2163), 1, sym_primary_expression, - STATE(2073), 1, + STATE(2393), 1, sym_string, - STATE(2312), 1, - sym_expression, - STATE(2357), 1, + STATE(2644), 1, sym_list_splat_pattern, - STATE(5442), 1, + STATE(4266), 1, + sym_expression, + STATE(5398), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1905), 3, + ACTIONS(1398), 3, sym_integer, sym_true, sym_false, - ACTIONS(1915), 4, + ACTIONS(1384), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2797), 5, + ACTIONS(2399), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2345), 8, + STATE(2652), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -171106,7 +171706,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2255), 20, + STATE(2651), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -171127,66 +171727,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [60729] = 26, - ACTIONS(1382), 1, + [60338] = 26, + ACTIONS(2413), 1, + anon_sym_LPAREN, + ACTIONS(2419), 1, anon_sym_LBRACK, - ACTIONS(1386), 1, + ACTIONS(2423), 1, anon_sym_LBRACE, - ACTIONS(1390), 1, - anon_sym_LT, - ACTIONS(1394), 1, + ACTIONS(2427), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, + ACTIONS(2429), 1, anon_sym_None, - ACTIONS(1400), 1, + ACTIONS(2431), 1, sym_float, - ACTIONS(1406), 1, + ACTIONS(2435), 1, anon_sym_sizeof, - ACTIONS(1408), 1, + ACTIONS(2437), 1, sym_string_start, - ACTIONS(2439), 1, - anon_sym_LPAREN, - ACTIONS(2955), 1, + ACTIONS(2521), 1, sym_identifier, - ACTIONS(2961), 1, + ACTIONS(2537), 1, + anon_sym_LT, + ACTIONS(2543), 1, anon_sym_await, - ACTIONS(3055), 1, + ACTIONS(3011), 1, anon_sym_STAR, - ACTIONS(3547), 1, + ACTIONS(3395), 1, anon_sym_not, - ACTIONS(3549), 1, + ACTIONS(3397), 1, anon_sym_lambda, - ACTIONS(3551), 1, + ACTIONS(3399), 1, anon_sym_new, - STATE(2152), 1, + STATE(2051), 1, sym_primary_expression, - STATE(2302), 1, + STATE(2099), 1, sym_string, - STATE(2646), 1, - sym_expression, - STATE(2671), 1, + STATE(2256), 1, sym_list_splat_pattern, - STATE(5454), 1, + STATE(2389), 1, + sym_expression, + STATE(5449), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1398), 3, + ACTIONS(2411), 3, sym_integer, sym_true, sym_false, - ACTIONS(1384), 4, + ACTIONS(2421), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2959), 5, + ACTIONS(2529), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2716), 8, + STATE(2326), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -171195,7 +171795,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2715), 20, + STATE(2298), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -171216,66 +171816,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [60844] = 26, - ACTIONS(2451), 1, + [60453] = 26, + ACTIONS(1943), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(1949), 1, anon_sym_LBRACK, - ACTIONS(2461), 1, + ACTIONS(1953), 1, anon_sym_LBRACE, - ACTIONS(2465), 1, + ACTIONS(1957), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2467), 1, + ACTIONS(1959), 1, anon_sym_None, - ACTIONS(2469), 1, + ACTIONS(1961), 1, sym_float, - ACTIONS(2473), 1, + ACTIONS(1965), 1, anon_sym_sizeof, - ACTIONS(2475), 1, + ACTIONS(1967), 1, sym_string_start, - ACTIONS(2639), 1, + ACTIONS(2661), 1, + anon_sym_STAR, + ACTIONS(2669), 1, anon_sym_LT, - ACTIONS(2643), 1, - anon_sym_await, - ACTIONS(2963), 1, + ACTIONS(2923), 1, sym_identifier, - ACTIONS(3105), 1, - anon_sym_STAR, - ACTIONS(3561), 1, + ACTIONS(2931), 1, + anon_sym_await, + ACTIONS(3405), 1, anon_sym_not, - ACTIONS(3563), 1, + ACTIONS(3407), 1, anon_sym_lambda, - ACTIONS(3565), 1, + ACTIONS(3409), 1, anon_sym_new, - STATE(2099), 1, + STATE(2052), 1, sym_primary_expression, - STATE(2218), 1, + STATE(2089), 1, sym_string, - STATE(2591), 1, + STATE(2284), 1, sym_list_splat_pattern, - STATE(2609), 1, + STATE(2336), 1, sym_expression, - STATE(5466), 1, + STATE(5464), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2449), 3, + ACTIONS(1941), 3, sym_integer, sym_true, sym_false, - ACTIONS(2459), 4, + ACTIONS(1951), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2631), 5, + ACTIONS(2927), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2604), 8, + STATE(2334), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -171284,7 +171884,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2631), 20, + STATE(2257), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -171305,11 +171905,11 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [60959] = 3, + [60568] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3429), 14, + ACTIONS(3421), 14, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -171324,7 +171924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3431), 46, + ACTIONS(3423), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -171371,66 +171971,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [61028] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, + [60637] = 26, + ACTIONS(1382), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1386), 1, anon_sym_LBRACE, - ACTIONS(1225), 1, - anon_sym_not, - ACTIONS(1231), 1, - anon_sym_lambda, - ACTIONS(1233), 1, + ACTIONS(1390), 1, + anon_sym_LT, + ACTIONS(1394), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1396), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1400), 1, sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1243), 1, - anon_sym_new, - ACTIONS(1245), 1, + ACTIONS(1406), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1408), 1, sym_string_start, - ACTIONS(2735), 1, - anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(2397), 1, anon_sym_STAR, - STATE(2067), 1, + ACTIONS(2401), 1, + anon_sym_await, + ACTIONS(2449), 1, + anon_sym_LPAREN, + ACTIONS(3037), 1, + sym_identifier, + ACTIONS(3425), 1, + anon_sym_not, + ACTIONS(3427), 1, + anon_sym_lambda, + ACTIONS(3429), 1, + anon_sym_new, + STATE(2165), 1, sym_primary_expression, - STATE(2140), 1, + STATE(2393), 1, sym_string, - STATE(2432), 1, + STATE(2644), 1, sym_list_splat_pattern, - STATE(4327), 1, + STATE(2659), 1, sym_expression, - STATE(5469), 1, + STATE(5476), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(1398), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(1384), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(2399), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3081), 8, + STATE(2652), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -171439,7 +172039,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2651), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -171460,73 +172060,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [61143] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3441), 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(3443), 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, - [61212] = 26, + [60752] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -171547,25 +172081,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(107), 1, sym_string_start, - ACTIONS(577), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(614), 1, + ACTIONS(1041), 1, anon_sym_await, ACTIONS(1281), 1, anon_sym_LPAREN, ACTIONS(1287), 1, anon_sym_LBRACK, - ACTIONS(3071), 1, + ACTIONS(3073), 1, anon_sym_STAR, - STATE(2024), 1, + STATE(2032), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2043), 1, sym_string, STATE(2088), 1, sym_list_splat_pattern, - STATE(4343), 1, + STATE(4124), 1, sym_expression, - STATE(5564), 1, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -171579,13 +172113,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -171594,7 +172128,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -171615,66 +172149,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [61327] = 26, - ACTIONS(67), 1, + [60867] = 26, + ACTIONS(2461), 1, + anon_sym_LPAREN, + ACTIONS(2467), 1, + anon_sym_LBRACK, + ACTIONS(2471), 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, + ACTIONS(2475), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(2477), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(2479), 1, sym_float, - ACTIONS(99), 1, - anon_sym_new, - ACTIONS(105), 1, + ACTIONS(2483), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(2485), 1, sym_string_start, - ACTIONS(577), 1, - sym_identifier, - ACTIONS(614), 1, + ACTIONS(2649), 1, + anon_sym_LT, + ACTIONS(2653), 1, anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3071), 1, + ACTIONS(2935), 1, + sym_identifier, + ACTIONS(3103), 1, anon_sym_STAR, - STATE(2024), 1, + ACTIONS(3431), 1, + anon_sym_not, + ACTIONS(3433), 1, + anon_sym_lambda, + ACTIONS(3435), 1, + anon_sym_new, + STATE(2094), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2200), 1, sym_string, - STATE(2088), 1, + STATE(2589), 1, sym_list_splat_pattern, - STATE(3991), 1, + STATE(2601), 1, sym_expression, - STATE(5564), 1, + STATE(5490), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(2459), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(2469), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(2641), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(2631), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -171683,7 +172217,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2630), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -171704,198 +172238,333 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [61442] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3449), 14, - sym__dedent, + [60982] = 26, + ACTIONS(1328), 1, + anon_sym_LBRACE, + ACTIONS(1330), 1, + anon_sym_not, + ACTIONS(1332), 1, + anon_sym_LT, + ACTIONS(1334), 1, + anon_sym_lambda, + ACTIONS(1338), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1340), 1, + anon_sym_None, + ACTIONS(1344), 1, + sym_float, + ACTIONS(1350), 1, + anon_sym_new, + ACTIONS(1360), 1, + anon_sym_sizeof, + ACTIONS(1362), 1, sym_string_start, + ACTIONS(1472), 1, + anon_sym_LBRACK, + ACTIONS(1474), 1, + anon_sym_await, + ACTIONS(2377), 1, anon_sym_LPAREN, + ACTIONS(2787), 1, + sym_identifier, + ACTIONS(2965), 1, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + STATE(2066), 1, + sym_primary_expression, + STATE(2147), 1, + sym_string, + STATE(2472), 1, + sym_list_splat_pattern, + STATE(3874), 1, + sym_expression, + STATE(5522), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1342), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1326), 4, 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(3451), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1470), 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(2421), 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(2414), 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, + [61097] = 26, + ACTIONS(1328), 1, + anon_sym_LBRACE, + ACTIONS(1330), 1, anon_sym_not, + ACTIONS(1332), 1, + anon_sym_LT, + ACTIONS(1334), 1, anon_sym_lambda, - anon_sym_yield, + ACTIONS(1338), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1340), 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(1344), 1, + sym_float, + ACTIONS(1350), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, + ACTIONS(1360), 1, anon_sym_sizeof, - [61511] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3453), 14, - sym__dedent, + ACTIONS(1362), 1, sym_string_start, + ACTIONS(1472), 1, + anon_sym_LBRACK, + ACTIONS(1474), 1, + anon_sym_await, + ACTIONS(2377), 1, anon_sym_LPAREN, + ACTIONS(2787), 1, + sym_identifier, + ACTIONS(2965), 1, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + STATE(2066), 1, + sym_primary_expression, + STATE(2147), 1, + sym_string, + STATE(2472), 1, + sym_list_splat_pattern, + STATE(3900), 1, + sym_expression, + STATE(5522), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1342), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1326), 4, 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(3455), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1470), 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(2421), 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(2414), 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, + [61212] = 26, + ACTIONS(1328), 1, + anon_sym_LBRACE, + ACTIONS(1330), 1, anon_sym_not, + ACTIONS(1332), 1, + anon_sym_LT, + ACTIONS(1334), 1, anon_sym_lambda, - anon_sym_yield, + ACTIONS(1338), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1340), 1, anon_sym_None, - sym_integer, - sym_identifier, + ACTIONS(1344), 1, + sym_float, + ACTIONS(1350), 1, + anon_sym_new, + ACTIONS(1360), 1, + anon_sym_sizeof, + ACTIONS(1362), 1, + sym_string_start, + ACTIONS(1472), 1, + anon_sym_LBRACK, + ACTIONS(1474), 1, anon_sym_await, - anon_sym_api, + ACTIONS(2377), 1, + anon_sym_LPAREN, + ACTIONS(2787), 1, + sym_identifier, + ACTIONS(2965), 1, + anon_sym_STAR, + STATE(2066), 1, + sym_primary_expression, + STATE(2147), 1, + sym_string, + STATE(2409), 1, + sym_expression, + STATE(2472), 1, + sym_list_splat_pattern, + STATE(5522), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1342), 3, + sym_integer, 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, - [61580] = 26, - ACTIONS(67), 1, + ACTIONS(1326), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1470), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2421), 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(2414), 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, + [61327] = 26, + ACTIONS(1328), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(1330), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1332), 1, anon_sym_LT, - ACTIONS(73), 1, + ACTIONS(1334), 1, anon_sym_lambda, - ACTIONS(77), 1, + ACTIONS(1338), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1340), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1344), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(1350), 1, anon_sym_new, - ACTIONS(105), 1, + ACTIONS(1360), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1362), 1, sym_string_start, - ACTIONS(577), 1, - sym_identifier, - ACTIONS(614), 1, + ACTIONS(1472), 1, + anon_sym_LBRACK, + ACTIONS(1474), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(2377), 1, anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3071), 1, + ACTIONS(2787), 1, + sym_identifier, + ACTIONS(2965), 1, anon_sym_STAR, - STATE(2024), 1, + STATE(2066), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2147), 1, sym_string, - STATE(2088), 1, + STATE(2472), 1, sym_list_splat_pattern, - STATE(4041), 1, + STATE(3903), 1, sym_expression, - STATE(5564), 1, + STATE(5522), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1342), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1326), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(1470), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(2421), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -171904,7 +172573,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2414), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -171925,66 +172594,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [61695] = 26, - ACTIONS(67), 1, + [61442] = 26, + ACTIONS(1211), 1, + sym_identifier, + ACTIONS(1213), 1, + anon_sym_LPAREN, + ACTIONS(1219), 1, + anon_sym_LBRACK, + ACTIONS(1223), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(1225), 1, anon_sym_not, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(73), 1, + ACTIONS(1231), 1, anon_sym_lambda, - ACTIONS(77), 1, + ACTIONS(1233), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1235), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1239), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(1241), 1, + anon_sym_await, + ACTIONS(1243), 1, anon_sym_new, - ACTIONS(105), 1, + ACTIONS(1245), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1247), 1, sym_string_start, - ACTIONS(577), 1, - sym_identifier, - ACTIONS(614), 1, - anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3071), 1, + ACTIONS(2705), 1, + anon_sym_LT, + ACTIONS(2955), 1, anon_sym_STAR, - STATE(2024), 1, + STATE(2072), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2161), 1, sym_string, - STATE(2088), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(4042), 1, + STATE(4443), 1, sym_expression, - STATE(5564), 1, + STATE(5579), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1237), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1227), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(1217), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(3088), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -171993,7 +172662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -172014,66 +172683,155 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [61810] = 26, - ACTIONS(2451), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_LBRACK, - ACTIONS(2461), 1, + [61557] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2465), 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(2467), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2469), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(2473), 1, + ACTIONS(99), 1, + anon_sym_new, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(2475), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2637), 1, + ACTIONS(1001), 1, + sym_identifier, + ACTIONS(1041), 1, + anon_sym_await, + ACTIONS(1281), 1, + anon_sym_LPAREN, + ACTIONS(1287), 1, + anon_sym_LBRACK, + ACTIONS(3073), 1, + anon_sym_STAR, + STATE(2032), 1, + sym_primary_expression, + STATE(2043), 1, + sym_string, + STATE(2088), 1, + sym_list_splat_pattern, + STATE(4398), 1, + sym_expression, + STATE(5682), 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(1016), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3442), 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(2111), 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, + [61672] = 26, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(2639), 1, + ACTIONS(71), 1, anon_sym_LT, - ACTIONS(2641), 1, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(2643), 1, - anon_sym_await, - ACTIONS(2645), 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(2963), 1, + ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, + sym_string_start, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(3105), 1, + ACTIONS(1041), 1, + anon_sym_await, + ACTIONS(1281), 1, + anon_sym_LPAREN, + ACTIONS(1287), 1, + anon_sym_LBRACK, + ACTIONS(3073), 1, anon_sym_STAR, - STATE(2077), 1, + STATE(2032), 1, sym_primary_expression, - STATE(2218), 1, + STATE(2043), 1, sym_string, - STATE(2591), 1, + STATE(2088), 1, sym_list_splat_pattern, - STATE(4060), 1, + STATE(4131), 1, sym_expression, - STATE(5609), 1, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2449), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(2459), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2631), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2604), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -172082,7 +172840,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2631), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -172103,7 +172861,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [61925] = 26, + [61787] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -172124,25 +172882,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(107), 1, sym_string_start, - ACTIONS(577), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(614), 1, + ACTIONS(1041), 1, anon_sym_await, ACTIONS(1281), 1, anon_sym_LPAREN, ACTIONS(1287), 1, anon_sym_LBRACK, - ACTIONS(3071), 1, + ACTIONS(3073), 1, anon_sym_STAR, - STATE(2024), 1, + STATE(2032), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2043), 1, sym_string, STATE(2088), 1, sym_list_splat_pattern, - STATE(4067), 1, + STATE(3979), 1, sym_expression, - STATE(5564), 1, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -172156,13 +172914,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -172171,7 +172929,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -172192,7 +172950,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [62040] = 26, + [61902] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -172213,25 +172971,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(107), 1, sym_string_start, - ACTIONS(577), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(614), 1, + ACTIONS(1041), 1, anon_sym_await, ACTIONS(1281), 1, anon_sym_LPAREN, ACTIONS(1287), 1, anon_sym_LBRACK, - ACTIONS(3071), 1, + ACTIONS(3073), 1, anon_sym_STAR, - STATE(2024), 1, + STATE(2032), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2043), 1, sym_string, STATE(2088), 1, sym_list_splat_pattern, - STATE(4068), 1, + STATE(3981), 1, sym_expression, - STATE(5564), 1, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -172245,13 +173003,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(1016), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3442), 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(2111), 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, + [62017] = 26, + ACTIONS(2461), 1, + anon_sym_LPAREN, + ACTIONS(2467), 1, + anon_sym_LBRACK, + ACTIONS(2471), 1, + anon_sym_LBRACE, + ACTIONS(2475), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2477), 1, + anon_sym_None, + ACTIONS(2479), 1, + sym_float, + ACTIONS(2483), 1, + anon_sym_sizeof, + ACTIONS(2485), 1, + sym_string_start, + ACTIONS(2647), 1, + anon_sym_not, + ACTIONS(2649), 1, + anon_sym_LT, + ACTIONS(2651), 1, + anon_sym_lambda, + ACTIONS(2653), 1, + anon_sym_await, + ACTIONS(2655), 1, + anon_sym_new, + ACTIONS(2935), 1, + sym_identifier, + ACTIONS(3103), 1, + anon_sym_STAR, + STATE(2107), 1, + sym_primary_expression, + STATE(2200), 1, + sym_string, + STATE(2589), 1, + sym_list_splat_pattern, + STATE(4005), 1, + sym_expression, + STATE(5572), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2459), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2469), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2641), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(2631), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -172260,7 +173107,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2630), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -172281,7 +173128,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [62155] = 26, + [62132] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -172302,25 +173149,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(107), 1, sym_string_start, - ACTIONS(577), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(614), 1, + ACTIONS(1041), 1, anon_sym_await, ACTIONS(1281), 1, anon_sym_LPAREN, ACTIONS(1287), 1, anon_sym_LBRACK, - ACTIONS(3071), 1, + ACTIONS(3073), 1, anon_sym_STAR, - STATE(2024), 1, + STATE(2032), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2043), 1, sym_string, STATE(2088), 1, sym_list_splat_pattern, - STATE(4094), 1, + STATE(4027), 1, sym_expression, - STATE(5564), 1, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -172334,13 +173181,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -172349,7 +173196,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -172370,7 +173217,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [62270] = 26, + [62247] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -172391,25 +173238,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(107), 1, sym_string_start, - ACTIONS(577), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(614), 1, + ACTIONS(1041), 1, anon_sym_await, ACTIONS(1281), 1, anon_sym_LPAREN, ACTIONS(1287), 1, anon_sym_LBRACK, - ACTIONS(3071), 1, + ACTIONS(3073), 1, anon_sym_STAR, - STATE(2024), 1, + STATE(2032), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2043), 1, sym_string, STATE(2088), 1, sym_list_splat_pattern, - STATE(4095), 1, + STATE(4028), 1, sym_expression, - STATE(5564), 1, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -172423,13 +173270,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -172438,7 +173285,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -172459,7 +173306,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [62385] = 26, + [62362] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -172480,25 +173327,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(107), 1, sym_string_start, - ACTIONS(577), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(614), 1, + ACTIONS(1041), 1, anon_sym_await, ACTIONS(1281), 1, anon_sym_LPAREN, ACTIONS(1287), 1, anon_sym_LBRACK, - ACTIONS(3071), 1, + ACTIONS(3073), 1, anon_sym_STAR, - STATE(2024), 1, + STATE(2032), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2043), 1, sym_string, STATE(2088), 1, sym_list_splat_pattern, - STATE(4096), 1, + STATE(4051), 1, sym_expression, - STATE(5564), 1, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -172512,13 +173359,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -172527,7 +173374,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -172548,7 +173395,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [62500] = 26, + [62477] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -172569,25 +173416,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(107), 1, sym_string_start, - ACTIONS(577), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(614), 1, + ACTIONS(1041), 1, anon_sym_await, ACTIONS(1281), 1, anon_sym_LPAREN, ACTIONS(1287), 1, anon_sym_LBRACK, - ACTIONS(3071), 1, + ACTIONS(3073), 1, anon_sym_STAR, - STATE(2024), 1, + STATE(2032), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2043), 1, sym_string, STATE(2088), 1, sym_list_splat_pattern, - STATE(4111), 1, + STATE(4054), 1, sym_expression, - STATE(5564), 1, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -172601,13 +173448,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -172616,7 +173463,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -172637,7 +173484,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [62615] = 26, + [62592] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -172658,25 +173505,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(107), 1, sym_string_start, - ACTIONS(577), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(614), 1, + ACTIONS(1041), 1, anon_sym_await, ACTIONS(1281), 1, anon_sym_LPAREN, ACTIONS(1287), 1, anon_sym_LBRACK, - ACTIONS(3071), 1, + ACTIONS(3073), 1, anon_sym_STAR, - STATE(2024), 1, + STATE(2032), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2043), 1, sym_string, STATE(2088), 1, sym_list_splat_pattern, - STATE(4113), 1, + STATE(4055), 1, sym_expression, - STATE(5564), 1, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -172690,13 +173537,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -172705,7 +173552,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -172726,7 +173573,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [62730] = 26, + [62707] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -172747,25 +173594,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(107), 1, sym_string_start, - ACTIONS(577), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(614), 1, + ACTIONS(1041), 1, anon_sym_await, ACTIONS(1281), 1, anon_sym_LPAREN, ACTIONS(1287), 1, anon_sym_LBRACK, - ACTIONS(3071), 1, + ACTIONS(3073), 1, anon_sym_STAR, - STATE(2024), 1, + STATE(2032), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2043), 1, sym_string, STATE(2088), 1, sym_list_splat_pattern, - STATE(4114), 1, + STATE(4068), 1, sym_expression, - STATE(5564), 1, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -172779,13 +173626,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -172794,7 +173641,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -172815,7 +173662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [62845] = 26, + [62822] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -172836,25 +173683,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(107), 1, sym_string_start, - ACTIONS(577), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(614), 1, + ACTIONS(1041), 1, anon_sym_await, ACTIONS(1281), 1, anon_sym_LPAREN, ACTIONS(1287), 1, anon_sym_LBRACK, - ACTIONS(3071), 1, + ACTIONS(3073), 1, anon_sym_STAR, - STATE(2024), 1, + STATE(2032), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2043), 1, sym_string, STATE(2088), 1, sym_list_splat_pattern, - STATE(4116), 1, + STATE(4069), 1, sym_expression, - STATE(5564), 1, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -172868,13 +173715,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -172883,7 +173730,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -172904,7 +173751,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [62960] = 26, + [62937] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -172925,25 +173772,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(107), 1, sym_string_start, - ACTIONS(577), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(614), 1, + ACTIONS(1041), 1, anon_sym_await, ACTIONS(1281), 1, anon_sym_LPAREN, ACTIONS(1287), 1, anon_sym_LBRACK, - ACTIONS(3071), 1, + ACTIONS(3073), 1, anon_sym_STAR, - STATE(2024), 1, + STATE(2032), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2043), 1, sym_string, STATE(2088), 1, sym_list_splat_pattern, - STATE(4117), 1, + STATE(4071), 1, sym_expression, - STATE(5564), 1, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -172957,13 +173804,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -172972,7 +173819,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -172993,7 +173840,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [63075] = 26, + [63052] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -173014,25 +173861,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(107), 1, sym_string_start, - ACTIONS(577), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(614), 1, + ACTIONS(1041), 1, anon_sym_await, ACTIONS(1281), 1, anon_sym_LPAREN, ACTIONS(1287), 1, anon_sym_LBRACK, - ACTIONS(3071), 1, + ACTIONS(3073), 1, anon_sym_STAR, - STATE(2024), 1, + STATE(2032), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2043), 1, sym_string, STATE(2088), 1, sym_list_splat_pattern, - STATE(4127), 1, + STATE(4072), 1, sym_expression, - STATE(5564), 1, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -173046,13 +173893,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -173061,7 +173908,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -173082,7 +173929,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [63190] = 26, + [63167] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -173103,25 +173950,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(107), 1, sym_string_start, - ACTIONS(577), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(614), 1, + ACTIONS(1041), 1, anon_sym_await, ACTIONS(1281), 1, anon_sym_LPAREN, ACTIONS(1287), 1, anon_sym_LBRACK, - ACTIONS(3071), 1, + ACTIONS(3073), 1, anon_sym_STAR, - STATE(2024), 1, + STATE(2032), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2043), 1, sym_string, STATE(2088), 1, sym_list_splat_pattern, - STATE(4132), 1, + STATE(4073), 1, sym_expression, - STATE(5564), 1, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -173135,13 +173982,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -173150,7 +173997,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -173171,7 +174018,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [63305] = 26, + [63282] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -173192,25 +174039,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(107), 1, sym_string_start, - ACTIONS(577), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(614), 1, + ACTIONS(1041), 1, anon_sym_await, ACTIONS(1281), 1, anon_sym_LPAREN, ACTIONS(1287), 1, anon_sym_LBRACK, - ACTIONS(3071), 1, + ACTIONS(3073), 1, anon_sym_STAR, - STATE(2024), 1, + STATE(2032), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2043), 1, sym_string, STATE(2088), 1, sym_list_splat_pattern, - STATE(4139), 1, + STATE(4080), 1, sym_expression, - STATE(5564), 1, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -173224,13 +174071,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -173239,7 +174086,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -173260,7 +174107,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [63420] = 26, + [63397] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -173281,25 +174128,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(107), 1, sym_string_start, - ACTIONS(577), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(614), 1, + ACTIONS(1041), 1, anon_sym_await, ACTIONS(1281), 1, anon_sym_LPAREN, ACTIONS(1287), 1, anon_sym_LBRACK, - ACTIONS(3071), 1, + ACTIONS(3073), 1, anon_sym_STAR, - STATE(2024), 1, + STATE(2032), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2043), 1, sym_string, STATE(2088), 1, sym_list_splat_pattern, - STATE(4140), 1, + STATE(4083), 1, sym_expression, - STATE(5564), 1, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -173313,13 +174160,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -173328,7 +174175,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -173349,7 +174196,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [63535] = 26, + [63512] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -173370,25 +174217,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(107), 1, sym_string_start, - ACTIONS(577), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(614), 1, + ACTIONS(1041), 1, anon_sym_await, ACTIONS(1281), 1, anon_sym_LPAREN, ACTIONS(1287), 1, anon_sym_LBRACK, - ACTIONS(3071), 1, + ACTIONS(3073), 1, anon_sym_STAR, - STATE(2024), 1, + STATE(2032), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2043), 1, sym_string, STATE(2088), 1, sym_list_splat_pattern, - STATE(4142), 1, + STATE(4084), 1, sym_expression, - STATE(5564), 1, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -173402,13 +174249,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -173417,7 +174264,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -173438,66 +174285,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [63650] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, + [63627] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1225), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1231), 1, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(1233), 1, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1243), 1, + ACTIONS(99), 1, anon_sym_new, - ACTIONS(1245), 1, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2735), 1, - anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(1001), 1, + sym_identifier, + ACTIONS(1041), 1, + anon_sym_await, + ACTIONS(1281), 1, + anon_sym_LPAREN, + ACTIONS(1287), 1, + anon_sym_LBRACK, + ACTIONS(3073), 1, anon_sym_STAR, - STATE(2067), 1, + STATE(2032), 1, sym_primary_expression, - STATE(2140), 1, + STATE(2043), 1, sym_string, - STATE(2432), 1, + STATE(2088), 1, sym_list_splat_pattern, - STATE(4307), 1, + STATE(4085), 1, sym_expression, - STATE(5469), 1, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3081), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -173506,7 +174353,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -173527,73 +174374,185 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [63765] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3457), 14, - sym__dedent, + [63742] = 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(1001), 1, + sym_identifier, + ACTIONS(1041), 1, + anon_sym_await, + ACTIONS(1281), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(1287), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(3073), 1, + anon_sym_STAR, + STATE(2032), 1, + sym_primary_expression, + STATE(2043), 1, + sym_string, + STATE(2088), 1, + sym_list_splat_pattern, + STATE(4092), 1, + sym_expression, + STATE(5682), 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, - anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(3459), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1016), 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(3442), 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(2111), 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, + [63857] = 26, + ACTIONS(1211), 1, + sym_identifier, + ACTIONS(1213), 1, + anon_sym_LPAREN, + ACTIONS(1219), 1, + anon_sym_LBRACK, + ACTIONS(1223), 1, + anon_sym_LBRACE, + ACTIONS(1225), 1, anon_sym_not, + ACTIONS(1231), 1, anon_sym_lambda, - anon_sym_yield, + ACTIONS(1233), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1235), 1, anon_sym_None, - sym_integer, - sym_identifier, + ACTIONS(1239), 1, + sym_float, + ACTIONS(1241), 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(1243), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, + ACTIONS(1245), 1, anon_sym_sizeof, - [63834] = 26, + ACTIONS(1247), 1, + sym_string_start, + ACTIONS(2705), 1, + anon_sym_LT, + ACTIONS(2955), 1, + anon_sym_STAR, + STATE(2072), 1, + sym_primary_expression, + STATE(2161), 1, + sym_string, + STATE(2536), 1, + sym_list_splat_pattern, + STATE(4465), 1, + sym_expression, + STATE(5579), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1237), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1227), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1217), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3088), 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(2401), 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, + [63972] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -173614,25 +174573,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(107), 1, sym_string_start, - ACTIONS(577), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(614), 1, + ACTIONS(1041), 1, anon_sym_await, ACTIONS(1281), 1, anon_sym_LPAREN, ACTIONS(1287), 1, anon_sym_LBRACK, - ACTIONS(3071), 1, + ACTIONS(3073), 1, anon_sym_STAR, - STATE(2024), 1, + STATE(2032), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2043), 1, sym_string, STATE(2088), 1, sym_list_splat_pattern, - STATE(4093), 1, + STATE(3980), 1, sym_expression, - STATE(5564), 1, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -173646,13 +174605,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -173661,7 +174620,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -173682,7 +174641,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [63949] = 26, + [64087] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -173703,25 +174662,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(107), 1, sym_string_start, - ACTIONS(577), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(614), 1, + ACTIONS(1041), 1, anon_sym_await, ACTIONS(1281), 1, anon_sym_LPAREN, ACTIONS(1287), 1, anon_sym_LBRACK, - ACTIONS(3071), 1, + ACTIONS(3073), 1, anon_sym_STAR, - STATE(2024), 1, + STATE(2032), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2043), 1, sym_string, STATE(2088), 1, sym_list_splat_pattern, - STATE(4039), 1, + STATE(3988), 1, sym_expression, - STATE(5564), 1, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -173735,13 +174694,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -173750,7 +174709,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -173771,7 +174730,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [64064] = 26, + [64202] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -173792,25 +174751,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(107), 1, sym_string_start, - ACTIONS(577), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(614), 1, + ACTIONS(1041), 1, anon_sym_await, ACTIONS(1281), 1, anon_sym_LPAREN, ACTIONS(1287), 1, anon_sym_LBRACK, - ACTIONS(3071), 1, + ACTIONS(3073), 1, anon_sym_STAR, - STATE(2024), 1, + STATE(2032), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2043), 1, sym_string, STATE(2088), 1, sym_list_splat_pattern, - STATE(4044), 1, + STATE(3989), 1, sym_expression, - STATE(5564), 1, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -173824,13 +174783,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -173839,7 +174798,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -173860,66 +174819,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [64179] = 26, - ACTIONS(2451), 1, + [64317] = 26, + ACTIONS(2461), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(2467), 1, anon_sym_LBRACK, - ACTIONS(2461), 1, + ACTIONS(2471), 1, anon_sym_LBRACE, - ACTIONS(2465), 1, + ACTIONS(2475), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2467), 1, + ACTIONS(2477), 1, anon_sym_None, - ACTIONS(2469), 1, + ACTIONS(2479), 1, sym_float, - ACTIONS(2473), 1, + ACTIONS(2483), 1, anon_sym_sizeof, - ACTIONS(2475), 1, + ACTIONS(2485), 1, sym_string_start, - ACTIONS(2637), 1, + ACTIONS(2647), 1, anon_sym_not, - ACTIONS(2639), 1, + ACTIONS(2649), 1, anon_sym_LT, - ACTIONS(2641), 1, + ACTIONS(2651), 1, anon_sym_lambda, - ACTIONS(2643), 1, + ACTIONS(2653), 1, anon_sym_await, - ACTIONS(2645), 1, + ACTIONS(2655), 1, anon_sym_new, - ACTIONS(2963), 1, + ACTIONS(2935), 1, sym_identifier, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_STAR, - STATE(2077), 1, + STATE(2107), 1, sym_primary_expression, - STATE(2218), 1, + STATE(2200), 1, sym_string, - STATE(2591), 1, + STATE(2589), 1, sym_list_splat_pattern, - STATE(4141), 1, + STATE(3994), 1, sym_expression, - STATE(5609), 1, + STATE(5572), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2449), 3, + ACTIONS(2459), 3, sym_integer, sym_true, sym_false, - ACTIONS(2459), 4, + ACTIONS(2469), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2631), 5, + ACTIONS(2641), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2604), 8, + STATE(2631), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -173928,7 +174887,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2631), 20, + STATE(2630), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -173949,7 +174908,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [64294] = 26, + [64432] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -173970,25 +174929,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(107), 1, sym_string_start, - ACTIONS(577), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(614), 1, + ACTIONS(1041), 1, anon_sym_await, ACTIONS(1281), 1, anon_sym_LPAREN, ACTIONS(1287), 1, anon_sym_LBRACK, - ACTIONS(3071), 1, + ACTIONS(3073), 1, anon_sym_STAR, - STATE(2024), 1, + STATE(2032), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2043), 1, sym_string, STATE(2088), 1, sym_list_splat_pattern, - STATE(3974), 1, + STATE(3997), 1, sym_expression, - STATE(5564), 1, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -174002,13 +174961,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -174017,7 +174976,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -174038,7 +174997,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [64409] = 26, + [64547] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -174059,25 +175018,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(107), 1, sym_string_start, - ACTIONS(577), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(614), 1, + ACTIONS(1041), 1, anon_sym_await, ACTIONS(1281), 1, anon_sym_LPAREN, ACTIONS(1287), 1, anon_sym_LBRACK, - ACTIONS(3071), 1, + ACTIONS(3073), 1, anon_sym_STAR, - STATE(2024), 1, + STATE(2032), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2043), 1, sym_string, STATE(2088), 1, sym_list_splat_pattern, - STATE(3977), 1, + STATE(3998), 1, sym_expression, - STATE(5564), 1, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -174091,13 +175050,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -174106,7 +175065,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -174127,7 +175086,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [64524] = 26, + [64662] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -174148,25 +175107,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(107), 1, sym_string_start, - ACTIONS(577), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(614), 1, + ACTIONS(1041), 1, anon_sym_await, ACTIONS(1281), 1, anon_sym_LPAREN, ACTIONS(1287), 1, anon_sym_LBRACK, - ACTIONS(3071), 1, + ACTIONS(3073), 1, anon_sym_STAR, - STATE(2024), 1, + STATE(2032), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2043), 1, sym_string, STATE(2088), 1, sym_list_splat_pattern, - STATE(4010), 1, + STATE(4007), 1, sym_expression, - STATE(5564), 1, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -174180,13 +175139,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -174195,7 +175154,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -174216,7 +175175,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [64639] = 26, + [64777] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -174237,25 +175196,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(107), 1, sym_string_start, - ACTIONS(577), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(614), 1, + ACTIONS(1041), 1, anon_sym_await, ACTIONS(1281), 1, anon_sym_LPAREN, ACTIONS(1287), 1, anon_sym_LBRACK, - ACTIONS(3071), 1, + ACTIONS(3073), 1, anon_sym_STAR, - STATE(2024), 1, + STATE(2032), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2043), 1, sym_string, STATE(2088), 1, sym_list_splat_pattern, - STATE(4011), 1, + STATE(4008), 1, sym_expression, - STATE(5564), 1, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -174269,13 +175228,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -174284,7 +175243,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -174305,7 +175264,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [64754] = 26, + [64892] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -174326,25 +175285,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(107), 1, sym_string_start, - ACTIONS(577), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(614), 1, + ACTIONS(1041), 1, anon_sym_await, ACTIONS(1281), 1, anon_sym_LPAREN, ACTIONS(1287), 1, anon_sym_LBRACK, - ACTIONS(3071), 1, + ACTIONS(3073), 1, anon_sym_STAR, - STATE(2024), 1, + STATE(2032), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2043), 1, sym_string, STATE(2088), 1, sym_list_splat_pattern, - STATE(4018), 1, + STATE(4009), 1, sym_expression, - STATE(5564), 1, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -174358,13 +175317,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -174373,7 +175332,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -174394,7 +175353,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [64869] = 26, + [65007] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -174415,25 +175374,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(107), 1, sym_string_start, - ACTIONS(577), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(614), 1, + ACTIONS(1041), 1, anon_sym_await, ACTIONS(1281), 1, anon_sym_LPAREN, ACTIONS(1287), 1, anon_sym_LBRACK, - ACTIONS(3071), 1, + ACTIONS(3073), 1, anon_sym_STAR, - STATE(2024), 1, + STATE(2032), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2043), 1, sym_string, STATE(2088), 1, sym_list_splat_pattern, - STATE(4064), 1, + STATE(4018), 1, sym_expression, - STATE(5564), 1, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -174447,13 +175406,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -174462,7 +175421,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -174483,7 +175442,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [64984] = 26, + [65122] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -174504,25 +175463,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(107), 1, sym_string_start, - ACTIONS(577), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(614), 1, + ACTIONS(1041), 1, anon_sym_await, ACTIONS(1281), 1, anon_sym_LPAREN, ACTIONS(1287), 1, anon_sym_LBRACK, - ACTIONS(3071), 1, + ACTIONS(3073), 1, anon_sym_STAR, - STATE(2024), 1, + STATE(2032), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2043), 1, sym_string, STATE(2088), 1, sym_list_splat_pattern, - STATE(4069), 1, + STATE(4019), 1, sym_expression, - STATE(5564), 1, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -174536,13 +175495,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -174551,7 +175510,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -174572,7 +175531,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [65099] = 26, + [65237] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -174593,25 +175552,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(107), 1, sym_string_start, - ACTIONS(577), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(614), 1, + ACTIONS(1041), 1, anon_sym_await, ACTIONS(1281), 1, anon_sym_LPAREN, ACTIONS(1287), 1, anon_sym_LBRACK, - ACTIONS(3071), 1, + ACTIONS(3073), 1, anon_sym_STAR, - STATE(2024), 1, + STATE(2032), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2043), 1, sym_string, STATE(2088), 1, sym_list_splat_pattern, - STATE(4070), 1, + STATE(4020), 1, sym_expression, - STATE(5564), 1, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -174625,13 +175584,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -174640,7 +175599,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -174661,7 +175620,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [65214] = 26, + [65352] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -174682,25 +175641,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(107), 1, sym_string_start, - ACTIONS(577), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(614), 1, + ACTIONS(1041), 1, anon_sym_await, ACTIONS(1281), 1, anon_sym_LPAREN, ACTIONS(1287), 1, anon_sym_LBRACK, - ACTIONS(3071), 1, + ACTIONS(3073), 1, anon_sym_STAR, - STATE(2024), 1, + STATE(2032), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2043), 1, sym_string, STATE(2088), 1, sym_list_splat_pattern, - STATE(4078), 1, + STATE(4021), 1, sym_expression, - STATE(5564), 1, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -174714,13 +175673,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -174729,7 +175688,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -174750,7 +175709,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [65329] = 26, + [65467] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -174771,25 +175730,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(107), 1, sym_string_start, - ACTIONS(577), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(614), 1, + ACTIONS(1041), 1, anon_sym_await, ACTIONS(1281), 1, anon_sym_LPAREN, ACTIONS(1287), 1, anon_sym_LBRACK, - ACTIONS(3071), 1, + ACTIONS(3073), 1, anon_sym_STAR, - STATE(2024), 1, + STATE(2032), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2043), 1, sym_string, STATE(2088), 1, sym_list_splat_pattern, - STATE(4080), 1, + STATE(4022), 1, sym_expression, - STATE(5564), 1, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -174803,13 +175762,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -174818,7 +175777,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -174839,7 +175798,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [65444] = 26, + [65582] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -174860,25 +175819,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(107), 1, sym_string_start, - ACTIONS(577), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(614), 1, + ACTIONS(1041), 1, anon_sym_await, ACTIONS(1281), 1, anon_sym_LPAREN, ACTIONS(1287), 1, anon_sym_LBRACK, - ACTIONS(3071), 1, + ACTIONS(3073), 1, anon_sym_STAR, - STATE(2024), 1, + STATE(2032), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2043), 1, sym_string, STATE(2088), 1, sym_list_splat_pattern, - STATE(4104), 1, + STATE(4029), 1, sym_expression, - STATE(5564), 1, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -174892,13 +175851,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -174907,7 +175866,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -174928,7 +175887,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [65559] = 26, + [65697] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -174949,25 +175908,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(107), 1, sym_string_start, - ACTIONS(577), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(614), 1, + ACTIONS(1041), 1, anon_sym_await, ACTIONS(1281), 1, anon_sym_LPAREN, ACTIONS(1287), 1, anon_sym_LBRACK, - ACTIONS(3071), 1, + ACTIONS(3073), 1, anon_sym_STAR, - STATE(2024), 1, + STATE(2032), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2043), 1, sym_string, STATE(2088), 1, sym_list_splat_pattern, - STATE(4108), 1, + STATE(4030), 1, sym_expression, - STATE(5564), 1, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -174981,13 +175940,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -174996,7 +175955,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -175017,7 +175976,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [65674] = 26, + [65812] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -175038,25 +175997,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(107), 1, sym_string_start, - ACTIONS(577), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(614), 1, + ACTIONS(1041), 1, anon_sym_await, ACTIONS(1281), 1, anon_sym_LPAREN, ACTIONS(1287), 1, anon_sym_LBRACK, - ACTIONS(3071), 1, + ACTIONS(3073), 1, anon_sym_STAR, - STATE(2024), 1, + STATE(2032), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2043), 1, sym_string, STATE(2088), 1, sym_list_splat_pattern, - STATE(4109), 1, + STATE(4031), 1, sym_expression, - STATE(5564), 1, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -175070,13 +176029,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -175085,7 +176044,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -175106,7 +176065,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [65789] = 26, + [65927] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -175127,25 +176086,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(107), 1, sym_string_start, - ACTIONS(577), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(614), 1, + ACTIONS(1041), 1, anon_sym_await, ACTIONS(1281), 1, anon_sym_LPAREN, ACTIONS(1287), 1, anon_sym_LBRACK, - ACTIONS(3071), 1, + ACTIONS(3073), 1, anon_sym_STAR, - STATE(2024), 1, + STATE(2032), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2043), 1, sym_string, STATE(2088), 1, sym_list_splat_pattern, - STATE(4112), 1, + STATE(4032), 1, sym_expression, - STATE(5564), 1, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -175159,13 +176118,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -175174,7 +176133,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -175195,7 +176154,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [65904] = 26, + [66042] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -175216,25 +176175,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(107), 1, sym_string_start, - ACTIONS(577), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(614), 1, + ACTIONS(1041), 1, anon_sym_await, ACTIONS(1281), 1, anon_sym_LPAREN, ACTIONS(1287), 1, anon_sym_LBRACK, - ACTIONS(3071), 1, + ACTIONS(3073), 1, anon_sym_STAR, - STATE(2024), 1, + STATE(2032), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2043), 1, sym_string, STATE(2088), 1, sym_list_splat_pattern, - STATE(4130), 1, + STATE(4037), 1, sym_expression, - STATE(5564), 1, + STATE(5682), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -175248,13 +176207,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -175263,7 +176222,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -175284,7 +176243,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [66019] = 26, + [66157] = 26, ACTIONS(1211), 1, sym_identifier, ACTIONS(1213), 1, @@ -175311,19 +176270,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2735), 1, + ACTIONS(2705), 1, anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(2955), 1, anon_sym_STAR, - STATE(2067), 1, + STATE(2072), 1, sym_primary_expression, - STATE(2140), 1, + STATE(2161), 1, sym_string, - STATE(2432), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(4354), 1, + STATE(4453), 1, sym_expression, - STATE(5469), 1, + STATE(5579), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -175343,7 +176302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3081), 8, + STATE(3088), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -175352,7 +176311,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -175373,66 +176332,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [66134] = 26, - ACTIONS(2451), 1, + [66272] = 26, + ACTIONS(2461), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(2467), 1, anon_sym_LBRACK, - ACTIONS(2461), 1, + ACTIONS(2471), 1, anon_sym_LBRACE, - ACTIONS(2465), 1, + ACTIONS(2475), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2467), 1, + ACTIONS(2477), 1, anon_sym_None, - ACTIONS(2469), 1, + ACTIONS(2479), 1, sym_float, - ACTIONS(2473), 1, + ACTIONS(2483), 1, anon_sym_sizeof, - ACTIONS(2475), 1, + ACTIONS(2485), 1, sym_string_start, - ACTIONS(2637), 1, + ACTIONS(2647), 1, anon_sym_not, - ACTIONS(2639), 1, + ACTIONS(2649), 1, anon_sym_LT, - ACTIONS(2641), 1, + ACTIONS(2651), 1, anon_sym_lambda, - ACTIONS(2643), 1, + ACTIONS(2653), 1, anon_sym_await, - ACTIONS(2645), 1, + ACTIONS(2655), 1, anon_sym_new, - ACTIONS(2963), 1, + ACTIONS(2935), 1, sym_identifier, - ACTIONS(3105), 1, + ACTIONS(3103), 1, anon_sym_STAR, - STATE(2077), 1, + STATE(2107), 1, sym_primary_expression, - STATE(2218), 1, + STATE(2200), 1, sym_string, - STATE(2591), 1, + STATE(2589), 1, sym_list_splat_pattern, - STATE(3998), 1, + STATE(4045), 1, sym_expression, - STATE(5609), 1, + STATE(5572), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2449), 3, + ACTIONS(2459), 3, sym_integer, sym_true, sym_false, - ACTIONS(2459), 4, + ACTIONS(2469), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2631), 5, + ACTIONS(2641), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2604), 8, + STATE(2631), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -175441,7 +176400,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2631), 20, + STATE(2630), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -175462,7 +176421,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [66249] = 26, + [66387] = 26, ACTIONS(1211), 1, sym_identifier, ACTIONS(1213), 1, @@ -175489,19 +176448,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2735), 1, + ACTIONS(2705), 1, anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(2955), 1, anon_sym_STAR, - STATE(2067), 1, + STATE(2072), 1, sym_primary_expression, - STATE(2140), 1, + STATE(2161), 1, sym_string, - STATE(2432), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(4366), 1, + STATE(4335), 1, sym_expression, - STATE(5469), 1, + STATE(5579), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -175521,7 +176480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3081), 8, + STATE(3088), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -175530,7 +176489,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -175551,7 +176510,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [66364] = 26, + [66502] = 26, ACTIONS(1211), 1, sym_identifier, ACTIONS(1213), 1, @@ -175578,19 +176537,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2735), 1, + ACTIONS(2705), 1, anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(2955), 1, anon_sym_STAR, - STATE(2067), 1, + STATE(2072), 1, sym_primary_expression, - STATE(2140), 1, + STATE(2161), 1, sym_string, - STATE(2432), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(4374), 1, + STATE(4378), 1, sym_expression, - STATE(5469), 1, + STATE(5579), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -175610,7 +176569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3081), 8, + STATE(3088), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -175619,7 +176578,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -175640,73 +176599,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [66479] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2387), 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(2385), 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, - [66548] = 26, + [66617] = 26, ACTIONS(1211), 1, sym_identifier, ACTIONS(1213), 1, @@ -175733,19 +176626,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2735), 1, + ACTIONS(2705), 1, anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(2955), 1, anon_sym_STAR, - STATE(2067), 1, + STATE(2072), 1, sym_primary_expression, - STATE(2140), 1, + STATE(2161), 1, sym_string, - STATE(2432), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(4382), 1, + STATE(4309), 1, sym_expression, - STATE(5469), 1, + STATE(5579), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -175765,7 +176658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3081), 8, + STATE(3088), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -175774,7 +176667,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -175795,72 +176688,6 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [66663] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3461), 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(3463), 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, [66732] = 26, ACTIONS(1211), 1, sym_identifier, @@ -175888,174 +176715,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2735), 1, - anon_sym_LT, - ACTIONS(3009), 1, - anon_sym_STAR, - STATE(2067), 1, - sym_primary_expression, - STATE(2140), 1, - sym_string, - STATE(2432), 1, - sym_list_splat_pattern, - STATE(4386), 1, - sym_expression, - STATE(5469), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1237), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1227), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1217), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3081), 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(2549), 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, - [66847] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3465), 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(3467), 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, - [66916] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, - anon_sym_LBRACE, - ACTIONS(1225), 1, - anon_sym_not, - ACTIONS(1231), 1, - anon_sym_lambda, - ACTIONS(1233), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, - anon_sym_None, - ACTIONS(1239), 1, - sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1243), 1, - anon_sym_new, - ACTIONS(1245), 1, - anon_sym_sizeof, - ACTIONS(1247), 1, - sym_string_start, - ACTIONS(2735), 1, + ACTIONS(2705), 1, anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(2955), 1, anon_sym_STAR, - STATE(2067), 1, + STATE(2072), 1, sym_primary_expression, - STATE(2140), 1, + STATE(2161), 1, sym_string, - STATE(2432), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(4393), 1, + STATE(4350), 1, sym_expression, - STATE(5469), 1, + STATE(5579), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -176075,7 +176747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3081), 8, + STATE(3088), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -176084,7 +176756,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -176105,73 +176777,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [67031] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3469), 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(3471), 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, - [67100] = 26, + [66847] = 26, ACTIONS(1211), 1, sym_identifier, ACTIONS(1213), 1, @@ -176198,19 +176804,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2735), 1, + ACTIONS(2705), 1, anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(2955), 1, anon_sym_STAR, - STATE(2067), 1, + STATE(2072), 1, sym_primary_expression, - STATE(2140), 1, + STATE(2161), 1, sym_string, - STATE(2432), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(4400), 1, + STATE(4288), 1, sym_expression, - STATE(5469), 1, + STATE(5579), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -176230,7 +176836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3081), 8, + STATE(3088), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -176239,7 +176845,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -176260,73 +176866,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [67215] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3477), 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(3479), 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, - [67284] = 26, + [66962] = 26, ACTIONS(1211), 1, sym_identifier, ACTIONS(1213), 1, @@ -176353,19 +176893,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2735), 1, + ACTIONS(2705), 1, anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(2955), 1, anon_sym_STAR, - STATE(2067), 1, + STATE(2072), 1, sym_primary_expression, - STATE(2140), 1, + STATE(2161), 1, sym_string, - STATE(2432), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(4405), 1, + STATE(4402), 1, sym_expression, - STATE(5469), 1, + STATE(5579), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -176385,7 +176925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3081), 8, + STATE(3088), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -176394,7 +176934,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -176415,7 +176955,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [67399] = 26, + [67077] = 26, ACTIONS(1211), 1, sym_identifier, ACTIONS(1213), 1, @@ -176442,19 +176982,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2735), 1, + ACTIONS(2705), 1, anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(2955), 1, anon_sym_STAR, - STATE(2067), 1, + STATE(2072), 1, sym_primary_expression, - STATE(2140), 1, + STATE(2161), 1, sym_string, - STATE(2432), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(4409), 1, + STATE(4428), 1, sym_expression, - STATE(5469), 1, + STATE(5579), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -176474,7 +177014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3081), 8, + STATE(3088), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -176483,7 +177023,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -176504,7 +177044,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [67514] = 26, + [67192] = 26, ACTIONS(1211), 1, sym_identifier, ACTIONS(1213), 1, @@ -176531,19 +177071,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2735), 1, + ACTIONS(2705), 1, anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(2955), 1, anon_sym_STAR, - STATE(2067), 1, + STATE(2072), 1, sym_primary_expression, - STATE(2140), 1, + STATE(2161), 1, sym_string, - STATE(2432), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(4413), 1, + STATE(4446), 1, sym_expression, - STATE(5469), 1, + STATE(5579), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -176563,7 +177103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3081), 8, + STATE(3088), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -176572,7 +177112,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -176593,7 +177133,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [67629] = 26, + [67307] = 26, ACTIONS(1211), 1, sym_identifier, ACTIONS(1213), 1, @@ -176620,19 +177160,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2735), 1, + ACTIONS(2705), 1, anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(2955), 1, anon_sym_STAR, - STATE(2067), 1, + STATE(2072), 1, sym_primary_expression, - STATE(2140), 1, + STATE(2161), 1, sym_string, - STATE(2432), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(4414), 1, + STATE(4469), 1, sym_expression, - STATE(5469), 1, + STATE(5579), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -176652,7 +177192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3081), 8, + STATE(3088), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -176661,7 +177201,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -176682,7 +177222,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [67744] = 26, + [67422] = 26, ACTIONS(1211), 1, sym_identifier, ACTIONS(1213), 1, @@ -176709,19 +177249,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2735), 1, + ACTIONS(2705), 1, anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(2955), 1, anon_sym_STAR, - STATE(2067), 1, + STATE(2072), 1, sym_primary_expression, - STATE(2140), 1, + STATE(2161), 1, sym_string, - STATE(2432), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(4417), 1, + STATE(4388), 1, sym_expression, - STATE(5469), 1, + STATE(5579), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -176741,7 +177281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3081), 8, + STATE(3088), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -176750,7 +177290,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -176771,7 +177311,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [67859] = 26, + [67537] = 26, ACTIONS(1211), 1, sym_identifier, ACTIONS(1213), 1, @@ -176798,19 +177338,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2735), 1, + ACTIONS(2705), 1, anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(2955), 1, anon_sym_STAR, - STATE(2067), 1, + STATE(2072), 1, sym_primary_expression, - STATE(2140), 1, + STATE(2161), 1, sym_string, - STATE(2432), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(4419), 1, + STATE(4291), 1, sym_expression, - STATE(5469), 1, + STATE(5579), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -176830,7 +177370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3081), 8, + STATE(3088), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -176839,7 +177379,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -176860,7 +177400,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [67974] = 26, + [67652] = 26, ACTIONS(1211), 1, sym_identifier, ACTIONS(1213), 1, @@ -176887,19 +177427,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2735), 1, + ACTIONS(2705), 1, anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(2955), 1, anon_sym_STAR, - STATE(2067), 1, + STATE(2072), 1, sym_primary_expression, - STATE(2140), 1, + STATE(2161), 1, sym_string, - STATE(2432), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(4420), 1, + STATE(4294), 1, sym_expression, - STATE(5469), 1, + STATE(5579), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -176919,7 +177459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3081), 8, + STATE(3088), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -176928,7 +177468,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -176949,73 +177489,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [68089] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2371), 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(2369), 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, - [68158] = 26, + [67767] = 26, ACTIONS(1211), 1, sym_identifier, ACTIONS(1213), 1, @@ -177042,19 +177516,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2735), 1, + ACTIONS(2705), 1, anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(2955), 1, anon_sym_STAR, - STATE(2067), 1, + STATE(2072), 1, sym_primary_expression, - STATE(2140), 1, + STATE(2161), 1, sym_string, - STATE(2432), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(4421), 1, + STATE(4302), 1, sym_expression, - STATE(5469), 1, + STATE(5579), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -177074,7 +177548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3081), 8, + STATE(3088), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -177083,7 +177557,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -177104,7 +177578,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [68273] = 26, + [67882] = 26, ACTIONS(1211), 1, sym_identifier, ACTIONS(1213), 1, @@ -177131,19 +177605,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2735), 1, + ACTIONS(2705), 1, anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(2955), 1, anon_sym_STAR, - STATE(2067), 1, + STATE(2072), 1, sym_primary_expression, - STATE(2140), 1, + STATE(2161), 1, sym_string, - STATE(2432), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(4426), 1, + STATE(4305), 1, sym_expression, - STATE(5469), 1, + STATE(5579), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -177163,7 +177637,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3081), 8, + STATE(3088), 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(2401), 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, + [67997] = 26, + ACTIONS(2489), 1, + anon_sym_LPAREN, + ACTIONS(2495), 1, + anon_sym_LBRACK, + ACTIONS(2499), 1, + anon_sym_LBRACE, + ACTIONS(2503), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2505), 1, + anon_sym_None, + ACTIONS(2507), 1, + sym_float, + ACTIONS(2511), 1, + anon_sym_sizeof, + ACTIONS(2513), 1, + sym_string_start, + ACTIONS(2561), 1, + anon_sym_not, + ACTIONS(2563), 1, + anon_sym_LT, + ACTIONS(2565), 1, + anon_sym_lambda, + ACTIONS(2571), 1, + anon_sym_new, + ACTIONS(2815), 1, + sym_identifier, + ACTIONS(2823), 1, + anon_sym_await, + ACTIONS(2943), 1, + anon_sym_STAR, + STATE(2070), 1, + sym_primary_expression, + STATE(2177), 1, + sym_string, + STATE(2415), 1, + sym_list_splat_pattern, + STATE(3888), 1, + sym_expression, + STATE(5681), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2487), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2497), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2819), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2493), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -177172,7 +177735,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2470), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -177193,7 +177756,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [68388] = 26, + [68112] = 26, ACTIONS(1211), 1, sym_identifier, ACTIONS(1213), 1, @@ -177220,19 +177783,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2735), 1, + ACTIONS(2705), 1, anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(2955), 1, anon_sym_STAR, - STATE(2067), 1, + STATE(2072), 1, sym_primary_expression, - STATE(2140), 1, + STATE(2161), 1, sym_string, - STATE(2432), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(4430), 1, + STATE(4320), 1, sym_expression, - STATE(5469), 1, + STATE(5579), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -177252,7 +177815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3081), 8, + STATE(3088), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -177261,7 +177824,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -177282,66 +177845,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [68503] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, + [68227] = 26, + ACTIONS(2489), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(2495), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(2499), 1, anon_sym_LBRACE, - ACTIONS(1225), 1, - anon_sym_not, - ACTIONS(1231), 1, - anon_sym_lambda, - ACTIONS(1233), 1, + ACTIONS(2503), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(2505), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(2507), 1, sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1243), 1, - anon_sym_new, - ACTIONS(1245), 1, + ACTIONS(2511), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(2513), 1, sym_string_start, - ACTIONS(2735), 1, + ACTIONS(2561), 1, + anon_sym_not, + ACTIONS(2563), 1, anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(2565), 1, + anon_sym_lambda, + ACTIONS(2571), 1, + anon_sym_new, + ACTIONS(2815), 1, + sym_identifier, + ACTIONS(2823), 1, + anon_sym_await, + ACTIONS(2943), 1, anon_sym_STAR, - STATE(2067), 1, + STATE(2070), 1, sym_primary_expression, - STATE(2140), 1, + STATE(2177), 1, sym_string, - STATE(2432), 1, + STATE(2415), 1, sym_list_splat_pattern, - STATE(4432), 1, + STATE(3916), 1, sym_expression, - STATE(5469), 1, + STATE(5681), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(2487), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(2497), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(2819), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3081), 8, + STATE(2493), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -177350,7 +177913,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2470), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -177371,66 +177934,155 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [68618] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, + [68342] = 26, + ACTIONS(2489), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(2495), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(2499), 1, anon_sym_LBRACE, - ACTIONS(1225), 1, + ACTIONS(2503), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2505), 1, + anon_sym_None, + ACTIONS(2507), 1, + sym_float, + ACTIONS(2511), 1, + anon_sym_sizeof, + ACTIONS(2513), 1, + sym_string_start, + ACTIONS(2561), 1, anon_sym_not, - ACTIONS(1231), 1, + ACTIONS(2563), 1, + anon_sym_LT, + ACTIONS(2565), 1, anon_sym_lambda, - ACTIONS(1233), 1, + ACTIONS(2571), 1, + anon_sym_new, + ACTIONS(2815), 1, + sym_identifier, + ACTIONS(2823), 1, + anon_sym_await, + ACTIONS(2943), 1, + anon_sym_STAR, + STATE(2070), 1, + sym_primary_expression, + STATE(2177), 1, + sym_string, + STATE(2415), 1, + sym_list_splat_pattern, + STATE(3905), 1, + sym_expression, + STATE(5681), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2487), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2497), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2819), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2493), 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(2470), 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, + [68457] = 26, + ACTIONS(2489), 1, + anon_sym_LPAREN, + ACTIONS(2495), 1, + anon_sym_LBRACK, + ACTIONS(2499), 1, + anon_sym_LBRACE, + ACTIONS(2503), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(2505), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(2507), 1, sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1243), 1, - anon_sym_new, - ACTIONS(1245), 1, + ACTIONS(2511), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(2513), 1, sym_string_start, - ACTIONS(2735), 1, + ACTIONS(2561), 1, + anon_sym_not, + ACTIONS(2563), 1, anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(2565), 1, + anon_sym_lambda, + ACTIONS(2571), 1, + anon_sym_new, + ACTIONS(2815), 1, + sym_identifier, + ACTIONS(2823), 1, + anon_sym_await, + ACTIONS(2943), 1, anon_sym_STAR, - STATE(2067), 1, + STATE(2070), 1, sym_primary_expression, - STATE(2140), 1, + STATE(2177), 1, sym_string, - STATE(2432), 1, + STATE(2415), 1, sym_list_splat_pattern, - STATE(4433), 1, + STATE(2460), 1, sym_expression, - STATE(5469), 1, + STATE(5681), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(2487), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(2497), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(2819), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3081), 8, + STATE(2493), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -177439,7 +178091,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2470), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -177460,66 +178112,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [68733] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, + [68572] = 26, + ACTIONS(2489), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(2495), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(2499), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(2503), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(2505), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(2507), 1, sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1245), 1, + ACTIONS(2511), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(2513), 1, sym_string_start, - ACTIONS(2735), 1, - anon_sym_LT, - ACTIONS(2739), 1, + ACTIONS(2561), 1, anon_sym_not, - ACTIONS(2741), 1, + ACTIONS(2563), 1, + anon_sym_LT, + ACTIONS(2565), 1, anon_sym_lambda, - ACTIONS(2743), 1, + ACTIONS(2571), 1, anon_sym_new, - ACTIONS(3009), 1, + ACTIONS(2815), 1, + sym_identifier, + ACTIONS(2823), 1, + anon_sym_await, + ACTIONS(2943), 1, anon_sym_STAR, - STATE(2067), 1, + STATE(2070), 1, sym_primary_expression, - STATE(2140), 1, + STATE(2177), 1, sym_string, - STATE(2432), 1, + STATE(2415), 1, sym_list_splat_pattern, - STATE(3962), 1, + STATE(3929), 1, sym_expression, - STATE(5651), 1, + STATE(5681), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(2487), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(2497), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(2819), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3081), 8, + STATE(2493), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -177528,7 +178180,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2470), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -177549,7 +178201,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [68848] = 26, + [68687] = 26, ACTIONS(1211), 1, sym_identifier, ACTIONS(1213), 1, @@ -177558,6 +178210,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1223), 1, anon_sym_LBRACE, + ACTIONS(1225), 1, + anon_sym_not, + ACTIONS(1231), 1, + anon_sym_lambda, ACTIONS(1233), 1, anon_sym_DOT_DOT_DOT, ACTIONS(1235), 1, @@ -177566,29 +178222,25 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(1241), 1, anon_sym_await, + ACTIONS(1243), 1, + anon_sym_new, ACTIONS(1245), 1, anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2735), 1, + ACTIONS(2705), 1, anon_sym_LT, - ACTIONS(2739), 1, - anon_sym_not, - ACTIONS(2741), 1, - anon_sym_lambda, - ACTIONS(2743), 1, - anon_sym_new, - ACTIONS(3009), 1, + ACTIONS(2955), 1, anon_sym_STAR, - STATE(2067), 1, + STATE(2072), 1, sym_primary_expression, - STATE(2140), 1, + STATE(2161), 1, sym_string, - STATE(2432), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(3963), 1, + STATE(4325), 1, sym_expression, - STATE(5651), 1, + STATE(5579), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -177608,7 +178260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3081), 8, + STATE(3088), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -177617,7 +178269,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -177638,7 +178290,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [68963] = 26, + [68802] = 26, ACTIONS(1211), 1, sym_identifier, ACTIONS(1213), 1, @@ -177647,6 +178299,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1223), 1, anon_sym_LBRACE, + ACTIONS(1225), 1, + anon_sym_not, + ACTIONS(1231), 1, + anon_sym_lambda, ACTIONS(1233), 1, anon_sym_DOT_DOT_DOT, ACTIONS(1235), 1, @@ -177655,29 +178311,25 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(1241), 1, anon_sym_await, + ACTIONS(1243), 1, + anon_sym_new, ACTIONS(1245), 1, anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2735), 1, + ACTIONS(2705), 1, anon_sym_LT, - ACTIONS(2739), 1, - anon_sym_not, - ACTIONS(2741), 1, - anon_sym_lambda, - ACTIONS(2743), 1, - anon_sym_new, - ACTIONS(3009), 1, + ACTIONS(2955), 1, anon_sym_STAR, - STATE(2067), 1, + STATE(2072), 1, sym_primary_expression, - STATE(2140), 1, + STATE(2161), 1, sym_string, - STATE(2432), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(3964), 1, + STATE(4329), 1, sym_expression, - STATE(5651), 1, + STATE(5579), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -177697,7 +178349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3081), 8, + STATE(3088), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -177706,7 +178358,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -177727,7 +178379,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [69078] = 26, + [68917] = 26, ACTIONS(1211), 1, sym_identifier, ACTIONS(1213), 1, @@ -177736,6 +178388,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1223), 1, anon_sym_LBRACE, + ACTIONS(1225), 1, + anon_sym_not, + ACTIONS(1231), 1, + anon_sym_lambda, ACTIONS(1233), 1, anon_sym_DOT_DOT_DOT, ACTIONS(1235), 1, @@ -177744,29 +178400,25 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(1241), 1, anon_sym_await, + ACTIONS(1243), 1, + anon_sym_new, ACTIONS(1245), 1, anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2735), 1, + ACTIONS(2705), 1, anon_sym_LT, - ACTIONS(2739), 1, - anon_sym_not, - ACTIONS(2741), 1, - anon_sym_lambda, - ACTIONS(2743), 1, - anon_sym_new, - ACTIONS(3009), 1, + ACTIONS(2955), 1, anon_sym_STAR, - STATE(2067), 1, + STATE(2072), 1, sym_primary_expression, - STATE(2140), 1, + STATE(2161), 1, sym_string, - STATE(2432), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(3076), 1, + STATE(4332), 1, sym_expression, - STATE(5651), 1, + STATE(5579), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -177786,7 +178438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3081), 8, + STATE(3088), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -177795,7 +178447,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -177816,7 +178468,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [69193] = 26, + [69032] = 26, ACTIONS(1211), 1, sym_identifier, ACTIONS(1213), 1, @@ -177837,25 +178489,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2735), 1, + ACTIONS(2705), 1, anon_sym_LT, - ACTIONS(2739), 1, + ACTIONS(2707), 1, anon_sym_not, - ACTIONS(2741), 1, + ACTIONS(2709), 1, anon_sym_lambda, - ACTIONS(2743), 1, + ACTIONS(2711), 1, anon_sym_new, - ACTIONS(3009), 1, + ACTIONS(2955), 1, anon_sym_STAR, - STATE(2067), 1, + STATE(2072), 1, sym_primary_expression, - STATE(2140), 1, + STATE(2161), 1, sym_string, - STATE(2432), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(3965), 1, + STATE(3947), 1, sym_expression, - STATE(5651), 1, + STATE(5669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -177875,7 +178527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3081), 8, + STATE(3088), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -177884,7 +178536,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -177905,66 +178557,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [69308] = 26, - ACTIONS(1907), 1, + [69147] = 26, + ACTIONS(1211), 1, + sym_identifier, + ACTIONS(1213), 1, anon_sym_LPAREN, - ACTIONS(1913), 1, + ACTIONS(1219), 1, anon_sym_LBRACK, - ACTIONS(1917), 1, + ACTIONS(1223), 1, anon_sym_LBRACE, - ACTIONS(1921), 1, + ACTIONS(1233), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1923), 1, + ACTIONS(1235), 1, anon_sym_None, - ACTIONS(1925), 1, + ACTIONS(1239), 1, sym_float, - ACTIONS(1929), 1, + ACTIONS(1241), 1, + anon_sym_await, + ACTIONS(1245), 1, anon_sym_sizeof, - ACTIONS(1931), 1, + ACTIONS(1247), 1, sym_string_start, - ACTIONS(2653), 1, - anon_sym_STAR, - ACTIONS(2661), 1, + ACTIONS(2705), 1, anon_sym_LT, - ACTIONS(2793), 1, - sym_identifier, - ACTIONS(2801), 1, - anon_sym_await, - ACTIONS(2931), 1, + ACTIONS(2707), 1, anon_sym_not, - ACTIONS(2933), 1, + ACTIONS(2709), 1, anon_sym_lambda, - ACTIONS(2935), 1, + ACTIONS(2711), 1, anon_sym_new, - STATE(2046), 1, + ACTIONS(2955), 1, + anon_sym_STAR, + STATE(2072), 1, sym_primary_expression, - STATE(2073), 1, + STATE(2161), 1, sym_string, - STATE(2357), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(4281), 1, + STATE(3948), 1, sym_expression, - STATE(5657), 1, + STATE(5669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1905), 3, + ACTIONS(1237), 3, sym_integer, sym_true, sym_false, - ACTIONS(1915), 4, + ACTIONS(1227), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2797), 5, + ACTIONS(1217), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3846), 8, + STATE(3088), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -177973,7 +178625,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2255), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -177994,73 +178646,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [69423] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3491), 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(3493), 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, - [69492] = 26, + [69262] = 26, ACTIONS(1211), 1, sym_identifier, ACTIONS(1213), 1, @@ -178081,25 +178667,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2735), 1, + ACTIONS(2705), 1, anon_sym_LT, - ACTIONS(2739), 1, + ACTIONS(2707), 1, anon_sym_not, - ACTIONS(2741), 1, + ACTIONS(2709), 1, anon_sym_lambda, - ACTIONS(2743), 1, + ACTIONS(2711), 1, anon_sym_new, - ACTIONS(3009), 1, + ACTIONS(2955), 1, anon_sym_STAR, - STATE(2067), 1, + STATE(2072), 1, sym_primary_expression, - STATE(2140), 1, + STATE(2161), 1, sym_string, - STATE(2432), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(3966), 1, + STATE(3949), 1, sym_expression, - STATE(5651), 1, + STATE(5669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -178119,7 +178705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3081), 8, + STATE(3088), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -178128,7 +178714,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -178149,73 +178735,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [69607] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3501), 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(3503), 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, - [69676] = 26, + [69377] = 26, ACTIONS(1211), 1, sym_identifier, ACTIONS(1213), 1, @@ -178236,25 +178756,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2735), 1, + ACTIONS(2705), 1, anon_sym_LT, - ACTIONS(2739), 1, + ACTIONS(2707), 1, anon_sym_not, - ACTIONS(2741), 1, + ACTIONS(2709), 1, anon_sym_lambda, - ACTIONS(2743), 1, + ACTIONS(2711), 1, anon_sym_new, - ACTIONS(3009), 1, + ACTIONS(2955), 1, anon_sym_STAR, - STATE(2067), 1, + STATE(2072), 1, sym_primary_expression, - STATE(2140), 1, + STATE(2161), 1, sym_string, - STATE(2432), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(3967), 1, + STATE(3095), 1, sym_expression, - STATE(5651), 1, + STATE(5669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -178274,7 +178794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3081), 8, + STATE(3088), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -178283,7 +178803,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -178304,66 +178824,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [69791] = 26, - ACTIONS(1907), 1, + [69492] = 26, + ACTIONS(1211), 1, + sym_identifier, + ACTIONS(1213), 1, anon_sym_LPAREN, - ACTIONS(1913), 1, + ACTIONS(1219), 1, anon_sym_LBRACK, - ACTIONS(1917), 1, + ACTIONS(1223), 1, anon_sym_LBRACE, - ACTIONS(1921), 1, + ACTIONS(1233), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1923), 1, + ACTIONS(1235), 1, anon_sym_None, - ACTIONS(1925), 1, + ACTIONS(1239), 1, sym_float, - ACTIONS(1929), 1, + ACTIONS(1241), 1, + anon_sym_await, + ACTIONS(1245), 1, anon_sym_sizeof, - ACTIONS(1931), 1, + ACTIONS(1247), 1, sym_string_start, - ACTIONS(2653), 1, - anon_sym_STAR, - ACTIONS(2661), 1, + ACTIONS(2705), 1, anon_sym_LT, - ACTIONS(2793), 1, - sym_identifier, - ACTIONS(2801), 1, - anon_sym_await, - ACTIONS(2931), 1, + ACTIONS(2707), 1, anon_sym_not, - ACTIONS(2933), 1, + ACTIONS(2709), 1, anon_sym_lambda, - ACTIONS(2935), 1, + ACTIONS(2711), 1, anon_sym_new, - STATE(2046), 1, + ACTIONS(2955), 1, + anon_sym_STAR, + STATE(2072), 1, sym_primary_expression, - STATE(2073), 1, + STATE(2161), 1, sym_string, - STATE(2357), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(4254), 1, + STATE(3950), 1, sym_expression, - STATE(5657), 1, + STATE(5669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1905), 3, + ACTIONS(1237), 3, sym_integer, sym_true, sym_false, - ACTIONS(1915), 4, + ACTIONS(1227), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2797), 5, + ACTIONS(1217), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3846), 8, + STATE(3088), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -178372,7 +178892,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2255), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -178393,66 +178913,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [69906] = 26, - ACTIONS(1907), 1, + [69607] = 26, + ACTIONS(1943), 1, anon_sym_LPAREN, - ACTIONS(1913), 1, + ACTIONS(1949), 1, anon_sym_LBRACK, - ACTIONS(1917), 1, + ACTIONS(1953), 1, anon_sym_LBRACE, - ACTIONS(1921), 1, + ACTIONS(1957), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1923), 1, + ACTIONS(1959), 1, anon_sym_None, - ACTIONS(1925), 1, + ACTIONS(1961), 1, sym_float, - ACTIONS(1929), 1, + ACTIONS(1965), 1, anon_sym_sizeof, - ACTIONS(1931), 1, + ACTIONS(1967), 1, sym_string_start, - ACTIONS(2653), 1, - anon_sym_STAR, ACTIONS(2661), 1, + anon_sym_STAR, + ACTIONS(2669), 1, anon_sym_LT, - ACTIONS(2793), 1, + ACTIONS(2923), 1, sym_identifier, - ACTIONS(2801), 1, - anon_sym_await, ACTIONS(2931), 1, + anon_sym_await, + ACTIONS(3045), 1, anon_sym_not, - ACTIONS(2933), 1, + ACTIONS(3047), 1, anon_sym_lambda, - ACTIONS(2935), 1, + ACTIONS(3049), 1, anon_sym_new, - STATE(2046), 1, + STATE(2057), 1, sym_primary_expression, - STATE(2073), 1, + STATE(2089), 1, sym_string, - STATE(2357), 1, + STATE(2284), 1, sym_list_splat_pattern, - STATE(4256), 1, + STATE(4286), 1, sym_expression, - STATE(5657), 1, + STATE(5675), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1905), 3, + ACTIONS(1941), 3, sym_integer, sym_true, sym_false, - ACTIONS(1915), 4, + ACTIONS(1951), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2797), 5, + ACTIONS(2927), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3846), 8, + STATE(3825), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -178461,7 +178981,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2255), 20, + STATE(2257), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -178482,66 +179002,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [70021] = 26, - ACTIONS(1907), 1, + [69722] = 26, + ACTIONS(1211), 1, + sym_identifier, + ACTIONS(1213), 1, anon_sym_LPAREN, - ACTIONS(1913), 1, + ACTIONS(1219), 1, anon_sym_LBRACK, - ACTIONS(1917), 1, + ACTIONS(1223), 1, anon_sym_LBRACE, - ACTIONS(1921), 1, + ACTIONS(1233), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1923), 1, + ACTIONS(1235), 1, anon_sym_None, - ACTIONS(1925), 1, + ACTIONS(1239), 1, sym_float, - ACTIONS(1929), 1, + ACTIONS(1241), 1, + anon_sym_await, + ACTIONS(1245), 1, anon_sym_sizeof, - ACTIONS(1931), 1, + ACTIONS(1247), 1, sym_string_start, - ACTIONS(2653), 1, - anon_sym_STAR, - ACTIONS(2661), 1, + ACTIONS(2705), 1, anon_sym_LT, - ACTIONS(2793), 1, - sym_identifier, - ACTIONS(2801), 1, - anon_sym_await, - ACTIONS(2931), 1, + ACTIONS(2707), 1, anon_sym_not, - ACTIONS(2933), 1, + ACTIONS(2709), 1, anon_sym_lambda, - ACTIONS(2935), 1, + ACTIONS(2711), 1, anon_sym_new, - STATE(2046), 1, + ACTIONS(2955), 1, + anon_sym_STAR, + STATE(2072), 1, sym_primary_expression, - STATE(2073), 1, + STATE(2161), 1, sym_string, - STATE(2357), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(4257), 1, + STATE(3951), 1, sym_expression, - STATE(5657), 1, + STATE(5669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1905), 3, + ACTIONS(1237), 3, sym_integer, sym_true, sym_false, - ACTIONS(1915), 4, + ACTIONS(1227), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2797), 5, + ACTIONS(1217), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3846), 8, + STATE(3088), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -178550,7 +179070,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2255), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -178571,66 +179091,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [70136] = 26, - ACTIONS(1907), 1, + [69837] = 26, + ACTIONS(1211), 1, + sym_identifier, + ACTIONS(1213), 1, anon_sym_LPAREN, - ACTIONS(1913), 1, + ACTIONS(1219), 1, anon_sym_LBRACK, - ACTIONS(1917), 1, + ACTIONS(1223), 1, anon_sym_LBRACE, - ACTIONS(1921), 1, + ACTIONS(1233), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1923), 1, + ACTIONS(1235), 1, anon_sym_None, - ACTIONS(1925), 1, + ACTIONS(1239), 1, sym_float, - ACTIONS(1929), 1, + ACTIONS(1241), 1, + anon_sym_await, + ACTIONS(1245), 1, anon_sym_sizeof, - ACTIONS(1931), 1, + ACTIONS(1247), 1, sym_string_start, - ACTIONS(2653), 1, - anon_sym_STAR, - ACTIONS(2661), 1, + ACTIONS(2705), 1, anon_sym_LT, - ACTIONS(2793), 1, - sym_identifier, - ACTIONS(2801), 1, - anon_sym_await, - ACTIONS(2931), 1, + ACTIONS(2707), 1, anon_sym_not, - ACTIONS(2933), 1, + ACTIONS(2709), 1, anon_sym_lambda, - ACTIONS(2935), 1, + ACTIONS(2711), 1, anon_sym_new, - STATE(2046), 1, + ACTIONS(2955), 1, + anon_sym_STAR, + STATE(2072), 1, sym_primary_expression, - STATE(2073), 1, + STATE(2161), 1, sym_string, - STATE(2357), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(3857), 1, + STATE(3952), 1, sym_expression, - STATE(5657), 1, + STATE(5669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1905), 3, + ACTIONS(1237), 3, sym_integer, sym_true, sym_false, - ACTIONS(1915), 4, + ACTIONS(1227), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2797), 5, + ACTIONS(1217), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3846), 8, + STATE(3088), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -178639,7 +179159,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2255), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -178660,66 +179180,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [70251] = 26, - ACTIONS(1907), 1, + [69952] = 26, + ACTIONS(1943), 1, anon_sym_LPAREN, - ACTIONS(1913), 1, + ACTIONS(1949), 1, anon_sym_LBRACK, - ACTIONS(1917), 1, + ACTIONS(1953), 1, anon_sym_LBRACE, - ACTIONS(1921), 1, + ACTIONS(1957), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1923), 1, + ACTIONS(1959), 1, anon_sym_None, - ACTIONS(1925), 1, + ACTIONS(1961), 1, sym_float, - ACTIONS(1929), 1, + ACTIONS(1965), 1, anon_sym_sizeof, - ACTIONS(1931), 1, + ACTIONS(1967), 1, sym_string_start, - ACTIONS(2653), 1, - anon_sym_STAR, ACTIONS(2661), 1, + anon_sym_STAR, + ACTIONS(2669), 1, anon_sym_LT, - ACTIONS(2793), 1, + ACTIONS(2923), 1, sym_identifier, - ACTIONS(2801), 1, - anon_sym_await, ACTIONS(2931), 1, + anon_sym_await, + ACTIONS(3045), 1, anon_sym_not, - ACTIONS(2933), 1, + ACTIONS(3047), 1, anon_sym_lambda, - ACTIONS(2935), 1, + ACTIONS(3049), 1, anon_sym_new, - STATE(2046), 1, + STATE(2057), 1, sym_primary_expression, - STATE(2073), 1, + STATE(2089), 1, sym_string, - STATE(2357), 1, + STATE(2284), 1, sym_list_splat_pattern, - STATE(4258), 1, + STATE(4275), 1, sym_expression, - STATE(5657), 1, + STATE(5675), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1905), 3, + ACTIONS(1941), 3, sym_integer, sym_true, sym_false, - ACTIONS(1915), 4, + ACTIONS(1951), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2797), 5, + ACTIONS(2927), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3846), 8, + STATE(3825), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -178728,7 +179248,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2255), 20, + STATE(2257), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -178749,66 +179269,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [70366] = 26, - ACTIONS(1907), 1, + [70067] = 26, + ACTIONS(1943), 1, anon_sym_LPAREN, - ACTIONS(1913), 1, + ACTIONS(1949), 1, anon_sym_LBRACK, - ACTIONS(1917), 1, + ACTIONS(1953), 1, anon_sym_LBRACE, - ACTIONS(1921), 1, + ACTIONS(1957), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1923), 1, + ACTIONS(1959), 1, anon_sym_None, - ACTIONS(1925), 1, + ACTIONS(1961), 1, sym_float, - ACTIONS(1929), 1, + ACTIONS(1965), 1, anon_sym_sizeof, - ACTIONS(1931), 1, + ACTIONS(1967), 1, sym_string_start, - ACTIONS(2653), 1, - anon_sym_STAR, ACTIONS(2661), 1, + anon_sym_STAR, + ACTIONS(2669), 1, anon_sym_LT, - ACTIONS(2793), 1, + ACTIONS(2923), 1, sym_identifier, - ACTIONS(2801), 1, - anon_sym_await, ACTIONS(2931), 1, + anon_sym_await, + ACTIONS(3045), 1, anon_sym_not, - ACTIONS(2933), 1, + ACTIONS(3047), 1, anon_sym_lambda, - ACTIONS(2935), 1, + ACTIONS(3049), 1, anon_sym_new, - STATE(2046), 1, + STATE(2057), 1, sym_primary_expression, - STATE(2073), 1, + STATE(2089), 1, sym_string, - STATE(2357), 1, + STATE(2284), 1, sym_list_splat_pattern, - STATE(4259), 1, + STATE(4276), 1, sym_expression, - STATE(5657), 1, + STATE(5675), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1905), 3, + ACTIONS(1941), 3, sym_integer, sym_true, sym_false, - ACTIONS(1915), 4, + ACTIONS(1951), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2797), 5, + ACTIONS(2927), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3846), 8, + STATE(3825), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -178817,7 +179337,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2255), 20, + STATE(2257), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -178838,66 +179358,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [70481] = 26, - ACTIONS(1907), 1, + [70182] = 26, + ACTIONS(1943), 1, anon_sym_LPAREN, - ACTIONS(1913), 1, + ACTIONS(1949), 1, anon_sym_LBRACK, - ACTIONS(1917), 1, + ACTIONS(1953), 1, anon_sym_LBRACE, - ACTIONS(1921), 1, + ACTIONS(1957), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1923), 1, + ACTIONS(1959), 1, anon_sym_None, - ACTIONS(1925), 1, + ACTIONS(1961), 1, sym_float, - ACTIONS(1929), 1, + ACTIONS(1965), 1, anon_sym_sizeof, - ACTIONS(1931), 1, + ACTIONS(1967), 1, sym_string_start, - ACTIONS(2653), 1, - anon_sym_STAR, ACTIONS(2661), 1, + anon_sym_STAR, + ACTIONS(2669), 1, anon_sym_LT, - ACTIONS(2793), 1, + ACTIONS(2923), 1, sym_identifier, - ACTIONS(2801), 1, - anon_sym_await, ACTIONS(2931), 1, + anon_sym_await, + ACTIONS(3045), 1, anon_sym_not, - ACTIONS(2933), 1, + ACTIONS(3047), 1, anon_sym_lambda, - ACTIONS(2935), 1, + ACTIONS(3049), 1, anon_sym_new, - STATE(2046), 1, + STATE(2057), 1, sym_primary_expression, - STATE(2073), 1, + STATE(2089), 1, sym_string, - STATE(2357), 1, + STATE(2284), 1, sym_list_splat_pattern, - STATE(4260), 1, + STATE(4277), 1, sym_expression, - STATE(5657), 1, + STATE(5675), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1905), 3, + ACTIONS(1941), 3, sym_integer, sym_true, sym_false, - ACTIONS(1915), 4, + ACTIONS(1951), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2797), 5, + ACTIONS(2927), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3846), 8, + STATE(3825), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -178906,7 +179426,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2255), 20, + STATE(2257), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -178927,66 +179447,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [70596] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, + [70297] = 26, + ACTIONS(1943), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(1949), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1953), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1957), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1959), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1961), 1, sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1245), 1, + ACTIONS(1965), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1967), 1, sym_string_start, - ACTIONS(2735), 1, + ACTIONS(2661), 1, + anon_sym_STAR, + ACTIONS(2669), 1, anon_sym_LT, - ACTIONS(2739), 1, + ACTIONS(2923), 1, + sym_identifier, + ACTIONS(2931), 1, + anon_sym_await, + ACTIONS(3045), 1, anon_sym_not, - ACTIONS(2741), 1, + ACTIONS(3047), 1, anon_sym_lambda, - ACTIONS(2743), 1, + ACTIONS(3049), 1, anon_sym_new, - ACTIONS(3009), 1, - anon_sym_STAR, - STATE(2067), 1, + STATE(2057), 1, sym_primary_expression, - STATE(2140), 1, + STATE(2089), 1, sym_string, - STATE(2432), 1, + STATE(2284), 1, sym_list_splat_pattern, - STATE(3080), 1, + STATE(3840), 1, sym_expression, - STATE(5651), 1, + STATE(5675), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(1941), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(1951), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(2927), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3081), 8, + STATE(3825), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -178995,7 +179515,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2257), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -179016,66 +179536,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [70711] = 26, - ACTIONS(1907), 1, + [70412] = 26, + ACTIONS(1943), 1, anon_sym_LPAREN, - ACTIONS(1913), 1, + ACTIONS(1949), 1, anon_sym_LBRACK, - ACTIONS(1917), 1, + ACTIONS(1953), 1, anon_sym_LBRACE, - ACTIONS(1921), 1, + ACTIONS(1957), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1923), 1, + ACTIONS(1959), 1, anon_sym_None, - ACTIONS(1925), 1, + ACTIONS(1961), 1, sym_float, - ACTIONS(1929), 1, + ACTIONS(1965), 1, anon_sym_sizeof, - ACTIONS(1931), 1, + ACTIONS(1967), 1, sym_string_start, - ACTIONS(2653), 1, - anon_sym_STAR, - ACTIONS(2659), 1, - anon_sym_not, ACTIONS(2661), 1, - anon_sym_LT, - ACTIONS(2663), 1, - anon_sym_lambda, + anon_sym_STAR, ACTIONS(2669), 1, - anon_sym_new, - ACTIONS(2793), 1, + anon_sym_LT, + ACTIONS(2923), 1, sym_identifier, - ACTIONS(2801), 1, + ACTIONS(2931), 1, anon_sym_await, - STATE(2046), 1, + ACTIONS(3045), 1, + anon_sym_not, + ACTIONS(3047), 1, + anon_sym_lambda, + ACTIONS(3049), 1, + anon_sym_new, + STATE(2057), 1, sym_primary_expression, - STATE(2073), 1, + STATE(2089), 1, sym_string, - STATE(2357), 1, + STATE(2284), 1, sym_list_splat_pattern, - STATE(3921), 1, + STATE(4278), 1, sym_expression, - STATE(5557), 1, + STATE(5675), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1905), 3, + ACTIONS(1941), 3, sym_integer, sym_true, sym_false, - ACTIONS(1915), 4, + ACTIONS(1951), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2797), 5, + ACTIONS(2927), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3846), 8, + STATE(3825), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -179084,7 +179604,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2255), 20, + STATE(2257), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -179105,66 +179625,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [70826] = 26, - ACTIONS(1907), 1, + [70527] = 26, + ACTIONS(1943), 1, anon_sym_LPAREN, - ACTIONS(1913), 1, + ACTIONS(1949), 1, anon_sym_LBRACK, - ACTIONS(1917), 1, + ACTIONS(1953), 1, anon_sym_LBRACE, - ACTIONS(1921), 1, + ACTIONS(1957), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1923), 1, + ACTIONS(1959), 1, anon_sym_None, - ACTIONS(1925), 1, + ACTIONS(1961), 1, sym_float, - ACTIONS(1929), 1, + ACTIONS(1965), 1, anon_sym_sizeof, - ACTIONS(1931), 1, + ACTIONS(1967), 1, sym_string_start, - ACTIONS(2653), 1, - anon_sym_STAR, ACTIONS(2661), 1, + anon_sym_STAR, + ACTIONS(2669), 1, anon_sym_LT, - ACTIONS(2793), 1, + ACTIONS(2923), 1, sym_identifier, - ACTIONS(2801), 1, - anon_sym_await, ACTIONS(2931), 1, + anon_sym_await, + ACTIONS(3045), 1, anon_sym_not, - ACTIONS(2933), 1, + ACTIONS(3047), 1, anon_sym_lambda, - ACTIONS(2935), 1, + ACTIONS(3049), 1, anon_sym_new, - STATE(2046), 1, + STATE(2057), 1, sym_primary_expression, - STATE(2073), 1, + STATE(2089), 1, sym_string, - STATE(2357), 1, + STATE(2284), 1, sym_list_splat_pattern, - STATE(3848), 1, + STATE(4279), 1, sym_expression, - STATE(5657), 1, + STATE(5675), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1905), 3, + ACTIONS(1941), 3, sym_integer, sym_true, sym_false, - ACTIONS(1915), 4, + ACTIONS(1951), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2797), 5, + ACTIONS(2927), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3846), 8, + STATE(3825), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -179173,7 +179693,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2255), 20, + STATE(2257), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -179194,66 +179714,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [70941] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, + [70642] = 26, + ACTIONS(1943), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(1949), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1953), 1, anon_sym_LBRACE, - ACTIONS(1225), 1, - anon_sym_not, - ACTIONS(1231), 1, - anon_sym_lambda, - ACTIONS(1233), 1, + ACTIONS(1957), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1959), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1961), 1, sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1243), 1, - anon_sym_new, - ACTIONS(1245), 1, + ACTIONS(1965), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1967), 1, sym_string_start, - ACTIONS(2735), 1, - anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(2661), 1, anon_sym_STAR, - STATE(2067), 1, + ACTIONS(2669), 1, + anon_sym_LT, + ACTIONS(2923), 1, + sym_identifier, + ACTIONS(2931), 1, + anon_sym_await, + ACTIONS(3045), 1, + anon_sym_not, + ACTIONS(3047), 1, + anon_sym_lambda, + ACTIONS(3049), 1, + anon_sym_new, + STATE(2057), 1, sym_primary_expression, - STATE(2140), 1, + STATE(2089), 1, sym_string, - STATE(2432), 1, + STATE(2284), 1, sym_list_splat_pattern, - STATE(4456), 1, + STATE(4280), 1, sym_expression, - STATE(5469), 1, + STATE(5675), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(1941), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(1951), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(2927), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3081), 8, + STATE(3825), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -179262,7 +179782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2257), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -179283,7 +179803,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [71056] = 26, + [70757] = 26, ACTIONS(1211), 1, sym_identifier, ACTIONS(1213), 1, @@ -179292,10 +179812,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1223), 1, anon_sym_LBRACE, - ACTIONS(1225), 1, - anon_sym_not, - ACTIONS(1231), 1, - anon_sym_lambda, ACTIONS(1233), 1, anon_sym_DOT_DOT_DOT, ACTIONS(1235), 1, @@ -179304,25 +179820,29 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(1241), 1, anon_sym_await, - ACTIONS(1243), 1, - anon_sym_new, ACTIONS(1245), 1, anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2735), 1, + ACTIONS(2705), 1, anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(2707), 1, + anon_sym_not, + ACTIONS(2709), 1, + anon_sym_lambda, + ACTIONS(2711), 1, + anon_sym_new, + ACTIONS(2955), 1, anon_sym_STAR, - STATE(2067), 1, + STATE(2072), 1, sym_primary_expression, - STATE(2140), 1, + STATE(2161), 1, sym_string, - STATE(2432), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(4457), 1, + STATE(3089), 1, sym_expression, - STATE(5469), 1, + STATE(5669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -179342,7 +179862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3081), 8, + STATE(3088), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -179351,7 +179871,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2549), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -179372,66 +179892,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [71171] = 26, - ACTIONS(67), 1, + [70872] = 26, + ACTIONS(1943), 1, + anon_sym_LPAREN, + ACTIONS(1949), 1, + anon_sym_LBRACK, + ACTIONS(1953), 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, + ACTIONS(1957), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1959), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1961), 1, sym_float, - ACTIONS(99), 1, - anon_sym_new, - ACTIONS(105), 1, + ACTIONS(1965), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1967), 1, sym_string_start, - ACTIONS(577), 1, + ACTIONS(2661), 1, + anon_sym_STAR, + ACTIONS(2667), 1, + anon_sym_not, + ACTIONS(2669), 1, + anon_sym_LT, + ACTIONS(2671), 1, + anon_sym_lambda, + ACTIONS(2677), 1, + anon_sym_new, + ACTIONS(2923), 1, sym_identifier, - ACTIONS(614), 1, + ACTIONS(2931), 1, anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3071), 1, - anon_sym_STAR, - STATE(2024), 1, + STATE(2057), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2089), 1, sym_string, - STATE(2088), 1, + STATE(2284), 1, sym_list_splat_pattern, - STATE(4222), 1, + STATE(3973), 1, sym_expression, - STATE(5564), 1, + STATE(5410), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1941), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1951), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(2927), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(3825), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -179440,7 +179960,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2257), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -179461,66 +179981,155 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [71286] = 26, - ACTIONS(67), 1, + [70987] = 26, + ACTIONS(1943), 1, + anon_sym_LPAREN, + ACTIONS(1949), 1, + anon_sym_LBRACK, + ACTIONS(1953), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(77), 1, + ACTIONS(1957), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1959), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1961), 1, sym_float, - ACTIONS(105), 1, + ACTIONS(1965), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1967), 1, sym_string_start, - ACTIONS(577), 1, + ACTIONS(2661), 1, + anon_sym_STAR, + ACTIONS(2669), 1, + anon_sym_LT, + ACTIONS(2923), 1, sym_identifier, - ACTIONS(614), 1, + ACTIONS(2931), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(3045), 1, + anon_sym_not, + ACTIONS(3047), 1, + anon_sym_lambda, + ACTIONS(3049), 1, + anon_sym_new, + STATE(2057), 1, + sym_primary_expression, + STATE(2089), 1, + sym_string, + STATE(2284), 1, + sym_list_splat_pattern, + STATE(3830), 1, + sym_expression, + STATE(5675), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1941), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1951), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2927), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3825), 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(2257), 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, + [71102] = 26, + ACTIONS(1211), 1, + sym_identifier, + ACTIONS(1213), 1, anon_sym_LPAREN, - ACTIONS(1287), 1, + ACTIONS(1219), 1, anon_sym_LBRACK, - ACTIONS(2685), 1, + ACTIONS(1223), 1, + anon_sym_LBRACE, + ACTIONS(1225), 1, anon_sym_not, - ACTIONS(2687), 1, + ACTIONS(1231), 1, anon_sym_lambda, - ACTIONS(2689), 1, + ACTIONS(1233), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1235), 1, + anon_sym_None, + ACTIONS(1239), 1, + sym_float, + ACTIONS(1241), 1, + anon_sym_await, + ACTIONS(1243), 1, anon_sym_new, - ACTIONS(3071), 1, + ACTIONS(1245), 1, + anon_sym_sizeof, + ACTIONS(1247), 1, + sym_string_start, + ACTIONS(2705), 1, + anon_sym_LT, + ACTIONS(2955), 1, anon_sym_STAR, - STATE(2024), 1, + STATE(2072), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2161), 1, sym_string, - STATE(2088), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(3781), 1, + STATE(4448), 1, sym_expression, - STATE(5722), 1, + STATE(5579), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1237), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1227), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(1217), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(3088), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -179529,7 +180138,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -179550,66 +180159,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [71401] = 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(83), 1, - sym_float, - ACTIONS(105), 1, - anon_sym_sizeof, - ACTIONS(107), 1, - sym_string_start, - ACTIONS(577), 1, + [71217] = 26, + ACTIONS(1211), 1, sym_identifier, - ACTIONS(614), 1, - anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1213), 1, anon_sym_LPAREN, - ACTIONS(1287), 1, + ACTIONS(1219), 1, anon_sym_LBRACK, - ACTIONS(2685), 1, + ACTIONS(1223), 1, + anon_sym_LBRACE, + ACTIONS(1225), 1, anon_sym_not, - ACTIONS(2687), 1, + ACTIONS(1231), 1, anon_sym_lambda, - ACTIONS(2689), 1, + ACTIONS(1233), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1235), 1, + anon_sym_None, + ACTIONS(1239), 1, + sym_float, + ACTIONS(1241), 1, + anon_sym_await, + ACTIONS(1243), 1, anon_sym_new, - ACTIONS(3071), 1, + ACTIONS(1245), 1, + anon_sym_sizeof, + ACTIONS(1247), 1, + sym_string_start, + ACTIONS(2705), 1, + anon_sym_LT, + ACTIONS(2955), 1, anon_sym_STAR, - STATE(2024), 1, + STATE(2072), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2161), 1, sym_string, - STATE(2088), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(3782), 1, + STATE(4450), 1, sym_expression, - STATE(5722), 1, + STATE(5579), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1237), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1227), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(1217), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(3088), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -179618,7 +180227,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -179639,7 +180248,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [71516] = 26, + [71332] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(71), 1, @@ -179654,31 +180263,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(107), 1, sym_string_start, - ACTIONS(577), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(614), 1, + ACTIONS(1041), 1, anon_sym_await, ACTIONS(1281), 1, anon_sym_LPAREN, ACTIONS(1287), 1, anon_sym_LBRACK, - ACTIONS(2685), 1, + ACTIONS(2763), 1, anon_sym_not, - ACTIONS(2687), 1, + ACTIONS(2765), 1, anon_sym_lambda, - ACTIONS(2689), 1, + ACTIONS(2767), 1, anon_sym_new, - ACTIONS(3071), 1, + ACTIONS(3073), 1, anon_sym_STAR, - STATE(2024), 1, + STATE(2032), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2043), 1, sym_string, STATE(2088), 1, sym_list_splat_pattern, STATE(3783), 1, sym_expression, - STATE(5722), 1, + STATE(5740), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -179692,13 +180301,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -179707,7 +180316,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -179728,7 +180337,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [71631] = 26, + [71447] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(71), 1, @@ -179743,31 +180352,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(107), 1, sym_string_start, - ACTIONS(577), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(614), 1, + ACTIONS(1041), 1, anon_sym_await, ACTIONS(1281), 1, anon_sym_LPAREN, ACTIONS(1287), 1, anon_sym_LBRACK, - ACTIONS(2685), 1, + ACTIONS(2763), 1, anon_sym_not, - ACTIONS(2687), 1, + ACTIONS(2765), 1, anon_sym_lambda, - ACTIONS(2689), 1, + ACTIONS(2767), 1, anon_sym_new, - ACTIONS(3071), 1, + ACTIONS(3073), 1, anon_sym_STAR, - STATE(2024), 1, + STATE(2032), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2043), 1, sym_string, STATE(2088), 1, sym_list_splat_pattern, - STATE(3416), 1, + STATE(3785), 1, sym_expression, - STATE(5722), 1, + STATE(5740), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -179781,13 +180390,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -179796,7 +180405,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -179817,7 +180426,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [71746] = 26, + [71562] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(71), 1, @@ -179832,31 +180441,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(107), 1, sym_string_start, - ACTIONS(577), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(614), 1, + ACTIONS(1041), 1, anon_sym_await, ACTIONS(1281), 1, anon_sym_LPAREN, ACTIONS(1287), 1, anon_sym_LBRACK, - ACTIONS(2685), 1, + ACTIONS(2763), 1, anon_sym_not, - ACTIONS(2687), 1, + ACTIONS(2765), 1, anon_sym_lambda, - ACTIONS(2689), 1, + ACTIONS(2767), 1, anon_sym_new, - ACTIONS(3071), 1, + ACTIONS(3073), 1, anon_sym_STAR, - STATE(2024), 1, + STATE(2032), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2043), 1, sym_string, STATE(2088), 1, sym_list_splat_pattern, - STATE(3784), 1, + STATE(3443), 1, sym_expression, - STATE(5722), 1, + STATE(5740), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -179870,13 +180479,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -179885,7 +180494,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -179906,7 +180515,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [71861] = 26, + [71677] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(71), 1, @@ -179921,31 +180530,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(107), 1, sym_string_start, - ACTIONS(577), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(614), 1, + ACTIONS(1041), 1, anon_sym_await, ACTIONS(1281), 1, anon_sym_LPAREN, ACTIONS(1287), 1, anon_sym_LBRACK, - ACTIONS(2685), 1, + ACTIONS(2763), 1, anon_sym_not, - ACTIONS(2687), 1, + ACTIONS(2765), 1, anon_sym_lambda, - ACTIONS(2689), 1, + ACTIONS(2767), 1, anon_sym_new, - ACTIONS(3071), 1, + ACTIONS(3073), 1, anon_sym_STAR, - STATE(2024), 1, + STATE(2032), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2043), 1, sym_string, STATE(2088), 1, sym_list_splat_pattern, - STATE(3785), 1, + STATE(3786), 1, sym_expression, - STATE(5722), 1, + STATE(5740), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -179959,13 +180568,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -179974,7 +180583,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -179995,7 +180604,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [71976] = 26, + [71792] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(71), 1, @@ -180010,31 +180619,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(107), 1, sym_string_start, - ACTIONS(577), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(614), 1, + ACTIONS(1041), 1, anon_sym_await, ACTIONS(1281), 1, anon_sym_LPAREN, ACTIONS(1287), 1, anon_sym_LBRACK, - ACTIONS(2685), 1, + ACTIONS(2763), 1, anon_sym_not, - ACTIONS(2687), 1, + ACTIONS(2765), 1, anon_sym_lambda, - ACTIONS(2689), 1, + ACTIONS(2767), 1, anon_sym_new, - ACTIONS(3071), 1, + ACTIONS(3073), 1, anon_sym_STAR, - STATE(2024), 1, + STATE(2032), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2043), 1, sym_string, STATE(2088), 1, sym_list_splat_pattern, - STATE(3726), 1, + STATE(3787), 1, sym_expression, - STATE(5722), 1, + STATE(5740), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -180048,13 +180657,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -180063,7 +180672,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -180084,7 +180693,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [72091] = 26, + [71907] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(71), 1, @@ -180099,31 +180708,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(107), 1, sym_string_start, - ACTIONS(577), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(614), 1, + ACTIONS(1041), 1, anon_sym_await, ACTIONS(1281), 1, anon_sym_LPAREN, ACTIONS(1287), 1, anon_sym_LBRACK, - ACTIONS(2685), 1, + ACTIONS(2763), 1, anon_sym_not, - ACTIONS(2687), 1, + ACTIONS(2765), 1, anon_sym_lambda, - ACTIONS(2689), 1, + ACTIONS(2767), 1, anon_sym_new, - ACTIONS(3071), 1, + ACTIONS(3073), 1, anon_sym_STAR, - STATE(2024), 1, + STATE(2032), 1, sym_primary_expression, - STATE(2034), 1, + STATE(2043), 1, sym_string, STATE(2088), 1, sym_list_splat_pattern, - STATE(3414), 1, + STATE(3739), 1, sym_expression, - STATE(5722), 1, + STATE(5740), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -180137,13 +180746,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(592), 5, + ACTIONS(1016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3429), 8, + STATE(3442), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -180152,7 +180761,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2123), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -180173,7 +180782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [72206] = 26, + [72022] = 26, ACTIONS(1382), 1, anon_sym_LBRACK, ACTIONS(1386), 1, @@ -180196,23 +180805,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1408), 1, sym_string_start, - ACTIONS(2439), 1, + ACTIONS(2397), 1, + anon_sym_STAR, + ACTIONS(2401), 1, + anon_sym_await, + ACTIONS(2449), 1, anon_sym_LPAREN, - ACTIONS(2955), 1, + ACTIONS(3037), 1, sym_identifier, - ACTIONS(2961), 1, - anon_sym_await, - ACTIONS(3695), 1, - anon_sym_STAR, - STATE(2151), 1, + STATE(2163), 1, sym_primary_expression, - STATE(2302), 1, + STATE(2393), 1, sym_string, - STATE(2671), 1, + STATE(2644), 1, sym_list_splat_pattern, - STATE(4180), 1, + STATE(4230), 1, sym_expression, - STATE(5468), 1, + STATE(5398), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -180226,13 +180835,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2959), 5, + ACTIONS(2399), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2716), 8, + STATE(2652), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -180241,7 +180850,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2715), 20, + STATE(2651), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -180262,6 +180871,161 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, + [72137] = 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(83), 1, + sym_float, + ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, + sym_string_start, + ACTIONS(1001), 1, + sym_identifier, + ACTIONS(1041), 1, + anon_sym_await, + ACTIONS(1281), 1, + anon_sym_LPAREN, + ACTIONS(1287), 1, + anon_sym_LBRACK, + ACTIONS(2763), 1, + anon_sym_not, + ACTIONS(2765), 1, + anon_sym_lambda, + ACTIONS(2767), 1, + anon_sym_new, + ACTIONS(3073), 1, + anon_sym_STAR, + STATE(2032), 1, + sym_primary_expression, + STATE(2043), 1, + sym_string, + STATE(2088), 1, + sym_list_splat_pattern, + STATE(3423), 1, + sym_expression, + STATE(5740), 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(1016), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3442), 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(2111), 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, + [72252] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3655), 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(3653), 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, [72321] = 22, ACTIONS(1213), 1, anon_sym_LPAREN, @@ -180285,21 +181049,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(1312), 1, anon_sym_await, - STATE(2140), 1, + STATE(2161), 1, sym_string, - STATE(2432), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(3190), 1, + STATE(3239), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1295), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1297), 2, + ACTIONS(1005), 2, anon_sym_DOT, anon_sym_SLASH, + ACTIONS(1039), 2, + anon_sym_COMMA, + anon_sym_RBRACK, ACTIONS(1237), 4, sym_integer, sym_identifier, @@ -180316,7 +181080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_exec, anon_sym_api, - ACTIONS(1498), 8, + ACTIONS(1003), 8, anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_AT, @@ -180325,7 +181089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_CARET, anon_sym_LT_LT, - STATE(2549), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -180369,11 +181133,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(1312), 1, anon_sym_await, - STATE(2140), 1, + STATE(2161), 1, sym_string, - STATE(2432), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(3190), 1, + STATE(3239), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, @@ -180409,7 +181173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_CARET, anon_sym_LT_LT, - STATE(2549), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -180453,19 +181217,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(1312), 1, anon_sym_await, - STATE(2140), 1, + STATE(2161), 1, sym_string, - STATE(2432), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(3190), 1, + STATE(3239), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(581), 2, + ACTIONS(1005), 2, anon_sym_DOT, anon_sym_SLASH, - ACTIONS(612), 2, + ACTIONS(1039), 2, anon_sym_RPAREN, anon_sym_COMMA, ACTIONS(1237), 4, @@ -180484,7 +181248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_exec, anon_sym_api, - ACTIONS(579), 8, + ACTIONS(1003), 8, anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_AT, @@ -180493,7 +181257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_CARET, anon_sym_LT_LT, - STATE(2549), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -180537,21 +181301,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(1312), 1, anon_sym_await, - STATE(2140), 1, + STATE(2161), 1, sym_string, - STATE(2432), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(3190), 1, + STATE(3239), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(581), 2, + ACTIONS(1295), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1297), 2, anon_sym_DOT, anon_sym_SLASH, - ACTIONS(612), 2, - anon_sym_COMMA, - anon_sym_RBRACK, ACTIONS(1237), 4, sym_integer, sym_identifier, @@ -180568,7 +181332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_exec, anon_sym_api, - ACTIONS(579), 8, + ACTIONS(1498), 8, anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_AT, @@ -180577,7 +181341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_CARET, anon_sym_LT_LT, - STATE(2549), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -180621,16 +181385,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(1312), 1, anon_sym_await, - STATE(2140), 1, + STATE(2161), 1, sym_string, - STATE(2432), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(3190), 1, + STATE(3239), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(581), 2, + ACTIONS(1005), 2, anon_sym_DOT, anon_sym_SLASH, ACTIONS(1237), 4, @@ -180649,7 +181413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_exec, anon_sym_api, - ACTIONS(579), 8, + ACTIONS(1003), 8, anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_AT, @@ -180658,7 +181422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_CARET, anon_sym_LT_LT, - STATE(2549), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -180680,17 +181444,17 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_expression, sym_cast_expression, [72847] = 8, - ACTIONS(586), 1, + ACTIONS(1010), 1, anon_sym_COMMA, - ACTIONS(596), 1, + ACTIONS(1020), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(598), 2, + ACTIONS(1025), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3697), 7, + ACTIONS(3701), 7, anon_sym_class, anon_sym_api, anon_sym_ctypedef, @@ -180698,7 +181462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - ACTIONS(612), 13, + ACTIONS(1039), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -180712,7 +181476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(579), 16, + ACTIONS(1003), 16, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -180729,7 +181493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(581), 16, + ACTIONS(1005), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_in, @@ -180747,40 +181511,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, [72922] = 17, - ACTIONS(3701), 1, - anon_sym_DOT, ACTIONS(3705), 1, + anon_sym_DOT, + ACTIONS(3709), 1, anon_sym_COMMA, - ACTIONS(3712), 1, + ACTIONS(3716), 1, anon_sym_COLON_EQ, - ACTIONS(3714), 1, + ACTIONS(3718), 1, anon_sym_COLON, - ACTIONS(3716), 1, + ACTIONS(3720), 1, anon_sym_EQ, - ACTIONS(3718), 1, - anon_sym_LBRACK, ACTIONS(3722), 1, + anon_sym_LBRACK, + ACTIONS(3726), 1, anon_sym_complex, - ACTIONS(3724), 1, + ACTIONS(3728), 1, anon_sym___stdcall, - STATE(3409), 1, - sym_type_index, - STATE(3434), 1, + STATE(3435), 1, aux_sym_class_definition_repeat2, + STATE(3444), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3703), 2, + ACTIONS(3707), 2, sym__newline, anon_sym_LPAREN, - STATE(3683), 2, + STATE(3687), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3708), 3, + ACTIONS(3712), 3, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(3710), 12, + ACTIONS(3714), 12, anon_sym_GT_GT, anon_sym_AT, anon_sym_DASH, @@ -180793,7 +181557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(3699), 13, + ACTIONS(3703), 13, anon_sym_SEMI, anon_sym_as, anon_sym_if, @@ -180807,7 +181571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(3720), 13, + ACTIONS(3724), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -180822,15 +181586,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, [73014] = 5, - ACTIONS(3732), 1, + ACTIONS(3736), 1, anon_sym_DQUOTE_DQUOTE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3730), 2, + ACTIONS(3734), 2, anon_sym_new, anon_sym_delete, - ACTIONS(3728), 20, + ACTIONS(3732), 20, anon_sym_STAR, anon_sym_GT_GT, anon_sym_DASH_GT, @@ -180851,7 +181615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_BANG, anon_sym_xor, - ACTIONS(3726), 31, + ACTIONS(3730), 31, anon_sym_COMMA, anon_sym_TILDE, anon_sym_EQ_EQ, @@ -180896,33 +181660,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2715), 1, + ACTIONS(2741), 1, anon_sym_LT, - ACTIONS(3734), 1, + ACTIONS(3738), 1, sym_identifier, - ACTIONS(3736), 1, + ACTIONS(3740), 1, anon_sym_LPAREN, - ACTIONS(3738), 1, - anon_sym_STAR, ACTIONS(3742), 1, + anon_sym_STAR, + ACTIONS(3746), 1, anon_sym_LBRACK, - ACTIONS(3744), 1, + ACTIONS(3748), 1, anon_sym_await, - STATE(2140), 1, + STATE(2161), 1, sym_string, STATE(3107), 1, sym_list_splat_pattern, - STATE(3210), 1, + STATE(3193), 1, sym_primary_expression, - STATE(4347), 1, + STATE(4318), 1, sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3117), 2, + STATE(3108), 2, sym_attribute, sym_subscript, - STATE(4315), 2, + STATE(4322), 2, sym_tuple_pattern, sym_list_pattern, ACTIONS(1237), 3, @@ -180934,18 +181698,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2747), 4, + ACTIONS(2727), 4, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - ACTIONS(3740), 5, + ACTIONS(3744), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2549), 18, + STATE(2401), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -180964,7 +181728,69 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [73186] = 24, + [73186] = 5, + ACTIONS(3756), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3754), 2, + anon_sym_new, + anon_sym_delete, + ACTIONS(3752), 20, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_DASH_GT, + anon_sym_EQ, + 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_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_BANG, + anon_sym_xor, + ACTIONS(3750), 31, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_co_await, + anon_sym_LT_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DASH_GT_STAR, + anon_sym_LPAREN_RPAREN, + anon_sym_LBRACK_RBRACK, + anon_sym_bitand, + anon_sym_bitor, + anon_sym_compl, + anon_sym_xor_eq, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_not_eq, + [73253] = 24, ACTIONS(1223), 1, anon_sym_LBRACE, ACTIONS(1233), 1, @@ -180977,33 +181803,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2715), 1, + ACTIONS(2741), 1, anon_sym_LT, - ACTIONS(3734), 1, + ACTIONS(3738), 1, sym_identifier, - ACTIONS(3736), 1, + ACTIONS(3740), 1, anon_sym_LPAREN, - ACTIONS(3738), 1, - anon_sym_STAR, ACTIONS(3742), 1, + anon_sym_STAR, + ACTIONS(3746), 1, anon_sym_LBRACK, - ACTIONS(3744), 1, + ACTIONS(3748), 1, anon_sym_await, - STATE(2140), 1, + STATE(2161), 1, sym_string, STATE(3107), 1, sym_list_splat_pattern, - STATE(3210), 1, + STATE(3193), 1, sym_primary_expression, - STATE(4347), 1, + STATE(4318), 1, sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3117), 2, + STATE(3108), 2, sym_attribute, sym_subscript, - STATE(4315), 2, + STATE(4322), 2, sym_tuple_pattern, sym_list_pattern, ACTIONS(1237), 3, @@ -181015,18 +181841,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2765), 4, + ACTIONS(2715), 4, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - ACTIONS(3740), 5, + ACTIONS(3744), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2549), 18, + STATE(2401), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -181045,97 +181871,24 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [73291] = 5, - ACTIONS(3752), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3750), 2, - anon_sym_new, - anon_sym_delete, - ACTIONS(3748), 20, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_DASH_GT, - anon_sym_EQ, - 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_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_BANG, - anon_sym_xor, - ACTIONS(3746), 31, - anon_sym_COMMA, - anon_sym_TILDE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_co_await, - anon_sym_LT_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DASH_GT_STAR, - anon_sym_LPAREN_RPAREN, - anon_sym_LBRACK_RBRACK, - anon_sym_bitand, - anon_sym_bitor, - anon_sym_compl, - anon_sym_xor_eq, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_not_eq, [73358] = 10, - ACTIONS(586), 1, + ACTIONS(1010), 1, anon_sym_COMMA, - ACTIONS(596), 1, + ACTIONS(1020), 1, anon_sym_COLON_EQ, - ACTIONS(3754), 1, - sym_identifier, - ACTIONS(3756), 1, - sym_string_start, - STATE(5015), 1, - sym_string, + ACTIONS(3758), 1, + anon_sym_for, + ACTIONS(3760), 1, + anon_sym_with, + ACTIONS(3762), 1, + anon_sym_def, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(598), 2, + ACTIONS(1025), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(579), 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(612), 13, + ACTIONS(1039), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -181149,48 +181902,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(581), 22, - anon_sym_as, + ACTIONS(1005), 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, - [73433] = 11, - ACTIONS(586), 1, + ACTIONS(1003), 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, + [73433] = 10, + ACTIONS(1010), 1, anon_sym_COMMA, - ACTIONS(596), 1, + ACTIONS(1020), 1, anon_sym_COLON_EQ, - ACTIONS(598), 1, - anon_sym_EQ, - ACTIONS(1080), 1, - anon_sym_COLON, - ACTIONS(3754), 1, + ACTIONS(3764), 1, sym_identifier, - ACTIONS(3756), 1, + ACTIONS(3766), 1, sym_string_start, - STATE(5015), 1, + STATE(4684), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(579), 10, + ACTIONS(1025), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(1003), 10, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -181201,7 +181964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(612), 13, + ACTIONS(1039), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -181215,7 +181978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(581), 22, + ACTIONS(1005), 22, anon_sym_as, anon_sym_STAR, anon_sym_GT_GT, @@ -181238,24 +182001,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_LT, anon_sym_GT, - [73510] = 10, - ACTIONS(586), 1, + [73508] = 10, + ACTIONS(1010), 1, anon_sym_COMMA, - ACTIONS(596), 1, + ACTIONS(1020), 1, anon_sym_COLON_EQ, - ACTIONS(3758), 1, + ACTIONS(3768), 1, anon_sym_for, - ACTIONS(3760), 1, + ACTIONS(3770), 1, anon_sym_with, - ACTIONS(3762), 1, + ACTIONS(3772), 1, anon_sym_def, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(598), 2, + ACTIONS(1025), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(612), 13, + ACTIONS(1039), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -181269,7 +182032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(581), 15, + ACTIONS(1005), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -181285,7 +182048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(579), 17, + ACTIONS(1003), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -181303,7 +182066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73585] = 24, + [73583] = 24, ACTIONS(1223), 1, anon_sym_LBRACE, ACTIONS(1233), 1, @@ -181316,36 +182079,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2715), 1, + ACTIONS(2741), 1, anon_sym_LT, - ACTIONS(3764), 1, + ACTIONS(3774), 1, sym_identifier, - ACTIONS(3768), 1, + ACTIONS(3778), 1, anon_sym_LPAREN, - ACTIONS(3770), 1, + ACTIONS(3780), 1, anon_sym_STAR, - ACTIONS(3774), 1, + ACTIONS(3784), 1, anon_sym_LBRACK, - ACTIONS(3776), 1, + ACTIONS(3786), 1, anon_sym_await, - STATE(2140), 1, + STATE(2161), 1, sym_string, - STATE(3137), 1, + STATE(3164), 1, sym_list_splat_pattern, - STATE(3189), 1, - sym_primary_expression, - STATE(3199), 1, + STATE(3204), 1, sym_pattern, + STATE(3212), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3766), 2, + ACTIONS(3776), 2, anon_sym_from, anon_sym_in, - STATE(3158), 2, + STATE(3183), 2, sym_attribute, sym_subscript, - STATE(3176), 2, + STATE(3207), 2, sym_tuple_pattern, sym_list_pattern, ACTIONS(1237), 3, @@ -181357,13 +182120,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3772), 5, + ACTIONS(3782), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2549), 18, + STATE(2401), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -181382,7 +182145,73 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [73688] = 24, + [73686] = 11, + ACTIONS(1010), 1, + anon_sym_COMMA, + ACTIONS(1020), 1, + anon_sym_COLON_EQ, + ACTIONS(1022), 1, + anon_sym_COLON, + ACTIONS(1025), 1, + anon_sym_EQ, + ACTIONS(3764), 1, + sym_identifier, + ACTIONS(3766), 1, + sym_string_start, + STATE(4684), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1003), 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(1039), 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(1005), 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, + [73763] = 24, ACTIONS(1223), 1, anon_sym_LBRACE, ACTIONS(1233), 1, @@ -181395,36 +182224,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2715), 1, + ACTIONS(2741), 1, anon_sym_LT, - ACTIONS(3764), 1, + ACTIONS(3774), 1, sym_identifier, - ACTIONS(3768), 1, + ACTIONS(3778), 1, anon_sym_LPAREN, - ACTIONS(3770), 1, + ACTIONS(3780), 1, anon_sym_STAR, - ACTIONS(3774), 1, + ACTIONS(3784), 1, anon_sym_LBRACK, - ACTIONS(3776), 1, + ACTIONS(3786), 1, anon_sym_await, - STATE(2140), 1, + STATE(2161), 1, sym_string, - STATE(3137), 1, + STATE(3164), 1, sym_list_splat_pattern, - STATE(3189), 1, - sym_primary_expression, - STATE(3199), 1, + STATE(3204), 1, sym_pattern, + STATE(3212), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3778), 2, + ACTIONS(3788), 2, anon_sym_from, anon_sym_in, - STATE(3158), 2, + STATE(3183), 2, sym_attribute, sym_subscript, - STATE(3176), 2, + STATE(3207), 2, sym_tuple_pattern, sym_list_pattern, ACTIONS(1237), 3, @@ -181436,13 +182265,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3772), 5, + ACTIONS(3782), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2549), 18, + STATE(2401), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -181461,131 +182290,68 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [73791] = 10, - ACTIONS(586), 1, - anon_sym_COMMA, - ACTIONS(596), 1, - anon_sym_COLON_EQ, - ACTIONS(3780), 1, - anon_sym_for, - ACTIONS(3782), 1, - anon_sym_with, - ACTIONS(3784), 1, - anon_sym_def, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(598), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(612), 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(581), 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(579), 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, - [73866] = 22, - ACTIONS(67), 1, + [73866] = 24, + ACTIONS(1223), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(77), 1, + ACTIONS(1233), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1235), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1239), 1, sym_float, - ACTIONS(105), 1, + ACTIONS(1245), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1247), 1, sym_string_start, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, + ACTIONS(2735), 1, + anon_sym_STAR, + ACTIONS(2739), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(2741), 1, + anon_sym_LT, + ACTIONS(2743), 1, anon_sym_await, - ACTIONS(3071), 1, - anon_sym_STAR, - ACTIONS(3786), 1, + ACTIONS(3790), 1, sym_identifier, - STATE(2034), 1, + ACTIONS(3792), 1, + anon_sym_LPAREN, + ACTIONS(3794), 1, + anon_sym_RPAREN, + STATE(2161), 1, sym_string, - STATE(2047), 1, - sym_primary_expression, - STATE(2088), 1, + STATE(3195), 1, sym_list_splat_pattern, + STATE(3219), 1, + sym_primary_expression, + STATE(5295), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3788), 2, - sym__newline, - anon_sym_COLON, - ACTIONS(3790), 2, - anon_sym_with, - anon_sym_nogil, - ACTIONS(81), 3, + STATE(3201), 2, + sym_attribute, + sym_subscript, + STATE(5264), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1237), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1308), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1285), 5, + ACTIONS(2737), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2123), 20, + STATE(2401), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -181602,7 +182368,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [73964] = 24, + [73968] = 24, ACTIONS(1223), 1, anon_sym_LBRACE, ACTIONS(1233), 1, @@ -181615,35 +182381,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2715), 1, + ACTIONS(2741), 1, anon_sym_LT, - ACTIONS(3764), 1, + ACTIONS(3796), 1, sym_identifier, - ACTIONS(3768), 1, + ACTIONS(3798), 1, anon_sym_LPAREN, - ACTIONS(3770), 1, + ACTIONS(3800), 1, anon_sym_STAR, - ACTIONS(3774), 1, + ACTIONS(3804), 1, anon_sym_LBRACK, - ACTIONS(3776), 1, + ACTIONS(3806), 1, + anon_sym_RBRACK, + ACTIONS(3808), 1, anon_sym_await, - STATE(2140), 1, + STATE(2161), 1, sym_string, - STATE(3137), 1, - sym_list_splat_pattern, - STATE(3189), 1, + STATE(3224), 1, sym_primary_expression, - STATE(5085), 1, + STATE(3227), 1, + sym_list_splat_pattern, + STATE(5331), 1, sym_pattern, - STATE(5585), 1, - sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3158), 2, + STATE(3229), 2, sym_attribute, sym_subscript, - STATE(3176), 2, + STATE(5189), 2, sym_tuple_pattern, sym_list_pattern, ACTIONS(1237), 3, @@ -181655,13 +182421,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3772), 5, + ACTIONS(3802), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2549), 18, + STATE(2401), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -181680,11 +182446,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [74066] = 23, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, + [74070] = 24, ACTIONS(1223), 1, anon_sym_LBRACE, ACTIONS(1233), 1, @@ -181697,32 +182459,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2715), 1, - anon_sym_LT, - ACTIONS(3770), 1, + ACTIONS(2735), 1, anon_sym_STAR, - ACTIONS(3792), 1, - sym_identifier, - ACTIONS(3796), 1, + ACTIONS(2739), 1, + anon_sym_LBRACK, + ACTIONS(2741), 1, + anon_sym_LT, + ACTIONS(2743), 1, anon_sym_await, - STATE(2140), 1, + ACTIONS(3790), 1, + sym_identifier, + ACTIONS(3792), 1, + anon_sym_LPAREN, + ACTIONS(3806), 1, + anon_sym_RPAREN, + STATE(2161), 1, sym_string, - STATE(2432), 1, + STATE(3195), 1, sym_list_splat_pattern, - STATE(3197), 1, + STATE(3219), 1, sym_primary_expression, + STATE(5295), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3788), 2, - sym__newline, - anon_sym_COLON, - ACTIONS(3790), 2, - anon_sym_with, - anon_sym_nogil, - STATE(2107), 2, + STATE(3201), 2, sym_attribute, sym_subscript, + STATE(5264), 2, + sym_tuple_pattern, + sym_list_pattern, ACTIONS(1237), 3, sym_integer, sym_true, @@ -181732,13 +182499,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3794), 5, + ACTIONS(2737), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2549), 18, + STATE(2401), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -181757,7 +182524,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [74166] = 24, + [74172] = 24, ACTIONS(1223), 1, anon_sym_LBRACE, ACTIONS(1233), 1, @@ -181770,35 +182537,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2715), 1, + ACTIONS(2741), 1, anon_sym_LT, - ACTIONS(3798), 1, + ACTIONS(3774), 1, sym_identifier, - ACTIONS(3800), 1, + ACTIONS(3778), 1, anon_sym_LPAREN, - ACTIONS(3802), 1, + ACTIONS(3780), 1, anon_sym_STAR, - ACTIONS(3806), 1, + ACTIONS(3784), 1, anon_sym_LBRACK, - ACTIONS(3808), 1, - anon_sym_RBRACK, - ACTIONS(3810), 1, + ACTIONS(3786), 1, anon_sym_await, - STATE(2140), 1, + STATE(2161), 1, sym_string, - STATE(3194), 1, + STATE(3164), 1, sym_list_splat_pattern, - STATE(3209), 1, + STATE(3212), 1, sym_primary_expression, - STATE(5197), 1, + STATE(5037), 1, sym_pattern, + STATE(5501), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3227), 2, + STATE(3183), 2, sym_attribute, sym_subscript, - STATE(5363), 2, + STATE(3207), 2, sym_tuple_pattern, sym_list_pattern, ACTIONS(1237), 3, @@ -181810,13 +182577,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3804), 5, + ACTIONS(3782), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2549), 18, + STATE(2401), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -181835,7 +182602,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [74268] = 24, + [74274] = 24, ACTIONS(1223), 1, anon_sym_LBRACE, ACTIONS(1233), 1, @@ -181848,35 +182615,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2709), 1, - anon_sym_STAR, - ACTIONS(2713), 1, - anon_sym_LBRACK, - ACTIONS(2715), 1, + ACTIONS(2741), 1, anon_sym_LT, - ACTIONS(2717), 1, - anon_sym_await, - ACTIONS(3808), 1, - anon_sym_RPAREN, - ACTIONS(3812), 1, + ACTIONS(3774), 1, sym_identifier, - ACTIONS(3814), 1, + ACTIONS(3778), 1, anon_sym_LPAREN, - STATE(2140), 1, + ACTIONS(3780), 1, + anon_sym_STAR, + ACTIONS(3784), 1, + anon_sym_LBRACK, + ACTIONS(3786), 1, + anon_sym_await, + STATE(2161), 1, sym_string, - STATE(3203), 1, - sym_primary_expression, - STATE(3225), 1, + STATE(3164), 1, sym_list_splat_pattern, - STATE(5176), 1, + STATE(3212), 1, + sym_primary_expression, + STATE(4764), 1, sym_pattern, + STATE(5576), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3173), 2, + STATE(3183), 2, sym_attribute, sym_subscript, - STATE(5295), 2, + STATE(3207), 2, sym_tuple_pattern, sym_list_pattern, ACTIONS(1237), 3, @@ -181888,13 +182655,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2711), 5, + ACTIONS(3782), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2549), 18, + STATE(2401), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -181913,7 +182680,11 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [74370] = 24, + [74376] = 23, + ACTIONS(1213), 1, + anon_sym_LPAREN, + ACTIONS(1219), 1, + anon_sym_LBRACK, ACTIONS(1223), 1, anon_sym_LBRACE, ACTIONS(1233), 1, @@ -181926,37 +182697,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2715), 1, + ACTIONS(2741), 1, anon_sym_LT, - ACTIONS(3798), 1, - sym_identifier, - ACTIONS(3800), 1, - anon_sym_LPAREN, - ACTIONS(3802), 1, + ACTIONS(3780), 1, anon_sym_STAR, - ACTIONS(3806), 1, - anon_sym_LBRACK, ACTIONS(3810), 1, + sym_identifier, + ACTIONS(3818), 1, anon_sym_await, - ACTIONS(3816), 1, - anon_sym_RBRACK, - STATE(2140), 1, + STATE(2161), 1, sym_string, - STATE(3194), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(3209), 1, + STATE(3216), 1, sym_primary_expression, - STATE(5197), 1, - sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3227), 2, + ACTIONS(3814), 2, + sym__newline, + anon_sym_COLON, + ACTIONS(3816), 2, + anon_sym_with, + anon_sym_nogil, + STATE(2114), 2, sym_attribute, sym_subscript, - STATE(5363), 2, - sym_tuple_pattern, - sym_list_pattern, ACTIONS(1237), 3, sym_integer, sym_true, @@ -181966,13 +182732,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3804), 5, + ACTIONS(3812), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2549), 18, + STATE(2401), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -181991,68 +182757,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [74472] = 24, - ACTIONS(1223), 1, + [74476] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2709), 1, - anon_sym_STAR, - ACTIONS(2713), 1, + ACTIONS(1281), 1, + anon_sym_LPAREN, + ACTIONS(1287), 1, anon_sym_LBRACK, - ACTIONS(2715), 1, - anon_sym_LT, - ACTIONS(2717), 1, + ACTIONS(1293), 1, anon_sym_await, - ACTIONS(3812), 1, + ACTIONS(3073), 1, + anon_sym_STAR, + ACTIONS(3820), 1, sym_identifier, - ACTIONS(3814), 1, - anon_sym_LPAREN, - ACTIONS(3816), 1, - anon_sym_RPAREN, - STATE(2140), 1, + STATE(2043), 1, sym_string, - STATE(3203), 1, + STATE(2060), 1, sym_primary_expression, - STATE(3225), 1, + STATE(2088), 1, sym_list_splat_pattern, - STATE(5176), 1, - sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3173), 2, - sym_attribute, - sym_subscript, - STATE(5295), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(1237), 3, + ACTIONS(3814), 2, + sym__newline, + anon_sym_COLON, + ACTIONS(3816), 2, + anon_sym_with, + anon_sym_nogil, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(1308), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2711), 5, + ACTIONS(1285), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2549), 18, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -182082,35 +182846,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2715), 1, + ACTIONS(2741), 1, anon_sym_LT, - ACTIONS(3764), 1, + ACTIONS(3774), 1, sym_identifier, - ACTIONS(3768), 1, + ACTIONS(3778), 1, anon_sym_LPAREN, - ACTIONS(3770), 1, + ACTIONS(3780), 1, anon_sym_STAR, - ACTIONS(3774), 1, + ACTIONS(3784), 1, anon_sym_LBRACK, - ACTIONS(3776), 1, + ACTIONS(3786), 1, anon_sym_await, - STATE(2140), 1, + STATE(2161), 1, sym_string, - STATE(3137), 1, + STATE(3164), 1, sym_list_splat_pattern, - STATE(3189), 1, + STATE(3212), 1, sym_primary_expression, - STATE(4983), 1, + STATE(5036), 1, sym_pattern, - STATE(5610), 1, + STATE(5705), 1, sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3158), 2, + STATE(3183), 2, sym_attribute, sym_subscript, - STATE(3176), 2, + STATE(3207), 2, sym_tuple_pattern, sym_list_pattern, ACTIONS(1237), 3, @@ -182122,13 +182886,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3772), 5, + ACTIONS(3782), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2549), 18, + STATE(2401), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -182160,35 +182924,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2715), 1, + ACTIONS(2741), 1, anon_sym_LT, - ACTIONS(3764), 1, + ACTIONS(3774), 1, sym_identifier, - ACTIONS(3768), 1, + ACTIONS(3778), 1, anon_sym_LPAREN, - ACTIONS(3770), 1, + ACTIONS(3780), 1, anon_sym_STAR, - ACTIONS(3774), 1, + ACTIONS(3784), 1, anon_sym_LBRACK, - ACTIONS(3776), 1, + ACTIONS(3786), 1, anon_sym_await, - STATE(2140), 1, + STATE(2161), 1, sym_string, - STATE(3137), 1, + STATE(3164), 1, sym_list_splat_pattern, - STATE(3189), 1, + STATE(3212), 1, sym_primary_expression, - STATE(4988), 1, + STATE(5030), 1, sym_pattern, - STATE(5665), 1, + STATE(5627), 1, sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3158), 2, + STATE(3183), 2, sym_attribute, sym_subscript, - STATE(3176), 2, + STATE(3207), 2, sym_tuple_pattern, sym_list_pattern, ACTIONS(1237), 3, @@ -182200,13 +182964,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3772), 5, + ACTIONS(3782), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2549), 18, + STATE(2401), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -182238,35 +183002,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2715), 1, + ACTIONS(2741), 1, anon_sym_LT, - ACTIONS(3764), 1, + ACTIONS(3774), 1, sym_identifier, - ACTIONS(3768), 1, + ACTIONS(3778), 1, anon_sym_LPAREN, - ACTIONS(3770), 1, + ACTIONS(3780), 1, anon_sym_STAR, - ACTIONS(3774), 1, + ACTIONS(3784), 1, anon_sym_LBRACK, - ACTIONS(3776), 1, + ACTIONS(3786), 1, anon_sym_await, - STATE(2140), 1, + STATE(2161), 1, sym_string, - STATE(3137), 1, + STATE(3164), 1, sym_list_splat_pattern, - STATE(3189), 1, + STATE(3212), 1, sym_primary_expression, - STATE(4958), 1, + STATE(5076), 1, sym_pattern, - STATE(5523), 1, + STATE(5475), 1, sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3158), 2, + STATE(3183), 2, sym_attribute, sym_subscript, - STATE(3176), 2, + STATE(3207), 2, sym_tuple_pattern, sym_list_pattern, ACTIONS(1237), 3, @@ -182278,13 +183042,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3772), 5, + ACTIONS(3782), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2549), 18, + STATE(2401), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -182316,35 +183080,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2715), 1, + ACTIONS(2741), 1, anon_sym_LT, - ACTIONS(3764), 1, + ACTIONS(3774), 1, sym_identifier, - ACTIONS(3768), 1, + ACTIONS(3778), 1, anon_sym_LPAREN, - ACTIONS(3770), 1, + ACTIONS(3780), 1, anon_sym_STAR, - ACTIONS(3774), 1, + ACTIONS(3784), 1, anon_sym_LBRACK, - ACTIONS(3776), 1, + ACTIONS(3786), 1, anon_sym_await, - STATE(2140), 1, + STATE(2161), 1, sym_string, - STATE(3137), 1, + STATE(3164), 1, sym_list_splat_pattern, - STATE(3189), 1, + STATE(3212), 1, sym_primary_expression, - STATE(5024), 1, + STATE(5073), 1, sym_pattern, - STATE(5446), 1, + STATE(5463), 1, sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3158), 2, + STATE(3183), 2, sym_attribute, sym_subscript, - STATE(3176), 2, + STATE(3207), 2, sym_tuple_pattern, sym_list_pattern, ACTIONS(1237), 3, @@ -182356,13 +183120,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3772), 5, + ACTIONS(3782), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2549), 18, + STATE(2401), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -182394,35 +183158,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2715), 1, + ACTIONS(2741), 1, anon_sym_LT, - ACTIONS(3764), 1, + ACTIONS(3794), 1, + anon_sym_RBRACK, + ACTIONS(3796), 1, sym_identifier, - ACTIONS(3768), 1, + ACTIONS(3798), 1, anon_sym_LPAREN, - ACTIONS(3770), 1, + ACTIONS(3800), 1, anon_sym_STAR, - ACTIONS(3774), 1, + ACTIONS(3804), 1, anon_sym_LBRACK, - ACTIONS(3776), 1, + ACTIONS(3808), 1, anon_sym_await, - STATE(2140), 1, + STATE(2161), 1, sym_string, - STATE(3137), 1, - sym_list_splat_pattern, - STATE(3189), 1, + STATE(3224), 1, sym_primary_expression, - STATE(5030), 1, + STATE(3227), 1, + sym_list_splat_pattern, + STATE(5331), 1, sym_pattern, - STATE(5458), 1, - sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3158), 2, + STATE(3229), 2, sym_attribute, sym_subscript, - STATE(3176), 2, + STATE(5189), 2, sym_tuple_pattern, sym_list_pattern, ACTIONS(1237), 3, @@ -182434,13 +183198,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3772), 5, + ACTIONS(3802), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2549), 18, + STATE(2401), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -182472,33 +183236,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2715), 1, + ACTIONS(2741), 1, anon_sym_LT, - ACTIONS(3798), 1, + ACTIONS(3796), 1, sym_identifier, - ACTIONS(3800), 1, + ACTIONS(3798), 1, anon_sym_LPAREN, - ACTIONS(3802), 1, + ACTIONS(3800), 1, anon_sym_STAR, - ACTIONS(3806), 1, + ACTIONS(3804), 1, anon_sym_LBRACK, - ACTIONS(3810), 1, + ACTIONS(3808), 1, anon_sym_await, - STATE(2140), 1, + STATE(2161), 1, sym_string, - STATE(3194), 1, - sym_list_splat_pattern, - STATE(3209), 1, + STATE(3224), 1, sym_primary_expression, - STATE(5197), 1, + STATE(3227), 1, + sym_list_splat_pattern, + STATE(5331), 1, sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3227), 2, + STATE(3229), 2, sym_attribute, sym_subscript, - STATE(5363), 2, + STATE(5189), 2, sym_tuple_pattern, sym_list_pattern, ACTIONS(1237), 3, @@ -182510,13 +183274,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3804), 5, + ACTIONS(3802), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2549), 18, + STATE(2401), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -182535,11 +183299,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [75183] = 24, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, + [75183] = 23, ACTIONS(1223), 1, anon_sym_LBRACE, ACTIONS(1233), 1, @@ -182552,32 +183312,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2715), 1, + ACTIONS(2741), 1, anon_sym_LT, - ACTIONS(3770), 1, - anon_sym_STAR, - ACTIONS(3818), 1, + ACTIONS(3738), 1, sym_identifier, - ACTIONS(3820), 1, - anon_sym_RPAREN, - ACTIONS(3822), 1, - anon_sym_COMMA, - ACTIONS(3826), 1, + ACTIONS(3740), 1, + anon_sym_LPAREN, + ACTIONS(3742), 1, + anon_sym_STAR, + ACTIONS(3746), 1, + anon_sym_LBRACK, + ACTIONS(3748), 1, anon_sym_await, - STATE(2140), 1, + STATE(2161), 1, sym_string, - STATE(2432), 1, + STATE(3107), 1, sym_list_splat_pattern, - STATE(3207), 1, + STATE(3193), 1, sym_primary_expression, - STATE(5093), 1, - aux_sym__typedargslist_repeat1, + STATE(4318), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2696), 2, + STATE(3108), 2, sym_attribute, sym_subscript, + STATE(4322), 2, + sym_tuple_pattern, + sym_list_pattern, ACTIONS(1237), 3, sym_integer, sym_true, @@ -182587,13 +183350,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3824), 5, + ACTIONS(3744), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2549), 18, + STATE(2401), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -182612,7 +183375,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [75284] = 23, + [75282] = 23, ACTIONS(1223), 1, anon_sym_LBRACE, ACTIONS(1233), 1, @@ -182625,33 +183388,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2715), 1, + ACTIONS(2741), 1, anon_sym_LT, - ACTIONS(3734), 1, + ACTIONS(2975), 1, sym_identifier, - ACTIONS(3736), 1, + ACTIONS(2977), 1, anon_sym_LPAREN, - ACTIONS(3738), 1, - anon_sym_STAR, - ACTIONS(3742), 1, + ACTIONS(2983), 1, anon_sym_LBRACK, - ACTIONS(3744), 1, + ACTIONS(2985), 1, anon_sym_await, - STATE(2140), 1, + ACTIONS(3822), 1, + anon_sym_STAR, + STATE(2161), 1, sym_string, - STATE(3107), 1, + STATE(2653), 1, sym_list_splat_pattern, - STATE(3210), 1, - sym_primary_expression, - STATE(4347), 1, + STATE(3204), 1, sym_pattern, + STATE(3220), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3117), 2, + STATE(2654), 2, sym_attribute, sym_subscript, - STATE(4315), 2, + STATE(3207), 2, sym_tuple_pattern, sym_list_pattern, ACTIONS(1237), 3, @@ -182663,13 +183426,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3740), 5, + ACTIONS(2981), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2549), 18, + STATE(2401), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -182688,7 +183451,11 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [75383] = 23, + [75381] = 24, + ACTIONS(1213), 1, + anon_sym_LPAREN, + ACTIONS(1219), 1, + anon_sym_LBRACK, ACTIONS(1223), 1, anon_sym_LBRACE, ACTIONS(1233), 1, @@ -182701,35 +183468,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2715), 1, + ACTIONS(2741), 1, anon_sym_LT, - ACTIONS(2745), 1, + ACTIONS(3780), 1, + anon_sym_STAR, + ACTIONS(3824), 1, sym_identifier, - ACTIONS(2749), 1, - anon_sym_LPAREN, - ACTIONS(2755), 1, - anon_sym_LBRACK, - ACTIONS(2757), 1, - anon_sym_await, + ACTIONS(3826), 1, + anon_sym_RPAREN, ACTIONS(3828), 1, - anon_sym_STAR, - STATE(2140), 1, + anon_sym_COMMA, + ACTIONS(3832), 1, + anon_sym_await, + STATE(2161), 1, sym_string, - STATE(2394), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(3213), 1, + STATE(3222), 1, sym_primary_expression, - STATE(3223), 1, - sym_pattern, + STATE(4647), 1, + aux_sym__typedargslist_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2395), 2, + STATE(2691), 2, sym_attribute, sym_subscript, - STATE(3221), 2, - sym_tuple_pattern, - sym_list_pattern, ACTIONS(1237), 3, sym_integer, sym_true, @@ -182739,13 +183503,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2753), 5, + ACTIONS(3830), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2549), 18, + STATE(2401), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -182764,11 +183528,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [75482] = 24, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, + [75482] = 23, ACTIONS(1223), 1, anon_sym_LBRACE, ACTIONS(1233), 1, @@ -182781,32 +183541,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2715), 1, - anon_sym_LT, - ACTIONS(3770), 1, - anon_sym_STAR, - ACTIONS(3818), 1, + ACTIONS(2713), 1, sym_identifier, - ACTIONS(3826), 1, + ACTIONS(2717), 1, + anon_sym_LPAREN, + ACTIONS(2723), 1, + anon_sym_LBRACK, + ACTIONS(2725), 1, anon_sym_await, - ACTIONS(3830), 1, - anon_sym_RPAREN, - ACTIONS(3832), 1, - anon_sym_COMMA, - STATE(2140), 1, + ACTIONS(2741), 1, + anon_sym_LT, + ACTIONS(3834), 1, + anon_sym_STAR, + STATE(2161), 1, sym_string, - STATE(2432), 1, + STATE(2544), 1, sym_list_splat_pattern, - STATE(3207), 1, + STATE(3217), 1, + sym_pattern, + STATE(3228), 1, sym_primary_expression, - STATE(5068), 1, - aux_sym__typedargslist_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2696), 2, + STATE(2545), 2, sym_attribute, sym_subscript, + STATE(3197), 2, + sym_tuple_pattern, + sym_list_pattern, ACTIONS(1237), 3, sym_integer, sym_true, @@ -182816,13 +183579,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3824), 5, + ACTIONS(2721), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2549), 18, + STATE(2401), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -182841,7 +183604,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [75583] = 23, + [75581] = 23, ACTIONS(1223), 1, anon_sym_LBRACE, ACTIONS(1233), 1, @@ -182854,33 +183617,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2715), 1, + ACTIONS(2741), 1, anon_sym_LT, - ACTIONS(2985), 1, + ACTIONS(3774), 1, sym_identifier, - ACTIONS(2987), 1, + ACTIONS(3778), 1, anon_sym_LPAREN, - ACTIONS(2993), 1, + ACTIONS(3780), 1, + anon_sym_STAR, + ACTIONS(3784), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(3786), 1, anon_sym_await, - ACTIONS(3834), 1, - anon_sym_STAR, - STATE(2140), 1, + STATE(2161), 1, sym_string, - STATE(2718), 1, + STATE(3164), 1, sym_list_splat_pattern, - STATE(3199), 1, + STATE(3204), 1, sym_pattern, - STATE(3205), 1, + STATE(3212), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2720), 2, + STATE(3183), 2, sym_attribute, sym_subscript, - STATE(3176), 2, + STATE(3207), 2, sym_tuple_pattern, sym_list_pattern, ACTIONS(1237), 3, @@ -182892,13 +183655,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2991), 5, + ACTIONS(3782), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2549), 18, + STATE(2401), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -182917,7 +183680,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [75682] = 23, + [75680] = 23, ACTIONS(1223), 1, anon_sym_LBRACE, ACTIONS(1233), 1, @@ -182930,33 +183693,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2709), 1, + ACTIONS(2735), 1, anon_sym_STAR, - ACTIONS(2713), 1, + ACTIONS(2739), 1, anon_sym_LBRACK, - ACTIONS(2715), 1, + ACTIONS(2741), 1, anon_sym_LT, - ACTIONS(2717), 1, + ACTIONS(2743), 1, anon_sym_await, - ACTIONS(3812), 1, + ACTIONS(3790), 1, sym_identifier, - ACTIONS(3814), 1, + ACTIONS(3792), 1, anon_sym_LPAREN, - STATE(2140), 1, + STATE(2161), 1, sym_string, - STATE(3203), 1, - sym_primary_expression, - STATE(3225), 1, + STATE(3195), 1, sym_list_splat_pattern, - STATE(5176), 1, + STATE(3219), 1, + sym_primary_expression, + STATE(5295), 1, sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3173), 2, + STATE(3201), 2, sym_attribute, sym_subscript, - STATE(5295), 2, + STATE(5264), 2, sym_tuple_pattern, sym_list_pattern, ACTIONS(1237), 3, @@ -182968,13 +183731,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2711), 5, + ACTIONS(2737), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2549), 18, + STATE(2401), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -182993,70 +183756,11 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [75781] = 10, - ACTIONS(3705), 1, - anon_sym_COMMA, - ACTIONS(3712), 1, - anon_sym_COLON_EQ, - ACTIONS(3716), 1, - anon_sym_EQ, - ACTIONS(3836), 1, - anon_sym_COLON, - ACTIONS(3839), 1, - anon_sym_LBRACK, - STATE(4590), 1, - sym_type_parameter, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3720), 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(3710), 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(3699), 16, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, + [75779] = 24, + ACTIONS(1213), 1, 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, - [75854] = 23, + ACTIONS(1219), 1, + anon_sym_LBRACK, ACTIONS(1223), 1, anon_sym_LBRACE, ACTIONS(1233), 1, @@ -183069,35 +183773,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2715), 1, + ACTIONS(2741), 1, anon_sym_LT, - ACTIONS(3764), 1, - sym_identifier, - ACTIONS(3768), 1, - anon_sym_LPAREN, - ACTIONS(3770), 1, + ACTIONS(3780), 1, anon_sym_STAR, - ACTIONS(3774), 1, - anon_sym_LBRACK, - ACTIONS(3776), 1, + ACTIONS(3824), 1, + sym_identifier, + ACTIONS(3832), 1, anon_sym_await, - STATE(2140), 1, + ACTIONS(3836), 1, + anon_sym_RPAREN, + ACTIONS(3838), 1, + anon_sym_COMMA, + STATE(2161), 1, sym_string, - STATE(3137), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(3189), 1, + STATE(3222), 1, sym_primary_expression, - STATE(3199), 1, - sym_pattern, + STATE(5113), 1, + aux_sym__typedargslist_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3158), 2, + STATE(2691), 2, sym_attribute, sym_subscript, - STATE(3176), 2, - sym_tuple_pattern, - sym_list_pattern, ACTIONS(1237), 3, sym_integer, sym_true, @@ -183107,13 +183808,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3772), 5, + ACTIONS(3830), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2549), 18, + STATE(2401), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -183132,18 +183833,23 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [75953] = 7, - ACTIONS(3705), 1, + [75880] = 10, + ACTIONS(3709), 1, anon_sym_COMMA, - ACTIONS(3712), 1, + ACTIONS(3716), 1, anon_sym_COLON_EQ, + ACTIONS(3720), 1, + anon_sym_EQ, + ACTIONS(3840), 1, + anon_sym_COLON, + ACTIONS(3843), 1, + anon_sym_LBRACK, + STATE(4577), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3716), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3720), 13, + ACTIONS(3724), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -183157,7 +183863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(3710), 15, + ACTIONS(3714), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -183173,7 +183879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(3699), 17, + ACTIONS(3703), 16, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -183181,7 +183887,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_if, anon_sym_in, - anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -183191,19 +183896,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76019] = 8, - ACTIONS(586), 1, + [75953] = 7, + ACTIONS(1010), 1, anon_sym_COMMA, - ACTIONS(596), 1, + ACTIONS(1020), 1, anon_sym_COLON_EQ, - ACTIONS(598), 1, - anon_sym_EQ, - ACTIONS(1080), 1, - anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(612), 13, + ACTIONS(1025), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(1039), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -183217,7 +183921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(581), 15, + ACTIONS(1005), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -183233,7 +183937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(579), 17, + ACTIONS(1003), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -183251,81 +183955,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76087] = 22, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, - anon_sym_LBRACE, - ACTIONS(1233), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, - anon_sym_None, - ACTIONS(1239), 1, - sym_float, - ACTIONS(1245), 1, - anon_sym_sizeof, - ACTIONS(1247), 1, - sym_string_start, - ACTIONS(2715), 1, - anon_sym_LT, - ACTIONS(3770), 1, - anon_sym_STAR, - ACTIONS(3841), 1, - sym_identifier, - ACTIONS(3847), 1, - anon_sym_await, - STATE(2140), 1, - sym_string, - STATE(2432), 1, - sym_list_splat_pattern, - STATE(3189), 1, - sym_primary_expression, + [76019] = 7, + ACTIONS(3709), 1, + anon_sym_COMMA, + ACTIONS(3716), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3843), 2, - anon_sym_COMMA, + ACTIONS(3720), 2, anon_sym_COLON, - STATE(3135), 2, - sym_attribute, - sym_subscript, - ACTIONS(1237), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1308), 4, + anon_sym_EQ, + ACTIONS(3724), 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(3714), 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_TILDE, - ACTIONS(3845), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2549), 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, - [76183] = 22, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3703), 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, + [76085] = 22, ACTIONS(1213), 1, anon_sym_LPAREN, ACTIONS(1219), 1, @@ -183342,27 +184031,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2715), 1, + ACTIONS(2741), 1, anon_sym_LT, - ACTIONS(3770), 1, + ACTIONS(3780), 1, anon_sym_STAR, - ACTIONS(3849), 1, + ACTIONS(3824), 1, sym_identifier, - ACTIONS(3853), 1, + ACTIONS(3832), 1, anon_sym_await, - STATE(2140), 1, + STATE(2161), 1, sym_string, - STATE(2432), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(3203), 1, + STATE(3222), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3843), 2, + ACTIONS(3845), 2, anon_sym_RPAREN, anon_sym_COMMA, - STATE(3104), 2, + STATE(2691), 2, sym_attribute, sym_subscript, ACTIONS(1237), 3, @@ -183374,13 +184063,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3851), 5, + ACTIONS(3830), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2549), 18, + STATE(2401), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -183399,18 +184088,19 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [76279] = 7, - ACTIONS(586), 1, + [76181] = 8, + ACTIONS(1010), 1, anon_sym_COMMA, - ACTIONS(596), 1, + ACTIONS(1020), 1, anon_sym_COLON_EQ, + ACTIONS(1022), 1, + anon_sym_COLON, + ACTIONS(1025), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(598), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(612), 13, + ACTIONS(1039), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -183424,7 +184114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(581), 15, + ACTIONS(1005), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -183440,7 +184130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(579), 17, + ACTIONS(1003), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -183458,7 +184148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76345] = 22, + [76249] = 22, ACTIONS(1213), 1, anon_sym_LPAREN, ACTIONS(1219), 1, @@ -183475,27 +184165,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2715), 1, + ACTIONS(2741), 1, anon_sym_LT, - ACTIONS(3770), 1, + ACTIONS(3780), 1, anon_sym_STAR, - ACTIONS(3818), 1, + ACTIONS(3847), 1, sym_identifier, - ACTIONS(3826), 1, + ACTIONS(3853), 1, anon_sym_await, - STATE(2140), 1, + STATE(2161), 1, sym_string, - STATE(2432), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(3207), 1, + STATE(3219), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3855), 2, + ACTIONS(3849), 2, anon_sym_RPAREN, anon_sym_COMMA, - STATE(2696), 2, + STATE(3122), 2, sym_attribute, sym_subscript, ACTIONS(1237), 3, @@ -183507,13 +184197,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3824), 5, + ACTIONS(3851), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2549), 18, + STATE(2401), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -183532,7 +184222,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [76441] = 22, + [76345] = 22, ACTIONS(1213), 1, anon_sym_LPAREN, ACTIONS(1219), 1, @@ -183549,27 +184239,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2715), 1, + ACTIONS(2741), 1, anon_sym_LT, - ACTIONS(3770), 1, + ACTIONS(3780), 1, anon_sym_STAR, - ACTIONS(3818), 1, + ACTIONS(3855), 1, sym_identifier, - ACTIONS(3826), 1, + ACTIONS(3859), 1, anon_sym_await, - STATE(2140), 1, + STATE(2161), 1, sym_string, - STATE(2432), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(3207), 1, + STATE(3212), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3857), 2, - anon_sym_RPAREN, + ACTIONS(3849), 2, anon_sym_COMMA, - STATE(2696), 2, + anon_sym_COLON, + STATE(3137), 2, sym_attribute, sym_subscript, ACTIONS(1237), 3, @@ -183581,13 +184271,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3824), 5, + ACTIONS(3857), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2549), 18, + STATE(2401), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -183606,61 +184296,64 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [76537] = 20, - ACTIONS(2401), 1, + [76441] = 22, + ACTIONS(1213), 1, anon_sym_LPAREN, - ACTIONS(2407), 1, + ACTIONS(1219), 1, anon_sym_LBRACK, - ACTIONS(2411), 1, + ACTIONS(1223), 1, anon_sym_LBRACE, - ACTIONS(2415), 1, + ACTIONS(1233), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2417), 1, + ACTIONS(1235), 1, anon_sym_None, - ACTIONS(2419), 1, + ACTIONS(1239), 1, sym_float, - ACTIONS(2421), 1, - anon_sym_await, - ACTIONS(2423), 1, + ACTIONS(1245), 1, anon_sym_sizeof, - ACTIONS(2425), 1, + ACTIONS(1247), 1, sym_string_start, - ACTIONS(2551), 1, + ACTIONS(2741), 1, anon_sym_LT, - ACTIONS(2981), 1, + ACTIONS(3780), 1, anon_sym_STAR, - ACTIONS(3859), 1, - anon_sym_not, - STATE(2103), 1, + ACTIONS(3824), 1, + sym_identifier, + ACTIONS(3832), 1, + anon_sym_await, + STATE(2161), 1, sym_string, - STATE(2131), 1, - sym_primary_expression, - STATE(2309), 1, + STATE(2536), 1, sym_list_splat_pattern, + STATE(3222), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2399), 4, + ACTIONS(3861), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2691), 2, + sym_attribute, + sym_subscript, + ACTIONS(1237), 3, sym_integer, - sym_identifier, sym_true, sym_false, - ACTIONS(2409), 4, + ACTIONS(1308), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2405), 5, + ACTIONS(3830), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2377), 20, + STATE(2401), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -183677,184 +184370,16 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [76628] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3863), 16, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3861), 32, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [76685] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3867), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(3873), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3870), 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(3865), 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, - [76746] = 7, - ACTIONS(3877), 1, - anon_sym_PIPE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3867), 2, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(3875), 2, - anon_sym_DOT, - anon_sym_COLON, - ACTIONS(3873), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3870), 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(3865), 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, - [76811] = 6, - ACTIONS(3716), 1, + [76537] = 6, + ACTIONS(3870), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3881), 2, + ACTIONS(3865), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(3720), 13, + ACTIONS(3872), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -183868,7 +184393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(3884), 15, + ACTIONS(3868), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -183884,7 +184409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(3879), 17, + ACTIONS(3863), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -183902,160 +184427,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76874] = 20, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, - anon_sym_LBRACE, - ACTIONS(1233), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, - anon_sym_None, - ACTIONS(1239), 1, - sym_float, - ACTIONS(1245), 1, - anon_sym_sizeof, - ACTIONS(1247), 1, - sym_string_start, - ACTIONS(2397), 1, - anon_sym_await, - ACTIONS(2735), 1, - anon_sym_LT, - ACTIONS(3009), 1, - anon_sym_STAR, - ACTIONS(3859), 1, - anon_sym_not, - STATE(2140), 1, - sym_string, - STATE(2177), 1, - sym_primary_expression, - STATE(2432), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1227), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1237), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(1304), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2549), 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, - [76965] = 5, + [76600] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1300), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1498), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1297), 13, + ACTIONS(3876), 16, 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(1295), 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, - [77026] = 6, - ACTIONS(3716), 1, anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3705), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3720), 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(3710), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -184068,13 +184448,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(3699), 17, + ACTIONS(3874), 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, @@ -184086,82 +184468,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77089] = 20, - ACTIONS(1328), 1, - anon_sym_LBRACE, - ACTIONS(1332), 1, - anon_sym_LT, - ACTIONS(1338), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1340), 1, - anon_sym_None, - ACTIONS(1344), 1, - sym_float, - ACTIONS(1360), 1, - anon_sym_sizeof, - ACTIONS(1362), 1, - sym_string_start, - ACTIONS(1472), 1, - anon_sym_LBRACK, - ACTIONS(2427), 1, - anon_sym_LPAREN, - ACTIONS(2437), 1, - anon_sym_await, - ACTIONS(2939), 1, - anon_sym_STAR, - ACTIONS(3859), 1, - anon_sym_not, - STATE(2170), 1, - sym_string, - STATE(2224), 1, - sym_primary_expression, - STATE(2477), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1326), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1342), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2431), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2457), 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, - [77180] = 3, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [76657] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3888), 16, + ACTIONS(3876), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -184178,7 +184502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(3886), 32, + ACTIONS(3874), 32, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -184211,16 +184535,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [77237] = 6, - ACTIONS(3897), 1, + [76714] = 6, + ACTIONS(3880), 1, + anon_sym_COMMA, + ACTIONS(3887), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3892), 2, - anon_sym_COMMA, + ACTIONS(3885), 14, anon_sym_COLON, - ACTIONS(3899), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -184234,7 +184558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(3895), 15, + ACTIONS(3883), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -184250,7 +184574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(3890), 17, + ACTIONS(3878), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -184268,111 +184592,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77300] = 3, + [76777] = 20, + 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(83), 1, + sym_float, + ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, + sym_string_start, + ACTIONS(1281), 1, + anon_sym_LPAREN, + ACTIONS(1287), 1, + anon_sym_LBRACK, + ACTIONS(1293), 1, + anon_sym_await, + ACTIONS(3073), 1, + anon_sym_STAR, + ACTIONS(3889), 1, + anon_sym_not, + STATE(2043), 1, + sym_string, + STATE(2065), 1, + sym_primary_expression, + STATE(2088), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3903), 16, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_AT, + ACTIONS(65), 4, 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(3901), 32, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [77357] = 20, - ACTIONS(1907), 1, + anon_sym_TILDE, + ACTIONS(81), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1285), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2111), 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, + [76868] = 20, + ACTIONS(1943), 1, anon_sym_LPAREN, - ACTIONS(1913), 1, + ACTIONS(1949), 1, anon_sym_LBRACK, - ACTIONS(1917), 1, + ACTIONS(1953), 1, anon_sym_LBRACE, - ACTIONS(1921), 1, + ACTIONS(1957), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1923), 1, + ACTIONS(1959), 1, anon_sym_None, - ACTIONS(1925), 1, + ACTIONS(1961), 1, sym_float, - ACTIONS(1927), 1, + ACTIONS(1963), 1, anon_sym_await, - ACTIONS(1929), 1, + ACTIONS(1965), 1, anon_sym_sizeof, - ACTIONS(1931), 1, + ACTIONS(1967), 1, sym_string_start, - ACTIONS(2653), 1, - anon_sym_STAR, ACTIONS(2661), 1, + anon_sym_STAR, + ACTIONS(2669), 1, anon_sym_LT, - ACTIONS(3859), 1, + ACTIONS(3889), 1, anon_sym_not, - STATE(2073), 1, + STATE(2089), 1, sym_string, - STATE(2143), 1, + STATE(2164), 1, sym_primary_expression, - STATE(2357), 1, + STATE(2284), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1905), 4, + ACTIONS(1941), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1915), 4, + ACTIONS(1951), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1911), 5, + ACTIONS(1947), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2255), 20, + STATE(2257), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -184393,15 +184734,22 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [77448] = 3, + [76959] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3907), 16, + ACTIONS(1300), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1498), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1297), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -184412,19 +184760,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(3905), 32, + ACTIONS(1295), 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, @@ -184447,15 +184790,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [77505] = 3, + [77020] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3903), 16, + ACTIONS(3893), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(3899), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3896), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -184466,19 +184816,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(3901), 32, + ACTIONS(3891), 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, @@ -184501,64 +184846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [77562] = 6, - ACTIONS(3716), 1, - anon_sym_EQ, - ACTIONS(3881), 1, - anon_sym_COMMA, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3720), 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(3884), 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(3879), 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, - [77625] = 20, + [77081] = 20, ACTIONS(1382), 1, anon_sym_LBRACK, ACTIONS(1386), 1, @@ -184575,19 +184863,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1408), 1, sym_string_start, - ACTIONS(2439), 1, + ACTIONS(2397), 1, + anon_sym_STAR, + ACTIONS(2449), 1, anon_sym_LPAREN, - ACTIONS(2447), 1, + ACTIONS(2457), 1, anon_sym_await, - ACTIONS(3055), 1, - anon_sym_STAR, - ACTIONS(3859), 1, + ACTIONS(3889), 1, anon_sym_not, - STATE(2302), 1, + STATE(2393), 1, sym_string, - STATE(2559), 1, + STATE(2503), 1, sym_primary_expression, - STATE(2671), 1, + STATE(2644), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, @@ -184602,13 +184890,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_true, sym_false, - ACTIONS(2443), 5, + ACTIONS(2453), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2715), 20, + STATE(2651), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -184629,57 +184917,57 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [77716] = 20, - ACTIONS(67), 1, + [77172] = 20, + ACTIONS(2413), 1, + anon_sym_LPAREN, + ACTIONS(2419), 1, + anon_sym_LBRACK, + ACTIONS(2423), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(77), 1, + ACTIONS(2427), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(2429), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(2431), 1, sym_float, - ACTIONS(105), 1, + ACTIONS(2433), 1, + anon_sym_await, + ACTIONS(2435), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(2437), 1, sym_string_start, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(1293), 1, - anon_sym_await, - ACTIONS(3071), 1, + ACTIONS(2537), 1, + anon_sym_LT, + ACTIONS(3011), 1, anon_sym_STAR, - ACTIONS(3859), 1, + ACTIONS(3889), 1, anon_sym_not, - STATE(2034), 1, + STATE(2099), 1, sym_string, - STATE(2045), 1, + STATE(2174), 1, sym_primary_expression, - STATE(2088), 1, + STATE(2256), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(65), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(81), 4, + ACTIONS(2411), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1285), 5, + ACTIONS(2421), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2417), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2123), 20, + STATE(2298), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -184700,16 +184988,47 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [77807] = 6, - ACTIONS(3916), 1, - anon_sym_EQ, + [77263] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3911), 2, + ACTIONS(3903), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3901), 32, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - ACTIONS(3918), 13, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -184723,10 +185042,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(3914), 15, + [77320] = 20, + ACTIONS(1213), 1, + anon_sym_LPAREN, + ACTIONS(1219), 1, + anon_sym_LBRACK, + ACTIONS(1223), 1, + anon_sym_LBRACE, + ACTIONS(1233), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1235), 1, + anon_sym_None, + ACTIONS(1239), 1, + sym_float, + ACTIONS(1245), 1, + anon_sym_sizeof, + ACTIONS(1247), 1, + sym_string_start, + ACTIONS(2447), 1, + anon_sym_await, + ACTIONS(2705), 1, + anon_sym_LT, + ACTIONS(2955), 1, + anon_sym_STAR, + ACTIONS(3889), 1, + anon_sym_not, + STATE(2161), 1, + sym_string, + STATE(2211), 1, + sym_primary_expression, + STATE(2536), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1227), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1237), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1304), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2401), 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, + [77411] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3903), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -184739,13 +185134,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(3909), 17, + ACTIONS(3901), 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, @@ -184757,15 +185154,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77870] = 6, - ACTIONS(3705), 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, + [77468] = 6, + ACTIONS(3865), 1, anon_sym_COMMA, - ACTIONS(3716), 1, + ACTIONS(3870), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3720), 14, + ACTIONS(3872), 14, anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -184780,7 +185190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(3710), 15, + ACTIONS(3868), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -184796,7 +185206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(3699), 17, + ACTIONS(3863), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -184814,11 +185224,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77933] = 3, + [77531] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3922), 16, + ACTIONS(3907), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -184835,7 +185245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(3920), 32, + ACTIONS(3905), 32, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -184868,15 +185278,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [77990] = 6, - ACTIONS(3892), 1, + [77588] = 6, + ACTIONS(3709), 1, anon_sym_COMMA, - ACTIONS(3897), 1, + ACTIONS(3720), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3899), 14, + ACTIONS(3724), 14, anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -184891,7 +185301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(3895), 15, + ACTIONS(3714), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -184907,7 +185317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(3890), 17, + ACTIONS(3703), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -184925,57 +185335,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78053] = 20, - ACTIONS(2479), 1, + [77651] = 20, + ACTIONS(2461), 1, anon_sym_LPAREN, - ACTIONS(2485), 1, + ACTIONS(2467), 1, anon_sym_LBRACK, - ACTIONS(2489), 1, + ACTIONS(2471), 1, anon_sym_LBRACE, - ACTIONS(2493), 1, + ACTIONS(2475), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2495), 1, + ACTIONS(2477), 1, anon_sym_None, - ACTIONS(2497), 1, + ACTIONS(2479), 1, sym_float, - ACTIONS(2499), 1, + ACTIONS(2481), 1, anon_sym_await, - ACTIONS(2501), 1, + ACTIONS(2483), 1, anon_sym_sizeof, - ACTIONS(2503), 1, + ACTIONS(2485), 1, sym_string_start, - ACTIONS(2525), 1, + ACTIONS(2649), 1, anon_sym_LT, - ACTIONS(2947), 1, + ACTIONS(3103), 1, anon_sym_STAR, - ACTIONS(3859), 1, + ACTIONS(3889), 1, anon_sym_not, - STATE(2157), 1, + STATE(2200), 1, sym_string, - STATE(2179), 1, + STATE(2321), 1, sym_primary_expression, - STATE(2523), 1, + STATE(2589), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 4, + ACTIONS(2459), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2487), 4, + ACTIONS(2469), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2483), 5, + ACTIONS(2465), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2418), 20, + STATE(2630), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -184996,11 +185406,11 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [78144] = 3, + [77742] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3863), 16, + ACTIONS(3911), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -185017,7 +185427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(3861), 32, + ACTIONS(3909), 32, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -185050,15 +185460,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [78201] = 6, - ACTIONS(3911), 1, - anon_sym_COMMA, - ACTIONS(3916), 1, + [77799] = 6, + ACTIONS(3720), 1, anon_sym_EQ, + ACTIONS(3915), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3918), 14, + ACTIONS(3724), 14, anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -185073,7 +185483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(3914), 15, + ACTIONS(3918), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -185089,7 +185499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(3909), 17, + ACTIONS(3913), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -185107,126 +185517,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78264] = 20, - ACTIONS(2451), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_LBRACK, - ACTIONS(2461), 1, - anon_sym_LBRACE, - ACTIONS(2465), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2467), 1, - anon_sym_None, - ACTIONS(2469), 1, - sym_float, - ACTIONS(2471), 1, - anon_sym_await, - ACTIONS(2473), 1, - anon_sym_sizeof, - ACTIONS(2475), 1, - sym_string_start, - ACTIONS(2639), 1, - anon_sym_LT, - ACTIONS(3105), 1, - anon_sym_STAR, - ACTIONS(3859), 1, - anon_sym_not, - STATE(2218), 1, - sym_string, - STATE(2321), 1, - sym_primary_expression, - STATE(2591), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2449), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2459), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2455), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2631), 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, - [78355] = 19, - ACTIONS(67), 1, + [77862] = 20, + ACTIONS(1328), 1, anon_sym_LBRACE, - ACTIONS(71), 1, + ACTIONS(1332), 1, anon_sym_LT, - ACTIONS(77), 1, + ACTIONS(1338), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1340), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1344), 1, sym_float, - ACTIONS(105), 1, + ACTIONS(1360), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1362), 1, sym_string_start, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, + ACTIONS(1472), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(2377), 1, + anon_sym_LPAREN, + ACTIONS(2387), 1, anon_sym_await, - ACTIONS(3071), 1, + ACTIONS(2965), 1, anon_sym_STAR, - STATE(2034), 1, + ACTIONS(3889), 1, + anon_sym_not, + STATE(2147), 1, sym_string, - STATE(2050), 1, + STATE(2199), 1, sym_primary_expression, - STATE(2088), 1, + STATE(2472), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(65), 4, + ACTIONS(1326), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(81), 4, + ACTIONS(1342), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1285), 5, + ACTIONS(2381), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2123), 20, + STATE(2414), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -185247,55 +185588,57 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [78443] = 19, - ACTIONS(1213), 1, + [77953] = 20, + ACTIONS(2489), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(2495), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(2499), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(2503), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(2505), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(2507), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(2509), 1, + anon_sym_await, + ACTIONS(2511), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(2513), 1, sym_string_start, - ACTIONS(2397), 1, - anon_sym_await, - ACTIONS(2735), 1, + ACTIONS(2563), 1, anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(2943), 1, anon_sym_STAR, - STATE(2140), 1, - sym_string, + ACTIONS(3889), 1, + anon_sym_not, STATE(2177), 1, + sym_string, + STATE(2224), 1, sym_primary_expression, - STATE(2432), 1, + STATE(2415), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1227), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1237), 4, + ACTIONS(2487), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1304), 5, + ACTIONS(2497), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2493), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2549), 20, + STATE(2470), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -185316,331 +185659,338 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [78531] = 19, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, - anon_sym_LBRACE, - ACTIONS(1233), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, - anon_sym_None, - ACTIONS(1239), 1, - sym_float, - ACTIONS(1245), 1, - anon_sym_sizeof, - ACTIONS(1247), 1, - sym_string_start, - ACTIONS(1312), 1, - anon_sym_await, - ACTIONS(2715), 1, - anon_sym_LT, - ACTIONS(3770), 1, - anon_sym_STAR, - STATE(2140), 1, - sym_string, - STATE(2432), 1, - sym_list_splat_pattern, - STATE(3179), 1, - sym_primary_expression, + [78044] = 6, + ACTIONS(3720), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(1308), 4, + ACTIONS(3915), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(3724), 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(3918), 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_TILDE, - ACTIONS(1304), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2549), 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, - [78619] = 19, - ACTIONS(1213), 1, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3913), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(1219), 1, + anon_sym_as, + anon_sym_if, + anon_sym_in, anon_sym_LBRACK, - ACTIONS(1223), 1, - anon_sym_LBRACE, - ACTIONS(1233), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, - anon_sym_None, - ACTIONS(1239), 1, - sym_float, - ACTIONS(1245), 1, - anon_sym_sizeof, - ACTIONS(1247), 1, - sym_string_start, - ACTIONS(1312), 1, - anon_sym_await, - ACTIONS(2715), 1, - anon_sym_LT, - ACTIONS(3770), 1, - anon_sym_STAR, - STATE(2140), 1, - sym_string, - STATE(2432), 1, - sym_list_splat_pattern, - STATE(3180), 1, - sym_primary_expression, + 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, + [78107] = 6, + ACTIONS(3720), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(1308), 4, + ACTIONS(3709), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(3724), 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(3714), 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_TILDE, - ACTIONS(1304), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2549), 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, - [78707] = 19, - ACTIONS(1213), 1, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3703), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(1219), 1, + anon_sym_as, + anon_sym_if, + anon_sym_in, anon_sym_LBRACK, - ACTIONS(1223), 1, - anon_sym_LBRACE, - ACTIONS(1233), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, - anon_sym_None, - ACTIONS(1239), 1, - sym_float, - ACTIONS(1245), 1, - anon_sym_sizeof, - ACTIONS(1247), 1, - sym_string_start, - ACTIONS(1312), 1, - anon_sym_await, - ACTIONS(2715), 1, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [78170] = 7, + ACTIONS(3922), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3893), 2, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(3920), 2, + anon_sym_DOT, + anon_sym_COLON, + ACTIONS(3899), 3, + anon_sym_EQ, anon_sym_LT, - ACTIONS(3770), 1, + anon_sym_GT, + ACTIONS(3896), 12, anon_sym_STAR, - STATE(2140), 1, - sym_string, - STATE(2432), 1, - sym_list_splat_pattern, - STATE(3183), 1, - sym_primary_expression, + 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(3891), 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, + [78235] = 6, + ACTIONS(3887), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(1308), 4, + ACTIONS(3880), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(3885), 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(3883), 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_TILDE, - ACTIONS(1304), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2549), 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, - [78795] = 19, - ACTIONS(1213), 1, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3878), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(1219), 1, + anon_sym_as, + anon_sym_if, + anon_sym_in, anon_sym_LBRACK, - ACTIONS(1223), 1, - anon_sym_LBRACE, - ACTIONS(1233), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, - anon_sym_None, - ACTIONS(1239), 1, - sym_float, - ACTIONS(1245), 1, - anon_sym_sizeof, - ACTIONS(1247), 1, - sym_string_start, - ACTIONS(1312), 1, - anon_sym_await, - ACTIONS(2715), 1, - anon_sym_LT, - ACTIONS(3770), 1, - anon_sym_STAR, - STATE(2140), 1, - sym_string, - STATE(2432), 1, - sym_list_splat_pattern, - STATE(3185), 1, - sym_primary_expression, + 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, + [78298] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(1308), 4, + ACTIONS(3926), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1304), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2549), 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, - [78883] = 19, - ACTIONS(1213), 1, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3924), 32, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(1219), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_LBRACK, - ACTIONS(1223), 1, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [78355] = 19, + ACTIONS(2461), 1, + anon_sym_LPAREN, + ACTIONS(2467), 1, + anon_sym_LBRACK, + ACTIONS(2471), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(2475), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(2477), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(2479), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(2481), 1, + anon_sym_await, + ACTIONS(2483), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(2485), 1, sym_string_start, - ACTIONS(2397), 1, - anon_sym_await, - ACTIONS(2735), 1, + ACTIONS(2649), 1, anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(3103), 1, anon_sym_STAR, - STATE(2140), 1, + STATE(2200), 1, sym_string, - STATE(2173), 1, + STATE(2321), 1, sym_primary_expression, - STATE(2432), 1, + STATE(2589), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1227), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1237), 4, + ACTIONS(2459), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1304), 5, + ACTIONS(2469), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2465), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2549), 20, + STATE(2630), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -185661,7 +186011,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [78971] = 19, + [78443] = 19, ACTIONS(1213), 1, anon_sym_LPAREN, ACTIONS(1219), 1, @@ -185678,38 +186028,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2397), 1, + ACTIONS(1312), 1, anon_sym_await, - ACTIONS(2735), 1, + ACTIONS(2741), 1, anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(3780), 1, anon_sym_STAR, - STATE(2140), 1, + STATE(2161), 1, sym_string, - STATE(2178), 1, - sym_primary_expression, - STATE(2432), 1, + STATE(2536), 1, sym_list_splat_pattern, + STATE(3210), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1227), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, ACTIONS(1237), 4, sym_integer, sym_identifier, sym_true, sym_false, + ACTIONS(1308), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, ACTIONS(1304), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2549), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -185730,59 +186080,61 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [79059] = 19, - ACTIONS(2479), 1, + [78531] = 21, + ACTIONS(1213), 1, anon_sym_LPAREN, - ACTIONS(2485), 1, + ACTIONS(1219), 1, anon_sym_LBRACK, - ACTIONS(2489), 1, + ACTIONS(1223), 1, anon_sym_LBRACE, - ACTIONS(2493), 1, + ACTIONS(1233), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2495), 1, + ACTIONS(1235), 1, anon_sym_None, - ACTIONS(2497), 1, + ACTIONS(1239), 1, sym_float, - ACTIONS(2499), 1, - anon_sym_await, - ACTIONS(2501), 1, + ACTIONS(1245), 1, anon_sym_sizeof, - ACTIONS(2503), 1, + ACTIONS(1247), 1, sym_string_start, - ACTIONS(2525), 1, + ACTIONS(2741), 1, anon_sym_LT, - ACTIONS(2947), 1, + ACTIONS(3780), 1, anon_sym_STAR, - STATE(2157), 1, + ACTIONS(3928), 1, + sym_identifier, + ACTIONS(3932), 1, + anon_sym_await, + STATE(2161), 1, sym_string, - STATE(2179), 1, - sym_primary_expression, - STATE(2523), 1, + STATE(2536), 1, sym_list_splat_pattern, + STATE(3223), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 4, + STATE(2603), 2, + sym_attribute, + sym_subscript, + ACTIONS(1237), 3, sym_integer, - sym_identifier, sym_true, sym_false, - ACTIONS(2487), 4, + ACTIONS(1308), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2483), 5, + ACTIONS(3930), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2418), 20, + STATE(2401), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -185799,55 +186151,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [79147] = 19, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, + [78623] = 19, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2397), 1, + ACTIONS(1281), 1, + anon_sym_LPAREN, + ACTIONS(1287), 1, + anon_sym_LBRACK, + ACTIONS(1293), 1, anon_sym_await, - ACTIONS(2735), 1, - anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(3073), 1, anon_sym_STAR, - STATE(2140), 1, + STATE(2043), 1, sym_string, - STATE(2180), 1, + STATE(2060), 1, sym_primary_expression, - STATE(2432), 1, + STATE(2088), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1227), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1237), 4, + ACTIONS(81), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1304), 5, + ACTIONS(1285), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2549), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -185868,55 +186220,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [79235] = 19, - ACTIONS(1213), 1, + [78711] = 19, + ACTIONS(2489), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(2495), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(2499), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(2503), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(2505), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(2507), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(2509), 1, + anon_sym_await, + ACTIONS(2511), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(2513), 1, sym_string_start, - ACTIONS(2397), 1, - anon_sym_await, - ACTIONS(2735), 1, + ACTIONS(2563), 1, anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(2943), 1, anon_sym_STAR, - STATE(2140), 1, + STATE(2177), 1, sym_string, - STATE(2182), 1, + STATE(2185), 1, sym_primary_expression, - STATE(2432), 1, + STATE(2415), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1227), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1237), 4, + ACTIONS(2487), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1304), 5, + ACTIONS(2497), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2493), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2549), 20, + STATE(2470), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -185937,55 +186289,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [79323] = 19, - ACTIONS(1213), 1, + [78799] = 19, + ACTIONS(2489), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(2495), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(2499), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(2503), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(2505), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(2507), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(2509), 1, + anon_sym_await, + ACTIONS(2511), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(2513), 1, sym_string_start, - ACTIONS(2397), 1, - anon_sym_await, - ACTIONS(2735), 1, + ACTIONS(2563), 1, anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(2943), 1, anon_sym_STAR, - STATE(2140), 1, + STATE(2177), 1, sym_string, STATE(2183), 1, sym_primary_expression, - STATE(2432), 1, + STATE(2415), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1227), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1237), 4, + ACTIONS(2487), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1304), 5, + ACTIONS(2497), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2493), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2549), 20, + STATE(2470), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -186006,55 +186358,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [79411] = 19, - ACTIONS(2451), 1, + [78887] = 19, + ACTIONS(2489), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(2495), 1, anon_sym_LBRACK, - ACTIONS(2461), 1, + ACTIONS(2499), 1, anon_sym_LBRACE, - ACTIONS(2465), 1, + ACTIONS(2503), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2467), 1, + ACTIONS(2505), 1, anon_sym_None, - ACTIONS(2469), 1, + ACTIONS(2507), 1, sym_float, - ACTIONS(2471), 1, + ACTIONS(2509), 1, anon_sym_await, - ACTIONS(2473), 1, + ACTIONS(2511), 1, anon_sym_sizeof, - ACTIONS(2475), 1, + ACTIONS(2513), 1, sym_string_start, - ACTIONS(2639), 1, + ACTIONS(2563), 1, anon_sym_LT, - ACTIONS(3105), 1, + ACTIONS(2943), 1, anon_sym_STAR, - STATE(2218), 1, + STATE(2177), 1, sym_string, - STATE(2247), 1, + STATE(2186), 1, sym_primary_expression, - STATE(2591), 1, + STATE(2415), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2449), 4, + ACTIONS(2487), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2459), 4, + ACTIONS(2497), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2455), 5, + ACTIONS(2493), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2631), 20, + STATE(2470), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -186075,55 +186427,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [79499] = 19, - ACTIONS(1213), 1, + [78975] = 19, + ACTIONS(1943), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(1949), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1953), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1957), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1959), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1961), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(1963), 1, + anon_sym_await, + ACTIONS(1965), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1967), 1, sym_string_start, - ACTIONS(2397), 1, - anon_sym_await, - ACTIONS(2735), 1, - anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(2661), 1, anon_sym_STAR, - STATE(2140), 1, + ACTIONS(2669), 1, + anon_sym_LT, + STATE(2089), 1, sym_string, - STATE(2184), 1, + STATE(2152), 1, sym_primary_expression, - STATE(2432), 1, + STATE(2284), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1227), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1237), 4, + ACTIONS(1941), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1304), 5, + ACTIONS(1951), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1947), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2549), 20, + STATE(2257), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -186144,55 +186496,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [79587] = 19, - ACTIONS(1213), 1, + [79063] = 19, + ACTIONS(1943), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(1949), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1953), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1957), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1959), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1961), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(1963), 1, + anon_sym_await, + ACTIONS(1965), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1967), 1, sym_string_start, - ACTIONS(2397), 1, - anon_sym_await, - ACTIONS(2735), 1, - anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(2661), 1, anon_sym_STAR, - STATE(2140), 1, + ACTIONS(2669), 1, + anon_sym_LT, + STATE(2089), 1, sym_string, - STATE(2185), 1, + STATE(2140), 1, sym_primary_expression, - STATE(2432), 1, + STATE(2284), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1227), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1237), 4, + ACTIONS(1941), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1304), 5, + ACTIONS(1951), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1947), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2549), 20, + STATE(2257), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -186213,55 +186565,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [79675] = 19, - ACTIONS(2451), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, + [79151] = 19, + ACTIONS(1382), 1, anon_sym_LBRACK, - ACTIONS(2461), 1, + ACTIONS(1386), 1, anon_sym_LBRACE, - ACTIONS(2465), 1, + ACTIONS(1390), 1, + anon_sym_LT, + ACTIONS(1394), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2467), 1, + ACTIONS(1396), 1, anon_sym_None, - ACTIONS(2469), 1, + ACTIONS(1400), 1, sym_float, - ACTIONS(2471), 1, - anon_sym_await, - ACTIONS(2473), 1, + ACTIONS(1406), 1, anon_sym_sizeof, - ACTIONS(2475), 1, + ACTIONS(1408), 1, sym_string_start, - ACTIONS(2639), 1, - anon_sym_LT, - ACTIONS(3105), 1, + ACTIONS(2397), 1, anon_sym_STAR, - STATE(2218), 1, + ACTIONS(2449), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + anon_sym_await, + STATE(2393), 1, sym_string, - STATE(2260), 1, + STATE(2503), 1, sym_primary_expression, - STATE(2591), 1, + STATE(2644), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, - sym_line_continuation, - ACTIONS(2449), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2459), 4, + sym_line_continuation, + ACTIONS(1384), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2455), 5, + ACTIONS(1398), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2453), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2631), 20, + STATE(2651), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -186282,55 +186634,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [79763] = 19, - ACTIONS(2451), 1, + [79239] = 19, + ACTIONS(2489), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(2495), 1, anon_sym_LBRACK, - ACTIONS(2461), 1, + ACTIONS(2499), 1, anon_sym_LBRACE, - ACTIONS(2465), 1, + ACTIONS(2503), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2467), 1, + ACTIONS(2505), 1, anon_sym_None, - ACTIONS(2469), 1, + ACTIONS(2507), 1, sym_float, - ACTIONS(2471), 1, + ACTIONS(2509), 1, anon_sym_await, - ACTIONS(2473), 1, + ACTIONS(2511), 1, anon_sym_sizeof, - ACTIONS(2475), 1, + ACTIONS(2513), 1, sym_string_start, - ACTIONS(2639), 1, + ACTIONS(2563), 1, anon_sym_LT, - ACTIONS(3105), 1, + ACTIONS(2943), 1, anon_sym_STAR, - STATE(2218), 1, + STATE(2177), 1, sym_string, - STATE(2266), 1, + STATE(2187), 1, sym_primary_expression, - STATE(2591), 1, + STATE(2415), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2449), 4, + ACTIONS(2487), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2459), 4, + ACTIONS(2497), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2455), 5, + ACTIONS(2493), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2631), 20, + STATE(2470), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -186351,55 +186703,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [79851] = 19, - ACTIONS(2451), 1, + [79327] = 19, + ACTIONS(1943), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(1949), 1, anon_sym_LBRACK, - ACTIONS(2461), 1, + ACTIONS(1953), 1, anon_sym_LBRACE, - ACTIONS(2465), 1, + ACTIONS(1957), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2467), 1, + ACTIONS(1959), 1, anon_sym_None, - ACTIONS(2469), 1, + ACTIONS(1961), 1, sym_float, - ACTIONS(2471), 1, + ACTIONS(1963), 1, anon_sym_await, - ACTIONS(2473), 1, + ACTIONS(1965), 1, anon_sym_sizeof, - ACTIONS(2475), 1, + ACTIONS(1967), 1, sym_string_start, - ACTIONS(2639), 1, - anon_sym_LT, - ACTIONS(3105), 1, + ACTIONS(2661), 1, anon_sym_STAR, - STATE(2218), 1, + ACTIONS(2669), 1, + anon_sym_LT, + STATE(2089), 1, sym_string, - STATE(2304), 1, + STATE(2155), 1, sym_primary_expression, - STATE(2591), 1, + STATE(2284), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2449), 4, + ACTIONS(1941), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2459), 4, + ACTIONS(1951), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2455), 5, + ACTIONS(1947), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2631), 20, + STATE(2257), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -186420,55 +186772,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [79939] = 19, - ACTIONS(2451), 1, + [79415] = 19, + ACTIONS(1943), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(1949), 1, anon_sym_LBRACK, - ACTIONS(2461), 1, + ACTIONS(1953), 1, anon_sym_LBRACE, - ACTIONS(2465), 1, + ACTIONS(1957), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2467), 1, + ACTIONS(1959), 1, anon_sym_None, - ACTIONS(2469), 1, + ACTIONS(1961), 1, sym_float, - ACTIONS(2471), 1, + ACTIONS(1963), 1, anon_sym_await, - ACTIONS(2473), 1, + ACTIONS(1965), 1, anon_sym_sizeof, - ACTIONS(2475), 1, + ACTIONS(1967), 1, sym_string_start, - ACTIONS(2639), 1, - anon_sym_LT, - ACTIONS(3105), 1, + ACTIONS(2661), 1, anon_sym_STAR, - STATE(2218), 1, + ACTIONS(2669), 1, + anon_sym_LT, + STATE(2089), 1, sym_string, - STATE(2305), 1, + STATE(2158), 1, sym_primary_expression, - STATE(2591), 1, + STATE(2284), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2449), 4, + ACTIONS(1941), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2459), 4, + ACTIONS(1951), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2455), 5, + ACTIONS(1947), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2631), 20, + STATE(2257), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -186489,7 +186841,84 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [80027] = 19, + [79503] = 27, + ACTIONS(125), 1, + anon_sym_class, + ACTIONS(133), 1, + anon_sym_ctypedef, + ACTIONS(3934), 1, + sym_identifier, + ACTIONS(3936), 1, + anon_sym_LPAREN, + ACTIONS(3938), 1, + anon_sym_pass, + ACTIONS(3948), 1, + anon_sym_long, + ACTIONS(3954), 1, + anon_sym_enum, + ACTIONS(3956), 1, + anon_sym_cppclass, + ACTIONS(3958), 1, + anon_sym_fused, + ACTIONS(3960), 1, + sym_string_start, + STATE(3198), 1, + sym__signedness, + STATE(3409), 1, + sym__longness, + STATE(3461), 1, + sym_c_type, + STATE(5548), 1, + sym_pass_statement, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3940), 2, + anon_sym_cdef, + anon_sym_cpdef, + ACTIONS(3944), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(3946), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(3950), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(3952), 2, + anon_sym_struct, + anon_sym_union, + STATE(2799), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(3668), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(3942), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(715), 3, + sym_struct, + sym_enum, + sym_cppclass, + STATE(730), 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(2016), 5, + sym_string, + sym_cdef_type_declaration, + sym_cvar_decl, + sym_ctypedef_statement, + aux_sym_extern_suite_repeat1, + [79607] = 21, ACTIONS(1213), 1, anon_sym_LPAREN, ACTIONS(1219), 1, @@ -186506,24 +186935,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(1312), 1, - anon_sym_await, - ACTIONS(2715), 1, + ACTIONS(2741), 1, anon_sym_LT, - ACTIONS(3770), 1, + ACTIONS(3780), 1, anon_sym_STAR, - STATE(2140), 1, + ACTIONS(3962), 1, + sym_identifier, + ACTIONS(3966), 1, + anon_sym_await, + STATE(2161), 1, sym_string, - STATE(2432), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(3186), 1, + STATE(3194), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 4, + STATE(1888), 2, + sym_attribute, + sym_subscript, + ACTIONS(1237), 3, sym_integer, - sym_identifier, sym_true, sym_false, ACTIONS(1308), 4, @@ -186531,17 +186964,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1304), 5, + ACTIONS(3964), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2549), 20, + STATE(2401), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -186558,61 +186989,59 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [80115] = 21, - ACTIONS(1213), 1, + [79699] = 19, + ACTIONS(1943), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(1949), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1953), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1957), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1959), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1961), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(1963), 1, + anon_sym_await, + ACTIONS(1965), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1967), 1, sym_string_start, - ACTIONS(2715), 1, - anon_sym_LT, - ACTIONS(3770), 1, + ACTIONS(2661), 1, anon_sym_STAR, - ACTIONS(3924), 1, - sym_identifier, - ACTIONS(3928), 1, - anon_sym_await, - STATE(2140), 1, + ACTIONS(2669), 1, + anon_sym_LT, + STATE(2089), 1, sym_string, - STATE(2432), 1, - sym_list_splat_pattern, - STATE(3172), 1, + STATE(2141), 1, sym_primary_expression, + STATE(2284), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1874), 2, - sym_attribute, - sym_subscript, - ACTIONS(1237), 3, + ACTIONS(1941), 4, sym_integer, + sym_identifier, sym_true, sym_false, - ACTIONS(1308), 4, + ACTIONS(1951), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3926), 5, + ACTIONS(1947), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2549), 18, + STATE(2257), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -186629,55 +187058,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [80207] = 19, - ACTIONS(67), 1, + [79787] = 19, + ACTIONS(1943), 1, + anon_sym_LPAREN, + ACTIONS(1949), 1, + anon_sym_LBRACK, + ACTIONS(1953), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(77), 1, + ACTIONS(1957), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1959), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1961), 1, sym_float, - ACTIONS(105), 1, + ACTIONS(1963), 1, + anon_sym_await, + ACTIONS(1965), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1967), 1, sym_string_start, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(1293), 1, - anon_sym_await, - ACTIONS(3071), 1, + ACTIONS(2661), 1, anon_sym_STAR, - STATE(2034), 1, + ACTIONS(2669), 1, + anon_sym_LT, + STATE(2089), 1, sym_string, - STATE(2047), 1, + STATE(2142), 1, sym_primary_expression, - STATE(2088), 1, + STATE(2284), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(65), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(81), 4, + ACTIONS(1941), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1285), 5, + ACTIONS(1951), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1947), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2123), 20, + STATE(2257), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -186698,55 +187127,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [80295] = 19, - ACTIONS(1328), 1, + [79875] = 19, + ACTIONS(1943), 1, + anon_sym_LPAREN, + ACTIONS(1949), 1, + anon_sym_LBRACK, + ACTIONS(1953), 1, anon_sym_LBRACE, - ACTIONS(1332), 1, - anon_sym_LT, - ACTIONS(1338), 1, + ACTIONS(1957), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1340), 1, + ACTIONS(1959), 1, anon_sym_None, - ACTIONS(1344), 1, + ACTIONS(1961), 1, sym_float, - ACTIONS(1360), 1, + ACTIONS(1963), 1, + anon_sym_await, + ACTIONS(1965), 1, anon_sym_sizeof, - ACTIONS(1362), 1, + ACTIONS(1967), 1, sym_string_start, - ACTIONS(1472), 1, - anon_sym_LBRACK, - ACTIONS(2427), 1, - anon_sym_LPAREN, - ACTIONS(2437), 1, - anon_sym_await, - ACTIONS(2939), 1, + ACTIONS(2661), 1, anon_sym_STAR, - STATE(2170), 1, + ACTIONS(2669), 1, + anon_sym_LT, + STATE(2089), 1, sym_string, - STATE(2222), 1, + STATE(2150), 1, sym_primary_expression, - STATE(2477), 1, + STATE(2284), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1326), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1342), 4, + ACTIONS(1941), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2431), 5, + ACTIONS(1951), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1947), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2457), 20, + STATE(2257), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -186767,55 +187196,132 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [80383] = 19, - ACTIONS(1328), 1, + [79963] = 27, + ACTIONS(125), 1, + anon_sym_class, + ACTIONS(371), 1, + anon_sym_long, + ACTIONS(3954), 1, + anon_sym_enum, + ACTIONS(3956), 1, + anon_sym_cppclass, + ACTIONS(3958), 1, + anon_sym_fused, + ACTIONS(3968), 1, + sym_identifier, + ACTIONS(3972), 1, + anon_sym_COLON, + ACTIONS(3974), 1, + anon_sym_api, + ACTIONS(3976), 1, + anon_sym_extern, + ACTIONS(3978), 1, + anon_sym_operator, + STATE(3140), 1, + sym__signedness, + STATE(3191), 1, + sym_int_type, + STATE(3368), 1, + sym__longness, + STATE(3562), 1, + sym_operator_name, + STATE(3810), 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(3952), 2, + anon_sym_struct, + anon_sym_union, + ACTIONS(3980), 2, + anon_sym_const, + anon_sym_volatile, + STATE(2462), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(365), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(715), 3, + sym_struct, + sym_enum, + sym_cppclass, + STATE(730), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + ACTIONS(103), 4, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(1733), 4, + sym_cdef_definition_block, + sym_cvar_def, + sym_cdef_type_declaration, + sym_extern_block, + ACTIONS(3970), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + [80067] = 19, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1332), 1, + ACTIONS(71), 1, anon_sym_LT, - ACTIONS(1338), 1, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1340), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1344), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(1360), 1, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(1362), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(1472), 1, - anon_sym_LBRACK, - ACTIONS(2427), 1, + ACTIONS(1281), 1, anon_sym_LPAREN, - ACTIONS(2437), 1, + ACTIONS(1287), 1, + anon_sym_LBRACK, + ACTIONS(1293), 1, anon_sym_await, - ACTIONS(2939), 1, + ACTIONS(3073), 1, anon_sym_STAR, - STATE(2170), 1, + STATE(2043), 1, sym_string, - STATE(2223), 1, + STATE(2049), 1, sym_primary_expression, - STATE(2477), 1, + STATE(2088), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1326), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1342), 4, + ACTIONS(81), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2431), 5, + ACTIONS(1285), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2457), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -186836,55 +187342,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [80471] = 19, - ACTIONS(1328), 1, + [80155] = 19, + ACTIONS(2489), 1, + anon_sym_LPAREN, + ACTIONS(2495), 1, + anon_sym_LBRACK, + ACTIONS(2499), 1, anon_sym_LBRACE, - ACTIONS(1332), 1, - anon_sym_LT, - ACTIONS(1338), 1, + ACTIONS(2503), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1340), 1, + ACTIONS(2505), 1, anon_sym_None, - ACTIONS(1344), 1, + ACTIONS(2507), 1, sym_float, - ACTIONS(1360), 1, + ACTIONS(2509), 1, + anon_sym_await, + ACTIONS(2511), 1, anon_sym_sizeof, - ACTIONS(1362), 1, + ACTIONS(2513), 1, sym_string_start, - ACTIONS(1472), 1, - anon_sym_LBRACK, - ACTIONS(2427), 1, - anon_sym_LPAREN, - ACTIONS(2437), 1, - anon_sym_await, - ACTIONS(2939), 1, + ACTIONS(2563), 1, + anon_sym_LT, + ACTIONS(2943), 1, anon_sym_STAR, - STATE(2170), 1, + STATE(2177), 1, sym_string, - STATE(2224), 1, + STATE(2188), 1, sym_primary_expression, - STATE(2477), 1, + STATE(2415), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1326), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1342), 4, + ACTIONS(2487), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2431), 5, + ACTIONS(2497), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2493), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2457), 20, + STATE(2470), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -186905,55 +187411,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [80559] = 19, - ACTIONS(1328), 1, + [80243] = 19, + ACTIONS(2413), 1, + anon_sym_LPAREN, + ACTIONS(2419), 1, + anon_sym_LBRACK, + ACTIONS(2423), 1, anon_sym_LBRACE, - ACTIONS(1332), 1, - anon_sym_LT, - ACTIONS(1338), 1, + ACTIONS(2427), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1340), 1, + ACTIONS(2429), 1, anon_sym_None, - ACTIONS(1344), 1, + ACTIONS(2431), 1, sym_float, - ACTIONS(1360), 1, + ACTIONS(2433), 1, + anon_sym_await, + ACTIONS(2435), 1, anon_sym_sizeof, - ACTIONS(1362), 1, - sym_string_start, - ACTIONS(1472), 1, - anon_sym_LBRACK, - ACTIONS(2427), 1, - anon_sym_LPAREN, ACTIONS(2437), 1, - anon_sym_await, - ACTIONS(2939), 1, + sym_string_start, + ACTIONS(2537), 1, + anon_sym_LT, + ACTIONS(3011), 1, anon_sym_STAR, - STATE(2170), 1, + STATE(2099), 1, sym_string, - STATE(2225), 1, + STATE(2174), 1, sym_primary_expression, - STATE(2477), 1, + STATE(2256), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1326), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1342), 4, + ACTIONS(2411), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2431), 5, + ACTIONS(2421), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2417), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2457), 20, + STATE(2298), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -186974,59 +187480,61 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [80647] = 19, - ACTIONS(1328), 1, + [80331] = 21, + ACTIONS(1213), 1, + anon_sym_LPAREN, + ACTIONS(1219), 1, + anon_sym_LBRACK, + ACTIONS(1223), 1, anon_sym_LBRACE, - ACTIONS(1332), 1, - anon_sym_LT, - ACTIONS(1338), 1, + ACTIONS(1233), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1340), 1, + ACTIONS(1235), 1, anon_sym_None, - ACTIONS(1344), 1, + ACTIONS(1239), 1, sym_float, - ACTIONS(1360), 1, + ACTIONS(1245), 1, anon_sym_sizeof, - ACTIONS(1362), 1, + ACTIONS(1247), 1, sym_string_start, - ACTIONS(1472), 1, - anon_sym_LBRACK, - ACTIONS(2427), 1, - anon_sym_LPAREN, - ACTIONS(2437), 1, - anon_sym_await, - ACTIONS(2939), 1, + ACTIONS(2741), 1, + anon_sym_LT, + ACTIONS(3780), 1, anon_sym_STAR, - STATE(2170), 1, + ACTIONS(3982), 1, + sym_identifier, + ACTIONS(3986), 1, + anon_sym_await, + STATE(2161), 1, sym_string, - STATE(2226), 1, - sym_primary_expression, - STATE(2477), 1, + STATE(2536), 1, sym_list_splat_pattern, + STATE(3212), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1326), 4, + STATE(2255), 2, + sym_attribute, + sym_subscript, + ACTIONS(1237), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1308), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1342), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2431), 5, + ACTIONS(3984), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2457), 20, + STATE(2401), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -187043,55 +187551,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [80735] = 19, - ACTIONS(1328), 1, + [80423] = 19, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1332), 1, + ACTIONS(71), 1, anon_sym_LT, - ACTIONS(1338), 1, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1340), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1344), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(1360), 1, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(1362), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(1472), 1, - anon_sym_LBRACK, - ACTIONS(2427), 1, + ACTIONS(1281), 1, anon_sym_LPAREN, - ACTIONS(2437), 1, + ACTIONS(1287), 1, + anon_sym_LBRACK, + ACTIONS(1293), 1, anon_sym_await, - ACTIONS(2939), 1, + ACTIONS(3073), 1, anon_sym_STAR, - STATE(2170), 1, + STATE(2043), 1, sym_string, - STATE(2227), 1, + STATE(2054), 1, sym_primary_expression, - STATE(2477), 1, + STATE(2088), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1326), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1342), 4, + ACTIONS(81), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2431), 5, + ACTIONS(1285), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2457), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -187112,59 +187620,61 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [80823] = 19, - ACTIONS(1328), 1, + [80511] = 21, + ACTIONS(1213), 1, + anon_sym_LPAREN, + ACTIONS(1219), 1, + anon_sym_LBRACK, + ACTIONS(1223), 1, anon_sym_LBRACE, - ACTIONS(1332), 1, - anon_sym_LT, - ACTIONS(1338), 1, + ACTIONS(1233), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1340), 1, + ACTIONS(1235), 1, anon_sym_None, - ACTIONS(1344), 1, + ACTIONS(1239), 1, sym_float, - ACTIONS(1360), 1, + ACTIONS(1245), 1, anon_sym_sizeof, - ACTIONS(1362), 1, + ACTIONS(1247), 1, sym_string_start, - ACTIONS(1472), 1, - anon_sym_LBRACK, - ACTIONS(2427), 1, - anon_sym_LPAREN, - ACTIONS(2437), 1, - anon_sym_await, - ACTIONS(2939), 1, + ACTIONS(2741), 1, + anon_sym_LT, + ACTIONS(3780), 1, anon_sym_STAR, - STATE(2170), 1, + ACTIONS(3986), 1, + anon_sym_await, + ACTIONS(3988), 1, + sym_identifier, + STATE(2161), 1, sym_string, - STATE(2228), 1, - sym_primary_expression, - STATE(2477), 1, + STATE(2536), 1, sym_list_splat_pattern, + STATE(3212), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1326), 4, + STATE(2255), 2, + sym_attribute, + sym_subscript, + ACTIONS(1237), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1308), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1342), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2431), 5, + ACTIONS(3984), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2457), 20, + STATE(2401), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -187181,55 +187691,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [80911] = 19, - ACTIONS(1328), 1, + [80603] = 19, + ACTIONS(1213), 1, + anon_sym_LPAREN, + ACTIONS(1219), 1, + anon_sym_LBRACK, + ACTIONS(1223), 1, anon_sym_LBRACE, - ACTIONS(1332), 1, - anon_sym_LT, - ACTIONS(1338), 1, + ACTIONS(1233), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1340), 1, + ACTIONS(1235), 1, anon_sym_None, - ACTIONS(1344), 1, + ACTIONS(1239), 1, sym_float, - ACTIONS(1360), 1, + ACTIONS(1245), 1, anon_sym_sizeof, - ACTIONS(1362), 1, + ACTIONS(1247), 1, sym_string_start, - ACTIONS(1472), 1, - anon_sym_LBRACK, - ACTIONS(2427), 1, - anon_sym_LPAREN, - ACTIONS(2437), 1, + ACTIONS(2447), 1, anon_sym_await, - ACTIONS(2939), 1, + ACTIONS(2705), 1, + anon_sym_LT, + ACTIONS(2955), 1, anon_sym_STAR, - STATE(2170), 1, + STATE(2161), 1, sym_string, - STATE(2229), 1, + STATE(2214), 1, sym_primary_expression, - STATE(2477), 1, + STATE(2536), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1326), 4, + ACTIONS(1227), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1342), 4, + ACTIONS(1237), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2431), 5, + ACTIONS(1304), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2457), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -187250,59 +187760,61 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [80999] = 19, - ACTIONS(2451), 1, + [80691] = 21, + ACTIONS(1213), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(1219), 1, anon_sym_LBRACK, - ACTIONS(2461), 1, + ACTIONS(1223), 1, anon_sym_LBRACE, - ACTIONS(2465), 1, + ACTIONS(1233), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2467), 1, + ACTIONS(1235), 1, anon_sym_None, - ACTIONS(2469), 1, + ACTIONS(1239), 1, sym_float, - ACTIONS(2471), 1, - anon_sym_await, - ACTIONS(2473), 1, + ACTIONS(1245), 1, anon_sym_sizeof, - ACTIONS(2475), 1, + ACTIONS(1247), 1, sym_string_start, - ACTIONS(2639), 1, + ACTIONS(2741), 1, anon_sym_LT, - ACTIONS(3105), 1, + ACTIONS(3780), 1, anon_sym_STAR, - STATE(2218), 1, + ACTIONS(3990), 1, + sym_identifier, + ACTIONS(3994), 1, + anon_sym_await, + STATE(2161), 1, sym_string, - STATE(2316), 1, - sym_primary_expression, - STATE(2591), 1, + STATE(2536), 1, sym_list_splat_pattern, + STATE(3219), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2449), 4, + STATE(3125), 2, + sym_attribute, + sym_subscript, + ACTIONS(1237), 3, sym_integer, - sym_identifier, sym_true, sym_false, - ACTIONS(2459), 4, + ACTIONS(1308), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2455), 5, + ACTIONS(3992), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2631), 20, + STATE(2401), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -187319,7 +187831,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [81087] = 21, + [80783] = 19, ACTIONS(1213), 1, anon_sym_LPAREN, ACTIONS(1219), 1, @@ -187336,28 +187848,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2715), 1, + ACTIONS(1312), 1, + anon_sym_await, + ACTIONS(2741), 1, anon_sym_LT, - ACTIONS(3770), 1, + ACTIONS(3780), 1, anon_sym_STAR, - ACTIONS(3930), 1, - sym_identifier, - ACTIONS(3934), 1, - anon_sym_await, - STATE(2140), 1, + STATE(2161), 1, sym_string, - STATE(2432), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(3189), 1, + STATE(3230), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2306), 2, - sym_attribute, - sym_subscript, - ACTIONS(1237), 3, + ACTIONS(1237), 4, sym_integer, + sym_identifier, sym_true, sym_false, ACTIONS(1308), 4, @@ -187365,15 +187873,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3932), 5, + ACTIONS(1304), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2549), 18, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -187390,55 +187900,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [81179] = 19, - ACTIONS(2451), 1, + [80871] = 19, + ACTIONS(1213), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(1219), 1, anon_sym_LBRACK, - ACTIONS(2461), 1, + ACTIONS(1223), 1, anon_sym_LBRACE, - ACTIONS(2465), 1, + ACTIONS(1233), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2467), 1, + ACTIONS(1235), 1, anon_sym_None, - ACTIONS(2469), 1, + ACTIONS(1239), 1, sym_float, - ACTIONS(2471), 1, - anon_sym_await, - ACTIONS(2473), 1, + ACTIONS(1245), 1, anon_sym_sizeof, - ACTIONS(2475), 1, + ACTIONS(1247), 1, sym_string_start, - ACTIONS(2639), 1, + ACTIONS(1312), 1, + anon_sym_await, + ACTIONS(2741), 1, anon_sym_LT, - ACTIONS(3105), 1, + ACTIONS(3780), 1, anon_sym_STAR, - STATE(2218), 1, + STATE(2161), 1, sym_string, - STATE(2318), 1, - sym_primary_expression, - STATE(2591), 1, + STATE(2536), 1, sym_list_splat_pattern, + STATE(3231), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2449), 4, + ACTIONS(1237), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2459), 4, + ACTIONS(1308), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2455), 5, + ACTIONS(1304), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2631), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -187459,55 +187969,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [81267] = 19, - ACTIONS(1328), 1, + [80959] = 19, + ACTIONS(1213), 1, + anon_sym_LPAREN, + ACTIONS(1219), 1, + anon_sym_LBRACK, + ACTIONS(1223), 1, anon_sym_LBRACE, - ACTIONS(1332), 1, - anon_sym_LT, - ACTIONS(1338), 1, + ACTIONS(1233), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1340), 1, + ACTIONS(1235), 1, anon_sym_None, - ACTIONS(1344), 1, + ACTIONS(1239), 1, sym_float, - ACTIONS(1360), 1, + ACTIONS(1245), 1, anon_sym_sizeof, - ACTIONS(1362), 1, + ACTIONS(1247), 1, sym_string_start, - ACTIONS(1472), 1, - anon_sym_LBRACK, - ACTIONS(2427), 1, - anon_sym_LPAREN, - ACTIONS(2437), 1, + ACTIONS(2447), 1, anon_sym_await, - ACTIONS(2939), 1, + ACTIONS(2705), 1, + anon_sym_LT, + ACTIONS(2955), 1, anon_sym_STAR, - STATE(2170), 1, + STATE(2161), 1, sym_string, - STATE(2205), 1, + STATE(2211), 1, sym_primary_expression, - STATE(2477), 1, + STATE(2536), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1326), 4, + ACTIONS(1227), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1342), 4, + ACTIONS(1237), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2431), 5, + ACTIONS(1304), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2457), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -187528,7 +188038,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [81355] = 21, + [81047] = 19, ACTIONS(1213), 1, anon_sym_LPAREN, ACTIONS(1219), 1, @@ -187545,28 +188055,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2715), 1, + ACTIONS(1312), 1, + anon_sym_await, + ACTIONS(2741), 1, anon_sym_LT, - ACTIONS(3770), 1, + ACTIONS(3780), 1, anon_sym_STAR, - ACTIONS(3936), 1, - sym_identifier, - ACTIONS(3940), 1, - anon_sym_await, - STATE(2140), 1, + STATE(2161), 1, sym_string, - STATE(2432), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(3189), 1, + STATE(3232), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3126), 2, - sym_attribute, - sym_subscript, - ACTIONS(1237), 3, + ACTIONS(1237), 4, sym_integer, + sym_identifier, sym_true, sym_false, ACTIONS(1308), 4, @@ -187574,15 +188080,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3938), 5, + ACTIONS(1304), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2549), 18, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -187599,55 +188107,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [81447] = 19, - ACTIONS(2479), 1, + [81135] = 19, + ACTIONS(1213), 1, anon_sym_LPAREN, - ACTIONS(2485), 1, + ACTIONS(1219), 1, anon_sym_LBRACK, - ACTIONS(2489), 1, + ACTIONS(1223), 1, anon_sym_LBRACE, - ACTIONS(2493), 1, + ACTIONS(1233), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2495), 1, + ACTIONS(1235), 1, anon_sym_None, - ACTIONS(2497), 1, + ACTIONS(1239), 1, sym_float, - ACTIONS(2499), 1, - anon_sym_await, - ACTIONS(2501), 1, + ACTIONS(1245), 1, anon_sym_sizeof, - ACTIONS(2503), 1, + ACTIONS(1247), 1, sym_string_start, - ACTIONS(2525), 1, + ACTIONS(1312), 1, + anon_sym_await, + ACTIONS(2741), 1, anon_sym_LT, - ACTIONS(2947), 1, + ACTIONS(3780), 1, anon_sym_STAR, - STATE(2157), 1, + STATE(2161), 1, sym_string, - STATE(2181), 1, - sym_primary_expression, - STATE(2523), 1, + STATE(2536), 1, sym_list_splat_pattern, + STATE(3233), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 4, + ACTIONS(1237), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2487), 4, + ACTIONS(1308), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2483), 5, + ACTIONS(1304), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2418), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -187668,55 +188176,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [81535] = 19, - ACTIONS(2479), 1, + [81223] = 19, + ACTIONS(1213), 1, anon_sym_LPAREN, - ACTIONS(2485), 1, + ACTIONS(1219), 1, anon_sym_LBRACK, - ACTIONS(2489), 1, + ACTIONS(1223), 1, anon_sym_LBRACE, - ACTIONS(2493), 1, + ACTIONS(1233), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2495), 1, + ACTIONS(1235), 1, anon_sym_None, - ACTIONS(2497), 1, + ACTIONS(1239), 1, sym_float, - ACTIONS(2499), 1, - anon_sym_await, - ACTIONS(2501), 1, + ACTIONS(1245), 1, anon_sym_sizeof, - ACTIONS(2503), 1, + ACTIONS(1247), 1, sym_string_start, - ACTIONS(2525), 1, + ACTIONS(1312), 1, + anon_sym_await, + ACTIONS(2741), 1, anon_sym_LT, - ACTIONS(2947), 1, + ACTIONS(3780), 1, anon_sym_STAR, - STATE(2157), 1, + STATE(2161), 1, sym_string, - STATE(2186), 1, - sym_primary_expression, - STATE(2523), 1, + STATE(2536), 1, sym_list_splat_pattern, + STATE(3234), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 4, + ACTIONS(1237), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2487), 4, + ACTIONS(1308), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2483), 5, + ACTIONS(1304), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2418), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -187737,55 +188245,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [81623] = 19, - ACTIONS(2401), 1, + [81311] = 19, + ACTIONS(1213), 1, anon_sym_LPAREN, - ACTIONS(2407), 1, + ACTIONS(1219), 1, anon_sym_LBRACK, - ACTIONS(2411), 1, + ACTIONS(1223), 1, anon_sym_LBRACE, - ACTIONS(2415), 1, + ACTIONS(1233), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2417), 1, + ACTIONS(1235), 1, anon_sym_None, - ACTIONS(2419), 1, + ACTIONS(1239), 1, sym_float, - ACTIONS(2421), 1, - anon_sym_await, - ACTIONS(2423), 1, + ACTIONS(1245), 1, anon_sym_sizeof, - ACTIONS(2425), 1, + ACTIONS(1247), 1, sym_string_start, - ACTIONS(2551), 1, + ACTIONS(1312), 1, + anon_sym_await, + ACTIONS(2741), 1, anon_sym_LT, - ACTIONS(2981), 1, + ACTIONS(3780), 1, anon_sym_STAR, - STATE(2103), 1, + STATE(2161), 1, sym_string, - STATE(2131), 1, - sym_primary_expression, - STATE(2309), 1, + STATE(2536), 1, sym_list_splat_pattern, + STATE(3235), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2399), 4, + ACTIONS(1237), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2409), 4, + ACTIONS(1308), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2405), 5, + ACTIONS(1304), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2377), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -187806,55 +188314,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [81711] = 19, - ACTIONS(2479), 1, + [81399] = 19, + ACTIONS(1213), 1, anon_sym_LPAREN, - ACTIONS(2485), 1, + ACTIONS(1219), 1, anon_sym_LBRACK, - ACTIONS(2489), 1, + ACTIONS(1223), 1, anon_sym_LBRACE, - ACTIONS(2493), 1, + ACTIONS(1233), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2495), 1, + ACTIONS(1235), 1, anon_sym_None, - ACTIONS(2497), 1, + ACTIONS(1239), 1, sym_float, - ACTIONS(2499), 1, - anon_sym_await, - ACTIONS(2501), 1, + ACTIONS(1245), 1, anon_sym_sizeof, - ACTIONS(2503), 1, + ACTIONS(1247), 1, sym_string_start, - ACTIONS(2525), 1, + ACTIONS(1312), 1, + anon_sym_await, + ACTIONS(2741), 1, anon_sym_LT, - ACTIONS(2947), 1, + ACTIONS(3780), 1, anon_sym_STAR, - STATE(2157), 1, + STATE(2161), 1, sym_string, - STATE(2198), 1, - sym_primary_expression, - STATE(2523), 1, + STATE(2536), 1, sym_list_splat_pattern, + STATE(3236), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 4, + ACTIONS(1237), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2487), 4, + ACTIONS(1308), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2483), 5, + ACTIONS(1304), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2418), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -187875,55 +188383,124 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [81799] = 19, - ACTIONS(2479), 1, - anon_sym_LPAREN, - ACTIONS(2485), 1, - anon_sym_LBRACK, - ACTIONS(2489), 1, + [81487] = 19, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2493), 1, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2495), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2497), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(2499), 1, - anon_sym_await, - ACTIONS(2501), 1, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(2503), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2525), 1, - anon_sym_LT, - ACTIONS(2947), 1, + ACTIONS(1281), 1, + anon_sym_LPAREN, + ACTIONS(1287), 1, + anon_sym_LBRACK, + ACTIONS(1293), 1, + anon_sym_await, + ACTIONS(3073), 1, anon_sym_STAR, - STATE(2157), 1, + STATE(2043), 1, sym_string, - STATE(2199), 1, + STATE(2055), 1, sym_primary_expression, - STATE(2523), 1, + STATE(2088), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 4, + 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(2487), 4, + ACTIONS(1285), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2111), 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, + [81575] = 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(83), 1, + sym_float, + ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, + sym_string_start, + ACTIONS(1281), 1, + anon_sym_LPAREN, + ACTIONS(1287), 1, + anon_sym_LBRACK, + ACTIONS(1293), 1, + anon_sym_await, + ACTIONS(3073), 1, + anon_sym_STAR, + STATE(2043), 1, + sym_string, + STATE(2059), 1, + sym_primary_expression, + STATE(2088), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2483), 5, + ACTIONS(81), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1285), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2418), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -187944,59 +188521,61 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [81887] = 19, - ACTIONS(2479), 1, + [81663] = 21, + ACTIONS(1213), 1, anon_sym_LPAREN, - ACTIONS(2485), 1, + ACTIONS(1219), 1, anon_sym_LBRACK, - ACTIONS(2489), 1, + ACTIONS(1223), 1, anon_sym_LBRACE, - ACTIONS(2493), 1, + ACTIONS(1233), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2495), 1, + ACTIONS(1235), 1, anon_sym_None, - ACTIONS(2497), 1, + ACTIONS(1239), 1, sym_float, - ACTIONS(2499), 1, - anon_sym_await, - ACTIONS(2501), 1, + ACTIONS(1245), 1, anon_sym_sizeof, - ACTIONS(2503), 1, + ACTIONS(1247), 1, sym_string_start, - ACTIONS(2525), 1, + ACTIONS(2741), 1, anon_sym_LT, - ACTIONS(2947), 1, + ACTIONS(3780), 1, anon_sym_STAR, - STATE(2157), 1, + ACTIONS(3996), 1, + sym_identifier, + ACTIONS(4000), 1, + anon_sym_await, + STATE(2161), 1, sym_string, - STATE(2172), 1, - sym_primary_expression, - STATE(2523), 1, + STATE(2536), 1, sym_list_splat_pattern, + STATE(3221), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 4, + STATE(2280), 2, + sym_attribute, + sym_subscript, + ACTIONS(1237), 3, sym_integer, - sym_identifier, sym_true, sym_false, - ACTIONS(2487), 4, + ACTIONS(1308), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2483), 5, + ACTIONS(3998), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2418), 20, + STATE(2401), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -188013,55 +188592,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [81975] = 19, - ACTIONS(2479), 1, - anon_sym_LPAREN, - ACTIONS(2485), 1, - anon_sym_LBRACK, - ACTIONS(2489), 1, + [81755] = 19, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2493), 1, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2495), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2497), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(2499), 1, - anon_sym_await, - ACTIONS(2501), 1, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(2503), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2525), 1, - anon_sym_LT, - ACTIONS(2947), 1, + ACTIONS(1281), 1, + anon_sym_LPAREN, + ACTIONS(1287), 1, + anon_sym_LBRACK, + ACTIONS(1293), 1, + anon_sym_await, + ACTIONS(3073), 1, anon_sym_STAR, - STATE(2157), 1, + STATE(2043), 1, sym_string, - STATE(2202), 1, + STATE(2062), 1, sym_primary_expression, - STATE(2523), 1, + STATE(2088), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2487), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2483), 5, + ACTIONS(81), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1285), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2418), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -188082,55 +188661,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [82063] = 19, - ACTIONS(2479), 1, + [81843] = 19, + ACTIONS(2489), 1, anon_sym_LPAREN, - ACTIONS(2485), 1, + ACTIONS(2495), 1, anon_sym_LBRACK, - ACTIONS(2489), 1, + ACTIONS(2499), 1, anon_sym_LBRACE, - ACTIONS(2493), 1, + ACTIONS(2503), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2495), 1, + ACTIONS(2505), 1, anon_sym_None, - ACTIONS(2497), 1, + ACTIONS(2507), 1, sym_float, - ACTIONS(2499), 1, + ACTIONS(2509), 1, anon_sym_await, - ACTIONS(2501), 1, + ACTIONS(2511), 1, anon_sym_sizeof, - ACTIONS(2503), 1, + ACTIONS(2513), 1, sym_string_start, - ACTIONS(2525), 1, + ACTIONS(2563), 1, anon_sym_LT, - ACTIONS(2947), 1, + ACTIONS(2943), 1, anon_sym_STAR, - STATE(2157), 1, + STATE(2177), 1, sym_string, - STATE(2203), 1, + STATE(2227), 1, sym_primary_expression, - STATE(2523), 1, + STATE(2415), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 4, + ACTIONS(2487), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2487), 4, + ACTIONS(2497), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2483), 5, + ACTIONS(2493), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2418), 20, + STATE(2470), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -188151,61 +188730,59 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [82151] = 21, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, + [81931] = 19, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2715), 1, - anon_sym_LT, - ACTIONS(3770), 1, - anon_sym_STAR, - ACTIONS(3792), 1, - sym_identifier, - ACTIONS(3796), 1, + ACTIONS(1281), 1, + anon_sym_LPAREN, + ACTIONS(1287), 1, + anon_sym_LBRACK, + ACTIONS(1293), 1, anon_sym_await, - STATE(2140), 1, + ACTIONS(3073), 1, + anon_sym_STAR, + STATE(2043), 1, sym_string, - STATE(2432), 1, - sym_list_splat_pattern, - STATE(3197), 1, + STATE(2063), 1, sym_primary_expression, + STATE(2088), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2107), 2, - sym_attribute, - sym_subscript, - ACTIONS(1237), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1308), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3794), 5, + ACTIONS(81), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1285), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2549), 18, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -188222,7 +188799,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [82243] = 19, + [82019] = 21, ACTIONS(1213), 1, anon_sym_LPAREN, ACTIONS(1219), 1, @@ -188239,24 +188816,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(1312), 1, - anon_sym_await, - ACTIONS(2715), 1, + ACTIONS(2741), 1, anon_sym_LT, - ACTIONS(3770), 1, + ACTIONS(3780), 1, anon_sym_STAR, - STATE(2140), 1, + ACTIONS(3824), 1, + sym_identifier, + ACTIONS(3832), 1, + anon_sym_await, + STATE(2161), 1, sym_string, - STATE(2432), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(3229), 1, + STATE(3222), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 4, + STATE(2691), 2, + sym_attribute, + sym_subscript, + ACTIONS(1237), 3, sym_integer, - sym_identifier, sym_true, sym_false, ACTIONS(1308), 4, @@ -188264,17 +188845,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1304), 5, + ACTIONS(3830), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2549), 20, + STATE(2401), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -188291,61 +188870,59 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [82331] = 21, - ACTIONS(1213), 1, + [82111] = 19, + ACTIONS(2413), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(2419), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(2423), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(2427), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(2429), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(2431), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(2433), 1, + anon_sym_await, + ACTIONS(2435), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(2437), 1, sym_string_start, - ACTIONS(2715), 1, + ACTIONS(2537), 1, anon_sym_LT, - ACTIONS(3770), 1, + ACTIONS(3011), 1, anon_sym_STAR, - ACTIONS(3942), 1, - sym_identifier, - ACTIONS(3946), 1, - anon_sym_await, - STATE(2140), 1, + STATE(2099), 1, sym_string, - STATE(2432), 1, - sym_list_splat_pattern, - STATE(3208), 1, + STATE(2157), 1, sym_primary_expression, + STATE(2256), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2622), 2, - sym_attribute, - sym_subscript, - ACTIONS(1237), 3, + ACTIONS(2411), 4, sym_integer, + sym_identifier, sym_true, sym_false, - ACTIONS(1308), 4, + ACTIONS(2421), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3944), 5, + ACTIONS(2417), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2549), 18, + STATE(2298), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -188362,61 +188939,59 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [82423] = 21, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, + [82199] = 19, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2715), 1, - anon_sym_LT, - ACTIONS(3770), 1, - anon_sym_STAR, - ACTIONS(3948), 1, - sym_identifier, - ACTIONS(3950), 1, + ACTIONS(1281), 1, + anon_sym_LPAREN, + ACTIONS(1287), 1, + anon_sym_LBRACK, + ACTIONS(1293), 1, anon_sym_await, - STATE(2140), 1, + ACTIONS(3073), 1, + anon_sym_STAR, + STATE(2043), 1, sym_string, - STATE(2432), 1, - sym_list_splat_pattern, - STATE(3189), 1, + STATE(2050), 1, sym_primary_expression, + STATE(2088), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2306), 2, - sym_attribute, - sym_subscript, - ACTIONS(1237), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1308), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3932), 5, + ACTIONS(81), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1285), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2549), 18, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -188433,61 +189008,59 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [82515] = 21, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, + [82287] = 19, + ACTIONS(1382), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1386), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1390), 1, + anon_sym_LT, + ACTIONS(1394), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1396), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1400), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(1406), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1408), 1, sym_string_start, - ACTIONS(2715), 1, - anon_sym_LT, - ACTIONS(3770), 1, + ACTIONS(2397), 1, anon_sym_STAR, - ACTIONS(3796), 1, + ACTIONS(2449), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, anon_sym_await, - ACTIONS(3952), 1, - sym_identifier, - STATE(2140), 1, + STATE(2393), 1, sym_string, - STATE(2432), 1, - sym_list_splat_pattern, - STATE(3197), 1, + STATE(2424), 1, sym_primary_expression, + STATE(2644), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2107), 2, - sym_attribute, - sym_subscript, - ACTIONS(1237), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1308), 4, + ACTIONS(1384), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3794), 5, + ACTIONS(1398), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2453), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2549), 18, + STATE(2651), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -188504,7 +189077,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [82607] = 21, + [82375] = 21, ACTIONS(1213), 1, anon_sym_LPAREN, ACTIONS(1219), 1, @@ -188521,24 +189094,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2715), 1, + ACTIONS(2741), 1, anon_sym_LT, - ACTIONS(3770), 1, + ACTIONS(3780), 1, anon_sym_STAR, - ACTIONS(3930), 1, - sym_identifier, - ACTIONS(3950), 1, + ACTIONS(3832), 1, anon_sym_await, - STATE(2140), 1, + ACTIONS(4002), 1, + sym_identifier, + STATE(2161), 1, sym_string, - STATE(2432), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(3189), 1, + STATE(3219), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2306), 2, + STATE(2524), 2, sym_attribute, sym_subscript, ACTIONS(1237), 3, @@ -188550,13 +189123,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3932), 5, + ACTIONS(4004), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2549), 18, + STATE(2401), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -188575,61 +189148,59 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [82699] = 21, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, + [82467] = 19, + ACTIONS(1382), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1386), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1390), 1, + anon_sym_LT, + ACTIONS(1394), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1396), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1400), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(1406), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1408), 1, sym_string_start, - ACTIONS(2715), 1, - anon_sym_LT, - ACTIONS(3770), 1, + ACTIONS(2397), 1, anon_sym_STAR, - ACTIONS(3928), 1, + ACTIONS(2449), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, anon_sym_await, - ACTIONS(3954), 1, - sym_identifier, - STATE(2140), 1, + STATE(2393), 1, sym_string, - STATE(2432), 1, - sym_list_splat_pattern, - STATE(3172), 1, + STATE(2431), 1, sym_primary_expression, + STATE(2644), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1874), 2, - sym_attribute, - sym_subscript, - ACTIONS(1237), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1308), 4, + ACTIONS(1384), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3926), 5, + ACTIONS(1398), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2453), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2549), 18, + STATE(2651), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -188646,55 +189217,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [82791] = 19, - ACTIONS(1213), 1, + [82555] = 19, + ACTIONS(1943), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(1949), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1953), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1957), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1959), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1961), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(1963), 1, + anon_sym_await, + ACTIONS(1965), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1967), 1, sym_string_start, - ACTIONS(2397), 1, - anon_sym_await, - ACTIONS(2735), 1, - anon_sym_LT, - ACTIONS(3009), 1, + ACTIONS(2661), 1, anon_sym_STAR, - STATE(2140), 1, + ACTIONS(2669), 1, + anon_sym_LT, + STATE(2089), 1, sym_string, - STATE(2187), 1, + STATE(2154), 1, sym_primary_expression, - STATE(2432), 1, + STATE(2284), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1227), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1237), 4, + ACTIONS(1941), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1304), 5, + ACTIONS(1951), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1947), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2549), 20, + STATE(2257), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -188715,7 +189286,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [82879] = 21, + [82643] = 21, ACTIONS(1213), 1, anon_sym_LPAREN, ACTIONS(1219), 1, @@ -188732,24 +189303,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2715), 1, + ACTIONS(2741), 1, anon_sym_LT, - ACTIONS(3770), 1, + ACTIONS(3780), 1, anon_sym_STAR, - ACTIONS(3956), 1, + ACTIONS(3988), 1, sym_identifier, - ACTIONS(3960), 1, + ACTIONS(4006), 1, anon_sym_await, - STATE(2140), 1, + STATE(2161), 1, sym_string, - STATE(2432), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(3203), 1, + STATE(3212), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3099), 2, + STATE(2255), 2, sym_attribute, sym_subscript, ACTIONS(1237), 3, @@ -188761,13 +189332,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3958), 5, + ACTIONS(3984), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2549), 18, + STATE(2401), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -188786,61 +189357,59 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [82971] = 21, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, + [82735] = 19, + ACTIONS(1382), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1386), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1390), 1, + anon_sym_LT, + ACTIONS(1394), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1396), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1400), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(1406), 1, anon_sym_sizeof, - ACTIONS(1247), 1, - sym_string_start, - ACTIONS(2715), 1, - anon_sym_LT, - ACTIONS(3770), 1, + ACTIONS(1408), 1, + sym_string_start, + ACTIONS(2397), 1, anon_sym_STAR, - ACTIONS(3962), 1, - sym_identifier, - ACTIONS(3966), 1, + ACTIONS(2449), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, anon_sym_await, - STATE(2140), 1, + STATE(2393), 1, sym_string, - STATE(2432), 1, - sym_list_splat_pattern, - STATE(3206), 1, + STATE(2437), 1, sym_primary_expression, + STATE(2644), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2355), 2, - sym_attribute, - sym_subscript, - ACTIONS(1237), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1308), 4, + ACTIONS(1384), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3964), 5, + ACTIONS(1398), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2453), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2549), 18, + STATE(2651), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -188857,55 +189426,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [83063] = 19, - ACTIONS(2479), 1, - anon_sym_LPAREN, - ACTIONS(2485), 1, + [82823] = 19, + ACTIONS(1382), 1, anon_sym_LBRACK, - ACTIONS(2489), 1, + ACTIONS(1386), 1, anon_sym_LBRACE, - ACTIONS(2493), 1, + ACTIONS(1390), 1, + anon_sym_LT, + ACTIONS(1394), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2495), 1, + ACTIONS(1396), 1, anon_sym_None, - ACTIONS(2497), 1, + ACTIONS(1400), 1, sym_float, - ACTIONS(2499), 1, - anon_sym_await, - ACTIONS(2501), 1, + ACTIONS(1406), 1, anon_sym_sizeof, - ACTIONS(2503), 1, + ACTIONS(1408), 1, sym_string_start, - ACTIONS(2525), 1, - anon_sym_LT, - ACTIONS(2947), 1, + ACTIONS(2397), 1, anon_sym_STAR, - STATE(2157), 1, + ACTIONS(2449), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + anon_sym_await, + STATE(2393), 1, sym_string, - STATE(2204), 1, + STATE(2442), 1, sym_primary_expression, - STATE(2523), 1, + STATE(2644), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2487), 4, + ACTIONS(1384), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2483), 5, + ACTIONS(1398), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2453), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2418), 20, + STATE(2651), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -188926,55 +189495,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [83151] = 19, - ACTIONS(2401), 1, - anon_sym_LPAREN, - ACTIONS(2407), 1, + [82911] = 19, + ACTIONS(1382), 1, anon_sym_LBRACK, - ACTIONS(2411), 1, + ACTIONS(1386), 1, anon_sym_LBRACE, - ACTIONS(2415), 1, + ACTIONS(1390), 1, + anon_sym_LT, + ACTIONS(1394), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2417), 1, + ACTIONS(1396), 1, anon_sym_None, - ACTIONS(2419), 1, + ACTIONS(1400), 1, sym_float, - ACTIONS(2421), 1, - anon_sym_await, - ACTIONS(2423), 1, + ACTIONS(1406), 1, anon_sym_sizeof, - ACTIONS(2425), 1, + ACTIONS(1408), 1, sym_string_start, - ACTIONS(2551), 1, - anon_sym_LT, - ACTIONS(2981), 1, + ACTIONS(2397), 1, anon_sym_STAR, - STATE(2103), 1, + ACTIONS(2449), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + anon_sym_await, + STATE(2393), 1, sym_string, - STATE(2149), 1, + STATE(2445), 1, sym_primary_expression, - STATE(2309), 1, + STATE(2644), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2399), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2409), 4, + ACTIONS(1384), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2405), 5, + ACTIONS(1398), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2453), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2377), 20, + STATE(2651), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -188995,61 +189564,59 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [83239] = 21, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, + [82999] = 19, + ACTIONS(1382), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1386), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1390), 1, + anon_sym_LT, + ACTIONS(1394), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1396), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1400), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(1406), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1408), 1, sym_string_start, - ACTIONS(2715), 1, - anon_sym_LT, - ACTIONS(3770), 1, + ACTIONS(2397), 1, anon_sym_STAR, - ACTIONS(3826), 1, + ACTIONS(2449), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, anon_sym_await, - ACTIONS(3968), 1, - sym_identifier, - STATE(2140), 1, + STATE(2393), 1, sym_string, - STATE(2432), 1, - sym_list_splat_pattern, - STATE(3203), 1, + STATE(2398), 1, sym_primary_expression, + STATE(2644), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2392), 2, - sym_attribute, - sym_subscript, - ACTIONS(1237), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1308), 4, + ACTIONS(1384), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3970), 5, + ACTIONS(1398), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2453), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2549), 18, + STATE(2651), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -189066,55 +189633,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [83331] = 19, - ACTIONS(1907), 1, - anon_sym_LPAREN, - ACTIONS(1913), 1, + [83087] = 19, + ACTIONS(1382), 1, anon_sym_LBRACK, - ACTIONS(1917), 1, + ACTIONS(1386), 1, anon_sym_LBRACE, - ACTIONS(1921), 1, + ACTIONS(1390), 1, + anon_sym_LT, + ACTIONS(1394), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1923), 1, + ACTIONS(1396), 1, anon_sym_None, - ACTIONS(1925), 1, + ACTIONS(1400), 1, sym_float, - ACTIONS(1927), 1, - anon_sym_await, - ACTIONS(1929), 1, + ACTIONS(1406), 1, anon_sym_sizeof, - ACTIONS(1931), 1, + ACTIONS(1408), 1, sym_string_start, - ACTIONS(2653), 1, + ACTIONS(2397), 1, anon_sym_STAR, - ACTIONS(2661), 1, - anon_sym_LT, - STATE(2073), 1, + ACTIONS(2449), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + anon_sym_await, + STATE(2393), 1, sym_string, - STATE(2134), 1, + STATE(2451), 1, sym_primary_expression, - STATE(2357), 1, + STATE(2644), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1905), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(1915), 4, + ACTIONS(1384), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1911), 5, + ACTIONS(1398), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2453), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2255), 20, + STATE(2651), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -189135,55 +189702,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [83419] = 19, - ACTIONS(1213), 1, + [83175] = 19, + ACTIONS(2413), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(2419), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(2423), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(2427), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(2429), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(2431), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(2433), 1, + anon_sym_await, + ACTIONS(2435), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(2437), 1, sym_string_start, - ACTIONS(1312), 1, - anon_sym_await, - ACTIONS(2715), 1, + ACTIONS(2537), 1, anon_sym_LT, - ACTIONS(3770), 1, + ACTIONS(3011), 1, anon_sym_STAR, - STATE(2140), 1, + STATE(2099), 1, sym_string, - STATE(2432), 1, - sym_list_splat_pattern, - STATE(3224), 1, + STATE(2148), 1, sym_primary_expression, + STATE(2256), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 4, + ACTIONS(2411), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1308), 4, + ACTIONS(2421), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1304), 5, + ACTIONS(2417), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2549), 20, + STATE(2298), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -189204,59 +189771,61 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [83507] = 19, - ACTIONS(2401), 1, + [83263] = 21, + ACTIONS(1213), 1, anon_sym_LPAREN, - ACTIONS(2407), 1, + ACTIONS(1219), 1, anon_sym_LBRACK, - ACTIONS(2411), 1, + ACTIONS(1223), 1, anon_sym_LBRACE, - ACTIONS(2415), 1, + ACTIONS(1233), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2417), 1, + ACTIONS(1235), 1, anon_sym_None, - ACTIONS(2419), 1, + ACTIONS(1239), 1, sym_float, - ACTIONS(2421), 1, - anon_sym_await, - ACTIONS(2423), 1, + ACTIONS(1245), 1, anon_sym_sizeof, - ACTIONS(2425), 1, + ACTIONS(1247), 1, sym_string_start, - ACTIONS(2551), 1, + ACTIONS(2741), 1, anon_sym_LT, - ACTIONS(2981), 1, + ACTIONS(3780), 1, anon_sym_STAR, - STATE(2103), 1, + ACTIONS(3932), 1, + anon_sym_await, + ACTIONS(4008), 1, + sym_identifier, + STATE(2161), 1, sym_string, - STATE(2141), 1, - sym_primary_expression, - STATE(2309), 1, + STATE(2536), 1, sym_list_splat_pattern, + STATE(3223), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2399), 4, + STATE(2603), 2, + sym_attribute, + sym_subscript, + ACTIONS(1237), 3, sym_integer, - sym_identifier, sym_true, sym_false, - ACTIONS(2409), 4, + ACTIONS(1308), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2405), 5, + ACTIONS(3930), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2377), 20, + STATE(2401), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -189273,55 +189842,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [83595] = 19, - ACTIONS(2401), 1, - anon_sym_LPAREN, - ACTIONS(2407), 1, + [83355] = 19, + ACTIONS(1382), 1, anon_sym_LBRACK, - ACTIONS(2411), 1, + ACTIONS(1386), 1, anon_sym_LBRACE, - ACTIONS(2415), 1, + ACTIONS(1390), 1, + anon_sym_LT, + ACTIONS(1394), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2417), 1, + ACTIONS(1396), 1, anon_sym_None, - ACTIONS(2419), 1, + ACTIONS(1400), 1, sym_float, - ACTIONS(2421), 1, - anon_sym_await, - ACTIONS(2423), 1, + ACTIONS(1406), 1, anon_sym_sizeof, - ACTIONS(2425), 1, + ACTIONS(1408), 1, sym_string_start, - ACTIONS(2551), 1, - anon_sym_LT, - ACTIONS(2981), 1, + ACTIONS(2397), 1, anon_sym_STAR, - STATE(2103), 1, + ACTIONS(2449), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + anon_sym_await, + STATE(2393), 1, sym_string, - STATE(2142), 1, + STATE(2573), 1, sym_primary_expression, - STATE(2309), 1, + STATE(2644), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2399), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2409), 4, + ACTIONS(1384), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2405), 5, + ACTIONS(1398), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2453), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2377), 20, + STATE(2651), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -189342,59 +189911,61 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [83683] = 19, - ACTIONS(1907), 1, + [83443] = 21, + ACTIONS(1213), 1, anon_sym_LPAREN, - ACTIONS(1913), 1, + ACTIONS(1219), 1, anon_sym_LBRACK, - ACTIONS(1917), 1, + ACTIONS(1223), 1, anon_sym_LBRACE, - ACTIONS(1921), 1, + ACTIONS(1233), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1923), 1, + ACTIONS(1235), 1, anon_sym_None, - ACTIONS(1925), 1, + ACTIONS(1239), 1, sym_float, - ACTIONS(1927), 1, - anon_sym_await, - ACTIONS(1929), 1, + ACTIONS(1245), 1, anon_sym_sizeof, - ACTIONS(1931), 1, + ACTIONS(1247), 1, sym_string_start, - ACTIONS(2653), 1, - anon_sym_STAR, - ACTIONS(2661), 1, + ACTIONS(2741), 1, anon_sym_LT, - STATE(2073), 1, + ACTIONS(3780), 1, + anon_sym_STAR, + ACTIONS(3810), 1, + sym_identifier, + ACTIONS(3818), 1, + anon_sym_await, + STATE(2161), 1, sym_string, - STATE(2143), 1, - sym_primary_expression, - STATE(2357), 1, + STATE(2536), 1, sym_list_splat_pattern, + STATE(3216), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1905), 4, + STATE(2114), 2, + sym_attribute, + sym_subscript, + ACTIONS(1237), 3, sym_integer, - sym_identifier, sym_true, sym_false, - ACTIONS(1915), 4, + ACTIONS(1308), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1911), 5, + ACTIONS(3812), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2255), 20, + STATE(2401), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -189411,55 +189982,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [83771] = 19, - ACTIONS(2401), 1, + [83535] = 19, + ACTIONS(2413), 1, anon_sym_LPAREN, - ACTIONS(2407), 1, + ACTIONS(2419), 1, anon_sym_LBRACK, - ACTIONS(2411), 1, + ACTIONS(2423), 1, anon_sym_LBRACE, - ACTIONS(2415), 1, + ACTIONS(2427), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2417), 1, + ACTIONS(2429), 1, anon_sym_None, - ACTIONS(2419), 1, + ACTIONS(2431), 1, sym_float, - ACTIONS(2421), 1, + ACTIONS(2433), 1, anon_sym_await, - ACTIONS(2423), 1, + ACTIONS(2435), 1, anon_sym_sizeof, - ACTIONS(2425), 1, + ACTIONS(2437), 1, sym_string_start, - ACTIONS(2551), 1, + ACTIONS(2537), 1, anon_sym_LT, - ACTIONS(2981), 1, + ACTIONS(3011), 1, anon_sym_STAR, - STATE(2103), 1, + STATE(2099), 1, sym_string, - STATE(2144), 1, + STATE(2181), 1, sym_primary_expression, - STATE(2309), 1, + STATE(2256), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2399), 4, + ACTIONS(2411), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2409), 4, + ACTIONS(2421), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2405), 5, + ACTIONS(2417), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2377), 20, + STATE(2298), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -189480,7 +190051,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [83859] = 21, + [83623] = 21, ACTIONS(1213), 1, anon_sym_LPAREN, ACTIONS(1219), 1, @@ -189497,24 +190068,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2715), 1, + ACTIONS(2741), 1, anon_sym_LT, - ACTIONS(3770), 1, + ACTIONS(3780), 1, anon_sym_STAR, - ACTIONS(3946), 1, + ACTIONS(3932), 1, anon_sym_await, - ACTIONS(3972), 1, + ACTIONS(4010), 1, sym_identifier, - STATE(2140), 1, + STATE(2161), 1, sym_string, - STATE(2432), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(3208), 1, + STATE(3224), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2622), 2, + STATE(2570), 2, sym_attribute, sym_subscript, ACTIONS(1237), 3, @@ -189526,13 +190097,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3944), 5, + ACTIONS(4012), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2549), 18, + STATE(2401), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -189551,55 +190122,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [83951] = 19, - ACTIONS(1382), 1, + [83715] = 19, + ACTIONS(2461), 1, + anon_sym_LPAREN, + ACTIONS(2467), 1, anon_sym_LBRACK, - ACTIONS(1386), 1, + ACTIONS(2471), 1, anon_sym_LBRACE, - ACTIONS(1390), 1, - anon_sym_LT, - ACTIONS(1394), 1, + ACTIONS(2475), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, + ACTIONS(2477), 1, anon_sym_None, - ACTIONS(1400), 1, + ACTIONS(2479), 1, sym_float, - ACTIONS(1406), 1, + ACTIONS(2481), 1, + anon_sym_await, + ACTIONS(2483), 1, anon_sym_sizeof, - ACTIONS(1408), 1, + ACTIONS(2485), 1, sym_string_start, - ACTIONS(2439), 1, - anon_sym_LPAREN, - ACTIONS(2447), 1, - anon_sym_await, - ACTIONS(3055), 1, + ACTIONS(2649), 1, + anon_sym_LT, + ACTIONS(3103), 1, anon_sym_STAR, - STATE(2302), 1, + STATE(2200), 1, sym_string, - STATE(2554), 1, + STATE(2289), 1, sym_primary_expression, - STATE(2671), 1, + STATE(2589), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1384), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1398), 4, + ACTIONS(2459), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2443), 5, + ACTIONS(2469), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2465), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2715), 20, + STATE(2630), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -189620,59 +190191,61 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [84039] = 19, - ACTIONS(2401), 1, + [83803] = 21, + ACTIONS(1213), 1, anon_sym_LPAREN, - ACTIONS(2407), 1, + ACTIONS(1219), 1, anon_sym_LBRACK, - ACTIONS(2411), 1, + ACTIONS(1223), 1, anon_sym_LBRACE, - ACTIONS(2415), 1, + ACTIONS(1233), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2417), 1, + ACTIONS(1235), 1, anon_sym_None, - ACTIONS(2419), 1, + ACTIONS(1239), 1, sym_float, - ACTIONS(2421), 1, - anon_sym_await, - ACTIONS(2423), 1, + ACTIONS(1245), 1, anon_sym_sizeof, - ACTIONS(2425), 1, + ACTIONS(1247), 1, sym_string_start, - ACTIONS(2551), 1, + ACTIONS(2741), 1, anon_sym_LT, - ACTIONS(2981), 1, + ACTIONS(3780), 1, anon_sym_STAR, - STATE(2103), 1, + ACTIONS(4014), 1, + sym_identifier, + ACTIONS(4018), 1, + anon_sym_await, + STATE(2161), 1, sym_string, - STATE(2145), 1, - sym_primary_expression, - STATE(2309), 1, + STATE(2536), 1, sym_list_splat_pattern, + STATE(3212), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2399), 4, + STATE(3136), 2, + sym_attribute, + sym_subscript, + ACTIONS(1237), 3, sym_integer, - sym_identifier, sym_true, sym_false, - ACTIONS(2409), 4, + ACTIONS(1308), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2405), 5, + ACTIONS(4016), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2377), 20, + STATE(2401), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -189689,59 +190262,61 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [84127] = 19, - ACTIONS(2401), 1, + [83895] = 21, + ACTIONS(1213), 1, anon_sym_LPAREN, - ACTIONS(2407), 1, + ACTIONS(1219), 1, anon_sym_LBRACK, - ACTIONS(2411), 1, + ACTIONS(1223), 1, anon_sym_LBRACE, - ACTIONS(2415), 1, + ACTIONS(1233), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2417), 1, + ACTIONS(1235), 1, anon_sym_None, - ACTIONS(2419), 1, + ACTIONS(1239), 1, sym_float, - ACTIONS(2421), 1, - anon_sym_await, - ACTIONS(2423), 1, + ACTIONS(1245), 1, anon_sym_sizeof, - ACTIONS(2425), 1, + ACTIONS(1247), 1, sym_string_start, - ACTIONS(2551), 1, + ACTIONS(2741), 1, anon_sym_LT, - ACTIONS(2981), 1, + ACTIONS(3780), 1, anon_sym_STAR, - STATE(2103), 1, + ACTIONS(4000), 1, + anon_sym_await, + ACTIONS(4020), 1, + sym_identifier, + STATE(2161), 1, sym_string, - STATE(2146), 1, - sym_primary_expression, - STATE(2309), 1, + STATE(2536), 1, sym_list_splat_pattern, + STATE(3225), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2399), 4, + STATE(2268), 2, + sym_attribute, + sym_subscript, + ACTIONS(1237), 3, sym_integer, - sym_identifier, sym_true, sym_false, - ACTIONS(2409), 4, + ACTIONS(1308), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2405), 5, + ACTIONS(4022), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2377), 20, + STATE(2401), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -189758,59 +190333,61 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [84215] = 19, - ACTIONS(2401), 1, + [83987] = 21, + ACTIONS(1213), 1, anon_sym_LPAREN, - ACTIONS(2407), 1, + ACTIONS(1219), 1, anon_sym_LBRACK, - ACTIONS(2411), 1, + ACTIONS(1223), 1, anon_sym_LBRACE, - ACTIONS(2415), 1, + ACTIONS(1233), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2417), 1, + ACTIONS(1235), 1, anon_sym_None, - ACTIONS(2419), 1, + ACTIONS(1239), 1, sym_float, - ACTIONS(2421), 1, - anon_sym_await, - ACTIONS(2423), 1, + ACTIONS(1245), 1, anon_sym_sizeof, - ACTIONS(2425), 1, + ACTIONS(1247), 1, sym_string_start, - ACTIONS(2551), 1, + ACTIONS(2741), 1, anon_sym_LT, - ACTIONS(2981), 1, + ACTIONS(3780), 1, anon_sym_STAR, - STATE(2103), 1, + ACTIONS(3824), 1, + sym_identifier, + ACTIONS(4024), 1, + anon_sym_await, + STATE(2161), 1, sym_string, - STATE(2147), 1, - sym_primary_expression, - STATE(2309), 1, + STATE(2536), 1, sym_list_splat_pattern, + STATE(3219), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2399), 4, + STATE(2691), 2, + sym_attribute, + sym_subscript, + ACTIONS(1237), 3, sym_integer, - sym_identifier, sym_true, sym_false, - ACTIONS(2409), 4, + ACTIONS(1308), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2405), 5, + ACTIONS(3830), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2377), 20, + STATE(2401), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -189827,59 +190404,61 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [84303] = 19, - ACTIONS(2401), 1, + [84079] = 21, + ACTIONS(1213), 1, anon_sym_LPAREN, - ACTIONS(2407), 1, + ACTIONS(1219), 1, anon_sym_LBRACK, - ACTIONS(2411), 1, + ACTIONS(1223), 1, anon_sym_LBRACE, - ACTIONS(2415), 1, + ACTIONS(1233), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2417), 1, + ACTIONS(1235), 1, anon_sym_None, - ACTIONS(2419), 1, + ACTIONS(1239), 1, sym_float, - ACTIONS(2421), 1, - anon_sym_await, - ACTIONS(2423), 1, + ACTIONS(1245), 1, anon_sym_sizeof, - ACTIONS(2425), 1, + ACTIONS(1247), 1, sym_string_start, - ACTIONS(2551), 1, + ACTIONS(2741), 1, anon_sym_LT, - ACTIONS(2981), 1, + ACTIONS(3780), 1, anon_sym_STAR, - STATE(2103), 1, + ACTIONS(3966), 1, + anon_sym_await, + ACTIONS(4026), 1, + sym_identifier, + STATE(2161), 1, sym_string, - STATE(2148), 1, - sym_primary_expression, - STATE(2309), 1, + STATE(2536), 1, sym_list_splat_pattern, + STATE(3194), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2399), 4, + STATE(1888), 2, + sym_attribute, + sym_subscript, + ACTIONS(1237), 3, sym_integer, - sym_identifier, sym_true, sym_false, - ACTIONS(2409), 4, + ACTIONS(1308), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2405), 5, + ACTIONS(3964), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2377), 20, + STATE(2401), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -189896,7 +190475,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [84391] = 21, + [84171] = 21, ACTIONS(1213), 1, anon_sym_LPAREN, ACTIONS(1219), 1, @@ -189913,24 +190492,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2715), 1, + ACTIONS(2741), 1, anon_sym_LT, - ACTIONS(3770), 1, + ACTIONS(3780), 1, anon_sym_STAR, - ACTIONS(3946), 1, - anon_sym_await, - ACTIONS(3974), 1, + ACTIONS(3855), 1, sym_identifier, - STATE(2140), 1, + ACTIONS(3859), 1, + anon_sym_await, + STATE(2161), 1, sym_string, - STATE(2432), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(3209), 1, + STATE(3212), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2407), 2, + STATE(3137), 2, sym_attribute, sym_subscript, ACTIONS(1237), 3, @@ -189942,13 +190521,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3976), 5, + ACTIONS(3857), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2549), 18, + STATE(2401), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -189967,55 +190546,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [84483] = 19, - ACTIONS(2451), 1, + [84263] = 19, + ACTIONS(1943), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(1949), 1, anon_sym_LBRACK, - ACTIONS(2461), 1, + ACTIONS(1953), 1, anon_sym_LBRACE, - ACTIONS(2465), 1, + ACTIONS(1957), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2467), 1, + ACTIONS(1959), 1, anon_sym_None, - ACTIONS(2469), 1, + ACTIONS(1961), 1, sym_float, - ACTIONS(2471), 1, + ACTIONS(1963), 1, anon_sym_await, - ACTIONS(2473), 1, + ACTIONS(1965), 1, anon_sym_sizeof, - ACTIONS(2475), 1, + ACTIONS(1967), 1, sym_string_start, - ACTIONS(2639), 1, - anon_sym_LT, - ACTIONS(3105), 1, + ACTIONS(2661), 1, anon_sym_STAR, - STATE(2218), 1, + ACTIONS(2669), 1, + anon_sym_LT, + STATE(2089), 1, sym_string, - STATE(2361), 1, + STATE(2164), 1, sym_primary_expression, - STATE(2591), 1, + STATE(2284), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2449), 4, + ACTIONS(1941), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2459), 4, + ACTIONS(1951), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2455), 5, + ACTIONS(1947), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2631), 20, + STATE(2257), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -190036,7 +190615,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [84571] = 21, + [84351] = 21, ACTIONS(1213), 1, anon_sym_LPAREN, ACTIONS(1219), 1, @@ -190053,24 +190632,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2715), 1, + ACTIONS(2741), 1, anon_sym_LT, - ACTIONS(3770), 1, + ACTIONS(3780), 1, anon_sym_STAR, - ACTIONS(3966), 1, - anon_sym_await, - ACTIONS(3978), 1, + ACTIONS(4028), 1, sym_identifier, - STATE(2140), 1, + ACTIONS(4032), 1, + anon_sym_await, + STATE(2161), 1, sym_string, - STATE(2432), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(3171), 1, + STATE(3220), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2313), 2, + STATE(2701), 2, sym_attribute, sym_subscript, ACTIONS(1237), 3, @@ -190082,13 +190661,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3980), 5, + ACTIONS(4030), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2549), 18, + STATE(2401), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -190107,7 +190686,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [84663] = 21, + [84443] = 21, ACTIONS(1213), 1, anon_sym_LPAREN, ACTIONS(1219), 1, @@ -190124,24 +190703,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2715), 1, + ACTIONS(2741), 1, anon_sym_LT, - ACTIONS(3770), 1, + ACTIONS(3780), 1, anon_sym_STAR, - ACTIONS(3818), 1, + ACTIONS(4008), 1, sym_identifier, - ACTIONS(3982), 1, + ACTIONS(4034), 1, anon_sym_await, - STATE(2140), 1, + STATE(2161), 1, sym_string, - STATE(2432), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(3203), 1, + STATE(3224), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2696), 2, + STATE(2603), 2, sym_attribute, sym_subscript, ACTIONS(1237), 3, @@ -190153,13 +190732,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3824), 5, + ACTIONS(3930), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2549), 18, + STATE(2401), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -190178,7 +190757,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [84755] = 21, + [84535] = 21, ACTIONS(1213), 1, anon_sym_LPAREN, ACTIONS(1219), 1, @@ -190195,24 +190774,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2715), 1, + ACTIONS(2741), 1, anon_sym_LT, - ACTIONS(3770), 1, + ACTIONS(3780), 1, anon_sym_STAR, - ACTIONS(3841), 1, + ACTIONS(4036), 1, sym_identifier, - ACTIONS(3847), 1, + ACTIONS(4040), 1, anon_sym_await, - STATE(2140), 1, + STATE(2161), 1, sym_string, - STATE(2432), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(3189), 1, + STATE(3193), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3135), 2, + STATE(3123), 2, sym_attribute, sym_subscript, ACTIONS(1237), 3, @@ -190224,13 +190803,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3845), 5, + ACTIONS(4038), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2549), 18, + STATE(2401), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -190249,7 +190828,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [84847] = 21, + [84627] = 21, ACTIONS(1213), 1, anon_sym_LPAREN, ACTIONS(1219), 1, @@ -190266,24 +190845,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2715), 1, + ACTIONS(2741), 1, anon_sym_LT, - ACTIONS(3770), 1, + ACTIONS(3780), 1, anon_sym_STAR, - ACTIONS(3984), 1, + ACTIONS(3847), 1, sym_identifier, - ACTIONS(3988), 1, + ACTIONS(3853), 1, anon_sym_await, - STATE(2140), 1, + STATE(2161), 1, sym_string, - STATE(2432), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(3205), 1, + STATE(3219), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2719), 2, + STATE(3122), 2, sym_attribute, sym_subscript, ACTIONS(1237), 3, @@ -190295,13 +190874,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3986), 5, + ACTIONS(3851), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2549), 18, + STATE(2401), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -190320,7 +190899,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [84939] = 21, + [84719] = 21, ACTIONS(1213), 1, anon_sym_LPAREN, ACTIONS(1219), 1, @@ -190337,24 +190916,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2715), 1, + ACTIONS(2741), 1, anon_sym_LT, - ACTIONS(3770), 1, + ACTIONS(3780), 1, anon_sym_STAR, - ACTIONS(3972), 1, + ACTIONS(4042), 1, sym_identifier, - ACTIONS(3990), 1, + ACTIONS(4046), 1, anon_sym_await, - STATE(2140), 1, + STATE(2161), 1, sym_string, - STATE(2432), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(3209), 1, + STATE(3228), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2622), 2, + STATE(2487), 2, sym_attribute, sym_subscript, ACTIONS(1237), 3, @@ -190366,13 +190945,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3944), 5, + ACTIONS(4044), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2549), 18, + STATE(2401), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -190391,7 +190970,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [85031] = 21, + [84811] = 21, ACTIONS(1213), 1, anon_sym_LPAREN, ACTIONS(1219), 1, @@ -190408,24 +190987,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1247), 1, sym_string_start, - ACTIONS(2715), 1, + ACTIONS(2741), 1, anon_sym_LT, - ACTIONS(3770), 1, + ACTIONS(3780), 1, anon_sym_STAR, - ACTIONS(3992), 1, - sym_identifier, - ACTIONS(3996), 1, + ACTIONS(3818), 1, anon_sym_await, - STATE(2140), 1, + ACTIONS(4048), 1, + sym_identifier, + STATE(2161), 1, sym_string, - STATE(2432), 1, + STATE(2536), 1, sym_list_splat_pattern, - STATE(3210), 1, + STATE(3216), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3121), 2, + STATE(2114), 2, sym_attribute, sym_subscript, ACTIONS(1237), 3, @@ -190437,13 +191016,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3994), 5, + ACTIONS(3812), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2549), 18, + STATE(2401), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -190462,61 +191041,59 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [85123] = 21, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, + [84903] = 19, + ACTIONS(1328), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1332), 1, + anon_sym_LT, + ACTIONS(1338), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1340), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1344), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(1360), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1362), 1, sym_string_start, - ACTIONS(2715), 1, - anon_sym_LT, - ACTIONS(3770), 1, - anon_sym_STAR, - ACTIONS(3849), 1, - sym_identifier, - ACTIONS(3853), 1, + ACTIONS(1472), 1, + anon_sym_LBRACK, + ACTIONS(2377), 1, + anon_sym_LPAREN, + ACTIONS(2387), 1, anon_sym_await, - STATE(2140), 1, + ACTIONS(2965), 1, + anon_sym_STAR, + STATE(2147), 1, sym_string, - STATE(2432), 1, - sym_list_splat_pattern, - STATE(3203), 1, + STATE(2228), 1, sym_primary_expression, + STATE(2472), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3104), 2, - sym_attribute, - sym_subscript, - ACTIONS(1237), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1308), 4, + ACTIONS(1326), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3851), 5, + ACTIONS(1342), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2381), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2549), 18, + STATE(2414), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -190533,61 +191110,59 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [85215] = 21, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, + [84991] = 19, + ACTIONS(1328), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1332), 1, + anon_sym_LT, + ACTIONS(1338), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1340), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1344), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(1360), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1362), 1, sym_string_start, - ACTIONS(2715), 1, - anon_sym_LT, - ACTIONS(3770), 1, - anon_sym_STAR, - ACTIONS(3998), 1, - sym_identifier, - ACTIONS(4002), 1, + ACTIONS(1472), 1, + anon_sym_LBRACK, + ACTIONS(2377), 1, + anon_sym_LPAREN, + ACTIONS(2387), 1, anon_sym_await, - STATE(2140), 1, + ACTIONS(2965), 1, + anon_sym_STAR, + STATE(2147), 1, sym_string, - STATE(2432), 1, - sym_list_splat_pattern, - STATE(3213), 1, + STATE(2234), 1, sym_primary_expression, + STATE(2472), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, - sym_attribute, - sym_subscript, - ACTIONS(1237), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1308), 4, + ACTIONS(1326), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(4000), 5, + ACTIONS(1342), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2381), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2549), 18, + STATE(2414), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -190604,209 +191179,339 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [85307] = 27, + [85079] = 27, ACTIONS(125), 1, anon_sym_class, ACTIONS(133), 1, anon_sym_ctypedef, - ACTIONS(4004), 1, + ACTIONS(3934), 1, sym_identifier, - ACTIONS(4006), 1, + ACTIONS(3936), 1, anon_sym_LPAREN, - ACTIONS(4008), 1, + ACTIONS(3938), 1, anon_sym_pass, - ACTIONS(4018), 1, + ACTIONS(3948), 1, anon_sym_long, - ACTIONS(4024), 1, + ACTIONS(3954), 1, anon_sym_enum, - ACTIONS(4026), 1, + ACTIONS(3956), 1, anon_sym_cppclass, - ACTIONS(4028), 1, + ACTIONS(3958), 1, anon_sym_fused, - ACTIONS(4030), 1, + ACTIONS(3960), 1, sym_string_start, - STATE(3188), 1, + STATE(3198), 1, sym__signedness, - STATE(3410), 1, + STATE(3409), 1, sym__longness, - STATE(3447), 1, + STATE(3461), 1, sym_c_type, - STATE(5634), 1, + STATE(5403), 1, sym_pass_statement, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4010), 2, + ACTIONS(3940), 2, anon_sym_cdef, anon_sym_cpdef, - ACTIONS(4014), 2, + ACTIONS(3944), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4016), 2, + ACTIONS(3946), 2, anon_sym_char, anon_sym_short, - ACTIONS(4020), 2, + ACTIONS(3950), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4022), 2, + ACTIONS(3952), 2, anon_sym_struct, anon_sym_union, - STATE(2785), 2, + STATE(2799), 2, sym_storageclass, aux_sym_class_definition_repeat1, - STATE(3669), 2, + STATE(3668), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4012), 3, + ACTIONS(3942), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(707), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(708), 3, + STATE(715), 3, sym_struct, sym_enum, sym_cppclass, + STATE(730), 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(2008), 5, + STATE(2015), 5, sym_string, sym_cdef_type_declaration, sym_cvar_decl, sym_ctypedef_statement, aux_sym_extern_suite_repeat1, - [85411] = 27, - ACTIONS(125), 1, - anon_sym_class, - ACTIONS(133), 1, - anon_sym_ctypedef, - ACTIONS(4004), 1, + [85183] = 19, + ACTIONS(1328), 1, + anon_sym_LBRACE, + ACTIONS(1332), 1, + anon_sym_LT, + ACTIONS(1338), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1340), 1, + anon_sym_None, + ACTIONS(1344), 1, + sym_float, + ACTIONS(1360), 1, + anon_sym_sizeof, + ACTIONS(1362), 1, + sym_string_start, + ACTIONS(1472), 1, + anon_sym_LBRACK, + ACTIONS(2377), 1, + anon_sym_LPAREN, + ACTIONS(2387), 1, + anon_sym_await, + ACTIONS(2965), 1, + anon_sym_STAR, + STATE(2147), 1, + sym_string, + STATE(2221), 1, + sym_primary_expression, + STATE(2472), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1326), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1342), 4, + sym_integer, sym_identifier, - ACTIONS(4006), 1, + sym_true, + sym_false, + ACTIONS(2381), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2414), 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, + [85271] = 19, + ACTIONS(2461), 1, anon_sym_LPAREN, - ACTIONS(4008), 1, - anon_sym_pass, - ACTIONS(4018), 1, - anon_sym_long, - ACTIONS(4024), 1, - anon_sym_enum, - ACTIONS(4026), 1, - anon_sym_cppclass, - ACTIONS(4028), 1, - anon_sym_fused, - ACTIONS(4030), 1, + ACTIONS(2467), 1, + anon_sym_LBRACK, + ACTIONS(2471), 1, + anon_sym_LBRACE, + ACTIONS(2475), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2477), 1, + anon_sym_None, + ACTIONS(2479), 1, + sym_float, + ACTIONS(2481), 1, + anon_sym_await, + ACTIONS(2483), 1, + anon_sym_sizeof, + ACTIONS(2485), 1, sym_string_start, - STATE(3188), 1, - sym__signedness, - STATE(3410), 1, - sym__longness, - STATE(3447), 1, - sym_c_type, - STATE(5459), 1, - sym_pass_statement, + ACTIONS(2649), 1, + anon_sym_LT, + ACTIONS(3103), 1, + anon_sym_STAR, + STATE(2200), 1, + sym_string, + STATE(2351), 1, + sym_primary_expression, + STATE(2589), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4010), 2, - anon_sym_cdef, - anon_sym_cpdef, - ACTIONS(4014), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(4016), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4020), 2, - anon_sym_const, - anon_sym_volatile, - ACTIONS(4022), 2, - anon_sym_struct, - anon_sym_union, - STATE(2785), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3669), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4012), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(707), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(708), 3, - sym_struct, - sym_enum, - sym_cppclass, - ACTIONS(103), 5, + ACTIONS(2459), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2469), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2465), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, anon_sym_api, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - STATE(2009), 5, - sym_string, - sym_cdef_type_declaration, - sym_cvar_decl, - sym_ctypedef_statement, - aux_sym_extern_suite_repeat1, - [85515] = 19, - ACTIONS(1213), 1, + STATE(2630), 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, + [85359] = 19, + ACTIONS(2461), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(2467), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(2471), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(2475), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(2477), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(2479), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(2481), 1, + anon_sym_await, + ACTIONS(2483), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(2485), 1, sym_string_start, - ACTIONS(1312), 1, - anon_sym_await, - ACTIONS(2715), 1, + ACTIONS(2649), 1, anon_sym_LT, - ACTIONS(3770), 1, + ACTIONS(3103), 1, anon_sym_STAR, - STATE(2140), 1, + STATE(2200), 1, sym_string, - STATE(2432), 1, + STATE(2352), 1, + sym_primary_expression, + STATE(2589), 1, sym_list_splat_pattern, - STATE(3222), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2459), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2469), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2465), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2630), 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, + [85447] = 19, + ACTIONS(2461), 1, + anon_sym_LPAREN, + ACTIONS(2467), 1, + anon_sym_LBRACK, + ACTIONS(2471), 1, + anon_sym_LBRACE, + ACTIONS(2475), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2477), 1, + anon_sym_None, + ACTIONS(2479), 1, + sym_float, + ACTIONS(2481), 1, + anon_sym_await, + ACTIONS(2483), 1, + anon_sym_sizeof, + ACTIONS(2485), 1, + sym_string_start, + ACTIONS(2649), 1, + anon_sym_LT, + ACTIONS(3103), 1, + anon_sym_STAR, + STATE(2200), 1, + sym_string, + STATE(2353), 1, sym_primary_expression, + STATE(2589), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 4, + ACTIONS(2459), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1308), 4, + ACTIONS(2469), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1304), 5, + ACTIONS(2465), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2549), 20, + STATE(2630), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -190827,132 +191532,193 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [85603] = 27, - ACTIONS(125), 1, - anon_sym_class, - ACTIONS(133), 1, - anon_sym_ctypedef, - ACTIONS(4004), 1, + [85535] = 19, + ACTIONS(2461), 1, + anon_sym_LPAREN, + ACTIONS(2467), 1, + anon_sym_LBRACK, + ACTIONS(2471), 1, + anon_sym_LBRACE, + ACTIONS(2475), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2477), 1, + anon_sym_None, + ACTIONS(2479), 1, + sym_float, + ACTIONS(2481), 1, + anon_sym_await, + ACTIONS(2483), 1, + anon_sym_sizeof, + ACTIONS(2485), 1, + sym_string_start, + ACTIONS(2649), 1, + anon_sym_LT, + ACTIONS(3103), 1, + anon_sym_STAR, + STATE(2200), 1, + sym_string, + STATE(2354), 1, + sym_primary_expression, + STATE(2589), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2459), 4, + sym_integer, sym_identifier, - ACTIONS(4006), 1, + sym_true, + sym_false, + ACTIONS(2469), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2465), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2630), 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, + [85623] = 19, + ACTIONS(2461), 1, anon_sym_LPAREN, - ACTIONS(4008), 1, - anon_sym_pass, - ACTIONS(4018), 1, - anon_sym_long, - ACTIONS(4024), 1, - anon_sym_enum, - ACTIONS(4026), 1, - anon_sym_cppclass, - ACTIONS(4028), 1, - anon_sym_fused, - ACTIONS(4030), 1, + ACTIONS(2467), 1, + anon_sym_LBRACK, + ACTIONS(2471), 1, + anon_sym_LBRACE, + ACTIONS(2475), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2477), 1, + anon_sym_None, + ACTIONS(2479), 1, + sym_float, + ACTIONS(2481), 1, + anon_sym_await, + ACTIONS(2483), 1, + anon_sym_sizeof, + ACTIONS(2485), 1, sym_string_start, - STATE(3188), 1, - sym__signedness, - STATE(3410), 1, - sym__longness, - STATE(3447), 1, - sym_c_type, - STATE(5647), 1, - sym_pass_statement, + ACTIONS(2649), 1, + anon_sym_LT, + ACTIONS(3103), 1, + anon_sym_STAR, + STATE(2200), 1, + sym_string, + STATE(2355), 1, + sym_primary_expression, + STATE(2589), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4010), 2, - anon_sym_cdef, - anon_sym_cpdef, - ACTIONS(4014), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(4016), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4020), 2, - anon_sym_const, - anon_sym_volatile, - ACTIONS(4022), 2, - anon_sym_struct, - anon_sym_union, - STATE(2785), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3669), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4012), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(707), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(708), 3, - sym_struct, - sym_enum, - sym_cppclass, - ACTIONS(103), 5, + ACTIONS(2459), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2469), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2465), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, anon_sym_api, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - STATE(2005), 5, - sym_string, - sym_cdef_type_declaration, - sym_cvar_decl, - sym_ctypedef_statement, - aux_sym_extern_suite_repeat1, - [85707] = 19, - ACTIONS(1907), 1, + STATE(2630), 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, + [85711] = 19, + ACTIONS(2461), 1, anon_sym_LPAREN, - ACTIONS(1913), 1, + ACTIONS(2467), 1, anon_sym_LBRACK, - ACTIONS(1917), 1, + ACTIONS(2471), 1, anon_sym_LBRACE, - ACTIONS(1921), 1, + ACTIONS(2475), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1923), 1, + ACTIONS(2477), 1, anon_sym_None, - ACTIONS(1925), 1, + ACTIONS(2479), 1, sym_float, - ACTIONS(1927), 1, + ACTIONS(2481), 1, anon_sym_await, - ACTIONS(1929), 1, + ACTIONS(2483), 1, anon_sym_sizeof, - ACTIONS(1931), 1, + ACTIONS(2485), 1, sym_string_start, - ACTIONS(2653), 1, - anon_sym_STAR, - ACTIONS(2661), 1, + ACTIONS(2649), 1, anon_sym_LT, - STATE(2073), 1, + ACTIONS(3103), 1, + anon_sym_STAR, + STATE(2200), 1, sym_string, - STATE(2160), 1, + STATE(2356), 1, sym_primary_expression, - STATE(2357), 1, + STATE(2589), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1905), 4, + ACTIONS(2459), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1915), 4, + ACTIONS(2469), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1911), 5, + ACTIONS(2465), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2255), 20, + STATE(2630), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -190973,55 +191739,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [85795] = 19, - ACTIONS(1907), 1, + [85799] = 19, + ACTIONS(2461), 1, anon_sym_LPAREN, - ACTIONS(1913), 1, + ACTIONS(2467), 1, anon_sym_LBRACK, - ACTIONS(1917), 1, + ACTIONS(2471), 1, anon_sym_LBRACE, - ACTIONS(1921), 1, + ACTIONS(2475), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1923), 1, + ACTIONS(2477), 1, anon_sym_None, - ACTIONS(1925), 1, + ACTIONS(2479), 1, sym_float, - ACTIONS(1927), 1, + ACTIONS(2481), 1, anon_sym_await, - ACTIONS(1929), 1, + ACTIONS(2483), 1, anon_sym_sizeof, - ACTIONS(1931), 1, + ACTIONS(2485), 1, sym_string_start, - ACTIONS(2653), 1, - anon_sym_STAR, - ACTIONS(2661), 1, + ACTIONS(2649), 1, anon_sym_LT, - STATE(2073), 1, + ACTIONS(3103), 1, + anon_sym_STAR, + STATE(2200), 1, sym_string, - STATE(2161), 1, - sym_primary_expression, STATE(2357), 1, + sym_primary_expression, + STATE(2589), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1905), 4, + ACTIONS(2459), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1915), 4, + ACTIONS(2469), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1911), 5, + ACTIONS(2465), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2255), 20, + STATE(2630), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -191042,55 +191808,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [85883] = 19, - ACTIONS(1382), 1, - anon_sym_LBRACK, - ACTIONS(1386), 1, + [85887] = 19, + ACTIONS(1328), 1, anon_sym_LBRACE, - ACTIONS(1390), 1, + ACTIONS(1332), 1, anon_sym_LT, - ACTIONS(1394), 1, + ACTIONS(1338), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, + ACTIONS(1340), 1, anon_sym_None, - ACTIONS(1400), 1, + ACTIONS(1344), 1, sym_float, - ACTIONS(1406), 1, + ACTIONS(1360), 1, anon_sym_sizeof, - ACTIONS(1408), 1, + ACTIONS(1362), 1, sym_string_start, - ACTIONS(2439), 1, + ACTIONS(1472), 1, + anon_sym_LBRACK, + ACTIONS(2377), 1, anon_sym_LPAREN, - ACTIONS(2447), 1, + ACTIONS(2387), 1, anon_sym_await, - ACTIONS(3055), 1, + ACTIONS(2965), 1, anon_sym_STAR, - STATE(2302), 1, + STATE(2147), 1, sym_string, - STATE(2559), 1, + STATE(2199), 1, sym_primary_expression, - STATE(2671), 1, + STATE(2472), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1384), 4, + ACTIONS(1326), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1398), 4, + ACTIONS(1342), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2443), 5, + ACTIONS(2381), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2715), 20, + STATE(2414), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -191111,55 +191877,132 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [85971] = 19, - ACTIONS(1907), 1, + [85975] = 27, + ACTIONS(125), 1, + anon_sym_class, + ACTIONS(133), 1, + anon_sym_ctypedef, + ACTIONS(3934), 1, + sym_identifier, + ACTIONS(3936), 1, + anon_sym_LPAREN, + ACTIONS(3938), 1, + anon_sym_pass, + ACTIONS(3948), 1, + anon_sym_long, + ACTIONS(3954), 1, + anon_sym_enum, + ACTIONS(3956), 1, + anon_sym_cppclass, + ACTIONS(3958), 1, + anon_sym_fused, + ACTIONS(3960), 1, + sym_string_start, + STATE(3198), 1, + sym__signedness, + STATE(3409), 1, + sym__longness, + STATE(3461), 1, + sym_c_type, + STATE(5408), 1, + sym_pass_statement, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3940), 2, + anon_sym_cdef, + anon_sym_cpdef, + ACTIONS(3944), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(3946), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(3950), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(3952), 2, + anon_sym_struct, + anon_sym_union, + STATE(2799), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(3668), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(3942), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(715), 3, + sym_struct, + sym_enum, + sym_cppclass, + STATE(730), 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(2017), 5, + sym_string, + sym_cdef_type_declaration, + sym_cvar_decl, + sym_ctypedef_statement, + aux_sym_extern_suite_repeat1, + [86079] = 19, + ACTIONS(2413), 1, anon_sym_LPAREN, - ACTIONS(1913), 1, + ACTIONS(2419), 1, anon_sym_LBRACK, - ACTIONS(1917), 1, + ACTIONS(2423), 1, anon_sym_LBRACE, - ACTIONS(1921), 1, + ACTIONS(2427), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1923), 1, + ACTIONS(2429), 1, anon_sym_None, - ACTIONS(1925), 1, + ACTIONS(2431), 1, sym_float, - ACTIONS(1927), 1, + ACTIONS(2433), 1, anon_sym_await, - ACTIONS(1929), 1, + ACTIONS(2435), 1, anon_sym_sizeof, - ACTIONS(1931), 1, + ACTIONS(2437), 1, sym_string_start, - ACTIONS(2653), 1, - anon_sym_STAR, - ACTIONS(2661), 1, + ACTIONS(2537), 1, anon_sym_LT, - STATE(2073), 1, + ACTIONS(3011), 1, + anon_sym_STAR, + STATE(2099), 1, sym_string, - STATE(2162), 1, + STATE(2167), 1, sym_primary_expression, - STATE(2357), 1, + STATE(2256), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1905), 4, + ACTIONS(2411), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1915), 4, + ACTIONS(2421), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1911), 5, + ACTIONS(2417), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2255), 20, + STATE(2298), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -191180,55 +192023,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [86059] = 19, - ACTIONS(1907), 1, - anon_sym_LPAREN, - ACTIONS(1913), 1, - anon_sym_LBRACK, - ACTIONS(1917), 1, + [86167] = 19, + ACTIONS(1328), 1, anon_sym_LBRACE, - ACTIONS(1921), 1, + ACTIONS(1332), 1, + anon_sym_LT, + ACTIONS(1338), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1923), 1, + ACTIONS(1340), 1, anon_sym_None, - ACTIONS(1925), 1, + ACTIONS(1344), 1, sym_float, - ACTIONS(1927), 1, - anon_sym_await, - ACTIONS(1929), 1, + ACTIONS(1360), 1, anon_sym_sizeof, - ACTIONS(1931), 1, + ACTIONS(1362), 1, sym_string_start, - ACTIONS(2653), 1, + ACTIONS(1472), 1, + anon_sym_LBRACK, + ACTIONS(2377), 1, + anon_sym_LPAREN, + ACTIONS(2387), 1, + anon_sym_await, + ACTIONS(2965), 1, anon_sym_STAR, - ACTIONS(2661), 1, - anon_sym_LT, - STATE(2073), 1, + STATE(2147), 1, sym_string, - STATE(2163), 1, + STATE(2192), 1, sym_primary_expression, - STATE(2357), 1, + STATE(2472), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1905), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(1915), 4, + ACTIONS(1326), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1911), 5, + ACTIONS(1342), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2381), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2255), 20, + STATE(2414), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -191249,55 +192092,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [86147] = 19, - ACTIONS(1907), 1, - anon_sym_LPAREN, - ACTIONS(1913), 1, - anon_sym_LBRACK, - ACTIONS(1917), 1, + [86255] = 19, + ACTIONS(1328), 1, anon_sym_LBRACE, - ACTIONS(1921), 1, + ACTIONS(1332), 1, + anon_sym_LT, + ACTIONS(1338), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1923), 1, + ACTIONS(1340), 1, anon_sym_None, - ACTIONS(1925), 1, + ACTIONS(1344), 1, sym_float, - ACTIONS(1927), 1, - anon_sym_await, - ACTIONS(1929), 1, + ACTIONS(1360), 1, anon_sym_sizeof, - ACTIONS(1931), 1, + ACTIONS(1362), 1, sym_string_start, - ACTIONS(2653), 1, + ACTIONS(1472), 1, + anon_sym_LBRACK, + ACTIONS(2377), 1, + anon_sym_LPAREN, + ACTIONS(2387), 1, + anon_sym_await, + ACTIONS(2965), 1, anon_sym_STAR, - ACTIONS(2661), 1, - anon_sym_LT, - STATE(2073), 1, + STATE(2147), 1, sym_string, - STATE(2164), 1, + STATE(2225), 1, sym_primary_expression, - STATE(2357), 1, + STATE(2472), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1905), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(1915), 4, + ACTIONS(1326), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1911), 5, + ACTIONS(1342), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2381), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2255), 20, + STATE(2414), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -191318,55 +192161,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [86235] = 19, - ACTIONS(1907), 1, - anon_sym_LPAREN, - ACTIONS(1913), 1, - anon_sym_LBRACK, - ACTIONS(1917), 1, + [86343] = 19, + ACTIONS(1328), 1, anon_sym_LBRACE, - ACTIONS(1921), 1, + ACTIONS(1332), 1, + anon_sym_LT, + ACTIONS(1338), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1923), 1, + ACTIONS(1340), 1, anon_sym_None, - ACTIONS(1925), 1, + ACTIONS(1344), 1, sym_float, - ACTIONS(1927), 1, - anon_sym_await, - ACTIONS(1929), 1, + ACTIONS(1360), 1, anon_sym_sizeof, - ACTIONS(1931), 1, + ACTIONS(1362), 1, sym_string_start, - ACTIONS(2653), 1, + ACTIONS(1472), 1, + anon_sym_LBRACK, + ACTIONS(2377), 1, + anon_sym_LPAREN, + ACTIONS(2387), 1, + anon_sym_await, + ACTIONS(2965), 1, anon_sym_STAR, - ACTIONS(2661), 1, - anon_sym_LT, - STATE(2073), 1, + STATE(2147), 1, sym_string, - STATE(2165), 1, + STATE(2239), 1, sym_primary_expression, - STATE(2357), 1, + STATE(2472), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1905), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(1915), 4, + ACTIONS(1326), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1911), 5, + ACTIONS(1342), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2381), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2255), 20, + STATE(2414), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -191387,55 +192230,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [86323] = 19, - ACTIONS(1907), 1, - anon_sym_LPAREN, - ACTIONS(1913), 1, - anon_sym_LBRACK, - ACTIONS(1917), 1, + [86431] = 19, + ACTIONS(1328), 1, anon_sym_LBRACE, - ACTIONS(1921), 1, + ACTIONS(1332), 1, + anon_sym_LT, + ACTIONS(1338), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1923), 1, + ACTIONS(1340), 1, anon_sym_None, - ACTIONS(1925), 1, + ACTIONS(1344), 1, sym_float, - ACTIONS(1927), 1, - anon_sym_await, - ACTIONS(1929), 1, + ACTIONS(1360), 1, anon_sym_sizeof, - ACTIONS(1931), 1, + ACTIONS(1362), 1, sym_string_start, - ACTIONS(2653), 1, + ACTIONS(1472), 1, + anon_sym_LBRACK, + ACTIONS(2377), 1, + anon_sym_LPAREN, + ACTIONS(2387), 1, + anon_sym_await, + ACTIONS(2965), 1, anon_sym_STAR, - ACTIONS(2661), 1, - anon_sym_LT, - STATE(2073), 1, + STATE(2147), 1, sym_string, - STATE(2166), 1, + STATE(2189), 1, sym_primary_expression, - STATE(2357), 1, + STATE(2472), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1905), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(1915), 4, + ACTIONS(1326), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1911), 5, + ACTIONS(1342), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2381), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2255), 20, + STATE(2414), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -191456,55 +192299,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [86411] = 19, - ACTIONS(67), 1, + [86519] = 19, + ACTIONS(1328), 1, anon_sym_LBRACE, - ACTIONS(71), 1, + ACTIONS(1332), 1, anon_sym_LT, - ACTIONS(77), 1, + ACTIONS(1338), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1340), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1344), 1, sym_float, - ACTIONS(105), 1, + ACTIONS(1360), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1362), 1, sym_string_start, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, + ACTIONS(1472), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(2377), 1, + anon_sym_LPAREN, + ACTIONS(2387), 1, anon_sym_await, - ACTIONS(3071), 1, + ACTIONS(2965), 1, anon_sym_STAR, - STATE(2034), 1, + STATE(2147), 1, sym_string, - STATE(2044), 1, + STATE(2195), 1, sym_primary_expression, - STATE(2088), 1, + STATE(2472), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(65), 4, + ACTIONS(1326), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(81), 4, + ACTIONS(1342), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1285), 5, + ACTIONS(2381), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2123), 20, + STATE(2414), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -191525,55 +192368,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [86499] = 19, - ACTIONS(67), 1, + [86607] = 19, + ACTIONS(1213), 1, + anon_sym_LPAREN, + ACTIONS(1219), 1, + anon_sym_LBRACK, + ACTIONS(1223), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(77), 1, + ACTIONS(1233), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1235), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1239), 1, sym_float, - ACTIONS(105), 1, + ACTIONS(1245), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1247), 1, sym_string_start, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(2447), 1, anon_sym_await, - ACTIONS(3071), 1, + ACTIONS(2705), 1, + anon_sym_LT, + ACTIONS(2955), 1, anon_sym_STAR, - STATE(2034), 1, + STATE(2161), 1, sym_string, - STATE(2048), 1, + STATE(2212), 1, sym_primary_expression, - STATE(2088), 1, + STATE(2536), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(65), 4, + ACTIONS(1227), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(81), 4, + ACTIONS(1237), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1285), 5, + ACTIONS(1304), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2123), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -191594,55 +192437,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [86587] = 19, - ACTIONS(67), 1, + [86695] = 19, + ACTIONS(1213), 1, + anon_sym_LPAREN, + ACTIONS(1219), 1, + anon_sym_LBRACK, + ACTIONS(1223), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(77), 1, + ACTIONS(1233), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1235), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1239), 1, sym_float, - ACTIONS(105), 1, + ACTIONS(1245), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1247), 1, sym_string_start, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(2447), 1, anon_sym_await, - ACTIONS(3071), 1, + ACTIONS(2705), 1, + anon_sym_LT, + ACTIONS(2955), 1, anon_sym_STAR, - STATE(2034), 1, + STATE(2161), 1, sym_string, - STATE(2045), 1, + STATE(2215), 1, sym_primary_expression, - STATE(2088), 1, + STATE(2536), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(65), 4, + ACTIONS(1227), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(81), 4, + ACTIONS(1237), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1285), 5, + ACTIONS(1304), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2123), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -191663,55 +192506,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [86675] = 19, - ACTIONS(67), 1, + [86783] = 19, + ACTIONS(2489), 1, + anon_sym_LPAREN, + ACTIONS(2495), 1, + anon_sym_LBRACK, + ACTIONS(2499), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(77), 1, + ACTIONS(2503), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(2505), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(2507), 1, sym_float, - ACTIONS(105), 1, + ACTIONS(2509), 1, + anon_sym_await, + ACTIONS(2511), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(2513), 1, sym_string_start, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(1293), 1, - anon_sym_await, - ACTIONS(3071), 1, + ACTIONS(2563), 1, + anon_sym_LT, + ACTIONS(2943), 1, anon_sym_STAR, - STATE(2034), 1, + STATE(2177), 1, sym_string, - STATE(2041), 1, + STATE(2224), 1, sym_primary_expression, - STATE(2088), 1, + STATE(2415), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(65), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(81), 4, + ACTIONS(2487), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1285), 5, + ACTIONS(2497), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2493), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2123), 20, + STATE(2470), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -191732,55 +192575,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [86763] = 19, - ACTIONS(67), 1, + [86871] = 19, + ACTIONS(1213), 1, + anon_sym_LPAREN, + ACTIONS(1219), 1, + anon_sym_LBRACK, + ACTIONS(1223), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(77), 1, + ACTIONS(1233), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1235), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1239), 1, sym_float, - ACTIONS(105), 1, + ACTIONS(1245), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1247), 1, sym_string_start, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(2447), 1, anon_sym_await, - ACTIONS(3071), 1, + ACTIONS(2705), 1, + anon_sym_LT, + ACTIONS(2955), 1, anon_sym_STAR, - STATE(2034), 1, + STATE(2161), 1, sym_string, - STATE(2055), 1, + STATE(2190), 1, sym_primary_expression, - STATE(2088), 1, + STATE(2536), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(65), 4, + ACTIONS(1227), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(81), 4, + ACTIONS(1237), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1285), 5, + ACTIONS(1304), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2123), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -191801,55 +192644,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [86851] = 19, - ACTIONS(67), 1, + [86959] = 19, + ACTIONS(1213), 1, + anon_sym_LPAREN, + ACTIONS(1219), 1, + anon_sym_LBRACK, + ACTIONS(1223), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(77), 1, + ACTIONS(1233), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1235), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1239), 1, sym_float, - ACTIONS(105), 1, + ACTIONS(1245), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1247), 1, sym_string_start, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(2447), 1, anon_sym_await, - ACTIONS(3071), 1, + ACTIONS(2705), 1, + anon_sym_LT, + ACTIONS(2955), 1, anon_sym_STAR, - STATE(2034), 1, + STATE(2161), 1, sym_string, - STATE(2042), 1, + STATE(2191), 1, sym_primary_expression, - STATE(2088), 1, + STATE(2536), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(65), 4, + ACTIONS(1227), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(81), 4, + ACTIONS(1237), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1285), 5, + ACTIONS(1304), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2123), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -191870,55 +192713,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [86939] = 19, - ACTIONS(67), 1, + [87047] = 19, + ACTIONS(1213), 1, + anon_sym_LPAREN, + ACTIONS(1219), 1, + anon_sym_LBRACK, + ACTIONS(1223), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(77), 1, + ACTIONS(1233), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1235), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1239), 1, sym_float, - ACTIONS(105), 1, + ACTIONS(1245), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1247), 1, sym_string_start, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(2447), 1, anon_sym_await, - ACTIONS(3071), 1, + ACTIONS(2705), 1, + anon_sym_LT, + ACTIONS(2955), 1, anon_sym_STAR, - STATE(2034), 1, + STATE(2161), 1, sym_string, - STATE(2049), 1, + STATE(2201), 1, sym_primary_expression, - STATE(2088), 1, + STATE(2536), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(65), 4, + ACTIONS(1227), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(81), 4, + ACTIONS(1237), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1285), 5, + ACTIONS(1304), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2123), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -191939,55 +192782,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [87027] = 19, - ACTIONS(1382), 1, + [87135] = 19, + ACTIONS(1213), 1, + anon_sym_LPAREN, + ACTIONS(1219), 1, anon_sym_LBRACK, - ACTIONS(1386), 1, + ACTIONS(1223), 1, anon_sym_LBRACE, - ACTIONS(1390), 1, - anon_sym_LT, - ACTIONS(1394), 1, + ACTIONS(1233), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, + ACTIONS(1235), 1, anon_sym_None, - ACTIONS(1400), 1, + ACTIONS(1239), 1, sym_float, - ACTIONS(1406), 1, + ACTIONS(1245), 1, anon_sym_sizeof, - ACTIONS(1408), 1, + ACTIONS(1247), 1, sym_string_start, - ACTIONS(2439), 1, - anon_sym_LPAREN, ACTIONS(2447), 1, anon_sym_await, - ACTIONS(3055), 1, + ACTIONS(2705), 1, + anon_sym_LT, + ACTIONS(2955), 1, anon_sym_STAR, - STATE(2302), 1, + STATE(2161), 1, sym_string, - STATE(2560), 1, + STATE(2209), 1, sym_primary_expression, - STATE(2671), 1, + STATE(2536), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1384), 4, + ACTIONS(1227), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1398), 4, + ACTIONS(1237), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2443), 5, + ACTIONS(1304), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2715), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -192008,55 +192851,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [87115] = 19, - ACTIONS(1382), 1, + [87223] = 19, + ACTIONS(1213), 1, + anon_sym_LPAREN, + ACTIONS(1219), 1, anon_sym_LBRACK, - ACTIONS(1386), 1, + ACTIONS(1223), 1, anon_sym_LBRACE, - ACTIONS(1390), 1, - anon_sym_LT, - ACTIONS(1394), 1, + ACTIONS(1233), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, + ACTIONS(1235), 1, anon_sym_None, - ACTIONS(1400), 1, + ACTIONS(1239), 1, sym_float, - ACTIONS(1406), 1, + ACTIONS(1245), 1, anon_sym_sizeof, - ACTIONS(1408), 1, + ACTIONS(1247), 1, sym_string_start, - ACTIONS(2439), 1, - anon_sym_LPAREN, ACTIONS(2447), 1, anon_sym_await, - ACTIONS(3055), 1, + ACTIONS(2705), 1, + anon_sym_LT, + ACTIONS(2955), 1, anon_sym_STAR, - STATE(2302), 1, + STATE(2161), 1, sym_string, - STATE(2561), 1, + STATE(2240), 1, sym_primary_expression, - STATE(2671), 1, + STATE(2536), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1384), 4, + ACTIONS(1227), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1398), 4, + ACTIONS(1237), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2443), 5, + ACTIONS(1304), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2715), 20, + STATE(2401), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -192077,55 +192920,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [87203] = 19, - ACTIONS(2451), 1, + [87311] = 19, + ACTIONS(2413), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(2419), 1, anon_sym_LBRACK, - ACTIONS(2461), 1, + ACTIONS(2423), 1, anon_sym_LBRACE, - ACTIONS(2465), 1, + ACTIONS(2427), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2467), 1, + ACTIONS(2429), 1, anon_sym_None, - ACTIONS(2469), 1, + ACTIONS(2431), 1, sym_float, - ACTIONS(2471), 1, + ACTIONS(2433), 1, anon_sym_await, - ACTIONS(2473), 1, + ACTIONS(2435), 1, anon_sym_sizeof, - ACTIONS(2475), 1, + ACTIONS(2437), 1, sym_string_start, - ACTIONS(2639), 1, + ACTIONS(2537), 1, anon_sym_LT, - ACTIONS(3105), 1, + ACTIONS(3011), 1, anon_sym_STAR, - STATE(2218), 1, + STATE(2099), 1, sym_string, - STATE(2321), 1, + STATE(2159), 1, sym_primary_expression, - STATE(2591), 1, + STATE(2256), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2449), 4, + ACTIONS(2411), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2459), 4, + ACTIONS(2421), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2455), 5, + ACTIONS(2417), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2631), 20, + STATE(2298), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -192146,55 +192989,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [87291] = 19, - ACTIONS(1382), 1, + [87399] = 19, + ACTIONS(2413), 1, + anon_sym_LPAREN, + ACTIONS(2419), 1, anon_sym_LBRACK, - ACTIONS(1386), 1, + ACTIONS(2423), 1, anon_sym_LBRACE, - ACTIONS(1390), 1, - anon_sym_LT, - ACTIONS(1394), 1, + ACTIONS(2427), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, + ACTIONS(2429), 1, anon_sym_None, - ACTIONS(1400), 1, + ACTIONS(2431), 1, sym_float, - ACTIONS(1406), 1, + ACTIONS(2433), 1, + anon_sym_await, + ACTIONS(2435), 1, anon_sym_sizeof, - ACTIONS(1408), 1, + ACTIONS(2437), 1, sym_string_start, - ACTIONS(2439), 1, - anon_sym_LPAREN, - ACTIONS(2447), 1, - anon_sym_await, - ACTIONS(3055), 1, + ACTIONS(2537), 1, + anon_sym_LT, + ACTIONS(3011), 1, anon_sym_STAR, - STATE(2302), 1, + STATE(2099), 1, sym_string, - STATE(2562), 1, + STATE(2171), 1, sym_primary_expression, - STATE(2671), 1, + STATE(2256), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1384), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1398), 4, + ACTIONS(2411), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2443), 5, + ACTIONS(2421), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2417), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2715), 20, + STATE(2298), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -192215,55 +193058,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [87379] = 19, - ACTIONS(1382), 1, + [87487] = 19, + ACTIONS(2413), 1, + anon_sym_LPAREN, + ACTIONS(2419), 1, anon_sym_LBRACK, - ACTIONS(1386), 1, + ACTIONS(2423), 1, anon_sym_LBRACE, - ACTIONS(1390), 1, - anon_sym_LT, - ACTIONS(1394), 1, + ACTIONS(2427), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, + ACTIONS(2429), 1, anon_sym_None, - ACTIONS(1400), 1, + ACTIONS(2431), 1, sym_float, - ACTIONS(1406), 1, + ACTIONS(2433), 1, + anon_sym_await, + ACTIONS(2435), 1, anon_sym_sizeof, - ACTIONS(1408), 1, + ACTIONS(2437), 1, sym_string_start, - ACTIONS(2439), 1, - anon_sym_LPAREN, - ACTIONS(2447), 1, - anon_sym_await, - ACTIONS(3055), 1, + ACTIONS(2537), 1, + anon_sym_LT, + ACTIONS(3011), 1, anon_sym_STAR, - STATE(2302), 1, + STATE(2099), 1, sym_string, - STATE(2563), 1, + STATE(2143), 1, sym_primary_expression, - STATE(2671), 1, + STATE(2256), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1384), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1398), 4, + ACTIONS(2411), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2443), 5, + ACTIONS(2421), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2417), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2715), 20, + STATE(2298), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -192284,55 +193127,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [87467] = 19, - ACTIONS(1382), 1, + [87575] = 19, + ACTIONS(2489), 1, + anon_sym_LPAREN, + ACTIONS(2495), 1, anon_sym_LBRACK, - ACTIONS(1386), 1, + ACTIONS(2499), 1, anon_sym_LBRACE, - ACTIONS(1390), 1, - anon_sym_LT, - ACTIONS(1394), 1, + ACTIONS(2503), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, + ACTIONS(2505), 1, anon_sym_None, - ACTIONS(1400), 1, + ACTIONS(2507), 1, sym_float, - ACTIONS(1406), 1, + ACTIONS(2509), 1, + anon_sym_await, + ACTIONS(2511), 1, anon_sym_sizeof, - ACTIONS(1408), 1, + ACTIONS(2513), 1, sym_string_start, - ACTIONS(2439), 1, - anon_sym_LPAREN, - ACTIONS(2447), 1, - anon_sym_await, - ACTIONS(3055), 1, + ACTIONS(2563), 1, + anon_sym_LT, + ACTIONS(2943), 1, anon_sym_STAR, - STATE(2302), 1, + STATE(2177), 1, sym_string, - STATE(2564), 1, + STATE(2236), 1, sym_primary_expression, - STATE(2671), 1, + STATE(2415), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1384), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1398), 4, + ACTIONS(2487), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2443), 5, + ACTIONS(2497), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2493), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2715), 20, + STATE(2470), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -192353,55 +193196,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [87555] = 19, - ACTIONS(1382), 1, + [87663] = 19, + ACTIONS(2413), 1, + anon_sym_LPAREN, + ACTIONS(2419), 1, anon_sym_LBRACK, - ACTIONS(1386), 1, + ACTIONS(2423), 1, anon_sym_LBRACE, - ACTIONS(1390), 1, - anon_sym_LT, - ACTIONS(1394), 1, + ACTIONS(2427), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, + ACTIONS(2429), 1, anon_sym_None, - ACTIONS(1400), 1, + ACTIONS(2431), 1, sym_float, - ACTIONS(1406), 1, + ACTIONS(2433), 1, + anon_sym_await, + ACTIONS(2435), 1, anon_sym_sizeof, - ACTIONS(1408), 1, + ACTIONS(2437), 1, sym_string_start, - ACTIONS(2439), 1, - anon_sym_LPAREN, - ACTIONS(2447), 1, - anon_sym_await, - ACTIONS(3055), 1, + ACTIONS(2537), 1, + anon_sym_LT, + ACTIONS(3011), 1, anon_sym_STAR, - STATE(2302), 1, + STATE(2099), 1, sym_string, - STATE(2565), 1, + STATE(2144), 1, sym_primary_expression, - STATE(2671), 1, + STATE(2256), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1384), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1398), 4, + ACTIONS(2411), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2443), 5, + ACTIONS(2421), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2417), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2715), 20, + STATE(2298), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -192422,55 +193265,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [87643] = 19, - ACTIONS(1382), 1, - anon_sym_LBRACK, - ACTIONS(1386), 1, + [87751] = 19, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1390), 1, + ACTIONS(71), 1, anon_sym_LT, - ACTIONS(1394), 1, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1400), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(1406), 1, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(1408), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2439), 1, + ACTIONS(1281), 1, anon_sym_LPAREN, - ACTIONS(2447), 1, + ACTIONS(1287), 1, + anon_sym_LBRACK, + ACTIONS(1293), 1, anon_sym_await, - ACTIONS(3055), 1, + ACTIONS(3073), 1, anon_sym_STAR, - STATE(2302), 1, + STATE(2043), 1, sym_string, - STATE(2484), 1, + STATE(2065), 1, sym_primary_expression, - STATE(2671), 1, + STATE(2088), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1384), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1398), 4, + ACTIONS(81), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2443), 5, + ACTIONS(1285), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2715), 20, + STATE(2111), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -192491,61 +193334,59 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [87731] = 21, - ACTIONS(1213), 1, + [87839] = 19, + ACTIONS(2489), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(2495), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(2499), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(2503), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(2505), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(2507), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(2509), 1, + anon_sym_await, + ACTIONS(2511), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(2513), 1, sym_string_start, - ACTIONS(2715), 1, + ACTIONS(2563), 1, anon_sym_LT, - ACTIONS(3770), 1, + ACTIONS(2943), 1, anon_sym_STAR, - ACTIONS(3818), 1, - sym_identifier, - ACTIONS(3826), 1, - anon_sym_await, - STATE(2140), 1, + STATE(2177), 1, sym_string, - STATE(2432), 1, - sym_list_splat_pattern, - STATE(3207), 1, + STATE(2184), 1, sym_primary_expression, + STATE(2415), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2696), 2, - sym_attribute, - sym_subscript, - ACTIONS(1237), 3, + ACTIONS(2487), 4, sym_integer, + sym_identifier, sym_true, sym_false, - ACTIONS(1308), 4, + ACTIONS(2497), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3824), 5, + ACTIONS(2493), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2549), 18, + STATE(2470), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -192562,262 +193403,36 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [87823] = 26, - ACTIONS(4032), 1, - sym_identifier, - ACTIONS(4035), 1, - anon_sym_LPAREN, - ACTIONS(4038), 1, - anon_sym_class, - ACTIONS(4056), 1, - anon_sym_long, - ACTIONS(4062), 1, - anon_sym_ctypedef, - ACTIONS(4068), 1, - anon_sym_enum, - ACTIONS(4071), 1, - anon_sym_cppclass, - ACTIONS(4074), 1, - anon_sym_fused, - ACTIONS(4077), 1, - sym__dedent, - ACTIONS(4079), 1, - sym_string_start, - STATE(3188), 1, - sym__signedness, - STATE(3410), 1, - sym__longness, - STATE(3447), 1, - sym_c_type, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4044), 2, - anon_sym_cdef, - anon_sym_cpdef, - ACTIONS(4050), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(4053), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4059), 2, - anon_sym_const, - anon_sym_volatile, - ACTIONS(4065), 2, - anon_sym_struct, - anon_sym_union, - STATE(2785), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3669), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4047), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(707), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(708), 3, - sym_struct, - sym_enum, - sym_cppclass, - ACTIONS(4041), 5, - anon_sym_api, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - STATE(2004), 5, - sym_string, - sym_cdef_type_declaration, - sym_cvar_decl, - sym_ctypedef_statement, - aux_sym_extern_suite_repeat1, - [87924] = 26, - ACTIONS(125), 1, - anon_sym_class, - ACTIONS(133), 1, - anon_sym_ctypedef, - ACTIONS(4004), 1, - sym_identifier, - ACTIONS(4006), 1, - anon_sym_LPAREN, - ACTIONS(4018), 1, - anon_sym_long, - ACTIONS(4024), 1, - anon_sym_enum, - ACTIONS(4026), 1, - anon_sym_cppclass, - ACTIONS(4028), 1, - anon_sym_fused, - ACTIONS(4030), 1, - sym_string_start, - ACTIONS(4082), 1, - sym__dedent, - STATE(3188), 1, - sym__signedness, - STATE(3410), 1, - sym__longness, - STATE(3447), 1, - sym_c_type, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4010), 2, - anon_sym_cdef, - anon_sym_cpdef, - ACTIONS(4014), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(4016), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4020), 2, - anon_sym_const, - anon_sym_volatile, - ACTIONS(4022), 2, - anon_sym_struct, - anon_sym_union, - STATE(2785), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3669), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4012), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(707), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(708), 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(2004), 5, - sym_string, - sym_cdef_type_declaration, - sym_cvar_decl, - sym_ctypedef_statement, - aux_sym_extern_suite_repeat1, - [88025] = 27, - ACTIONS(125), 1, - anon_sym_class, - ACTIONS(371), 1, - anon_sym_long, - ACTIONS(4024), 1, - anon_sym_enum, - ACTIONS(4026), 1, - anon_sym_cppclass, - ACTIONS(4028), 1, - anon_sym_fused, - ACTIONS(4084), 1, - sym_identifier, - ACTIONS(4088), 1, - anon_sym_COLON, - ACTIONS(4090), 1, - anon_sym_api, - ACTIONS(4092), 1, - anon_sym_extern, - ACTIONS(4094), 1, - anon_sym_operator, - STATE(3130), 1, - sym__signedness, - STATE(3228), 1, - sym_int_type, - STATE(3321), 1, - sym__longness, - STATE(3597), 1, - sym_operator_name, - STATE(3788), 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(4022), 2, - anon_sym_struct, - anon_sym_union, - ACTIONS(4096), 2, - anon_sym_const, - anon_sym_volatile, - STATE(2558), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(365), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(707), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(708), 3, - sym_struct, - sym_enum, - sym_cppclass, - STATE(1573), 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(4086), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - [88128] = 27, + [87927] = 27, ACTIONS(59), 1, anon_sym_class, ACTIONS(371), 1, anon_sym_long, - ACTIONS(4090), 1, + ACTIONS(3974), 1, anon_sym_api, - ACTIONS(4094), 1, + ACTIONS(3978), 1, anon_sym_operator, - ACTIONS(4098), 1, + ACTIONS(4050), 1, sym_identifier, - ACTIONS(4102), 1, + ACTIONS(4054), 1, anon_sym_COLON, - ACTIONS(4104), 1, + ACTIONS(4056), 1, anon_sym_extern, - ACTIONS(4108), 1, + ACTIONS(4060), 1, anon_sym_enum, - ACTIONS(4110), 1, + ACTIONS(4062), 1, anon_sym_cppclass, - ACTIONS(4112), 1, + ACTIONS(4064), 1, anon_sym_fused, - STATE(3130), 1, + STATE(3140), 1, sym__signedness, - STATE(3228), 1, + STATE(3191), 1, sym_int_type, - STATE(3321), 1, + STATE(3368), 1, sym__longness, - STATE(3597), 1, + STATE(3562), 1, sym_operator_name, - STATE(3847), 1, + STATE(3869), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -192828,28 +193443,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(4096), 2, + ACTIONS(3980), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4106), 2, + ACTIONS(4058), 2, anon_sym_struct, anon_sym_union, - STATE(2431), 2, + STATE(2513), 2, sym_storageclass, aux_sym_class_definition_repeat1, ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(1395), 3, + STATE(1412), 3, sym_class_definition, sym_ctype_declaration, sym_fused, - STATE(1401), 3, - sym_cvar_def, - sym_cdef_type_declaration, - sym_extern_block, - STATE(1405), 3, + STATE(1425), 3, sym_struct, sym_enum, sym_cppclass, @@ -192858,265 +193469,420 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - ACTIONS(4100), 5, + STATE(1418), 4, + sym_cdef_definition_block, + sym_cvar_def, + sym_cdef_type_declaration, + sym_extern_block, + ACTIONS(4052), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_await, - [88231] = 26, + [88031] = 26, ACTIONS(125), 1, anon_sym_class, ACTIONS(133), 1, anon_sym_ctypedef, - ACTIONS(4004), 1, + ACTIONS(3934), 1, sym_identifier, - ACTIONS(4006), 1, + ACTIONS(3936), 1, anon_sym_LPAREN, - ACTIONS(4018), 1, + ACTIONS(3948), 1, anon_sym_long, - ACTIONS(4024), 1, + ACTIONS(3954), 1, anon_sym_enum, - ACTIONS(4026), 1, + ACTIONS(3956), 1, anon_sym_cppclass, - ACTIONS(4028), 1, + ACTIONS(3958), 1, anon_sym_fused, - ACTIONS(4030), 1, + ACTIONS(3960), 1, sym_string_start, - ACTIONS(4114), 1, + ACTIONS(4066), 1, sym__dedent, - STATE(3188), 1, + STATE(3198), 1, sym__signedness, - STATE(3410), 1, + STATE(3409), 1, sym__longness, - STATE(3447), 1, + STATE(3461), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4010), 2, + ACTIONS(3940), 2, anon_sym_cdef, anon_sym_cpdef, - ACTIONS(4014), 2, + ACTIONS(3944), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4016), 2, + ACTIONS(3946), 2, anon_sym_char, anon_sym_short, - ACTIONS(4020), 2, + ACTIONS(3950), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4022), 2, + ACTIONS(3952), 2, anon_sym_struct, anon_sym_union, - STATE(2785), 2, + STATE(2799), 2, sym_storageclass, aux_sym_class_definition_repeat1, - STATE(3669), 2, + STATE(3668), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4012), 3, + ACTIONS(3942), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(707), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(708), 3, + STATE(715), 3, sym_struct, sym_enum, sym_cppclass, + STATE(730), 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(2004), 5, + STATE(2018), 5, sym_string, sym_cdef_type_declaration, sym_cvar_decl, sym_ctypedef_statement, aux_sym_extern_suite_repeat1, - [88332] = 26, + [88132] = 26, ACTIONS(125), 1, anon_sym_class, ACTIONS(133), 1, anon_sym_ctypedef, - ACTIONS(4004), 1, + ACTIONS(3934), 1, sym_identifier, - ACTIONS(4006), 1, + ACTIONS(3936), 1, anon_sym_LPAREN, - ACTIONS(4018), 1, + ACTIONS(3948), 1, anon_sym_long, - ACTIONS(4024), 1, + ACTIONS(3954), 1, anon_sym_enum, - ACTIONS(4026), 1, + ACTIONS(3956), 1, anon_sym_cppclass, - ACTIONS(4028), 1, + ACTIONS(3958), 1, anon_sym_fused, - ACTIONS(4030), 1, + ACTIONS(3960), 1, sym_string_start, - ACTIONS(4116), 1, + ACTIONS(4068), 1, sym__dedent, - STATE(3188), 1, + STATE(3198), 1, sym__signedness, - STATE(3410), 1, + STATE(3409), 1, sym__longness, - STATE(3447), 1, + STATE(3461), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4010), 2, + ACTIONS(3940), 2, anon_sym_cdef, anon_sym_cpdef, - ACTIONS(4014), 2, + ACTIONS(3944), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4016), 2, + ACTIONS(3946), 2, anon_sym_char, anon_sym_short, - ACTIONS(4020), 2, + ACTIONS(3950), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4022), 2, + ACTIONS(3952), 2, anon_sym_struct, anon_sym_union, - STATE(2785), 2, + STATE(2799), 2, sym_storageclass, aux_sym_class_definition_repeat1, - STATE(3669), 2, + STATE(3668), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4012), 3, + ACTIONS(3942), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(707), 3, + STATE(715), 3, + sym_struct, + sym_enum, + sym_cppclass, + STATE(730), 3, sym_class_definition, sym_ctype_declaration, sym_fused, - STATE(708), 3, + ACTIONS(103), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(2018), 5, + sym_string, + sym_cdef_type_declaration, + sym_cvar_decl, + sym_ctypedef_statement, + aux_sym_extern_suite_repeat1, + [88233] = 26, + ACTIONS(125), 1, + anon_sym_class, + ACTIONS(133), 1, + anon_sym_ctypedef, + ACTIONS(3934), 1, + sym_identifier, + ACTIONS(3936), 1, + anon_sym_LPAREN, + ACTIONS(3948), 1, + anon_sym_long, + ACTIONS(3954), 1, + anon_sym_enum, + ACTIONS(3956), 1, + anon_sym_cppclass, + ACTIONS(3958), 1, + anon_sym_fused, + ACTIONS(3960), 1, + sym_string_start, + ACTIONS(4070), 1, + sym__dedent, + STATE(3198), 1, + sym__signedness, + STATE(3409), 1, + sym__longness, + STATE(3461), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3940), 2, + anon_sym_cdef, + anon_sym_cpdef, + ACTIONS(3944), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(3946), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(3950), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(3952), 2, + anon_sym_struct, + anon_sym_union, + STATE(2799), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(3668), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(3942), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(715), 3, sym_struct, sym_enum, sym_cppclass, + STATE(730), 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(2004), 5, + STATE(2018), 5, sym_string, sym_cdef_type_declaration, sym_cvar_decl, sym_ctypedef_statement, aux_sym_extern_suite_repeat1, - [88433] = 26, - ACTIONS(4118), 1, + [88334] = 26, + ACTIONS(4072), 1, sym_identifier, - ACTIONS(4121), 1, + ACTIONS(4075), 1, + anon_sym_LPAREN, + ACTIONS(4078), 1, anon_sym_class, - ACTIONS(4127), 1, - anon_sym_extern, - ACTIONS(4133), 1, - anon_sym_operator, - ACTIONS(4142), 1, + ACTIONS(4096), 1, anon_sym_long, - ACTIONS(4148), 1, + ACTIONS(4102), 1, anon_sym_ctypedef, - ACTIONS(4154), 1, + ACTIONS(4108), 1, anon_sym_enum, - ACTIONS(4157), 1, + ACTIONS(4111), 1, anon_sym_cppclass, - ACTIONS(4160), 1, + ACTIONS(4114), 1, anon_sym_fused, - ACTIONS(4163), 1, + ACTIONS(4117), 1, sym__dedent, - STATE(3130), 1, + ACTIONS(4119), 1, + sym_string_start, + STATE(3198), 1, sym__signedness, - STATE(3228), 1, + STATE(3409), 1, + sym__longness, + STATE(3461), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4084), 2, + anon_sym_cdef, + anon_sym_cpdef, + ACTIONS(4090), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4093), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4099), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4105), 2, + anon_sym_struct, + anon_sym_union, + STATE(2799), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(3668), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4087), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(715), 3, + sym_struct, + sym_enum, + sym_cppclass, + STATE(730), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + ACTIONS(4081), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(2018), 5, + sym_string, + sym_cdef_type_declaration, + sym_cvar_decl, + sym_ctypedef_statement, + aux_sym_extern_suite_repeat1, + [88435] = 26, + ACTIONS(371), 1, + anon_sym_long, + ACTIONS(3978), 1, + anon_sym_operator, + ACTIONS(4122), 1, + sym_identifier, + ACTIONS(4124), 1, + anon_sym_class, + ACTIONS(4126), 1, + anon_sym_extern, + ACTIONS(4128), 1, + anon_sym_ctypedef, + ACTIONS(4132), 1, + anon_sym_enum, + ACTIONS(4134), 1, + anon_sym_cppclass, + ACTIONS(4136), 1, + anon_sym_fused, + ACTIONS(4138), 1, + sym__dedent, + STATE(3140), 1, + sym__signedness, + STATE(3191), 1, sym_int_type, - STATE(3321), 1, + STATE(3368), 1, sym__longness, - STATE(3597), 1, + STATE(3562), 1, sym_operator_name, - STATE(3811), 1, + STATE(3795), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4136), 2, + ACTIONS(367), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4139), 2, + ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(4145), 2, + ACTIONS(3980), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4151), 2, + ACTIONS(4130), 2, anon_sym_struct, anon_sym_union, - STATE(2778), 2, + STATE(2806), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(4130), 3, + ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(3067), 3, + STATE(3077), 3, sym_class_definition, sym_ctype_declaration, sym_fused, - STATE(3071), 3, + STATE(3079), 3, sym_struct, sym_enum, sym_cppclass, - ACTIONS(4124), 5, + ACTIONS(103), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(2010), 5, + STATE(2021), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, - aux_sym_cdef_statement_repeat1, - [88532] = 26, + aux_sym_cdef_definition_block_repeat1, + [88534] = 26, ACTIONS(371), 1, anon_sym_long, - ACTIONS(4094), 1, + ACTIONS(3978), 1, anon_sym_operator, - ACTIONS(4165), 1, + ACTIONS(4122), 1, sym_identifier, - ACTIONS(4167), 1, + ACTIONS(4124), 1, anon_sym_class, - ACTIONS(4169), 1, + ACTIONS(4126), 1, anon_sym_extern, - ACTIONS(4171), 1, + ACTIONS(4128), 1, anon_sym_ctypedef, - ACTIONS(4175), 1, + ACTIONS(4132), 1, anon_sym_enum, - ACTIONS(4177), 1, + ACTIONS(4134), 1, anon_sym_cppclass, - ACTIONS(4179), 1, + ACTIONS(4136), 1, anon_sym_fused, - ACTIONS(4181), 1, + ACTIONS(4140), 1, sym__dedent, - STATE(3130), 1, + STATE(3140), 1, sym__signedness, - STATE(3228), 1, + STATE(3191), 1, sym_int_type, - STATE(3321), 1, + STATE(3368), 1, sym__longness, - STATE(3597), 1, + STATE(3562), 1, sym_operator_name, - STATE(3811), 1, + STATE(3795), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -193127,24 +193893,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(4096), 2, + ACTIONS(3980), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4173), 2, + ACTIONS(4130), 2, anon_sym_struct, anon_sym_union, - STATE(2778), 2, + STATE(2806), 2, sym_storageclass, aux_sym_class_definition_repeat1, ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(3067), 3, + STATE(3077), 3, sym_class_definition, sym_ctype_declaration, sym_fused, - STATE(3071), 3, + STATE(3079), 3, sym_struct, sym_enum, sym_cppclass, @@ -193154,115 +193920,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(2010), 5, + STATE(2021), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, - aux_sym_cdef_statement_repeat1, - [88631] = 26, - ACTIONS(371), 1, - anon_sym_long, - ACTIONS(4094), 1, - anon_sym_operator, - ACTIONS(4165), 1, + aux_sym_cdef_definition_block_repeat1, + [88633] = 26, + ACTIONS(4142), 1, sym_identifier, - ACTIONS(4167), 1, + ACTIONS(4145), 1, anon_sym_class, - ACTIONS(4169), 1, + ACTIONS(4151), 1, anon_sym_extern, - ACTIONS(4171), 1, + ACTIONS(4157), 1, + anon_sym_operator, + ACTIONS(4166), 1, + anon_sym_long, + ACTIONS(4172), 1, anon_sym_ctypedef, - ACTIONS(4175), 1, + ACTIONS(4178), 1, anon_sym_enum, - ACTIONS(4177), 1, + ACTIONS(4181), 1, anon_sym_cppclass, - ACTIONS(4179), 1, + ACTIONS(4184), 1, anon_sym_fused, - ACTIONS(4183), 1, + ACTIONS(4187), 1, sym__dedent, - STATE(3130), 1, + STATE(3140), 1, sym__signedness, - STATE(3228), 1, + STATE(3191), 1, sym_int_type, - STATE(3321), 1, + STATE(3368), 1, sym__longness, - STATE(3597), 1, + STATE(3562), 1, sym_operator_name, - STATE(3811), 1, + STATE(3795), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(367), 2, + ACTIONS(4160), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(369), 2, + ACTIONS(4163), 2, anon_sym_char, anon_sym_short, - ACTIONS(4096), 2, + ACTIONS(4169), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4173), 2, + ACTIONS(4175), 2, anon_sym_struct, anon_sym_union, - STATE(2778), 2, + STATE(2806), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(365), 3, + ACTIONS(4154), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(3067), 3, + STATE(3077), 3, sym_class_definition, sym_ctype_declaration, sym_fused, - STATE(3071), 3, + STATE(3079), 3, sym_struct, sym_enum, sym_cppclass, - ACTIONS(103), 5, + ACTIONS(4148), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(2010), 5, + STATE(2021), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, - aux_sym_cdef_statement_repeat1, - [88730] = 26, + aux_sym_cdef_definition_block_repeat1, + [88732] = 26, ACTIONS(371), 1, anon_sym_long, - ACTIONS(4094), 1, + ACTIONS(3978), 1, anon_sym_operator, - ACTIONS(4165), 1, + ACTIONS(4122), 1, sym_identifier, - ACTIONS(4167), 1, + ACTIONS(4124), 1, anon_sym_class, - ACTIONS(4169), 1, + ACTIONS(4126), 1, anon_sym_extern, - ACTIONS(4171), 1, + ACTIONS(4128), 1, anon_sym_ctypedef, - ACTIONS(4175), 1, + ACTIONS(4132), 1, anon_sym_enum, - ACTIONS(4177), 1, + ACTIONS(4134), 1, anon_sym_cppclass, - ACTIONS(4179), 1, + ACTIONS(4136), 1, anon_sym_fused, - ACTIONS(4185), 1, + ACTIONS(4189), 1, sym__dedent, - STATE(3130), 1, + STATE(3140), 1, sym__signedness, - STATE(3228), 1, + STATE(3191), 1, sym_int_type, - STATE(3321), 1, + STATE(3368), 1, sym__longness, - STATE(3597), 1, + STATE(3562), 1, sym_operator_name, - STATE(3811), 1, + STATE(3795), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -193273,24 +194039,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(4096), 2, + ACTIONS(3980), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4173), 2, + ACTIONS(4130), 2, anon_sym_struct, anon_sym_union, - STATE(2778), 2, + STATE(2806), 2, sym_storageclass, aux_sym_class_definition_repeat1, ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(3067), 3, + STATE(3077), 3, sym_class_definition, sym_ctype_declaration, sym_fused, - STATE(3071), 3, + STATE(3079), 3, sym_struct, sym_enum, sym_cppclass, @@ -193300,42 +194066,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(2010), 5, + STATE(2021), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, - aux_sym_cdef_statement_repeat1, - [88829] = 26, + aux_sym_cdef_definition_block_repeat1, + [88831] = 26, ACTIONS(371), 1, anon_sym_long, - ACTIONS(4094), 1, + ACTIONS(3978), 1, anon_sym_operator, - ACTIONS(4165), 1, + ACTIONS(4122), 1, sym_identifier, - ACTIONS(4167), 1, + ACTIONS(4124), 1, anon_sym_class, - ACTIONS(4169), 1, + ACTIONS(4126), 1, anon_sym_extern, - ACTIONS(4171), 1, + ACTIONS(4128), 1, anon_sym_ctypedef, - ACTIONS(4175), 1, + ACTIONS(4132), 1, anon_sym_enum, - ACTIONS(4177), 1, + ACTIONS(4134), 1, anon_sym_cppclass, - ACTIONS(4179), 1, + ACTIONS(4136), 1, anon_sym_fused, - ACTIONS(4187), 1, + ACTIONS(4191), 1, sym__dedent, - STATE(3130), 1, + STATE(3140), 1, sym__signedness, - STATE(3228), 1, + STATE(3191), 1, sym_int_type, - STATE(3321), 1, + STATE(3368), 1, sym__longness, - STATE(3597), 1, + STATE(3562), 1, sym_operator_name, - STATE(3811), 1, + STATE(3795), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -193346,24 +194112,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(4096), 2, + ACTIONS(3980), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4173), 2, + ACTIONS(4130), 2, anon_sym_struct, anon_sym_union, - STATE(2778), 2, + STATE(2806), 2, sym_storageclass, aux_sym_class_definition_repeat1, ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(3067), 3, + STATE(3077), 3, sym_class_definition, sym_ctype_declaration, sym_fused, - STATE(3071), 3, + STATE(3079), 3, sym_struct, sym_enum, sym_cppclass, @@ -193373,42 +194139,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(2010), 5, + STATE(2021), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, - aux_sym_cdef_statement_repeat1, - [88928] = 26, + aux_sym_cdef_definition_block_repeat1, + [88930] = 26, ACTIONS(371), 1, anon_sym_long, - ACTIONS(4094), 1, + ACTIONS(3978), 1, anon_sym_operator, - ACTIONS(4165), 1, + ACTIONS(4122), 1, sym_identifier, - ACTIONS(4167), 1, + ACTIONS(4124), 1, anon_sym_class, - ACTIONS(4169), 1, + ACTIONS(4126), 1, anon_sym_extern, - ACTIONS(4171), 1, + ACTIONS(4128), 1, anon_sym_ctypedef, - ACTIONS(4175), 1, + ACTIONS(4132), 1, anon_sym_enum, - ACTIONS(4177), 1, + ACTIONS(4134), 1, anon_sym_cppclass, - ACTIONS(4179), 1, + ACTIONS(4136), 1, anon_sym_fused, - ACTIONS(4189), 1, + ACTIONS(4193), 1, sym__dedent, - STATE(3130), 1, + STATE(3140), 1, sym__signedness, - STATE(3228), 1, + STATE(3191), 1, sym_int_type, - STATE(3321), 1, + STATE(3368), 1, sym__longness, - STATE(3597), 1, + STATE(3562), 1, sym_operator_name, - STATE(3811), 1, + STATE(3795), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -193419,24 +194185,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(4096), 2, + ACTIONS(3980), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4173), 2, + ACTIONS(4130), 2, anon_sym_struct, anon_sym_union, - STATE(2778), 2, + STATE(2806), 2, sym_storageclass, aux_sym_class_definition_repeat1, ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(3067), 3, + STATE(3077), 3, sym_class_definition, sym_ctype_declaration, sym_fused, - STATE(3071), 3, + STATE(3079), 3, sym_struct, sym_enum, sym_cppclass, @@ -193446,42 +194212,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(2010), 5, + STATE(2021), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, - aux_sym_cdef_statement_repeat1, - [89027] = 26, + aux_sym_cdef_definition_block_repeat1, + [89029] = 26, ACTIONS(371), 1, anon_sym_long, - ACTIONS(4094), 1, + ACTIONS(3978), 1, anon_sym_operator, - ACTIONS(4165), 1, + ACTIONS(4122), 1, sym_identifier, - ACTIONS(4167), 1, + ACTIONS(4124), 1, anon_sym_class, - ACTIONS(4169), 1, + ACTIONS(4126), 1, anon_sym_extern, - ACTIONS(4171), 1, + ACTIONS(4128), 1, anon_sym_ctypedef, - ACTIONS(4175), 1, + ACTIONS(4132), 1, anon_sym_enum, - ACTIONS(4177), 1, + ACTIONS(4134), 1, anon_sym_cppclass, - ACTIONS(4179), 1, + ACTIONS(4136), 1, anon_sym_fused, - ACTIONS(4191), 1, + ACTIONS(4195), 1, sym__dedent, - STATE(3130), 1, + STATE(3140), 1, sym__signedness, - STATE(3228), 1, + STATE(3191), 1, sym_int_type, - STATE(3321), 1, + STATE(3368), 1, sym__longness, - STATE(3597), 1, + STATE(3562), 1, sym_operator_name, - STATE(3811), 1, + STATE(3795), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -193492,24 +194258,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(4096), 2, + ACTIONS(3980), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4173), 2, + ACTIONS(4130), 2, anon_sym_struct, anon_sym_union, - STATE(2778), 2, + STATE(2806), 2, sym_storageclass, aux_sym_class_definition_repeat1, ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(3067), 3, + STATE(3077), 3, sym_class_definition, sym_ctype_declaration, sym_fused, - STATE(3071), 3, + STATE(3079), 3, sym_struct, sym_enum, sym_cppclass, @@ -193519,42 +194285,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(2010), 5, + STATE(2021), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, - aux_sym_cdef_statement_repeat1, - [89126] = 26, + aux_sym_cdef_definition_block_repeat1, + [89128] = 26, ACTIONS(371), 1, anon_sym_long, - ACTIONS(4094), 1, + ACTIONS(3978), 1, anon_sym_operator, - ACTIONS(4165), 1, + ACTIONS(4122), 1, sym_identifier, - ACTIONS(4167), 1, + ACTIONS(4124), 1, anon_sym_class, - ACTIONS(4169), 1, + ACTIONS(4126), 1, anon_sym_extern, - ACTIONS(4171), 1, + ACTIONS(4128), 1, anon_sym_ctypedef, - ACTIONS(4175), 1, + ACTIONS(4132), 1, anon_sym_enum, - ACTIONS(4177), 1, + ACTIONS(4134), 1, anon_sym_cppclass, - ACTIONS(4179), 1, + ACTIONS(4136), 1, anon_sym_fused, - ACTIONS(4193), 1, + ACTIONS(4197), 1, sym__dedent, - STATE(3130), 1, + STATE(3140), 1, sym__signedness, - STATE(3228), 1, + STATE(3191), 1, sym_int_type, - STATE(3321), 1, + STATE(3368), 1, sym__longness, - STATE(3597), 1, + STATE(3562), 1, sym_operator_name, - STATE(3811), 1, + STATE(3795), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -193565,24 +194331,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(4096), 2, + ACTIONS(3980), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4173), 2, + ACTIONS(4130), 2, anon_sym_struct, anon_sym_union, - STATE(2778), 2, + STATE(2806), 2, sym_storageclass, aux_sym_class_definition_repeat1, ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(3067), 3, + STATE(3077), 3, sym_class_definition, sym_ctype_declaration, sym_fused, - STATE(3071), 3, + STATE(3079), 3, sym_struct, sym_enum, sym_cppclass, @@ -193592,42 +194358,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(2010), 5, + STATE(2021), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, - aux_sym_cdef_statement_repeat1, - [89225] = 26, + aux_sym_cdef_definition_block_repeat1, + [89227] = 26, ACTIONS(371), 1, anon_sym_long, - ACTIONS(4094), 1, + ACTIONS(3978), 1, anon_sym_operator, - ACTIONS(4165), 1, + ACTIONS(4122), 1, sym_identifier, - ACTIONS(4167), 1, + ACTIONS(4124), 1, anon_sym_class, - ACTIONS(4169), 1, + ACTIONS(4126), 1, anon_sym_extern, - ACTIONS(4171), 1, + ACTIONS(4128), 1, anon_sym_ctypedef, - ACTIONS(4175), 1, + ACTIONS(4132), 1, anon_sym_enum, - ACTIONS(4177), 1, + ACTIONS(4134), 1, anon_sym_cppclass, - ACTIONS(4179), 1, + ACTIONS(4136), 1, anon_sym_fused, - ACTIONS(4195), 1, + ACTIONS(4199), 1, sym__dedent, - STATE(3130), 1, + STATE(3140), 1, sym__signedness, - STATE(3228), 1, + STATE(3191), 1, sym_int_type, - STATE(3321), 1, + STATE(3368), 1, sym__longness, - STATE(3597), 1, + STATE(3562), 1, sym_operator_name, - STATE(3811), 1, + STATE(3795), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -193638,24 +194404,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(4096), 2, + ACTIONS(3980), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4173), 2, + ACTIONS(4130), 2, anon_sym_struct, anon_sym_union, - STATE(2778), 2, + STATE(2806), 2, sym_storageclass, aux_sym_class_definition_repeat1, ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(3067), 3, + STATE(3077), 3, sym_class_definition, sym_ctype_declaration, sym_fused, - STATE(3071), 3, + STATE(3079), 3, sym_struct, sym_enum, sym_cppclass, @@ -193665,42 +194431,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(2010), 5, + STATE(2021), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, - aux_sym_cdef_statement_repeat1, - [89324] = 26, + aux_sym_cdef_definition_block_repeat1, + [89326] = 26, ACTIONS(371), 1, anon_sym_long, - ACTIONS(4094), 1, + ACTIONS(3978), 1, anon_sym_operator, - ACTIONS(4165), 1, + ACTIONS(4122), 1, sym_identifier, - ACTIONS(4167), 1, + ACTIONS(4124), 1, anon_sym_class, - ACTIONS(4169), 1, + ACTIONS(4126), 1, anon_sym_extern, - ACTIONS(4171), 1, + ACTIONS(4128), 1, anon_sym_ctypedef, - ACTIONS(4175), 1, + ACTIONS(4132), 1, anon_sym_enum, - ACTIONS(4177), 1, + ACTIONS(4134), 1, anon_sym_cppclass, - ACTIONS(4179), 1, + ACTIONS(4136), 1, anon_sym_fused, - ACTIONS(4197), 1, + ACTIONS(4201), 1, sym__dedent, - STATE(3130), 1, + STATE(3140), 1, sym__signedness, - STATE(3228), 1, + STATE(3191), 1, sym_int_type, - STATE(3321), 1, + STATE(3368), 1, sym__longness, - STATE(3597), 1, + STATE(3562), 1, sym_operator_name, - STATE(3811), 1, + STATE(3795), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -193711,24 +194477,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(4096), 2, + ACTIONS(3980), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4173), 2, + ACTIONS(4130), 2, anon_sym_struct, anon_sym_union, - STATE(2778), 2, + STATE(2806), 2, sym_storageclass, aux_sym_class_definition_repeat1, ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(3067), 3, + STATE(3077), 3, sym_class_definition, sym_ctype_declaration, sym_fused, - STATE(3071), 3, + STATE(3079), 3, sym_struct, sym_enum, sym_cppclass, @@ -193738,42 +194504,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(2010), 5, + STATE(2021), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, - aux_sym_cdef_statement_repeat1, - [89423] = 26, + aux_sym_cdef_definition_block_repeat1, + [89425] = 26, ACTIONS(371), 1, anon_sym_long, - ACTIONS(4094), 1, + ACTIONS(3978), 1, anon_sym_operator, - ACTIONS(4165), 1, + ACTIONS(4122), 1, sym_identifier, - ACTIONS(4167), 1, + ACTIONS(4124), 1, anon_sym_class, - ACTIONS(4169), 1, + ACTIONS(4126), 1, anon_sym_extern, - ACTIONS(4171), 1, + ACTIONS(4128), 1, anon_sym_ctypedef, - ACTIONS(4175), 1, + ACTIONS(4132), 1, anon_sym_enum, - ACTIONS(4177), 1, + ACTIONS(4134), 1, anon_sym_cppclass, - ACTIONS(4179), 1, + ACTIONS(4136), 1, anon_sym_fused, - ACTIONS(4199), 1, + ACTIONS(4203), 1, sym__dedent, - STATE(3130), 1, + STATE(3140), 1, sym__signedness, - STATE(3228), 1, + STATE(3191), 1, sym_int_type, - STATE(3321), 1, + STATE(3368), 1, sym__longness, - STATE(3597), 1, + STATE(3562), 1, sym_operator_name, - STATE(3811), 1, + STATE(3795), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -193784,24 +194550,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(4096), 2, + ACTIONS(3980), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4173), 2, + ACTIONS(4130), 2, anon_sym_struct, anon_sym_union, - STATE(2778), 2, + STATE(2806), 2, sym_storageclass, aux_sym_class_definition_repeat1, ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(3067), 3, + STATE(3077), 3, sym_class_definition, sym_ctype_declaration, sym_fused, - STATE(3071), 3, + STATE(3079), 3, sym_struct, sym_enum, sym_cppclass, @@ -193811,40 +194577,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(2010), 5, + STATE(2021), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, - aux_sym_cdef_statement_repeat1, - [89522] = 25, + aux_sym_cdef_definition_block_repeat1, + [89524] = 25, ACTIONS(371), 1, anon_sym_long, - ACTIONS(4094), 1, + ACTIONS(3978), 1, anon_sym_operator, - ACTIONS(4165), 1, + ACTIONS(4122), 1, sym_identifier, - ACTIONS(4167), 1, + ACTIONS(4124), 1, anon_sym_class, - ACTIONS(4169), 1, + ACTIONS(4126), 1, anon_sym_extern, - ACTIONS(4171), 1, + ACTIONS(4128), 1, anon_sym_ctypedef, - ACTIONS(4175), 1, + ACTIONS(4132), 1, anon_sym_enum, - ACTIONS(4177), 1, + ACTIONS(4134), 1, anon_sym_cppclass, - ACTIONS(4179), 1, + ACTIONS(4136), 1, anon_sym_fused, - STATE(3130), 1, + STATE(3140), 1, sym__signedness, - STATE(3228), 1, + STATE(3191), 1, sym_int_type, - STATE(3321), 1, + STATE(3368), 1, sym__longness, - STATE(3597), 1, + STATE(3562), 1, sym_operator_name, - STATE(3811), 1, + STATE(3795), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -193855,24 +194621,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(4096), 2, + ACTIONS(3980), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4173), 2, + ACTIONS(4130), 2, anon_sym_struct, anon_sym_union, - STATE(2778), 2, + STATE(2806), 2, sym_storageclass, aux_sym_class_definition_repeat1, ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(3067), 3, + STATE(3077), 3, sym_class_definition, sym_ctype_declaration, sym_fused, - STATE(3071), 3, + STATE(3079), 3, sym_struct, sym_enum, sym_cppclass, @@ -193882,40 +194648,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(2018), 5, + STATE(2026), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, - aux_sym_cdef_statement_repeat1, - [89618] = 25, + aux_sym_cdef_definition_block_repeat1, + [89620] = 25, ACTIONS(371), 1, anon_sym_long, - ACTIONS(4094), 1, + ACTIONS(3978), 1, anon_sym_operator, - ACTIONS(4165), 1, + ACTIONS(4122), 1, sym_identifier, - ACTIONS(4167), 1, + ACTIONS(4124), 1, anon_sym_class, - ACTIONS(4169), 1, + ACTIONS(4126), 1, anon_sym_extern, - ACTIONS(4171), 1, + ACTIONS(4128), 1, anon_sym_ctypedef, - ACTIONS(4175), 1, + ACTIONS(4132), 1, anon_sym_enum, - ACTIONS(4177), 1, + ACTIONS(4134), 1, anon_sym_cppclass, - ACTIONS(4179), 1, + ACTIONS(4136), 1, anon_sym_fused, - STATE(3130), 1, + STATE(3140), 1, sym__signedness, - STATE(3228), 1, + STATE(3191), 1, sym_int_type, - STATE(3321), 1, + STATE(3368), 1, sym__longness, - STATE(3597), 1, + STATE(3562), 1, sym_operator_name, - STATE(3811), 1, + STATE(3795), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -193926,24 +194692,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(4096), 2, + ACTIONS(3980), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4173), 2, + ACTIONS(4130), 2, anon_sym_struct, anon_sym_union, - STATE(2778), 2, + STATE(2806), 2, sym_storageclass, aux_sym_class_definition_repeat1, ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(3067), 3, + STATE(3077), 3, sym_class_definition, sym_ctype_declaration, sym_fused, - STATE(3071), 3, + STATE(3079), 3, sym_struct, sym_enum, sym_cppclass, @@ -193953,40 +194719,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(2013), 5, + STATE(2025), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, - aux_sym_cdef_statement_repeat1, - [89714] = 25, + aux_sym_cdef_definition_block_repeat1, + [89716] = 21, + ACTIONS(4207), 1, + anon_sym_DOT, + ACTIONS(4209), 1, + anon_sym_LPAREN, + ACTIONS(4217), 1, + anon_sym_STAR_STAR, + ACTIONS(4219), 1, + anon_sym_EQ, + ACTIONS(4221), 1, + anon_sym_LBRACK, + ACTIONS(4227), 1, + anon_sym_PIPE, + ACTIONS(4229), 1, + anon_sym_not, + ACTIONS(4231), 1, + anon_sym_AMP, + ACTIONS(4233), 1, + anon_sym_CARET, + ACTIONS(4235), 1, + anon_sym_is, + STATE(3043), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4211), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4213), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4225), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4237), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2012), 2, + sym__not_in, + sym__is_not, + STATE(2133), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4223), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4215), 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(4205), 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, + [89804] = 25, ACTIONS(371), 1, anon_sym_long, - ACTIONS(4094), 1, + ACTIONS(3978), 1, anon_sym_operator, - ACTIONS(4165), 1, + ACTIONS(4122), 1, sym_identifier, - ACTIONS(4167), 1, + ACTIONS(4124), 1, anon_sym_class, - ACTIONS(4169), 1, + ACTIONS(4126), 1, anon_sym_extern, - ACTIONS(4171), 1, + ACTIONS(4128), 1, anon_sym_ctypedef, - ACTIONS(4175), 1, + ACTIONS(4132), 1, anon_sym_enum, - ACTIONS(4177), 1, + ACTIONS(4134), 1, anon_sym_cppclass, - ACTIONS(4179), 1, + ACTIONS(4136), 1, anon_sym_fused, - STATE(3130), 1, + STATE(3140), 1, sym__signedness, - STATE(3228), 1, + STATE(3191), 1, sym_int_type, - STATE(3321), 1, + STATE(3368), 1, sym__longness, - STATE(3597), 1, + STATE(3562), 1, sym_operator_name, - STATE(3811), 1, + STATE(3795), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -193997,24 +194830,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(4096), 2, + ACTIONS(3980), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4173), 2, + ACTIONS(4130), 2, anon_sym_struct, anon_sym_union, - STATE(2778), 2, + STATE(2806), 2, sym_storageclass, aux_sym_class_definition_repeat1, ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(3067), 3, + STATE(3077), 3, sym_class_definition, sym_ctype_declaration, sym_fused, - STATE(3071), 3, + STATE(3079), 3, sym_struct, sym_enum, sym_cppclass, @@ -194024,68 +194857,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(2014), 5, + STATE(2024), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, - aux_sym_cdef_statement_repeat1, - [89810] = 21, - ACTIONS(4203), 1, + aux_sym_cdef_definition_block_repeat1, + [89900] = 21, + ACTIONS(4207), 1, anon_sym_DOT, - ACTIONS(4205), 1, + ACTIONS(4209), 1, anon_sym_LPAREN, - ACTIONS(4213), 1, + ACTIONS(4217), 1, anon_sym_STAR_STAR, - ACTIONS(4215), 1, + ACTIONS(4219), 1, anon_sym_EQ, - ACTIONS(4217), 1, + ACTIONS(4221), 1, anon_sym_LBRACK, - ACTIONS(4223), 1, + ACTIONS(4227), 1, anon_sym_PIPE, - ACTIONS(4225), 1, + ACTIONS(4229), 1, anon_sym_not, - ACTIONS(4227), 1, + ACTIONS(4231), 1, anon_sym_AMP, - ACTIONS(4229), 1, + ACTIONS(4233), 1, anon_sym_CARET, - ACTIONS(4231), 1, + ACTIONS(4235), 1, anon_sym_is, - STATE(3038), 1, + STATE(2047), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4207), 2, + ACTIONS(4211), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4209), 2, + ACTIONS(4213), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4221), 2, + ACTIONS(4225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4233), 2, + ACTIONS(4237), 2, anon_sym_LT, anon_sym_GT, - STATE(1990), 2, + STATE(2012), 2, sym__not_in, sym__is_not, - STATE(2110), 2, + STATE(2133), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4219), 3, + ACTIONS(4223), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4211), 6, + ACTIONS(4215), 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(4201), 11, + ACTIONS(4205), 11, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -194097,34 +194930,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_nogil, - [89898] = 25, + [89988] = 25, ACTIONS(371), 1, anon_sym_long, - ACTIONS(4094), 1, + ACTIONS(3978), 1, anon_sym_operator, - ACTIONS(4165), 1, + ACTIONS(4122), 1, sym_identifier, - ACTIONS(4167), 1, + ACTIONS(4124), 1, anon_sym_class, - ACTIONS(4169), 1, + ACTIONS(4126), 1, anon_sym_extern, - ACTIONS(4171), 1, + ACTIONS(4128), 1, anon_sym_ctypedef, - ACTIONS(4175), 1, + ACTIONS(4132), 1, anon_sym_enum, - ACTIONS(4177), 1, + ACTIONS(4134), 1, anon_sym_cppclass, - ACTIONS(4179), 1, + ACTIONS(4136), 1, anon_sym_fused, - STATE(3130), 1, + STATE(3140), 1, sym__signedness, - STATE(3228), 1, + STATE(3191), 1, sym_int_type, - STATE(3321), 1, + STATE(3368), 1, sym__longness, - STATE(3597), 1, + STATE(3562), 1, sym_operator_name, - STATE(3811), 1, + STATE(3795), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -194135,24 +194968,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(4096), 2, + ACTIONS(3980), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4173), 2, + ACTIONS(4130), 2, anon_sym_struct, anon_sym_union, - STATE(2778), 2, + STATE(2806), 2, sym_storageclass, aux_sym_class_definition_repeat1, ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(3067), 3, + STATE(3077), 3, sym_class_definition, sym_ctype_declaration, sym_fused, - STATE(3071), 3, + STATE(3079), 3, sym_struct, sym_enum, sym_cppclass, @@ -194162,40 +194995,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(2015), 5, + STATE(2023), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, - aux_sym_cdef_statement_repeat1, - [89994] = 25, + aux_sym_cdef_definition_block_repeat1, + [90084] = 25, ACTIONS(371), 1, anon_sym_long, - ACTIONS(4094), 1, + ACTIONS(3978), 1, anon_sym_operator, - ACTIONS(4165), 1, + ACTIONS(4122), 1, sym_identifier, - ACTIONS(4167), 1, + ACTIONS(4124), 1, anon_sym_class, - ACTIONS(4169), 1, + ACTIONS(4126), 1, anon_sym_extern, - ACTIONS(4171), 1, + ACTIONS(4128), 1, anon_sym_ctypedef, - ACTIONS(4175), 1, + ACTIONS(4132), 1, anon_sym_enum, - ACTIONS(4177), 1, + ACTIONS(4134), 1, anon_sym_cppclass, - ACTIONS(4179), 1, + ACTIONS(4136), 1, anon_sym_fused, - STATE(3130), 1, + STATE(3140), 1, sym__signedness, - STATE(3228), 1, + STATE(3191), 1, sym_int_type, - STATE(3321), 1, + STATE(3368), 1, sym__longness, - STATE(3597), 1, + STATE(3562), 1, sym_operator_name, - STATE(3811), 1, + STATE(3795), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -194206,24 +195039,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(4096), 2, + ACTIONS(3980), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4173), 2, + ACTIONS(4130), 2, anon_sym_struct, anon_sym_union, - STATE(2778), 2, + STATE(2806), 2, sym_storageclass, aux_sym_class_definition_repeat1, ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(3067), 3, + STATE(3077), 3, sym_class_definition, sym_ctype_declaration, sym_fused, - STATE(3071), 3, + STATE(3079), 3, sym_struct, sym_enum, sym_cppclass, @@ -194233,40 +195066,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(2012), 5, + STATE(2022), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, - aux_sym_cdef_statement_repeat1, - [90090] = 25, + aux_sym_cdef_definition_block_repeat1, + [90180] = 25, ACTIONS(371), 1, anon_sym_long, - ACTIONS(4094), 1, + ACTIONS(3978), 1, anon_sym_operator, - ACTIONS(4165), 1, + ACTIONS(4122), 1, sym_identifier, - ACTIONS(4167), 1, + ACTIONS(4124), 1, anon_sym_class, - ACTIONS(4169), 1, + ACTIONS(4126), 1, anon_sym_extern, - ACTIONS(4171), 1, + ACTIONS(4128), 1, anon_sym_ctypedef, - ACTIONS(4175), 1, + ACTIONS(4132), 1, anon_sym_enum, - ACTIONS(4177), 1, + ACTIONS(4134), 1, anon_sym_cppclass, - ACTIONS(4179), 1, + ACTIONS(4136), 1, anon_sym_fused, - STATE(3130), 1, + STATE(3140), 1, sym__signedness, - STATE(3228), 1, + STATE(3191), 1, sym_int_type, - STATE(3321), 1, + STATE(3368), 1, sym__longness, - STATE(3597), 1, + STATE(3562), 1, sym_operator_name, - STATE(3811), 1, + STATE(3795), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -194277,24 +195110,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(4096), 2, + ACTIONS(3980), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4173), 2, + ACTIONS(4130), 2, anon_sym_struct, anon_sym_union, - STATE(2778), 2, + STATE(2806), 2, sym_storageclass, aux_sym_class_definition_repeat1, ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(3067), 3, + STATE(3077), 3, sym_class_definition, sym_ctype_declaration, sym_fused, - STATE(3071), 3, + STATE(3079), 3, sym_struct, sym_enum, sym_cppclass, @@ -194304,40 +195137,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(2011), 5, + STATE(2020), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, - aux_sym_cdef_statement_repeat1, - [90186] = 25, + aux_sym_cdef_definition_block_repeat1, + [90276] = 25, ACTIONS(371), 1, anon_sym_long, - ACTIONS(4094), 1, + ACTIONS(3978), 1, anon_sym_operator, - ACTIONS(4165), 1, + ACTIONS(4122), 1, sym_identifier, - ACTIONS(4167), 1, + ACTIONS(4124), 1, anon_sym_class, - ACTIONS(4169), 1, + ACTIONS(4126), 1, anon_sym_extern, - ACTIONS(4171), 1, + ACTIONS(4128), 1, anon_sym_ctypedef, - ACTIONS(4175), 1, + ACTIONS(4132), 1, anon_sym_enum, - ACTIONS(4177), 1, + ACTIONS(4134), 1, anon_sym_cppclass, - ACTIONS(4179), 1, + ACTIONS(4136), 1, anon_sym_fused, - STATE(3130), 1, + STATE(3140), 1, sym__signedness, - STATE(3228), 1, + STATE(3191), 1, sym_int_type, - STATE(3321), 1, + STATE(3368), 1, sym__longness, - STATE(3597), 1, + STATE(3562), 1, sym_operator_name, - STATE(3811), 1, + STATE(3795), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -194348,24 +195181,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(4096), 2, + ACTIONS(3980), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4173), 2, + ACTIONS(4130), 2, anon_sym_struct, anon_sym_union, - STATE(2778), 2, + STATE(2806), 2, sym_storageclass, aux_sym_class_definition_repeat1, ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(3067), 3, + STATE(3077), 3, sym_class_definition, sym_ctype_declaration, sym_fused, - STATE(3071), 3, + STATE(3079), 3, sym_struct, sym_enum, sym_cppclass, @@ -194380,35 +195213,35 @@ static const uint16_t ts_small_parse_table[] = { sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, - aux_sym_cdef_statement_repeat1, - [90282] = 25, + aux_sym_cdef_definition_block_repeat1, + [90372] = 25, ACTIONS(371), 1, anon_sym_long, - ACTIONS(4094), 1, + ACTIONS(3978), 1, anon_sym_operator, - ACTIONS(4165), 1, + ACTIONS(4122), 1, sym_identifier, - ACTIONS(4167), 1, + ACTIONS(4124), 1, anon_sym_class, - ACTIONS(4169), 1, + ACTIONS(4126), 1, anon_sym_extern, - ACTIONS(4171), 1, + ACTIONS(4128), 1, anon_sym_ctypedef, - ACTIONS(4175), 1, + ACTIONS(4132), 1, anon_sym_enum, - ACTIONS(4177), 1, + ACTIONS(4134), 1, anon_sym_cppclass, - ACTIONS(4179), 1, + ACTIONS(4136), 1, anon_sym_fused, - STATE(3130), 1, + STATE(3140), 1, sym__signedness, - STATE(3228), 1, + STATE(3191), 1, sym_int_type, - STATE(3321), 1, + STATE(3368), 1, sym__longness, - STATE(3597), 1, + STATE(3562), 1, sym_operator_name, - STATE(3811), 1, + STATE(3795), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -194419,24 +195252,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(4096), 2, + ACTIONS(3980), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4173), 2, + ACTIONS(4130), 2, anon_sym_struct, anon_sym_union, - STATE(2778), 2, + STATE(2806), 2, sym_storageclass, aux_sym_class_definition_repeat1, ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(3067), 3, + STATE(3077), 3, sym_class_definition, sym_ctype_declaration, sym_fused, - STATE(3071), 3, + STATE(3079), 3, sym_struct, sym_enum, sym_cppclass, @@ -194446,40 +195279,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(2016), 5, + STATE(2029), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, - aux_sym_cdef_statement_repeat1, - [90378] = 25, + aux_sym_cdef_definition_block_repeat1, + [90468] = 25, ACTIONS(371), 1, anon_sym_long, - ACTIONS(4094), 1, + ACTIONS(3978), 1, anon_sym_operator, - ACTIONS(4165), 1, + ACTIONS(4122), 1, sym_identifier, - ACTIONS(4167), 1, + ACTIONS(4124), 1, anon_sym_class, - ACTIONS(4169), 1, + ACTIONS(4126), 1, anon_sym_extern, - ACTIONS(4171), 1, + ACTIONS(4128), 1, anon_sym_ctypedef, - ACTIONS(4175), 1, + ACTIONS(4132), 1, anon_sym_enum, - ACTIONS(4177), 1, + ACTIONS(4134), 1, anon_sym_cppclass, - ACTIONS(4179), 1, + ACTIONS(4136), 1, anon_sym_fused, - STATE(3130), 1, + STATE(3140), 1, sym__signedness, - STATE(3228), 1, + STATE(3191), 1, sym_int_type, - STATE(3321), 1, + STATE(3368), 1, sym__longness, - STATE(3597), 1, + STATE(3562), 1, sym_operator_name, - STATE(3811), 1, + STATE(3795), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -194490,24 +195323,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(4096), 2, + ACTIONS(3980), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4173), 2, + ACTIONS(4130), 2, anon_sym_struct, anon_sym_union, - STATE(2778), 2, + STATE(2806), 2, sym_storageclass, aux_sym_class_definition_repeat1, ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(3067), 3, + STATE(3077), 3, sym_class_definition, sym_ctype_declaration, sym_fused, - STATE(3071), 3, + STATE(3079), 3, sym_struct, sym_enum, sym_cppclass, @@ -194517,40 +195350,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(2017), 5, + STATE(2028), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, - aux_sym_cdef_statement_repeat1, - [90474] = 25, + aux_sym_cdef_definition_block_repeat1, + [90564] = 25, ACTIONS(371), 1, anon_sym_long, - ACTIONS(4094), 1, + ACTIONS(3978), 1, anon_sym_operator, - ACTIONS(4165), 1, + ACTIONS(4122), 1, sym_identifier, - ACTIONS(4167), 1, + ACTIONS(4124), 1, anon_sym_class, - ACTIONS(4169), 1, + ACTIONS(4126), 1, anon_sym_extern, - ACTIONS(4171), 1, + ACTIONS(4128), 1, anon_sym_ctypedef, - ACTIONS(4175), 1, + ACTIONS(4132), 1, anon_sym_enum, - ACTIONS(4177), 1, + ACTIONS(4134), 1, anon_sym_cppclass, - ACTIONS(4179), 1, + ACTIONS(4136), 1, anon_sym_fused, - STATE(3130), 1, + STATE(3140), 1, sym__signedness, - STATE(3228), 1, + STATE(3191), 1, sym_int_type, - STATE(3321), 1, + STATE(3368), 1, sym__longness, - STATE(3597), 1, + STATE(3562), 1, sym_operator_name, - STATE(3811), 1, + STATE(3795), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -194561,24 +195394,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(4096), 2, + ACTIONS(3980), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4173), 2, + ACTIONS(4130), 2, anon_sym_struct, anon_sym_union, - STATE(2778), 2, + STATE(2806), 2, sym_storageclass, aux_sym_class_definition_repeat1, ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(3067), 3, + STATE(3077), 3, sym_class_definition, sym_ctype_declaration, sym_fused, - STATE(3071), 3, + STATE(3079), 3, sym_struct, sym_enum, sym_cppclass, @@ -194588,95 +195421,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(2020), 5, + STATE(2027), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, - aux_sym_cdef_statement_repeat1, - [90570] = 21, - ACTIONS(4203), 1, - anon_sym_DOT, - ACTIONS(4205), 1, - anon_sym_LPAREN, - ACTIONS(4213), 1, - anon_sym_STAR_STAR, - ACTIONS(4215), 1, - anon_sym_EQ, - ACTIONS(4217), 1, - anon_sym_LBRACK, - ACTIONS(4223), 1, - anon_sym_PIPE, - ACTIONS(4225), 1, + aux_sym_cdef_definition_block_repeat1, + [90660] = 9, + ACTIONS(4246), 1, anon_sym_not, - ACTIONS(4227), 1, - anon_sym_AMP, - ACTIONS(4229), 1, - anon_sym_CARET, - ACTIONS(4231), 1, + ACTIONS(4249), 1, anon_sym_is, - STATE(2033), 1, + STATE(2042), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4207), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4209), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4221), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4233), 2, + ACTIONS(4252), 2, anon_sym_LT, anon_sym_GT, - STATE(1990), 2, + STATE(2012), 2, sym__not_in, sym__is_not, - STATE(2110), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4219), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4211), 6, + ACTIONS(4241), 3, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + ACTIONS(4243), 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(4201), 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, - [90658] = 5, - STATE(2038), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1990), 2, - sym__not_in, - sym__is_not, - ACTIONS(4237), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4235), 33, + ACTIONS(4239), 25, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -194687,7 +195465,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, @@ -194695,7 +195472,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, @@ -194703,29 +195479,23 @@ 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, - [90712] = 5, + [90722] = 5, ACTIONS(107), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2037), 2, + STATE(2045), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(3710), 5, + ACTIONS(3714), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3699), 33, + ACTIONS(3703), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -194759,40 +195529,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [90766] = 13, - ACTIONS(3712), 1, + [90776] = 13, + ACTIONS(3716), 1, anon_sym_COLON_EQ, - ACTIONS(4239), 1, + ACTIONS(4255), 1, anon_sym_DOT, - ACTIONS(4241), 1, + ACTIONS(4257), 1, anon_sym_STAR, - ACTIONS(4245), 1, + ACTIONS(4261), 1, anon_sym_LBRACK, - ACTIONS(4247), 1, + ACTIONS(4263), 1, anon_sym_complex, - STATE(3376), 1, + STATE(3392), 1, aux_sym_class_definition_repeat2, - STATE(3422), 1, + STATE(3414), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3703), 2, + ACTIONS(3707), 2, anon_sym_LPAREN, anon_sym_RPAREN, - STATE(3544), 2, + STATE(3568), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4243), 3, + ACTIONS(4259), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(3710), 4, + ACTIONS(3714), 4, anon_sym_as, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3699), 23, + ACTIONS(3703), 23, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -194816,182 +195586,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90836] = 14, - ACTIONS(3705), 1, - anon_sym_COMMA, - ACTIONS(3712), 1, - anon_sym_COLON_EQ, - ACTIONS(4239), 1, - anon_sym_DOT, - ACTIONS(4241), 1, - anon_sym_STAR, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(4247), 1, - anon_sym_complex, - STATE(3376), 1, - aux_sym_class_definition_repeat2, - STATE(3422), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3703), 2, - anon_sym_LPAREN, - anon_sym_RPAREN, - STATE(3544), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4243), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(3710), 4, - anon_sym_as, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3699), 22, - 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, - [90908] = 5, + [90846] = 5, ACTIONS(107), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2039), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4251), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4249), 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, - anon_sym_nogil, - [90962] = 9, - ACTIONS(4260), 1, - anon_sym_not, - ACTIONS(4263), 1, - anon_sym_is, - STATE(2038), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4266), 2, - anon_sym_LT, - anon_sym_GT, - STATE(1990), 2, - sym__not_in, - sym__is_not, - ACTIONS(4255), 3, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - ACTIONS(4257), 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(4253), 25, - 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_with, - anon_sym_STAR_STAR, - 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, - anon_sym_nogil, - [91024] = 5, - ACTIONS(4273), 1, - sym_string_start, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2039), 2, + STATE(2048), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(4271), 5, + ACTIONS(4267), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4269), 33, + ACTIONS(4265), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -195025,102 +195635,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [91078] = 21, - ACTIONS(4215), 1, - anon_sym_as, - ACTIONS(4225), 1, - anon_sym_not, - ACTIONS(4276), 1, - anon_sym_DOT, - ACTIONS(4278), 1, - anon_sym_LPAREN, - ACTIONS(4286), 1, - anon_sym_STAR_STAR, - ACTIONS(4288), 1, - anon_sym_LBRACK, - ACTIONS(4294), 1, - anon_sym_PIPE, - ACTIONS(4296), 1, - anon_sym_AMP, - ACTIONS(4298), 1, - anon_sym_CARET, - ACTIONS(4300), 1, - anon_sym_is, - STATE(2121), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4280), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4282), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4292), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4302), 2, - anon_sym_LT, - anon_sym_GT, - STATE(1935), 2, - sym__not_in, - sym__is_not, - STATE(2325), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4290), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4284), 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(4201), 8, + [90900] = 14, + ACTIONS(3709), 1, anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - [91163] = 8, - ACTIONS(4203), 1, - anon_sym_DOT, - ACTIONS(4205), 1, - anon_sym_LPAREN, - ACTIONS(4213), 1, - anon_sym_STAR_STAR, - ACTIONS(4217), 1, + ACTIONS(3716), 1, + anon_sym_COLON_EQ, + ACTIONS(4255), 1, + anon_sym_DOT, + ACTIONS(4257), 1, + anon_sym_STAR, + ACTIONS(4261), 1, anon_sym_LBRACK, + ACTIONS(4263), 1, + anon_sym_complex, + STATE(3392), 1, + aux_sym_class_definition_repeat2, + STATE(3414), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2110), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4306), 5, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(3707), 2, + anon_sym_LPAREN, + anon_sym_RPAREN, + STATE(3568), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4259), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(3714), 4, + anon_sym_as, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4304), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(3703), 22, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_with, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -195130,7 +195685,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, @@ -195139,57 +195693,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [91222] = 14, - ACTIONS(4203), 1, - anon_sym_DOT, - ACTIONS(4205), 1, - anon_sym_LPAREN, - ACTIONS(4213), 1, - anon_sym_STAR_STAR, - ACTIONS(4217), 1, - anon_sym_LBRACK, - ACTIONS(4227), 1, - anon_sym_AMP, - ACTIONS(4229), 1, - anon_sym_CARET, + [90972] = 5, + STATE(2042), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4207), 2, + STATE(2012), 2, + sym__not_in, + sym__is_not, + ACTIONS(4271), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4209), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4221), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2110), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4219), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4306), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4304), 20, + ACTIONS(4269), 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, @@ -195197,46 +195742,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [91293] = 14, - ACTIONS(3712), 1, - anon_sym_COLON_EQ, - ACTIONS(4239), 1, - anon_sym_DOT, - ACTIONS(4241), 1, - anon_sym_STAR, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(4247), 1, - anon_sym_complex, - ACTIONS(4308), 1, - anon_sym_EQ, - STATE(3376), 1, - aux_sym_class_definition_repeat2, - STATE(3422), 1, - sym_type_index, + [91026] = 5, + ACTIONS(4277), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3703), 2, - anon_sym_LPAREN, - anon_sym_RPAREN, - STATE(3544), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3710), 3, + STATE(2048), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4275), 5, + anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4243), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(3699), 22, + ACTIONS(4273), 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, @@ -195246,6 +195781,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, @@ -195254,28 +195790,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91364] = 8, - ACTIONS(4203), 1, + anon_sym_nogil, + [91080] = 8, + ACTIONS(4207), 1, anon_sym_DOT, - ACTIONS(4205), 1, + ACTIONS(4209), 1, anon_sym_LPAREN, - ACTIONS(4213), 1, - anon_sym_STAR_STAR, ACTIONS(4217), 1, + anon_sym_STAR_STAR, + ACTIONS(4221), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2110), 2, + STATE(2133), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4306), 5, + ACTIONS(4282), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4304), 29, + ACTIONS(4280), 29, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -195305,57 +195842,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [91423] = 15, - ACTIONS(4203), 1, + [91139] = 11, + ACTIONS(4207), 1, anon_sym_DOT, - ACTIONS(4205), 1, + ACTIONS(4209), 1, anon_sym_LPAREN, - ACTIONS(4213), 1, - anon_sym_STAR_STAR, ACTIONS(4217), 1, + anon_sym_STAR_STAR, + ACTIONS(4221), 1, anon_sym_LBRACK, - ACTIONS(4223), 1, - anon_sym_PIPE, - ACTIONS(4227), 1, - anon_sym_AMP, - ACTIONS(4229), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4207), 2, + ACTIONS(4211), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4209), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4221), 2, + ACTIONS(4225), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2110), 2, + STATE(2133), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4219), 3, + ACTIONS(4223), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4312), 3, + ACTIONS(4282), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4310), 19, + ACTIONS(4280), 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, anon_sym_with, + anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -195363,102 +195896,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [91496] = 21, - ACTIONS(4215), 1, - anon_sym_EQ, - ACTIONS(4225), 1, + [91204] = 21, + ACTIONS(4219), 1, + anon_sym_as, + ACTIONS(4229), 1, anon_sym_not, - ACTIONS(4314), 1, + ACTIONS(4284), 1, anon_sym_DOT, - ACTIONS(4316), 1, + ACTIONS(4286), 1, anon_sym_LPAREN, - ACTIONS(4324), 1, + ACTIONS(4294), 1, anon_sym_STAR_STAR, - ACTIONS(4326), 1, + ACTIONS(4296), 1, anon_sym_LBRACK, - ACTIONS(4332), 1, + ACTIONS(4302), 1, anon_sym_PIPE, - ACTIONS(4334), 1, + ACTIONS(4304), 1, anon_sym_AMP, - ACTIONS(4336), 1, + ACTIONS(4306), 1, anon_sym_CARET, - ACTIONS(4338), 1, + ACTIONS(4308), 1, anon_sym_is, - STATE(3094), 1, + STATE(2100), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4318), 2, + ACTIONS(4288), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4320), 2, + ACTIONS(4290), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4330), 2, + ACTIONS(4300), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4340), 2, + ACTIONS(4310), 2, anon_sym_LT, anon_sym_GT, - STATE(1958), 2, + STATE(1928), 2, sym__not_in, sym__is_not, - STATE(2375), 2, + STATE(2285), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4328), 3, + ACTIONS(4298), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4322), 6, + ACTIONS(4292), 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(4201), 8, + ACTIONS(4205), 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, - [91581] = 8, - ACTIONS(4203), 1, + [91289] = 21, + ACTIONS(4219), 1, + anon_sym_EQ, + ACTIONS(4229), 1, + anon_sym_not, + ACTIONS(4312), 1, anon_sym_DOT, - ACTIONS(4205), 1, + ACTIONS(4314), 1, anon_sym_LPAREN, - ACTIONS(4213), 1, + ACTIONS(4322), 1, anon_sym_STAR_STAR, - ACTIONS(4217), 1, + ACTIONS(4324), 1, anon_sym_LBRACK, + ACTIONS(4330), 1, + anon_sym_PIPE, + ACTIONS(4332), 1, + anon_sym_AMP, + ACTIONS(4334), 1, + anon_sym_CARET, + ACTIONS(4336), 1, + anon_sym_is, + STATE(2139), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2110), 2, + ACTIONS(4316), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4318), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4328), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4338), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1973), 2, + sym__not_in, + sym__is_not, + STATE(2310), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4344), 5, + ACTIONS(4326), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4320), 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(4205), 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, + [91374] = 14, + ACTIONS(3716), 1, + anon_sym_COLON_EQ, + ACTIONS(4255), 1, + anon_sym_DOT, + ACTIONS(4257), 1, anon_sym_STAR, + ACTIONS(4261), 1, + anon_sym_LBRACK, + ACTIONS(4263), 1, + anon_sym_complex, + ACTIONS(4340), 1, anon_sym_EQ, + STATE(3392), 1, + aux_sym_class_definition_repeat2, + STATE(3414), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3707), 2, + anon_sym_LPAREN, + anon_sym_RPAREN, + STATE(3568), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(3714), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4342), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + ACTIONS(4259), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(3703), 22, 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, @@ -195468,7 +196073,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, @@ -195477,37 +196081,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [91640] = 11, - ACTIONS(4203), 1, + [91445] = 8, + ACTIONS(4207), 1, anon_sym_DOT, - ACTIONS(4205), 1, + ACTIONS(4209), 1, anon_sym_LPAREN, - ACTIONS(4213), 1, - anon_sym_STAR_STAR, ACTIONS(4217), 1, + anon_sym_STAR_STAR, + ACTIONS(4221), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4207), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4221), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2110), 2, + STATE(2133), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4219), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4306), 3, + ACTIONS(4282), 5, + anon_sym_STAR, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4304), 24, + ACTIONS(4280), 29, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -195518,10 +196113,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, @@ -195532,55 +196132,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [91705] = 13, - ACTIONS(4203), 1, + [91504] = 10, + ACTIONS(4207), 1, anon_sym_DOT, - ACTIONS(4205), 1, + ACTIONS(4209), 1, anon_sym_LPAREN, - ACTIONS(4213), 1, - anon_sym_STAR_STAR, ACTIONS(4217), 1, + anon_sym_STAR_STAR, + ACTIONS(4221), 1, anon_sym_LBRACK, - ACTIONS(4229), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4207), 2, + ACTIONS(4211), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4209), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4221), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2110), 2, + STATE(2133), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4219), 3, + ACTIONS(4223), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4306), 3, + ACTIONS(4282), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4304), 21, + ACTIONS(4280), 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, @@ -195588,54 +196185,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [91774] = 12, - ACTIONS(4203), 1, + [91567] = 8, + ACTIONS(4207), 1, anon_sym_DOT, - ACTIONS(4205), 1, + ACTIONS(4209), 1, anon_sym_LPAREN, - ACTIONS(4213), 1, - anon_sym_STAR_STAR, ACTIONS(4217), 1, + anon_sym_STAR_STAR, + ACTIONS(4221), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4207), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4209), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4221), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2110), 2, + STATE(2133), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4219), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4306), 3, + ACTIONS(4344), 5, + anon_sym_STAR, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4304), 22, + ACTIONS(4342), 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, + 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, @@ -195643,62 +196236,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [91841] = 21, - ACTIONS(4215), 1, + [91626] = 21, + ACTIONS(4219), 1, anon_sym_EQ, - ACTIONS(4225), 1, + ACTIONS(4229), 1, anon_sym_not, - ACTIONS(4314), 1, + ACTIONS(4312), 1, anon_sym_DOT, - ACTIONS(4316), 1, + ACTIONS(4314), 1, anon_sym_LPAREN, - ACTIONS(4324), 1, + ACTIONS(4322), 1, anon_sym_STAR_STAR, - ACTIONS(4326), 1, + ACTIONS(4324), 1, anon_sym_LBRACK, - ACTIONS(4332), 1, + ACTIONS(4330), 1, anon_sym_PIPE, - ACTIONS(4334), 1, + ACTIONS(4332), 1, anon_sym_AMP, - ACTIONS(4336), 1, + ACTIONS(4334), 1, anon_sym_CARET, - ACTIONS(4338), 1, + ACTIONS(4336), 1, anon_sym_is, - STATE(2082), 1, + STATE(3102), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4318), 2, + ACTIONS(4316), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4320), 2, + ACTIONS(4318), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4330), 2, + ACTIONS(4328), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4340), 2, + ACTIONS(4338), 2, anon_sym_LT, anon_sym_GT, - STATE(1958), 2, + STATE(1973), 2, sym__not_in, sym__is_not, - STATE(2375), 2, + STATE(2310), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4328), 3, + ACTIONS(4326), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4322), 6, + ACTIONS(4320), 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(4201), 8, + ACTIONS(4205), 8, anon_sym_COMMA, anon_sym_as, anon_sym_if, @@ -195707,50 +196300,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, sym_type_conversion, - [91926] = 8, - ACTIONS(4203), 1, + [91711] = 14, + ACTIONS(3716), 1, + anon_sym_COLON_EQ, + ACTIONS(4255), 1, anon_sym_DOT, - ACTIONS(4205), 1, + ACTIONS(4257), 1, + anon_sym_STAR, + ACTIONS(4261), 1, + anon_sym_LBRACK, + ACTIONS(4263), 1, + anon_sym_complex, + ACTIONS(4340), 1, + anon_sym_EQ, + STATE(3392), 1, + aux_sym_class_definition_repeat2, + STATE(3414), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3568), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(3707), 3, anon_sym_LPAREN, - ACTIONS(4213), 1, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3714), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4259), 3, anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(3703), 21, + 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, + [91782] = 14, + ACTIONS(4207), 1, + anon_sym_DOT, + ACTIONS(4209), 1, + anon_sym_LPAREN, ACTIONS(4217), 1, + anon_sym_STAR_STAR, + ACTIONS(4221), 1, anon_sym_LBRACK, + ACTIONS(4231), 1, + anon_sym_AMP, + ACTIONS(4233), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2110), 2, + ACTIONS(4211), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4213), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4225), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2133), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4348), 5, - anon_sym_STAR, + ACTIONS(4223), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4282), 3, anon_sym_EQ, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4346), 29, + ACTIONS(4280), 20, 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, - 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, @@ -195758,29 +196414,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [91985] = 6, - ACTIONS(4355), 1, - anon_sym_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4360), 2, - anon_sym_complex, - anon_sym___stdcall, - ACTIONS(4352), 4, + [91853] = 8, + ACTIONS(4207), 1, + anon_sym_DOT, + ACTIONS(4209), 1, anon_sym_LPAREN, + ACTIONS(4217), 1, anon_sym_STAR_STAR, + ACTIONS(4221), 1, anon_sym_LBRACK, - anon_sym_AMP, - ACTIONS(4358), 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2133), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4348), 5, + anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4350), 29, + ACTIONS(4346), 29, sym__newline, anon_sym_SEMI, - anon_sym_DOT, anon_sym_from, anon_sym_COMMA, anon_sym_as, @@ -195798,6 +196455,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, @@ -195807,62 +196465,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [92040] = 21, - ACTIONS(4215), 1, + [91912] = 21, + ACTIONS(4219), 1, anon_sym_as, - ACTIONS(4225), 1, + ACTIONS(4229), 1, anon_sym_not, - ACTIONS(4276), 1, + ACTIONS(4284), 1, anon_sym_DOT, - ACTIONS(4278), 1, - anon_sym_LPAREN, ACTIONS(4286), 1, + anon_sym_LPAREN, + ACTIONS(4294), 1, anon_sym_STAR_STAR, - ACTIONS(4288), 1, + ACTIONS(4296), 1, anon_sym_LBRACK, - ACTIONS(4294), 1, + ACTIONS(4302), 1, anon_sym_PIPE, - ACTIONS(4296), 1, + ACTIONS(4304), 1, anon_sym_AMP, - ACTIONS(4298), 1, + ACTIONS(4306), 1, anon_sym_CARET, - ACTIONS(4300), 1, + ACTIONS(4308), 1, anon_sym_is, - STATE(3090), 1, + STATE(3104), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4280), 2, + ACTIONS(4288), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4282), 2, + ACTIONS(4290), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4292), 2, + ACTIONS(4300), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4302), 2, + ACTIONS(4310), 2, anon_sym_LT, anon_sym_GT, - STATE(1935), 2, + STATE(1928), 2, sym__not_in, sym__is_not, - STATE(2325), 2, + STATE(2285), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4290), 3, + ACTIONS(4298), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4284), 6, + ACTIONS(4292), 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(4201), 8, + ACTIONS(4205), 8, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, @@ -195871,52 +196529,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_and, anon_sym_or, - [92125] = 10, - ACTIONS(4203), 1, + [91997] = 13, + ACTIONS(4207), 1, anon_sym_DOT, - ACTIONS(4205), 1, + ACTIONS(4209), 1, anon_sym_LPAREN, - ACTIONS(4213), 1, - anon_sym_STAR_STAR, ACTIONS(4217), 1, + anon_sym_STAR_STAR, + ACTIONS(4221), 1, anon_sym_LBRACK, + ACTIONS(4233), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4207), 2, + ACTIONS(4211), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(2110), 2, + ACTIONS(4213), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4225), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2133), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4219), 3, + ACTIONS(4223), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4306), 3, + ACTIONS(4282), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4304), 26, + ACTIONS(4280), 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, 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, @@ -195924,46 +196585,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [92188] = 14, - ACTIONS(3712), 1, - anon_sym_COLON_EQ, - ACTIONS(4239), 1, + [92066] = 12, + ACTIONS(4207), 1, anon_sym_DOT, - ACTIONS(4241), 1, - anon_sym_STAR, - ACTIONS(4245), 1, + ACTIONS(4209), 1, + anon_sym_LPAREN, + ACTIONS(4217), 1, + anon_sym_STAR_STAR, + ACTIONS(4221), 1, anon_sym_LBRACK, - ACTIONS(4247), 1, - anon_sym_complex, - ACTIONS(4308), 1, - anon_sym_EQ, - STATE(3376), 1, - aux_sym_class_definition_repeat2, - STATE(3422), 1, - sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3544), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3703), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3710), 3, + ACTIONS(4211), 2, + anon_sym_STAR, anon_sym_SLASH, + ACTIONS(4213), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4225), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2133), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4223), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4282), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4243), 3, - anon_sym_STAR_STAR, + ACTIONS(4280), 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, + [92133] = 6, + ACTIONS(4355), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4360), 2, + anon_sym_complex, anon_sym___stdcall, - ACTIONS(3699), 21, + ACTIONS(4352), 4, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + ACTIONS(4358), 4, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4350), 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, @@ -195981,72 +196688,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [92259] = 20, - ACTIONS(4205), 1, + anon_sym_nogil, + [92188] = 15, + ACTIONS(4207), 1, + anon_sym_DOT, + ACTIONS(4209), 1, anon_sym_LPAREN, - ACTIONS(4213), 1, + ACTIONS(4217), 1, anon_sym_STAR_STAR, - ACTIONS(4223), 1, - anon_sym_PIPE, - ACTIONS(4225), 1, - anon_sym_not, + ACTIONS(4221), 1, + anon_sym_LBRACK, ACTIONS(4227), 1, + anon_sym_PIPE, + ACTIONS(4231), 1, anon_sym_AMP, - ACTIONS(4229), 1, + ACTIONS(4233), 1, anon_sym_CARET, - ACTIONS(4231), 1, - anon_sym_is, - ACTIONS(4362), 1, - anon_sym_DOT, - ACTIONS(4364), 1, - anon_sym_LBRACK, - STATE(3038), 1, - aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4207), 2, + ACTIONS(4211), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4209), 2, + ACTIONS(4213), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4221), 2, + ACTIONS(4225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4233), 2, - anon_sym_LT, - anon_sym_GT, - STATE(1990), 2, - sym__not_in, - sym__is_not, - STATE(2110), 2, + STATE(2133), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4219), 3, + ACTIONS(4223), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4211), 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(4201), 8, + ACTIONS(4364), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4362), 19, 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_not, anon_sym_and, anon_sym_or, - [92341] = 21, - ACTIONS(4215), 1, - anon_sym_EQ, - ACTIONS(4225), 1, + 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, + [92261] = 21, + ACTIONS(4219), 1, + anon_sym_as, + ACTIONS(4229), 1, anon_sym_not, ACTIONS(4366), 1, anon_sym_DOT, @@ -196064,7 +196768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(4390), 1, anon_sym_is, - STATE(2155), 1, + STATE(3111), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, @@ -196081,10 +196785,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4392), 2, anon_sym_LT, anon_sym_GT, - STATE(1899), 2, + STATE(1991), 2, sym__not_in, sym__is_not, - STATE(2439), 2, + STATE(2434), 2, sym_argument_list, sym_generator_expression, ACTIONS(4380), 3, @@ -196098,25 +196802,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(4201), 7, + ACTIONS(4205), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_and, + anon_sym_or, + [92345] = 20, + ACTIONS(4209), 1, + anon_sym_LPAREN, + ACTIONS(4217), 1, + anon_sym_STAR_STAR, + ACTIONS(4227), 1, + anon_sym_PIPE, + ACTIONS(4229), 1, + anon_sym_not, + ACTIONS(4231), 1, + anon_sym_AMP, + ACTIONS(4233), 1, + anon_sym_CARET, + ACTIONS(4235), 1, + anon_sym_is, + ACTIONS(4394), 1, + anon_sym_DOT, + ACTIONS(4396), 1, + anon_sym_LBRACK, + STATE(3043), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4211), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4213), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4225), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4237), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2012), 2, + sym__not_in, + sym__is_not, + STATE(2133), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4223), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4215), 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(4205), 8, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_and, anon_sym_or, - [92425] = 3, + [92427] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4396), 5, + ACTIONS(4400), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4394), 34, + ACTIONS(4398), 34, sym__newline, sym_string_start, anon_sym_SEMI, @@ -196151,188 +196917,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [92473] = 21, - ACTIONS(4215), 1, - anon_sym_as, - ACTIONS(4225), 1, - anon_sym_not, - ACTIONS(4398), 1, - anon_sym_DOT, - ACTIONS(4400), 1, - anon_sym_LPAREN, - ACTIONS(4408), 1, - anon_sym_STAR_STAR, - ACTIONS(4410), 1, - anon_sym_LBRACK, - ACTIONS(4416), 1, - anon_sym_PIPE, - ACTIONS(4418), 1, - anon_sym_AMP, - ACTIONS(4420), 1, - anon_sym_CARET, - ACTIONS(4422), 1, - anon_sym_is, - STATE(3103), 1, - aux_sym_comparison_operator_repeat1, + [92475] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4402), 2, + ACTIONS(4404), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(4404), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4414), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4424), 2, anon_sym_LT, anon_sym_GT, - STATE(1922), 2, - sym__not_in, - sym__is_not, - STATE(2501), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4412), 3, + ACTIONS(4402), 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, + 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(4406), 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(4201), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_and, - anon_sym_or, - [92557] = 21, - ACTIONS(4215), 1, + anon_sym_nogil, + [92523] = 21, + ACTIONS(4219), 1, anon_sym_as, - ACTIONS(4225), 1, + ACTIONS(4229), 1, anon_sym_not, - ACTIONS(4398), 1, + ACTIONS(4406), 1, anon_sym_DOT, - ACTIONS(4400), 1, - anon_sym_LPAREN, ACTIONS(4408), 1, + anon_sym_LPAREN, + ACTIONS(4416), 1, anon_sym_STAR_STAR, - ACTIONS(4410), 1, + ACTIONS(4418), 1, anon_sym_LBRACK, - ACTIONS(4416), 1, + ACTIONS(4424), 1, anon_sym_PIPE, - ACTIONS(4418), 1, + ACTIONS(4426), 1, anon_sym_AMP, - ACTIONS(4420), 1, + ACTIONS(4428), 1, anon_sym_CARET, - ACTIONS(4422), 1, + ACTIONS(4430), 1, anon_sym_is, - STATE(2133), 1, + STATE(3126), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4402), 2, + ACTIONS(4410), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4404), 2, + ACTIONS(4412), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4414), 2, + ACTIONS(4422), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4424), 2, + ACTIONS(4432), 2, anon_sym_LT, anon_sym_GT, - STATE(1922), 2, + STATE(2001), 2, sym__not_in, sym__is_not, - STATE(2501), 2, + STATE(2551), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4412), 3, + ACTIONS(4420), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4406), 6, + ACTIONS(4414), 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(4201), 7, - anon_sym_RPAREN, + ACTIONS(4205), 7, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, + anon_sym_RBRACK, anon_sym_and, anon_sym_or, - [92641] = 21, - ACTIONS(4215), 1, + [92607] = 21, + ACTIONS(4219), 1, anon_sym_as, - ACTIONS(4225), 1, + ACTIONS(4229), 1, anon_sym_not, - ACTIONS(4426), 1, + ACTIONS(4406), 1, anon_sym_DOT, - ACTIONS(4428), 1, + ACTIONS(4408), 1, anon_sym_LPAREN, - ACTIONS(4436), 1, + ACTIONS(4416), 1, anon_sym_STAR_STAR, - ACTIONS(4438), 1, + ACTIONS(4418), 1, anon_sym_LBRACK, - ACTIONS(4444), 1, + ACTIONS(4424), 1, anon_sym_PIPE, - ACTIONS(4446), 1, + ACTIONS(4426), 1, anon_sym_AMP, - ACTIONS(4448), 1, + ACTIONS(4428), 1, anon_sym_CARET, - ACTIONS(4450), 1, + ACTIONS(4430), 1, anon_sym_is, - STATE(2130), 1, + STATE(2153), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4430), 2, + ACTIONS(4410), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4432), 2, + ACTIONS(4412), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4442), 2, + ACTIONS(4422), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4452), 2, + ACTIONS(4432), 2, anon_sym_LT, anon_sym_GT, - STATE(1906), 2, + STATE(2001), 2, sym__not_in, sym__is_not, - STATE(2433), 2, + STATE(2551), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4440), 3, + ACTIONS(4420), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4434), 6, + ACTIONS(4414), 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(4201), 7, + ACTIONS(4205), 7, anon_sym_COMMA, anon_sym_if, anon_sym_async, @@ -196340,82 +197088,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_and, anon_sym_or, - [92725] = 21, - ACTIONS(4215), 1, - anon_sym_as, - ACTIONS(4225), 1, + [92691] = 21, + ACTIONS(4219), 1, + anon_sym_EQ, + ACTIONS(4229), 1, anon_sym_not, - ACTIONS(4426), 1, + ACTIONS(4434), 1, anon_sym_DOT, - ACTIONS(4428), 1, - anon_sym_LPAREN, ACTIONS(4436), 1, + anon_sym_LPAREN, + ACTIONS(4444), 1, anon_sym_STAR_STAR, - ACTIONS(4438), 1, + ACTIONS(4446), 1, anon_sym_LBRACK, - ACTIONS(4444), 1, + ACTIONS(4452), 1, anon_sym_PIPE, - ACTIONS(4446), 1, + ACTIONS(4454), 1, anon_sym_AMP, - ACTIONS(4448), 1, + ACTIONS(4456), 1, anon_sym_CARET, - ACTIONS(4450), 1, + ACTIONS(4458), 1, anon_sym_is, STATE(3097), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4430), 2, + ACTIONS(4438), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4432), 2, + ACTIONS(4440), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4442), 2, + ACTIONS(4450), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4452), 2, + ACTIONS(4460), 2, anon_sym_LT, anon_sym_GT, - STATE(1906), 2, + STATE(1936), 2, sym__not_in, sym__is_not, - STATE(2433), 2, + STATE(2436), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4440), 3, + ACTIONS(4448), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4434), 6, + ACTIONS(4442), 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(4201), 7, + ACTIONS(4205), 7, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, anon_sym_and, anon_sym_or, - [92809] = 3, + [92775] = 4, + ACTIONS(3716), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4456), 5, + ACTIONS(3714), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4454), 34, + ACTIONS(3703), 32, sym__newline, - sym_string_start, anon_sym_SEMI, anon_sym_DOT, anon_sym_from, @@ -196424,7 +197174,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_with, anon_sym_STAR_STAR, @@ -196448,20 +197197,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [92857] = 4, - ACTIONS(596), 1, + [92825] = 4, + ACTIONS(1020), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(581), 6, + ACTIONS(1005), 6, anon_sym_STAR, anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(579), 32, + ACTIONS(1003), 32, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -196494,56 +197243,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [92907] = 4, - ACTIONS(3712), 1, - anon_sym_COLON_EQ, + [92875] = 21, + ACTIONS(4219), 1, + anon_sym_EQ, + ACTIONS(4229), 1, + anon_sym_not, + ACTIONS(4434), 1, + anon_sym_DOT, + ACTIONS(4436), 1, + anon_sym_LPAREN, + ACTIONS(4444), 1, + anon_sym_STAR_STAR, + ACTIONS(4446), 1, + anon_sym_LBRACK, + ACTIONS(4452), 1, + anon_sym_PIPE, + ACTIONS(4454), 1, + anon_sym_AMP, + ACTIONS(4456), 1, + anon_sym_CARET, + ACTIONS(4458), 1, + anon_sym_is, + STATE(2179), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3710), 6, + ACTIONS(4438), 2, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3699), 32, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(4440), 2, anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_with, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(4450), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, + ACTIONS(4460), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1936), 2, + sym__not_in, + sym__is_not, + STATE(2436), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4448), 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(4442), 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, - [92957] = 21, - ACTIONS(4215), 1, - anon_sym_EQ, - ACTIONS(4225), 1, + ACTIONS(4205), 7, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_and, + anon_sym_or, + [92959] = 21, + ACTIONS(4219), 1, + anon_sym_as, + ACTIONS(4229), 1, anon_sym_not, ACTIONS(4366), 1, anon_sym_DOT, @@ -196561,7 +197327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(4390), 1, anon_sym_is, - STATE(3087), 1, + STATE(2146), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, @@ -196578,10 +197344,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4392), 2, anon_sym_LT, anon_sym_GT, - STATE(1899), 2, + STATE(1991), 2, sym__not_in, sym__is_not, - STATE(2439), 2, + STATE(2434), 2, sym_argument_list, sym_generator_expression, ACTIONS(4380), 3, @@ -196595,95 +197361,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(4201), 7, + ACTIONS(4205), 7, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_and, anon_sym_or, - [93041] = 3, + [93043] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3863), 5, + ACTIONS(1297), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(1300), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3861), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(1498), 14, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_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, - anon_sym_nogil, - [93088] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4460), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4458), 33, + ACTIONS(1295), 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_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, @@ -196691,193 +197415,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [93135] = 5, - ACTIONS(4462), 1, - sym_string_start, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2070), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4271), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4269), 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, - [93186] = 22, - ACTIONS(125), 1, - anon_sym_class, - ACTIONS(4004), 1, - sym_identifier, - ACTIONS(4006), 1, - anon_sym_LPAREN, - ACTIONS(4018), 1, - anon_sym_long, - ACTIONS(4024), 1, - anon_sym_enum, - ACTIONS(4026), 1, - anon_sym_cppclass, - ACTIONS(4028), 1, - anon_sym_fused, - STATE(3188), 1, - sym__signedness, - STATE(3410), 1, - sym__longness, - STATE(3447), 1, - sym_c_type, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4014), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(4016), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4020), 2, - anon_sym_const, - anon_sym_volatile, - ACTIONS(4022), 2, - anon_sym_struct, - anon_sym_union, - STATE(2873), 2, - sym_cdef_type_declaration, - sym_cvar_decl, - STATE(2885), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3669), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4012), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(707), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(708), 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, - [93271] = 7, - ACTIONS(4467), 1, - anon_sym_as, - ACTIONS(4471), 1, - anon_sym_if, - ACTIONS(4473), 1, - anon_sym_and, - ACTIONS(4475), 1, - anon_sym_or, + [93094] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4469), 5, + ACTIONS(4464), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4465), 29, + ACTIONS(4462), 33, 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, - 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, - [93326] = 5, - ACTIONS(1931), 1, - sym_string_start, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2119), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(3710), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3699), 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_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, @@ -196893,18 +197458,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [93377] = 3, + anon_sym_nogil, + [93141] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4215), 5, + ACTIONS(4468), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4201), 33, + ACTIONS(4466), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -196938,17 +197503,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [93424] = 3, + [93188] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3907), 5, + ACTIONS(4472), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3905), 33, + ACTIONS(4470), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -196982,17 +197547,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [93471] = 3, + [93235] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3888), 5, + ACTIONS(3868), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3886), 33, + ACTIONS(3863), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -197026,78 +197591,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [93518] = 20, - ACTIONS(4225), 1, - anon_sym_not, - ACTIONS(4477), 1, - anon_sym_DOT, - ACTIONS(4479), 1, - anon_sym_LPAREN, - ACTIONS(4487), 1, - anon_sym_STAR_STAR, - ACTIONS(4489), 1, - anon_sym_LBRACK, - ACTIONS(4495), 1, - anon_sym_PIPE, - ACTIONS(4497), 1, - anon_sym_AMP, - ACTIONS(4499), 1, - anon_sym_CARET, - ACTIONS(4501), 1, - anon_sym_is, - STATE(3093), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4481), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4483), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4493), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4503), 2, - anon_sym_LT, - anon_sym_GT, - STATE(1997), 2, - sym__not_in, - sym__is_not, - STATE(2610), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4491), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4485), 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(4201), 7, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_and, - anon_sym_or, - [93599] = 3, + [93282] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4507), 5, + ACTIONS(3903), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4505), 33, + ACTIONS(3901), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -197131,17 +197635,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [93646] = 3, + [93329] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4511), 5, + ACTIONS(3903), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4509), 33, + ACTIONS(3901), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -197175,63 +197679,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [93693] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1297), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1300), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1498), 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(1295), 19, - 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_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, - [93744] = 3, + [93376] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4515), 5, + ACTIONS(4476), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4513), 33, + ACTIONS(4474), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -197265,23 +197723,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [93791] = 5, - STATE(2126), 1, - aux_sym_comparison_operator_repeat1, + [93423] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1958), 2, - sym__not_in, - sym__is_not, - ACTIONS(4237), 5, + ACTIONS(4480), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4235), 30, + ACTIONS(4478), 33, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, @@ -197289,12 +197745,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, @@ -197310,18 +197766,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [93842] = 3, + anon_sym_nogil, + [93470] = 13, + ACTIONS(3716), 1, + anon_sym_COLON_EQ, + ACTIONS(4255), 1, + anon_sym_DOT, + ACTIONS(4257), 1, + anon_sym_STAR, + ACTIONS(4261), 1, + anon_sym_LBRACK, + ACTIONS(4263), 1, + anon_sym_complex, + STATE(3392), 1, + aux_sym_class_definition_repeat2, + STATE(3414), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3707), 2, + anon_sym_LPAREN, + anon_sym_RPAREN, + STATE(3568), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(3714), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4259), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(3703), 21, + 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, + [93537] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4519), 5, + ACTIONS(4484), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4517), 33, + ACTIONS(4482), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -197355,17 +197865,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [93889] = 3, + [93584] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3922), 5, + ACTIONS(3918), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3920), 33, + ACTIONS(3913), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -197399,21 +197909,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [93936] = 3, + [93631] = 5, + ACTIONS(1967), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4523), 5, + STATE(2098), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(3714), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4521), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(3703), 30, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, @@ -197421,12 +197933,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, @@ -197442,18 +197954,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [93983] = 3, + sym_type_conversion, + [93682] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4527), 5, + ACTIONS(4488), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4525), 33, + ACTIONS(4486), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -197487,17 +197999,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [94030] = 3, + [93729] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4531), 5, + ACTIONS(4492), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4529), 33, + ACTIONS(4490), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -197531,17 +198043,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [94077] = 3, + [93776] = 9, + ACTIONS(4246), 1, + anon_sym_not, + ACTIONS(4497), 1, + anon_sym_is, + STATE(2092), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4500), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1973), 2, + sym__not_in, + sym__is_not, + ACTIONS(4241), 3, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + ACTIONS(4494), 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(4239), 22, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + 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_RBRACE, + 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, + sym_type_conversion, + [93835] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3884), 5, + ACTIONS(4505), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3879), 33, + ACTIONS(4503), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -197575,22 +198137,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [94124] = 5, - ACTIONS(2425), 1, + [93882] = 20, + ACTIONS(4229), 1, + anon_sym_not, + ACTIONS(4507), 1, + anon_sym_DOT, + ACTIONS(4509), 1, + anon_sym_LPAREN, + ACTIONS(4517), 1, + anon_sym_STAR_STAR, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4525), 1, + anon_sym_PIPE, + ACTIONS(4527), 1, + anon_sym_AMP, + ACTIONS(4529), 1, + anon_sym_CARET, + ACTIONS(4531), 1, + anon_sym_is, + STATE(2219), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4511), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4513), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4523), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4533), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1907), 2, + sym__not_in, + sym__is_not, + STATE(2633), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4521), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4515), 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(4205), 7, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [93963] = 5, + ACTIONS(2437), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2097), 2, + STATE(2138), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(4251), 5, + ACTIONS(4267), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4249), 30, + ACTIONS(4265), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -197621,17 +198244,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [94175] = 3, + [94014] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4535), 5, + ACTIONS(4537), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4533), 33, + ACTIONS(4535), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -197665,34 +198288,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [94222] = 9, - ACTIONS(4260), 1, - anon_sym_not, - ACTIONS(4540), 1, - anon_sym_is, - STATE(2091), 1, - aux_sym_comparison_operator_repeat1, + [94061] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4543), 2, + ACTIONS(4541), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - STATE(1935), 2, - sym__not_in, - sym__is_not, - ACTIONS(4255), 3, + ACTIONS(4539), 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, + anon_sym_nogil, + [94108] = 5, + ACTIONS(1967), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2105), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4267), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(4537), 6, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4265), 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(4253), 22, + sym_type_conversion, + [94159] = 5, + ACTIONS(2437), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2095), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(3714), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3703), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -197701,6 +198402,7 @@ 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, @@ -197708,6 +198410,7 @@ 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, @@ -197715,34 +198418,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [94281] = 3, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [94210] = 5, + STATE(2136), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4548), 5, + STATE(1928), 2, + sym__not_in, + sym__is_not, + ACTIONS(4271), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4546), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(4269), 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, @@ -197758,18 +198470,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [94328] = 3, + [94261] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4552), 5, + ACTIONS(1005), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4550), 33, + ACTIONS(1003), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -197803,19 +198514,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [94375] = 4, - ACTIONS(4473), 1, - anon_sym_and, + [94308] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4556), 5, + ACTIONS(4545), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4554), 32, + ACTIONS(4543), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -197835,6 +198544,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, @@ -197848,61 +198558,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [94424] = 3, + [94355] = 22, + ACTIONS(125), 1, + anon_sym_class, + ACTIONS(3934), 1, + sym_identifier, + ACTIONS(3936), 1, + anon_sym_LPAREN, + ACTIONS(3948), 1, + anon_sym_long, + ACTIONS(3954), 1, + anon_sym_enum, + ACTIONS(3956), 1, + anon_sym_cppclass, + ACTIONS(3958), 1, + anon_sym_fused, + STATE(3198), 1, + sym__signedness, + STATE(3409), 1, + sym__longness, + STATE(3461), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3895), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3890), 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, - anon_sym_nogil, - [94471] = 3, + ACTIONS(3944), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(3946), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(3950), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(3952), 2, + anon_sym_struct, + anon_sym_union, + STATE(2916), 2, + sym_cdef_type_declaration, + sym_cvar_decl, + STATE(2924), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(3668), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(3942), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(715), 3, + sym_struct, + sym_enum, + sym_cppclass, + STATE(730), 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, + [94440] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4560), 5, + ACTIONS(4549), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4558), 33, + ACTIONS(4547), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -197936,30 +198665,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [94518] = 5, - ACTIONS(4562), 1, + [94487] = 5, + ACTIONS(4551), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2097), 2, + STATE(2105), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(4271), 5, - anon_sym_as, + ACTIONS(4275), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4269), 30, + ACTIONS(4273), 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, @@ -197982,17 +198710,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [94569] = 3, + sym_type_conversion, + [94538] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3914), 5, + ACTIONS(3907), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3909), 33, + ACTIONS(3905), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -198026,60 +198755,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [94616] = 20, - ACTIONS(4225), 1, + [94585] = 20, + ACTIONS(4229), 1, anon_sym_not, - ACTIONS(4477), 1, + ACTIONS(4507), 1, anon_sym_DOT, - ACTIONS(4479), 1, + ACTIONS(4509), 1, anon_sym_LPAREN, - ACTIONS(4487), 1, + ACTIONS(4517), 1, anon_sym_STAR_STAR, - ACTIONS(4489), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(4495), 1, + ACTIONS(4525), 1, anon_sym_PIPE, - ACTIONS(4497), 1, + ACTIONS(4527), 1, anon_sym_AMP, - ACTIONS(4499), 1, + ACTIONS(4529), 1, anon_sym_CARET, - ACTIONS(4501), 1, + ACTIONS(4531), 1, anon_sym_is, - STATE(2206), 1, + STATE(3098), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4481), 2, + ACTIONS(4511), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4483), 2, + ACTIONS(4513), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4493), 2, + ACTIONS(4523), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4503), 2, + ACTIONS(4533), 2, anon_sym_LT, anon_sym_GT, - STATE(1997), 2, + STATE(1907), 2, sym__not_in, sym__is_not, - STATE(2610), 2, + STATE(2633), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4491), 3, + ACTIONS(4521), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4485), 6, + ACTIONS(4515), 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(4201), 7, + ACTIONS(4205), 7, anon_sym_COMMA, anon_sym_as, anon_sym_if, @@ -198087,17 +198816,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_and, anon_sym_or, - [94697] = 3, + [94666] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4567), 5, + ACTIONS(4556), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4565), 33, + ACTIONS(4554), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -198131,32 +198860,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [94744] = 7, - ACTIONS(4467), 1, - anon_sym_as, - ACTIONS(4471), 1, - anon_sym_if, - ACTIONS(4473), 1, - anon_sym_and, - ACTIONS(4475), 1, - anon_sym_or, + [94713] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4571), 5, + ACTIONS(4560), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4569), 29, + ACTIONS(4558), 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, @@ -198167,6 +198890,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, @@ -198179,17 +198904,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [94799] = 3, + [94760] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4575), 5, + ACTIONS(4564), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4573), 33, + ACTIONS(4562), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -198223,37 +198948,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [94846] = 5, - ACTIONS(2425), 1, - sym_string_start, + [94807] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2089), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(3710), 5, - anon_sym_as, + ACTIONS(3714), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3699), 30, + ACTIONS(3703), 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, @@ -198269,17 +198991,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [94897] = 3, + anon_sym_nogil, + [94854] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4556), 5, + ACTIONS(3883), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4554), 33, + ACTIONS(3878), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -198313,21 +199036,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [94944] = 5, - ACTIONS(4473), 1, - anon_sym_and, - ACTIONS(4475), 1, - anon_sym_or, + [94901] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4579), 5, + ACTIONS(3911), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4577), 31, + ACTIONS(3909), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -198347,11 +199066,59 @@ 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, + 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, + [94948] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3896), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3899), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3893), 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(3891), 19, + 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_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -198359,17 +199126,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [94995] = 3, + [94999] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4583), 5, + ACTIONS(4219), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4581), 33, + ACTIONS(4205), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -198403,45 +199170,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [95042] = 5, + [95046] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3870), 2, + ACTIONS(4568), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3873), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3867), 14, + ACTIONS(4566), 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, - ACTIONS(3865), 19, + 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, + [95093] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4572), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4570), 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, @@ -198449,26 +199258,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [95093] = 3, + [95140] = 7, + ACTIONS(4576), 1, + anon_sym_as, + ACTIONS(4580), 1, + anon_sym_if, + ACTIONS(4582), 1, + anon_sym_and, + ACTIONS(4584), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4587), 5, + ACTIONS(4578), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4585), 33, + ACTIONS(4574), 29, 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, @@ -198479,8 +199294,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, @@ -198493,17 +199306,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [95140] = 3, + [95195] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4591), 5, + ACTIONS(4588), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4589), 33, + ACTIONS(4586), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -198537,7 +199350,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [95187] = 3, + [95242] = 6, + ACTIONS(4582), 1, + anon_sym_and, + ACTIONS(4584), 1, + anon_sym_or, + ACTIONS(4592), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -198547,14 +199366,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4593), 33, + ACTIONS(4590), 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, @@ -198567,8 +199385,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, @@ -198581,17 +199397,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [95234] = 3, + [95295] = 5, + ACTIONS(4582), 1, + anon_sym_and, + ACTIONS(4584), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3903), 5, + ACTIONS(4599), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3901), 33, + ACTIONS(4597), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -198611,8 +199431,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, @@ -198625,17 +199443,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [95281] = 3, + [95346] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3903), 5, + ACTIONS(4603), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3901), 33, + ACTIONS(4601), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -198669,17 +199487,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [95328] = 3, + [95393] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4599), 5, + ACTIONS(4607), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4597), 33, + ACTIONS(4605), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -198713,17 +199531,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [95375] = 3, + [95440] = 4, + ACTIONS(4582), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4603), 5, + ACTIONS(4607), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4601), 33, + ACTIONS(4605), 32, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -198743,7 +199563,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, @@ -198757,32 +199576,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [95422] = 7, - ACTIONS(4467), 1, - anon_sym_as, - ACTIONS(4471), 1, - anon_sym_if, - ACTIONS(4473), 1, - anon_sym_and, - ACTIONS(4475), 1, - anon_sym_or, + [95489] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4607), 5, + ACTIONS(4611), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4605), 29, + ACTIONS(4609), 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, @@ -198793,6 +199606,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, @@ -198805,26 +199620,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [95477] = 3, + [95536] = 7, + ACTIONS(4576), 1, + anon_sym_as, + ACTIONS(4580), 1, + anon_sym_if, + ACTIONS(4582), 1, + anon_sym_and, + ACTIONS(4584), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4611), 5, + ACTIONS(4615), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4609), 33, + ACTIONS(4613), 29, 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, @@ -198835,8 +199656,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, @@ -198849,17 +199668,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [95524] = 3, + [95591] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4615), 5, + ACTIONS(4619), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4613), 33, + ACTIONS(4617), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -198893,29 +199712,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [95571] = 6, - ACTIONS(4473), 1, - anon_sym_and, - ACTIONS(4475), 1, - anon_sym_or, - ACTIONS(4619), 1, - anon_sym_as, + [95638] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4622), 5, + ACTIONS(4358), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4617), 30, + ACTIONS(4350), 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, @@ -198928,6 +199742,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, @@ -198940,40 +199756,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [95624] = 5, - ACTIONS(1931), 1, - sym_string_start, + [95685] = 7, + ACTIONS(4576), 1, + anon_sym_as, + ACTIONS(4580), 1, + anon_sym_if, + ACTIONS(4582), 1, + anon_sym_and, + ACTIONS(4584), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2070), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4251), 5, + ACTIONS(4623), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4249), 30, + ACTIONS(4621), 29, + 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, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -198985,18 +199803,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [95675] = 3, + anon_sym_nogil, + [95740] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4358), 5, + ACTIONS(4627), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4350), 33, + ACTIONS(4625), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -199030,37 +199848,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [95722] = 5, - STATE(2091), 1, - aux_sym_comparison_operator_repeat1, + [95787] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1935), 2, - sym__not_in, - sym__is_not, - ACTIONS(4237), 5, - anon_sym_as, + ACTIONS(4631), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4235), 30, + ACTIONS(4629), 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, @@ -199076,17 +199891,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [95773] = 3, + anon_sym_nogil, + [95834] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4626), 5, + ACTIONS(3926), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4624), 33, + ACTIONS(3924), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -199120,17 +199936,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [95820] = 3, + [95881] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3710), 5, + ACTIONS(4635), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3699), 33, + ACTIONS(4633), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -199164,17 +199980,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [95867] = 3, + [95928] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4630), 5, + ACTIONS(3876), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4628), 33, + ACTIONS(3874), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -199208,17 +200024,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [95914] = 3, + [95975] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(581), 5, + ACTIONS(3876), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(579), 33, + ACTIONS(3874), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -199252,41 +200068,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [95961] = 9, - ACTIONS(4260), 1, + [96022] = 9, + ACTIONS(4246), 1, anon_sym_not, - ACTIONS(4635), 1, + ACTIONS(4640), 1, anon_sym_is, - STATE(2126), 1, + STATE(2136), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4638), 2, + ACTIONS(4643), 2, anon_sym_LT, anon_sym_GT, - STATE(1958), 2, + STATE(1928), 2, sym__not_in, sym__is_not, - ACTIONS(4255), 3, + ACTIONS(4241), 3, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, - ACTIONS(4632), 6, + ACTIONS(4637), 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(4253), 22, + ACTIONS(4239), 22, 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_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -199301,18 +200118,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - sym_type_conversion, - [96020] = 3, + [96081] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4643), 5, + ACTIONS(4648), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4641), 33, + ACTIONS(4646), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -199346,34 +200162,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [96067] = 3, + [96128] = 5, + ACTIONS(4650), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4647), 5, + STATE(2138), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4275), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4645), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(4273), 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, @@ -199389,22 +200208,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [96114] = 3, + [96179] = 5, + STATE(2092), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3863), 5, + STATE(1973), 2, + sym__not_in, + sym__is_not, + ACTIONS(4271), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3861), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(4269), 30, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, @@ -199412,12 +200232,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, @@ -199433,144 +200253,307 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [96161] = 5, - STATE(2156), 1, - aux_sym_comparison_operator_repeat1, + sym_type_conversion, + [96230] = 11, + ACTIONS(4312), 1, + anon_sym_DOT, + ACTIONS(4314), 1, + anon_sym_LPAREN, + ACTIONS(4322), 1, + anon_sym_STAR_STAR, + ACTIONS(4324), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1906), 2, - sym__not_in, - sym__is_not, - ACTIONS(4237), 5, - anon_sym_as, + ACTIONS(4316), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(4328), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2310), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4282), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4235), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4326), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4280), 21, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, + anon_sym_PIPE, + anon_sym_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, + sym_type_conversion, + [96292] = 14, + ACTIONS(4312), 1, + anon_sym_DOT, + ACTIONS(4314), 1, + anon_sym_LPAREN, + ACTIONS(4322), 1, anon_sym_STAR_STAR, + ACTIONS(4324), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AT, + ACTIONS(4332), 1, + anon_sym_AMP, + ACTIONS(4334), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4316), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4318), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4328), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, + STATE(2310), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4282), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4326), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4280), 17, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + 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, + [96360] = 13, + ACTIONS(4312), 1, + anon_sym_DOT, + ACTIONS(4314), 1, + anon_sym_LPAREN, + ACTIONS(4322), 1, + anon_sym_STAR_STAR, + ACTIONS(4324), 1, + anon_sym_LBRACK, + ACTIONS(4334), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4316), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4318), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4328), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2310), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4282), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4326), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + ACTIONS(4280), 18, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + 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, - [96211] = 15, - ACTIONS(4276), 1, + sym_type_conversion, + [96426] = 13, + ACTIONS(4284), 1, anon_sym_DOT, - ACTIONS(4278), 1, - anon_sym_LPAREN, ACTIONS(4286), 1, - anon_sym_STAR_STAR, - ACTIONS(4288), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4294), 1, - anon_sym_PIPE, + anon_sym_STAR_STAR, ACTIONS(4296), 1, - anon_sym_AMP, - ACTIONS(4298), 1, + anon_sym_LBRACK, + ACTIONS(4306), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4280), 2, + ACTIONS(4288), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4282), 2, + ACTIONS(4290), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4292), 2, + ACTIONS(4300), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2325), 2, + STATE(2285), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4290), 3, + ACTIONS(4282), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4298), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4312), 3, + ACTIONS(4280), 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, + [96492] = 12, + ACTIONS(4284), 1, + anon_sym_DOT, + ACTIONS(4286), 1, + anon_sym_LPAREN, + ACTIONS(4294), 1, + anon_sym_STAR_STAR, + ACTIONS(4296), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4288), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4290), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4300), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2285), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4282), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4310), 16, + ACTIONS(4298), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4280), 19, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_PIPE, anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [96281] = 5, - ACTIONS(1247), 1, - sym_string_start, + [96556] = 6, + ACTIONS(4355), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2135), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4251), 5, - anon_sym_STAR, + ACTIONS(4360), 2, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(4352), 4, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + ACTIONS(4358), 4, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4249), 29, + ACTIONS(4350), 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_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, @@ -199579,22 +200562,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [96331] = 5, - STATE(2138), 1, + sym_type_conversion, + [96608] = 5, + STATE(2156), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1922), 2, + STATE(1991), 2, sym__not_in, sym__is_not, - ACTIONS(4237), 5, + ACTIONS(4271), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4235), 29, + ACTIONS(4269), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -199624,33 +200608,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [96381] = 8, - ACTIONS(4314), 1, + [96658] = 5, + ACTIONS(1362), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2176), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(3714), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3703), 29, anon_sym_DOT, - ACTIONS(4316), 1, anon_sym_LPAREN, - ACTIONS(4324), 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, + 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, + [96708] = 8, + ACTIONS(4284), 1, + anon_sym_DOT, + ACTIONS(4286), 1, + anon_sym_LPAREN, + ACTIONS(4294), 1, anon_sym_STAR_STAR, - ACTIONS(4326), 1, + ACTIONS(4296), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2375), 2, + STATE(2285), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4344), 5, + ACTIONS(4282), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4342), 26, + ACTIONS(4280), 26, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_AT, anon_sym_DASH, @@ -199671,23 +200701,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [96437] = 5, - ACTIONS(4649), 1, + [96764] = 5, + ACTIONS(4653), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2135), 2, + STATE(2149), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(4271), 5, + ACTIONS(4275), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4269), 29, + ACTIONS(4273), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -199717,47 +200746,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [96487] = 8, - ACTIONS(4314), 1, + [96814] = 12, + ACTIONS(4312), 1, anon_sym_DOT, - ACTIONS(4316), 1, + ACTIONS(4314), 1, anon_sym_LPAREN, - ACTIONS(4324), 1, + ACTIONS(4322), 1, anon_sym_STAR_STAR, - ACTIONS(4326), 1, + ACTIONS(4324), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2375), 2, + ACTIONS(4316), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4318), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4328), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2310), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4348), 5, - anon_sym_STAR, + ACTIONS(4282), 3, anon_sym_EQ, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4346), 26, + ACTIONS(4326), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4280), 19, 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, @@ -199765,36 +200798,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [96543] = 5, - ACTIONS(4652), 1, - sym_string_start, + [96878] = 20, + ACTIONS(4229), 1, + anon_sym_not, + ACTIONS(4366), 1, + anon_sym_DOT, + ACTIONS(4378), 1, + anon_sym_LBRACK, + ACTIONS(4656), 1, + anon_sym_LPAREN, + ACTIONS(4664), 1, + anon_sym_STAR_STAR, + ACTIONS(4670), 1, + anon_sym_PIPE, + ACTIONS(4672), 1, + anon_sym_AMP, + ACTIONS(4674), 1, + anon_sym_CARET, + ACTIONS(4676), 1, + anon_sym_is, + STATE(3170), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2137), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4271), 5, - anon_sym_as, + ACTIONS(4658), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(4660), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4668), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4678), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4269), 29, + STATE(1916), 2, + sym__not_in, + sym__is_not, + STATE(2660), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4666), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4205), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(4662), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [96958] = 8, + ACTIONS(4312), 1, anon_sym_DOT, + ACTIONS(4314), 1, anon_sym_LPAREN, + ACTIONS(4322), 1, + anon_sym_STAR_STAR, + ACTIONS(4324), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2310), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4282), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4280), 26, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -199810,48 +200905,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [96593] = 9, - ACTIONS(4260), 1, - anon_sym_not, - ACTIONS(4658), 1, - anon_sym_is, - STATE(2138), 1, + sym_type_conversion, + [97014] = 5, + STATE(2180), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4661), 2, - anon_sym_LT, - anon_sym_GT, - STATE(1922), 2, + STATE(2001), 2, sym__not_in, sym__is_not, - ACTIONS(4255), 3, + ACTIONS(4271), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4655), 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(4253), 21, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4269), 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_and, anon_sym_or, anon_sym_PERCENT, @@ -199859,48 +200945,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [96651] = 9, - ACTIONS(4260), 1, - anon_sym_not, - ACTIONS(4667), 1, anon_sym_is, - STATE(2139), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4670), 2, - anon_sym_LT, - anon_sym_GT, - STATE(1899), 2, - sym__not_in, - sym__is_not, - ACTIONS(4255), 3, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - ACTIONS(4664), 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(4253), 21, + [97064] = 8, + ACTIONS(4312), 1, anon_sym_DOT, + ACTIONS(4314), 1, anon_sym_LPAREN, + ACTIONS(4322), 1, + anon_sym_STAR_STAR, + ACTIONS(4324), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2310), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4348), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4346), 26, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, - anon_sym_STAR_STAR, - anon_sym_LBRACK, + 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, @@ -199908,36 +200992,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [96709] = 5, - ACTIONS(1247), 1, - sym_string_start, + 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, + [97120] = 8, + ACTIONS(4312), 1, + anon_sym_DOT, + ACTIONS(4314), 1, + anon_sym_LPAREN, + ACTIONS(4322), 1, + anon_sym_STAR_STAR, + ACTIONS(4324), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2132), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(3710), 5, + STATE(2310), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4282), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3699), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4280), 26, 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, @@ -199953,28 +201046,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [96759] = 8, - ACTIONS(4276), 1, + sym_type_conversion, + [97176] = 9, + ACTIONS(4246), 1, + anon_sym_not, + ACTIONS(4683), 1, + anon_sym_is, + STATE(2156), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4686), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1991), 2, + sym__not_in, + sym__is_not, + ACTIONS(4241), 3, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4680), 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(4239), 21, anon_sym_DOT, - ACTIONS(4278), 1, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_STAR_STAR, + 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, + [97234] = 8, + ACTIONS(4284), 1, + anon_sym_DOT, ACTIONS(4286), 1, + anon_sym_LPAREN, + ACTIONS(4294), 1, anon_sym_STAR_STAR, - ACTIONS(4288), 1, + ACTIONS(4296), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2325), 2, + STATE(2285), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4306), 5, + ACTIONS(4348), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4304), 26, + ACTIONS(4346), 26, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -200001,45 +201144,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [96815] = 11, - ACTIONS(4276), 1, + [97290] = 10, + ACTIONS(4312), 1, anon_sym_DOT, - ACTIONS(4278), 1, + ACTIONS(4314), 1, anon_sym_LPAREN, - ACTIONS(4286), 1, + ACTIONS(4322), 1, anon_sym_STAR_STAR, - ACTIONS(4288), 1, + ACTIONS(4324), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4280), 2, + ACTIONS(4316), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4292), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2325), 2, + STATE(2310), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4290), 3, + ACTIONS(4282), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4326), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4306), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4304), 21, + ACTIONS(4280), 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_DASH, anon_sym_PIPE, anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, @@ -200052,94 +201193,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [96877] = 15, - ACTIONS(4314), 1, + sym_type_conversion, + [97350] = 10, + ACTIONS(4284), 1, anon_sym_DOT, - ACTIONS(4316), 1, + ACTIONS(4286), 1, anon_sym_LPAREN, - ACTIONS(4324), 1, + ACTIONS(4294), 1, anon_sym_STAR_STAR, - ACTIONS(4326), 1, + ACTIONS(4296), 1, anon_sym_LBRACK, - ACTIONS(4332), 1, - anon_sym_PIPE, - ACTIONS(4334), 1, - anon_sym_AMP, - ACTIONS(4336), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4318), 2, + ACTIONS(4288), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4320), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4330), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2375), 2, + STATE(2285), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4312), 3, - anon_sym_EQ, + ACTIONS(4282), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4328), 3, + ACTIONS(4298), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4310), 16, + ACTIONS(4280), 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_DASH, + anon_sym_PIPE, anon_sym_RBRACE, + 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, - sym_type_conversion, - [96947] = 8, - ACTIONS(4276), 1, - anon_sym_DOT, - ACTIONS(4278), 1, - anon_sym_LPAREN, - ACTIONS(4286), 1, - anon_sym_STAR_STAR, - ACTIONS(4288), 1, - anon_sym_LBRACK, + [97410] = 5, + ACTIONS(4689), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2325), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4306), 5, + STATE(2160), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4275), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4304), 26, + ACTIONS(4273), 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, @@ -200155,47 +201289,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [97003] = 10, - ACTIONS(4276), 1, - anon_sym_DOT, - ACTIONS(4278), 1, - anon_sym_LPAREN, - ACTIONS(4286), 1, - anon_sym_STAR_STAR, - ACTIONS(4288), 1, - anon_sym_LBRACK, + [97460] = 5, + ACTIONS(1247), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4280), 2, + STATE(2170), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(3714), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - STATE(2325), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4290), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4306), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4304), 23, + ACTIONS(3703), 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, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -200205,187 +201334,311 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [97063] = 14, - ACTIONS(4276), 1, + [97510] = 20, + ACTIONS(4229), 1, + anon_sym_not, + ACTIONS(4284), 1, anon_sym_DOT, - ACTIONS(4278), 1, + ACTIONS(4296), 1, + anon_sym_LBRACK, + ACTIONS(4314), 1, anon_sym_LPAREN, - ACTIONS(4286), 1, + ACTIONS(4322), 1, anon_sym_STAR_STAR, - ACTIONS(4288), 1, - anon_sym_LBRACK, - ACTIONS(4296), 1, + ACTIONS(4330), 1, + anon_sym_PIPE, + ACTIONS(4332), 1, anon_sym_AMP, - ACTIONS(4298), 1, + ACTIONS(4334), 1, anon_sym_CARET, + ACTIONS(4336), 1, + anon_sym_is, + STATE(3102), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4280), 2, + ACTIONS(4316), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4282), 2, + ACTIONS(4318), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4292), 2, + ACTIONS(4328), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2325), 2, + ACTIONS(4338), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1973), 2, + sym__not_in, + sym__is_not, + STATE(2310), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4290), 3, + ACTIONS(4326), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4306), 3, + ACTIONS(4205), 6, + anon_sym_COMMA, anon_sym_as, + anon_sym_if, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + ACTIONS(4320), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [97590] = 20, + ACTIONS(4229), 1, + anon_sym_not, + ACTIONS(4656), 1, + anon_sym_LPAREN, + ACTIONS(4664), 1, + anon_sym_STAR_STAR, + ACTIONS(4670), 1, + anon_sym_PIPE, + ACTIONS(4672), 1, + anon_sym_AMP, + ACTIONS(4674), 1, + anon_sym_CARET, + ACTIONS(4676), 1, + anon_sym_is, + ACTIONS(4692), 1, + anon_sym_DOT, + ACTIONS(4694), 1, + anon_sym_LBRACK, + STATE(3170), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4658), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4660), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4668), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4678), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4304), 17, + STATE(1916), 2, + sym__not_in, + sym__is_not, + STATE(2660), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4666), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4205), 6, + 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_PIPE, - anon_sym_RBRACE, - anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_is, + ACTIONS(4662), 6, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [97131] = 13, - ACTIONS(4276), 1, + [97670] = 15, + ACTIONS(4312), 1, anon_sym_DOT, - ACTIONS(4278), 1, + ACTIONS(4314), 1, anon_sym_LPAREN, - ACTIONS(4286), 1, + ACTIONS(4322), 1, anon_sym_STAR_STAR, - ACTIONS(4288), 1, + ACTIONS(4324), 1, anon_sym_LBRACK, - ACTIONS(4298), 1, + ACTIONS(4330), 1, + anon_sym_PIPE, + ACTIONS(4332), 1, + anon_sym_AMP, + ACTIONS(4334), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4280), 2, + ACTIONS(4316), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4282), 2, + ACTIONS(4318), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4292), 2, + ACTIONS(4328), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2325), 2, + STATE(2310), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4290), 3, + ACTIONS(4326), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4306), 3, - anon_sym_as, + ACTIONS(4364), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4304), 18, + ACTIONS(4362), 16, anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_PIPE, anon_sym_RBRACE, anon_sym_not, anon_sym_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, - [97197] = 12, - ACTIONS(4276), 1, - anon_sym_DOT, - ACTIONS(4278), 1, + sym_type_conversion, + [97740] = 20, + ACTIONS(4229), 1, + anon_sym_not, + ACTIONS(4656), 1, anon_sym_LPAREN, - ACTIONS(4286), 1, + ACTIONS(4664), 1, anon_sym_STAR_STAR, - ACTIONS(4288), 1, + ACTIONS(4670), 1, + anon_sym_PIPE, + ACTIONS(4672), 1, + anon_sym_AMP, + ACTIONS(4674), 1, + anon_sym_CARET, + ACTIONS(4676), 1, + anon_sym_is, + ACTIONS(4692), 1, + anon_sym_DOT, + ACTIONS(4694), 1, anon_sym_LBRACK, + STATE(2275), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4280), 2, + ACTIONS(4658), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4282), 2, + ACTIONS(4660), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4292), 2, + ACTIONS(4668), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2325), 2, + ACTIONS(4678), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1916), 2, + sym__not_in, + sym__is_not, + STATE(2660), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4290), 3, + ACTIONS(4666), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4306), 3, + ACTIONS(4205), 6, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(4662), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [97820] = 8, + ACTIONS(4312), 1, + anon_sym_DOT, + ACTIONS(4314), 1, + anon_sym_LPAREN, + ACTIONS(4322), 1, + anon_sym_STAR_STAR, + ACTIONS(4324), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2310), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4344), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4304), 19, + ACTIONS(4342), 26, anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, + anon_sym_AT, + anon_sym_DASH, 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, - [97261] = 8, - ACTIONS(4276), 1, + sym_type_conversion, + [97876] = 8, + ACTIONS(4284), 1, anon_sym_DOT, - ACTIONS(4278), 1, - anon_sym_LPAREN, ACTIONS(4286), 1, + anon_sym_LPAREN, + ACTIONS(4294), 1, anon_sym_STAR_STAR, - ACTIONS(4288), 1, + ACTIONS(4296), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2325), 2, + STATE(2285), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4344), 5, + ACTIONS(4282), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4342), 26, + ACTIONS(4280), 26, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -200412,25 +201665,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [97317] = 5, - ACTIONS(4673), 1, + [97932] = 5, + ACTIONS(4696), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2150), 2, + STATE(2168), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(4271), 5, + ACTIONS(4275), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4269), 29, + ACTIONS(4273), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -200439,6 +201691,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, @@ -200457,148 +201710,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [97367] = 20, - ACTIONS(4225), 1, + [97982] = 9, + ACTIONS(4246), 1, anon_sym_not, - ACTIONS(4676), 1, + ACTIONS(4702), 1, + anon_sym_is, + STATE(2169), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4705), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1936), 2, + sym__not_in, + sym__is_not, + ACTIONS(4241), 3, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + ACTIONS(4699), 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(4239), 21, anon_sym_DOT, - ACTIONS(4678), 1, anon_sym_LPAREN, - ACTIONS(4686), 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(4688), 1, anon_sym_LBRACK, - ACTIONS(4694), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(4696), 1, + anon_sym_PLUS, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, - ACTIONS(4698), 1, anon_sym_CARET, - ACTIONS(4700), 1, - anon_sym_is, - STATE(3149), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_LT_LT, + [98040] = 5, + ACTIONS(1247), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4680), 2, + STATE(2149), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4267), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(4682), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4692), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4702), 2, anon_sym_LT, anon_sym_GT, - STATE(1982), 2, - sym__not_in, - sym__is_not, - STATE(2656), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4690), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4201), 6, - anon_sym_RPAREN, + ACTIONS(4265), 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, - ACTIONS(4684), 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, - [97447] = 20, - ACTIONS(4225), 1, - anon_sym_not, - ACTIONS(4676), 1, + [98090] = 14, + ACTIONS(4284), 1, anon_sym_DOT, - ACTIONS(4678), 1, + ACTIONS(4286), 1, anon_sym_LPAREN, - ACTIONS(4686), 1, + ACTIONS(4294), 1, anon_sym_STAR_STAR, - ACTIONS(4688), 1, + ACTIONS(4296), 1, anon_sym_LBRACK, - ACTIONS(4694), 1, - anon_sym_PIPE, - ACTIONS(4696), 1, + ACTIONS(4304), 1, anon_sym_AMP, - ACTIONS(4698), 1, + ACTIONS(4306), 1, anon_sym_CARET, - ACTIONS(4700), 1, - anon_sym_is, - STATE(2239), 1, - aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4680), 2, + ACTIONS(4288), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4682), 2, + ACTIONS(4290), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4692), 2, + ACTIONS(4300), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4702), 2, - anon_sym_LT, - anon_sym_GT, - STATE(1982), 2, - sym__not_in, - sym__is_not, - STATE(2656), 2, + STATE(2285), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4690), 3, + ACTIONS(4282), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4298), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4201), 6, - anon_sym_RPAREN, + ACTIONS(4280), 17, anon_sym_COMMA, - anon_sym_as, anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_not, anon_sym_and, anon_sym_or, - ACTIONS(4684), 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, - [97527] = 8, - ACTIONS(4276), 1, + [98158] = 8, + ACTIONS(4284), 1, anon_sym_DOT, - ACTIONS(4278), 1, - anon_sym_LPAREN, ACTIONS(4286), 1, + anon_sym_LPAREN, + ACTIONS(4294), 1, anon_sym_STAR_STAR, - ACTIONS(4288), 1, + ACTIONS(4296), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2325), 2, + STATE(2285), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4348), 5, + ACTIONS(4344), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4346), 26, + ACTIONS(4342), 26, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -200625,90 +201906,190 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [97583] = 20, - ACTIONS(4225), 1, + [98214] = 5, + ACTIONS(2513), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2168), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4267), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4265), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [98264] = 15, + ACTIONS(4284), 1, + anon_sym_DOT, + ACTIONS(4286), 1, + anon_sym_LPAREN, + ACTIONS(4294), 1, + anon_sym_STAR_STAR, + ACTIONS(4296), 1, + anon_sym_LBRACK, + ACTIONS(4302), 1, + anon_sym_PIPE, + ACTIONS(4304), 1, + anon_sym_AMP, + ACTIONS(4306), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4288), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4290), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4300), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2285), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4298), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4364), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4362), 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, + [98334] = 20, + ACTIONS(4229), 1, anon_sym_not, - ACTIONS(4398), 1, + ACTIONS(4406), 1, anon_sym_DOT, - ACTIONS(4410), 1, + ACTIONS(4418), 1, anon_sym_LBRACK, - ACTIONS(4678), 1, + ACTIONS(4509), 1, anon_sym_LPAREN, - ACTIONS(4686), 1, + ACTIONS(4517), 1, anon_sym_STAR_STAR, - ACTIONS(4694), 1, + ACTIONS(4525), 1, anon_sym_PIPE, - ACTIONS(4696), 1, + ACTIONS(4527), 1, anon_sym_AMP, - ACTIONS(4698), 1, + ACTIONS(4529), 1, anon_sym_CARET, - ACTIONS(4700), 1, + ACTIONS(4531), 1, anon_sym_is, - STATE(3149), 1, + STATE(3098), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4680), 2, + ACTIONS(4511), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4682), 2, + ACTIONS(4513), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4692), 2, + ACTIONS(4523), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4702), 2, + ACTIONS(4533), 2, anon_sym_LT, anon_sym_GT, - STATE(1982), 2, + STATE(1907), 2, sym__not_in, sym__is_not, - STATE(2656), 2, + STATE(2633), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4690), 3, + ACTIONS(4521), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4201), 6, - anon_sym_RPAREN, + ACTIONS(4205), 6, anon_sym_COMMA, anon_sym_as, anon_sym_if, + anon_sym_RBRACK, anon_sym_and, anon_sym_or, - ACTIONS(4684), 6, + ACTIONS(4515), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [97663] = 5, - STATE(2139), 1, - aux_sym_comparison_operator_repeat1, + [98414] = 5, + ACTIONS(1362), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1899), 2, - sym__not_in, - sym__is_not, - ACTIONS(4237), 5, + STATE(2160), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4267), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4235), 29, + ACTIONS(4265), 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, @@ -200730,71 +202111,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [97713] = 9, - ACTIONS(4260), 1, - anon_sym_not, - ACTIONS(4707), 1, - anon_sym_is, - STATE(2156), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4710), 2, - anon_sym_LT, - anon_sym_GT, - STATE(1906), 2, - sym__not_in, - sym__is_not, - ACTIONS(4255), 3, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4704), 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(4253), 21, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - 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_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, - [97771] = 5, - ACTIONS(2503), 1, + [98464] = 5, + ACTIONS(2513), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2167), 2, + STATE(2173), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(3710), 5, + ACTIONS(3714), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3699), 29, + ACTIONS(3703), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -200824,7 +202156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [97821] = 6, + [98514] = 6, ACTIONS(4355), 1, anon_sym_STAR, ACTIONS(3), 2, @@ -200870,30 +202202,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [97873] = 5, - ACTIONS(1362), 1, - sym_string_start, + [98566] = 5, + STATE(2169), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2150), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4251), 5, - anon_sym_as, + STATE(1936), 2, + sym__not_in, + sym__is_not, + ACTIONS(4271), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4249), 29, + ACTIONS(4269), 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, @@ -200915,45 +202247,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [97923] = 8, - ACTIONS(4314), 1, + [98616] = 9, + ACTIONS(4246), 1, + anon_sym_not, + ACTIONS(4711), 1, + anon_sym_is, + STATE(2180), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4714), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2001), 2, + sym__not_in, + sym__is_not, + ACTIONS(4241), 3, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4708), 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(4239), 21, anon_sym_DOT, - ACTIONS(4316), 1, anon_sym_LPAREN, - ACTIONS(4324), 1, + anon_sym_COMMA, + anon_sym_GT_GT, + 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_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, + [98674] = 11, + ACTIONS(4284), 1, + anon_sym_DOT, + ACTIONS(4286), 1, + anon_sym_LPAREN, + ACTIONS(4294), 1, anon_sym_STAR_STAR, - ACTIONS(4326), 1, + ACTIONS(4296), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2375), 2, + ACTIONS(4288), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4300), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2285), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4306), 5, + ACTIONS(4282), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4298), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4280), 21, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [98736] = 6, + ACTIONS(4355), 1, anon_sym_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4360), 2, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(4352), 4, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + ACTIONS(4358), 4, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4304), 26, + ACTIONS(4350), 25, + anon_sym_DOT, 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, anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, anon_sym_is, @@ -200962,45 +202392,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [97979] = 11, - ACTIONS(4314), 1, + [98787] = 11, + ACTIONS(4406), 1, anon_sym_DOT, - ACTIONS(4316), 1, + ACTIONS(4408), 1, anon_sym_LPAREN, - ACTIONS(4324), 1, + ACTIONS(4416), 1, anon_sym_STAR_STAR, - ACTIONS(4326), 1, + ACTIONS(4418), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4318), 2, + ACTIONS(4410), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4330), 2, + ACTIONS(4422), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2375), 2, + STATE(2551), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4306), 3, - anon_sym_EQ, + ACTIONS(4282), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4328), 3, + ACTIONS(4420), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4304), 21, + ACTIONS(4280), 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_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, @@ -201013,39 +202442,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [98041] = 8, - ACTIONS(4314), 1, + [98848] = 8, + ACTIONS(4406), 1, anon_sym_DOT, - ACTIONS(4316), 1, + ACTIONS(4408), 1, anon_sym_LPAREN, - ACTIONS(4324), 1, + ACTIONS(4416), 1, anon_sym_STAR_STAR, - ACTIONS(4326), 1, + ACTIONS(4418), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2375), 2, + STATE(2551), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4306), 5, + ACTIONS(4282), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4304), 26, + ACTIONS(4280), 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_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -201061,43 +202489,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [98097] = 10, - ACTIONS(4314), 1, + [98903] = 10, + ACTIONS(4406), 1, anon_sym_DOT, - ACTIONS(4316), 1, + ACTIONS(4408), 1, anon_sym_LPAREN, - ACTIONS(4324), 1, + ACTIONS(4416), 1, anon_sym_STAR_STAR, - ACTIONS(4326), 1, + ACTIONS(4418), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4318), 2, + ACTIONS(4410), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(2375), 2, + STATE(2551), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4306), 3, - anon_sym_EQ, + ACTIONS(4282), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4328), 3, + ACTIONS(4420), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4304), 23, + ACTIONS(4280), 22, 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_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -201111,51 +202538,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [98157] = 14, - ACTIONS(4314), 1, + [98962] = 14, + ACTIONS(4406), 1, anon_sym_DOT, - ACTIONS(4316), 1, + ACTIONS(4408), 1, anon_sym_LPAREN, - ACTIONS(4324), 1, + ACTIONS(4416), 1, anon_sym_STAR_STAR, - ACTIONS(4326), 1, + ACTIONS(4418), 1, anon_sym_LBRACK, - ACTIONS(4334), 1, + ACTIONS(4426), 1, anon_sym_AMP, - ACTIONS(4336), 1, + ACTIONS(4428), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4318), 2, + ACTIONS(4410), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4320), 2, + ACTIONS(4412), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4330), 2, + ACTIONS(4422), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2375), 2, + STATE(2551), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4306), 3, - anon_sym_EQ, + ACTIONS(4282), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4328), 3, + ACTIONS(4420), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4304), 17, + ACTIONS(4280), 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, @@ -201165,49 +202591,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [98225] = 13, - ACTIONS(4314), 1, + [99029] = 13, + ACTIONS(4406), 1, anon_sym_DOT, - ACTIONS(4316), 1, + ACTIONS(4408), 1, anon_sym_LPAREN, - ACTIONS(4324), 1, + ACTIONS(4416), 1, anon_sym_STAR_STAR, - ACTIONS(4326), 1, + ACTIONS(4418), 1, anon_sym_LBRACK, - ACTIONS(4336), 1, + ACTIONS(4428), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4318), 2, + ACTIONS(4410), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4320), 2, + ACTIONS(4412), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4330), 2, + ACTIONS(4422), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2375), 2, + STATE(2551), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4306), 3, - anon_sym_EQ, + ACTIONS(4282), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4328), 3, + ACTIONS(4420), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4304), 18, + ACTIONS(4280), 17, 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, @@ -201218,47 +202643,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [98291] = 12, - ACTIONS(4314), 1, + [99094] = 12, + ACTIONS(4406), 1, anon_sym_DOT, - ACTIONS(4316), 1, + ACTIONS(4408), 1, anon_sym_LPAREN, - ACTIONS(4324), 1, + ACTIONS(4416), 1, anon_sym_STAR_STAR, - ACTIONS(4326), 1, + ACTIONS(4418), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4318), 2, + ACTIONS(4410), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4320), 2, + ACTIONS(4412), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4330), 2, + ACTIONS(4422), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2375), 2, + STATE(2551), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4306), 3, - anon_sym_EQ, + ACTIONS(4282), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4328), 3, + ACTIONS(4420), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4304), 19, + ACTIONS(4280), 18, 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, @@ -201270,149 +202694,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [98355] = 5, - ACTIONS(2503), 1, - sym_string_start, + [99157] = 13, + ACTIONS(4366), 1, + anon_sym_DOT, + ACTIONS(4368), 1, + anon_sym_LPAREN, + ACTIONS(4376), 1, + anon_sym_STAR_STAR, + ACTIONS(4378), 1, + anon_sym_LBRACK, + ACTIONS(4388), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2137), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4251), 5, - anon_sym_as, + ACTIONS(4370), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(4372), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4382), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2434), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4282), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4249), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4380), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4280), 17, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_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, - [98405] = 20, - ACTIONS(4225), 1, - anon_sym_not, - ACTIONS(4426), 1, + [99222] = 8, + ACTIONS(4434), 1, anon_sym_DOT, - ACTIONS(4438), 1, - anon_sym_LBRACK, - ACTIONS(4479), 1, + ACTIONS(4436), 1, anon_sym_LPAREN, - ACTIONS(4487), 1, + ACTIONS(4444), 1, anon_sym_STAR_STAR, - ACTIONS(4495), 1, - anon_sym_PIPE, - ACTIONS(4497), 1, - anon_sym_AMP, - ACTIONS(4499), 1, - anon_sym_CARET, - ACTIONS(4501), 1, - anon_sym_is, - STATE(3093), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(4446), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4481), 2, + STATE(2436), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4282), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(4483), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4493), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4503), 2, anon_sym_LT, anon_sym_GT, - STATE(1997), 2, - sym__not_in, - sym__is_not, - STATE(2610), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4491), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4201), 6, + ACTIONS(4280), 25, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_RBRACK, + 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(4485), 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, - [98485] = 6, - ACTIONS(4355), 1, - anon_sym_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4360), 2, - anon_sym_complex, - anon_sym___stdcall, - ACTIONS(4352), 4, + [99277] = 10, + ACTIONS(4434), 1, + anon_sym_DOT, + ACTIONS(4436), 1, anon_sym_LPAREN, + ACTIONS(4444), 1, anon_sym_STAR_STAR, + ACTIONS(4446), 1, anon_sym_LBRACK, - anon_sym_AMP, - ACTIONS(4358), 4, - anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4438), 2, + anon_sym_STAR, anon_sym_SLASH, + STATE(2436), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4282), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4350), 26, - anon_sym_DOT, + ACTIONS(4448), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4280), 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_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, @@ -201421,25 +202842,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [98537] = 5, - ACTIONS(1362), 1, - sym_string_start, + [99336] = 8, + ACTIONS(4366), 1, + anon_sym_DOT, + ACTIONS(4368), 1, + anon_sym_LPAREN, + ACTIONS(4376), 1, + anon_sym_STAR_STAR, + ACTIONS(4378), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2159), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(3710), 5, + STATE(2434), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4282), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3699), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4280), 25, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -201447,8 +202871,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, @@ -201467,151 +202889,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [98587] = 20, - ACTIONS(4225), 1, - anon_sym_not, - ACTIONS(4276), 1, - anon_sym_DOT, - ACTIONS(4288), 1, - anon_sym_LBRACK, - ACTIONS(4316), 1, - anon_sym_LPAREN, - ACTIONS(4324), 1, - anon_sym_STAR_STAR, - ACTIONS(4332), 1, - anon_sym_PIPE, - ACTIONS(4334), 1, - anon_sym_AMP, - ACTIONS(4336), 1, - anon_sym_CARET, - ACTIONS(4338), 1, - anon_sym_is, - STATE(3094), 1, - aux_sym_comparison_operator_repeat1, + [99391] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4318), 2, + ACTIONS(4400), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(4320), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4330), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4340), 2, anon_sym_LT, anon_sym_GT, - STATE(1958), 2, - sym__not_in, - sym__is_not, - STATE(2375), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4328), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4201), 6, + ACTIONS(4398), 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, anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_not, anon_sym_and, anon_sym_or, - ACTIONS(4322), 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, - [98667] = 14, - ACTIONS(4426), 1, + sym_type_conversion, + [99436] = 20, + ACTIONS(125), 1, + anon_sym_class, + ACTIONS(3934), 1, + sym_identifier, + ACTIONS(3936), 1, + anon_sym_LPAREN, + ACTIONS(3948), 1, + anon_sym_long, + ACTIONS(3954), 1, + anon_sym_enum, + ACTIONS(3958), 1, + anon_sym_fused, + ACTIONS(3976), 1, + anon_sym_extern, + STATE(3198), 1, + sym__signedness, + STATE(3409), 1, + sym__longness, + STATE(3461), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3944), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(3946), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(3950), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(3952), 2, + anon_sym_struct, + anon_sym_union, + STATE(2924), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(3668), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(3942), 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, + STATE(697), 6, + sym_class_definition, + sym_extern_block, + sym_cvar_decl, + sym_struct, + sym_enum, + sym_fused, + [99515] = 12, + ACTIONS(4366), 1, anon_sym_DOT, - ACTIONS(4428), 1, + ACTIONS(4368), 1, anon_sym_LPAREN, - ACTIONS(4436), 1, + ACTIONS(4376), 1, anon_sym_STAR_STAR, - ACTIONS(4438), 1, + ACTIONS(4378), 1, anon_sym_LBRACK, - ACTIONS(4446), 1, - anon_sym_AMP, - ACTIONS(4448), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4430), 2, + ACTIONS(4370), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4432), 2, + ACTIONS(4372), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4442), 2, + ACTIONS(4382), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2433), 2, + STATE(2434), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4306), 3, + ACTIONS(4282), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4440), 3, + ACTIONS(4380), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4304), 16, + ACTIONS(4280), 18, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_RBRACK, anon_sym_PIPE, anon_sym_not, anon_sym_and, 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, - [98734] = 8, - ACTIONS(4366), 1, - anon_sym_DOT, - ACTIONS(4368), 1, - anon_sym_LPAREN, - ACTIONS(4376), 1, - anon_sym_STAR_STAR, - ACTIONS(4378), 1, - anon_sym_LBRACK, + [99578] = 4, + ACTIONS(1020), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2439), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4306), 5, + ACTIONS(1005), 6, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4304), 25, + ACTIONS(1003), 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, @@ -201627,20 +203084,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [98789] = 4, - ACTIONS(3712), 1, + [99625] = 4, + ACTIONS(3716), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3710), 6, + ACTIONS(3714), 6, anon_sym_as, anon_sym_STAR, anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3699), 29, + ACTIONS(3703), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -201670,76 +203127,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [98836] = 20, - ACTIONS(125), 1, - anon_sym_class, - ACTIONS(4004), 1, - sym_identifier, - ACTIONS(4006), 1, - anon_sym_LPAREN, - ACTIONS(4018), 1, - anon_sym_long, - ACTIONS(4024), 1, - anon_sym_enum, - ACTIONS(4028), 1, - anon_sym_fused, - ACTIONS(4092), 1, - anon_sym_extern, - STATE(3188), 1, - sym__signedness, - STATE(3410), 1, - sym__longness, - STATE(3447), 1, - sym_c_type, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4014), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(4016), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4020), 2, - anon_sym_const, - anon_sym_volatile, - ACTIONS(4022), 2, - anon_sym_struct, - anon_sym_union, - STATE(2885), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3669), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4012), 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, - STATE(614), 6, - sym_class_definition, - sym_extern_block, - sym_cvar_decl, - sym_struct, - sym_enum, - sym_fused, - [98915] = 3, + [99672] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4456), 5, + ACTIONS(4404), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4454), 31, + ACTIONS(4402), 31, sym_string_start, anon_sym_DOT, anon_sym_LPAREN, @@ -201771,7 +203169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [98960] = 15, + [99717] = 15, ACTIONS(4366), 1, anon_sym_DOT, ACTIONS(4368), 1, @@ -201798,23 +203196,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4382), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2439), 2, + STATE(2434), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4312), 3, - anon_sym_EQ, + ACTIONS(4364), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, ACTIONS(4380), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4310), 15, + ACTIONS(4362), 15, + anon_sym_RPAREN, 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_not, anon_sym_and, @@ -201825,47 +203223,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [99029] = 11, - ACTIONS(4366), 1, - anon_sym_DOT, - ACTIONS(4368), 1, - anon_sym_LPAREN, - ACTIONS(4376), 1, - anon_sym_STAR_STAR, - ACTIONS(4378), 1, - anon_sym_LBRACK, + [99786] = 5, + ACTIONS(2485), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4370), 2, + STATE(2213), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(3714), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4382), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2439), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4306), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4380), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4304), 20, + ACTIONS(3703), 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, + 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, @@ -201875,51 +203267,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [99090] = 15, - ACTIONS(4426), 1, + [99835] = 14, + ACTIONS(4434), 1, anon_sym_DOT, - ACTIONS(4428), 1, - anon_sym_LPAREN, ACTIONS(4436), 1, - anon_sym_STAR_STAR, - ACTIONS(4438), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4444), 1, - anon_sym_PIPE, + anon_sym_STAR_STAR, ACTIONS(4446), 1, + anon_sym_LBRACK, + ACTIONS(4454), 1, anon_sym_AMP, - ACTIONS(4448), 1, + ACTIONS(4456), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4430), 2, + ACTIONS(4438), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4432), 2, + ACTIONS(4440), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4442), 2, + ACTIONS(4450), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2433), 2, + STATE(2436), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4312), 3, - anon_sym_as, + ACTIONS(4282), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4440), 3, + ACTIONS(4448), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4310), 15, + ACTIONS(4280), 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_RBRACK, + anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, @@ -201929,38 +203320,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [99159] = 8, - ACTIONS(4366), 1, + [99902] = 9, + ACTIONS(4246), 1, + anon_sym_not, + ACTIONS(4720), 1, + anon_sym_is, + STATE(2202), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4241), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4723), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1907), 2, + sym__not_in, + sym__is_not, + ACTIONS(4717), 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(4239), 21, anon_sym_DOT, - ACTIONS(4368), 1, anon_sym_LPAREN, - ACTIONS(4376), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, anon_sym_STAR_STAR, - ACTIONS(4378), 1, anon_sym_LBRACK, + anon_sym_RBRACK, + 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, + [99959] = 6, + ACTIONS(1020), 1, + anon_sym_COLON_EQ, + ACTIONS(1300), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2439), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4306), 5, + ACTIONS(1295), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1297), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4304), 25, + ACTIONS(1498), 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_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -201976,38 +203413,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [99214] = 8, - ACTIONS(4426), 1, - anon_sym_DOT, - ACTIONS(4428), 1, - anon_sym_LPAREN, - ACTIONS(4436), 1, - anon_sym_STAR_STAR, - ACTIONS(4438), 1, - anon_sym_LBRACK, + [100010] = 6, + ACTIONS(3716), 1, + anon_sym_COLON_EQ, + ACTIONS(3899), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2433), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4306), 5, + ACTIONS(3891), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(3896), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4304), 25, + ACTIONS(3893), 27, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_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, @@ -202023,46 +203458,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [99269] = 10, - ACTIONS(4366), 1, - anon_sym_DOT, - ACTIONS(4368), 1, + [100061] = 20, + ACTIONS(59), 1, + anon_sym_class, + ACTIONS(3934), 1, + sym_identifier, + ACTIONS(3936), 1, anon_sym_LPAREN, - ACTIONS(4376), 1, - anon_sym_STAR_STAR, - ACTIONS(4378), 1, - anon_sym_LBRACK, + ACTIONS(3948), 1, + anon_sym_long, + ACTIONS(4056), 1, + anon_sym_extern, + ACTIONS(4060), 1, + anon_sym_enum, + ACTIONS(4064), 1, + anon_sym_fused, + STATE(3198), 1, + sym__signedness, + STATE(3409), 1, + sym__longness, + STATE(3474), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4370), 2, + ACTIONS(3944), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(3946), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(3950), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4058), 2, + anon_sym_struct, + anon_sym_union, + STATE(2834), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(3668), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(3942), 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, + STATE(1344), 6, + sym_class_definition, + sym_extern_block, + sym_cvar_decl, + sym_struct, + sym_enum, + sym_fused, + [100140] = 4, + ACTIONS(1020), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1005), 6, anon_sym_STAR, - anon_sym_SLASH, - STATE(2439), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4306), 3, + anon_sym_COLON, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4380), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4304), 22, + ACTIONS(1003), 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, @@ -202072,94 +203559,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [99328] = 14, - ACTIONS(4366), 1, - anon_sym_DOT, - ACTIONS(4368), 1, - anon_sym_LPAREN, - ACTIONS(4376), 1, - anon_sym_STAR_STAR, - ACTIONS(4378), 1, - anon_sym_LBRACK, - ACTIONS(4386), 1, - anon_sym_AMP, - ACTIONS(4388), 1, - anon_sym_CARET, + sym_type_conversion, + [100187] = 4, + ACTIONS(3716), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4370), 2, + ACTIONS(3714), 6, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4372), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4382), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2439), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4306), 3, + anon_sym_COLON, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4380), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4304), 16, + ACTIONS(3703), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [99395] = 13, - ACTIONS(4366), 1, + sym_type_conversion, + [100234] = 20, + ACTIONS(125), 1, + anon_sym_class, + ACTIONS(3934), 1, + sym_identifier, + ACTIONS(3936), 1, + anon_sym_LPAREN, + ACTIONS(3948), 1, + anon_sym_long, + ACTIONS(3954), 1, + anon_sym_enum, + ACTIONS(3958), 1, + anon_sym_fused, + ACTIONS(3976), 1, + anon_sym_extern, + STATE(3198), 1, + sym__signedness, + STATE(3409), 1, + sym__longness, + STATE(3461), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3944), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(3946), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(3950), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(3952), 2, + anon_sym_struct, + anon_sym_union, + STATE(2924), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(3668), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(3942), 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, + STATE(700), 6, + sym_class_definition, + sym_extern_block, + sym_cvar_decl, + sym_struct, + sym_enum, + sym_fused, + [100313] = 13, + ACTIONS(4434), 1, anon_sym_DOT, - ACTIONS(4368), 1, + ACTIONS(4436), 1, anon_sym_LPAREN, - ACTIONS(4376), 1, + ACTIONS(4444), 1, anon_sym_STAR_STAR, - ACTIONS(4378), 1, + ACTIONS(4446), 1, anon_sym_LBRACK, - ACTIONS(4388), 1, + ACTIONS(4456), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4370), 2, + ACTIONS(4438), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4372), 2, + ACTIONS(4440), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4382), 2, + ACTIONS(4450), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2439), 2, + STATE(2436), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4306), 3, + ACTIONS(4282), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4380), 3, + ACTIONS(4448), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4304), 17, + ACTIONS(4280), 17, anon_sym_COMMA, anon_sym_as, anon_sym_if, @@ -202177,98 +203714,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [99460] = 12, - ACTIONS(4366), 1, + [100378] = 6, + ACTIONS(4355), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4360), 2, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(4352), 4, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + ACTIONS(4358), 4, + anon_sym_as, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4350), 25, anon_sym_DOT, - ACTIONS(4368), 1, + 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_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, + [100429] = 15, + ACTIONS(4434), 1, + anon_sym_DOT, + ACTIONS(4436), 1, anon_sym_LPAREN, - ACTIONS(4376), 1, + ACTIONS(4444), 1, anon_sym_STAR_STAR, - ACTIONS(4378), 1, + ACTIONS(4446), 1, anon_sym_LBRACK, + ACTIONS(4452), 1, + anon_sym_PIPE, + ACTIONS(4454), 1, + anon_sym_AMP, + ACTIONS(4456), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4370), 2, + ACTIONS(4438), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4372), 2, + ACTIONS(4440), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4382), 2, + ACTIONS(4450), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2439), 2, + STATE(2436), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4306), 3, + ACTIONS(4364), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4380), 3, + ACTIONS(4448), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4304), 18, + ACTIONS(4362), 15, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_else, anon_sym_in, - anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [99523] = 11, - ACTIONS(4426), 1, + [100498] = 8, + ACTIONS(4434), 1, anon_sym_DOT, - ACTIONS(4428), 1, - anon_sym_LPAREN, ACTIONS(4436), 1, + anon_sym_LPAREN, + ACTIONS(4444), 1, anon_sym_STAR_STAR, - ACTIONS(4438), 1, + ACTIONS(4446), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4430), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4442), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2433), 2, + STATE(2436), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4306), 3, - anon_sym_as, + ACTIONS(4282), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4440), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4304), 20, + ACTIONS(4280), 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_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, @@ -202278,35 +203860,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [99584] = 8, - ACTIONS(4366), 1, - anon_sym_DOT, - ACTIONS(4368), 1, - anon_sym_LPAREN, - ACTIONS(4376), 1, - anon_sym_STAR_STAR, - ACTIONS(4378), 1, - anon_sym_LBRACK, + [100553] = 5, + ACTIONS(2485), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2439), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4344), 5, + STATE(2222), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4267), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4342), 25, + ACTIONS(4265), 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, @@ -202325,19 +203904,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [99639] = 8, - ACTIONS(4366), 1, + [100602] = 8, + ACTIONS(4434), 1, anon_sym_DOT, - ACTIONS(4368), 1, + ACTIONS(4436), 1, anon_sym_LPAREN, - ACTIONS(4376), 1, + ACTIONS(4444), 1, anon_sym_STAR_STAR, - ACTIONS(4378), 1, + ACTIONS(4446), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2439), 2, + STATE(2436), 2, sym_argument_list, sym_generator_expression, ACTIONS(4348), 5, @@ -202372,42 +203951,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [99694] = 6, - ACTIONS(596), 1, - anon_sym_COLON_EQ, - ACTIONS(1300), 1, - anon_sym_COLON, + [100657] = 11, + ACTIONS(4434), 1, + anon_sym_DOT, + ACTIONS(4436), 1, + anon_sym_LPAREN, + ACTIONS(4444), 1, + anon_sym_STAR_STAR, + ACTIONS(4446), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1295), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1297), 5, - anon_sym_as, + ACTIONS(4438), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(4450), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2436), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4282), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1498), 27, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4448), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4280), 20, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_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, @@ -202417,27 +204001,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [99745] = 6, - ACTIONS(3712), 1, + [100718] = 5, + ACTIONS(3709), 1, + anon_sym_COMMA, + ACTIONS(3716), 1, anon_sym_COLON_EQ, - ACTIONS(3873), 1, - anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3865), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(3870), 5, - anon_sym_as, + ACTIONS(3714), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3867), 27, + ACTIONS(3703), 28, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_in, @@ -202462,33 +204044,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [99796] = 3, + sym_type_conversion, + [100767] = 8, + ACTIONS(4434), 1, + anon_sym_DOT, + ACTIONS(4436), 1, + anon_sym_LPAREN, + ACTIONS(4444), 1, + anon_sym_STAR_STAR, + ACTIONS(4446), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4396), 5, - anon_sym_as, + STATE(2436), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4344), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4394), 31, - sym_string_start, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4342), 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_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, @@ -202504,27 +204092,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [99841] = 5, - ACTIONS(596), 1, - anon_sym_COLON_EQ, - ACTIONS(2433), 1, - anon_sym_EQ, + [100822] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(581), 5, + ACTIONS(4400), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(579), 29, + ACTIONS(4398), 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, @@ -202533,6 +204118,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, @@ -202548,32 +204134,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [99890] = 5, - ACTIONS(3712), 1, - anon_sym_COLON_EQ, - ACTIONS(4308), 1, - anon_sym_EQ, + [100867] = 5, + STATE(2202), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3710), 5, - anon_sym_as, + STATE(1907), 2, + sym__not_in, + sym__is_not, + ACTIONS(4271), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3699), 29, + ACTIONS(4269), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -202592,22 +204178,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [99939] = 5, - ACTIONS(3705), 1, - anon_sym_COMMA, - ACTIONS(3712), 1, + [100916] = 6, + ACTIONS(3716), 1, anon_sym_COLON_EQ, + ACTIONS(4726), 1, + anon_sym_LBRACK, + STATE(4197), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3710), 6, + ACTIONS(3714), 6, anon_sym_STAR, anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3699), 28, + ACTIONS(3703), 27, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_as, @@ -202615,11 +204205,9 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -202635,28 +204223,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [99988] = 6, - ACTIONS(4355), 1, - anon_sym_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4360), 2, - anon_sym_complex, - anon_sym___stdcall, - ACTIONS(4352), 4, + [100967] = 8, + ACTIONS(4366), 1, + anon_sym_DOT, + ACTIONS(4368), 1, anon_sym_LPAREN, + ACTIONS(4376), 1, anon_sym_STAR_STAR, + ACTIONS(4378), 1, anon_sym_LBRACK, - anon_sym_AMP, - ACTIONS(4358), 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2434), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4348), 5, anon_sym_as, + anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4350), 25, - anon_sym_DOT, + ACTIONS(4346), 25, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -202673,6 +204261,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, @@ -202681,33 +204270,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [100039] = 9, - ACTIONS(4260), 1, - anon_sym_not, - ACTIONS(4716), 1, - anon_sym_is, - STATE(2196), 1, - aux_sym_comparison_operator_repeat1, + [101022] = 5, + ACTIONS(4728), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4255), 2, + STATE(2222), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4275), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4719), 2, anon_sym_LT, anon_sym_GT, - STATE(1997), 2, - sym__not_in, - sym__is_not, - ACTIONS(4713), 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(4253), 21, + ACTIONS(4273), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -202715,6 +204292,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, @@ -202722,6 +204300,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, @@ -202729,33 +204308,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [100096] = 6, - ACTIONS(4355), 1, - anon_sym_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4360), 2, - anon_sym_complex, - anon_sym___stdcall, - ACTIONS(4352), 4, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [101071] = 8, + ACTIONS(4366), 1, + anon_sym_DOT, + ACTIONS(4368), 1, anon_sym_LPAREN, + ACTIONS(4376), 1, anon_sym_STAR_STAR, + ACTIONS(4378), 1, anon_sym_LBRACK, - anon_sym_AMP, - ACTIONS(4358), 4, - anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2434), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4344), 5, + anon_sym_as, + anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4350), 25, - anon_sym_DOT, + ACTIONS(4342), 25, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_AT, anon_sym_DASH, @@ -202766,6 +204352,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, @@ -202774,87 +204361,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [100147] = 8, - ACTIONS(4426), 1, + [101126] = 15, + ACTIONS(4406), 1, anon_sym_DOT, - ACTIONS(4428), 1, + ACTIONS(4408), 1, anon_sym_LPAREN, - ACTIONS(4436), 1, + ACTIONS(4416), 1, anon_sym_STAR_STAR, - ACTIONS(4438), 1, + ACTIONS(4418), 1, anon_sym_LBRACK, + ACTIONS(4424), 1, + anon_sym_PIPE, + ACTIONS(4426), 1, + anon_sym_AMP, + ACTIONS(4428), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2433), 2, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4412), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4422), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2551), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4306), 5, + ACTIONS(4364), 3, anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4304), 25, + ACTIONS(4420), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4362), 15, 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, - [100202] = 10, - ACTIONS(4426), 1, + [101195] = 10, + ACTIONS(4366), 1, anon_sym_DOT, - ACTIONS(4428), 1, + ACTIONS(4368), 1, anon_sym_LPAREN, - ACTIONS(4436), 1, + ACTIONS(4376), 1, anon_sym_STAR_STAR, - ACTIONS(4438), 1, + ACTIONS(4378), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4430), 2, + ACTIONS(4370), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(2433), 2, + STATE(2434), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4306), 3, + ACTIONS(4282), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4440), 3, + ACTIONS(4380), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4304), 22, + ACTIONS(4280), 22, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_RBRACK, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, @@ -202870,35 +204464,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [100261] = 5, - ACTIONS(2475), 1, - sym_string_start, + [101254] = 5, + ACTIONS(1010), 1, + anon_sym_COMMA, + ACTIONS(1020), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2208), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4251), 4, + ACTIONS(1005), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4249), 29, + ACTIONS(1003), 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, @@ -202914,197 +204507,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [100310] = 20, - ACTIONS(59), 1, - anon_sym_class, - ACTIONS(4004), 1, - sym_identifier, - ACTIONS(4006), 1, - anon_sym_LPAREN, - ACTIONS(4018), 1, - anon_sym_long, - ACTIONS(4104), 1, - anon_sym_extern, - ACTIONS(4108), 1, - anon_sym_enum, - ACTIONS(4112), 1, - anon_sym_fused, - STATE(3188), 1, - sym__signedness, - STATE(3410), 1, - sym__longness, - STATE(3505), 1, - sym_c_type, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4014), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(4016), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4020), 2, - anon_sym_const, - anon_sym_volatile, - ACTIONS(4106), 2, - anon_sym_struct, - anon_sym_union, - STATE(2838), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3669), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4012), 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, - STATE(1266), 6, - sym_class_definition, - sym_extern_block, - sym_cvar_decl, - sym_struct, - sym_enum, - sym_fused, - [100389] = 13, - ACTIONS(4426), 1, + sym_type_conversion, + [101303] = 8, + ACTIONS(4406), 1, anon_sym_DOT, - ACTIONS(4428), 1, + ACTIONS(4408), 1, anon_sym_LPAREN, - ACTIONS(4436), 1, + ACTIONS(4416), 1, anon_sym_STAR_STAR, - ACTIONS(4438), 1, + ACTIONS(4418), 1, anon_sym_LBRACK, - ACTIONS(4448), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4430), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4432), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4442), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2433), 2, + STATE(2551), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4306), 3, + ACTIONS(4348), 5, anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4440), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4304), 17, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [100454] = 12, - ACTIONS(4426), 1, - anon_sym_DOT, - ACTIONS(4428), 1, - anon_sym_LPAREN, - ACTIONS(4436), 1, - anon_sym_STAR_STAR, - ACTIONS(4438), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4430), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4432), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4442), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2433), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4306), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4440), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4304), 18, + ACTIONS(4346), 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, - [100517] = 8, - ACTIONS(4426), 1, + [101358] = 8, + ACTIONS(4366), 1, anon_sym_DOT, - ACTIONS(4428), 1, + ACTIONS(4368), 1, anon_sym_LPAREN, - ACTIONS(4436), 1, + ACTIONS(4376), 1, anon_sym_STAR_STAR, - ACTIONS(4438), 1, + ACTIONS(4378), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2433), 2, + STATE(2434), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4344), 5, + ACTIONS(4282), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4342), 25, + ACTIONS(4280), 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_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -203123,19 +204602,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [100572] = 8, - ACTIONS(4398), 1, + [101413] = 8, + ACTIONS(4406), 1, anon_sym_DOT, - ACTIONS(4400), 1, - anon_sym_LPAREN, ACTIONS(4408), 1, + anon_sym_LPAREN, + ACTIONS(4416), 1, anon_sym_STAR_STAR, - ACTIONS(4410), 1, + ACTIONS(4418), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2501), 2, + STATE(2551), 2, sym_argument_list, sym_generator_expression, ACTIONS(4344), 5, @@ -203145,13 +204624,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, ACTIONS(4342), 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_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -203170,32 +204649,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [100627] = 5, - STATE(2196), 1, - aux_sym_comparison_operator_repeat1, + [101468] = 5, + ACTIONS(1020), 1, + anon_sym_COLON_EQ, + ACTIONS(2383), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1997), 2, - sym__not_in, - sym__is_not, - ACTIONS(4237), 4, + ACTIONS(1005), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4235), 29, + ACTIONS(1003), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -203214,39 +204693,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [100676] = 3, + [101517] = 6, + ACTIONS(4355), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4456), 5, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(4360), 2, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(4352), 4, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + ACTIONS(4358), 4, + anon_sym_as, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4454), 31, - sym_string_start, + ACTIONS(4350), 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_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, @@ -203255,33 +204738,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [100721] = 5, - ACTIONS(4722), 1, - sym_string_start, + [101568] = 5, + ACTIONS(3716), 1, + anon_sym_COLON_EQ, + ACTIONS(4340), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2208), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4271), 4, + ACTIONS(3714), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4269), 29, + ACTIONS(3703), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -203300,49 +204782,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [100770] = 20, - ACTIONS(125), 1, - anon_sym_class, - ACTIONS(4004), 1, + [101617] = 20, + ACTIONS(3934), 1, sym_identifier, - ACTIONS(4006), 1, + ACTIONS(3936), 1, anon_sym_LPAREN, - ACTIONS(4018), 1, + ACTIONS(3948), 1, anon_sym_long, - ACTIONS(4024), 1, + ACTIONS(4124), 1, + anon_sym_class, + ACTIONS(4126), 1, + anon_sym_extern, + ACTIONS(4132), 1, anon_sym_enum, - ACTIONS(4028), 1, + ACTIONS(4136), 1, anon_sym_fused, - ACTIONS(4092), 1, - anon_sym_extern, - STATE(3188), 1, + STATE(3198), 1, sym__signedness, - STATE(3410), 1, + STATE(3409), 1, sym__longness, - STATE(3447), 1, + STATE(3482), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4014), 2, + ACTIONS(3944), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4016), 2, + ACTIONS(3946), 2, anon_sym_char, anon_sym_short, - ACTIONS(4020), 2, + ACTIONS(3950), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4022), 2, + ACTIONS(4130), 2, anon_sym_struct, anon_sym_union, - STATE(2885), 2, + STATE(2925), 2, sym_storageclass, aux_sym_class_definition_repeat1, - STATE(3669), 2, + STATE(3668), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4012), 3, + ACTIONS(3942), 3, anon_sym_int, anon_sym_double, anon_sym_complex, @@ -203352,50 +204834,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(626), 6, + STATE(3046), 6, sym_class_definition, sym_extern_block, sym_cvar_decl, sym_struct, sym_enum, sym_fused, - [100849] = 6, - ACTIONS(4355), 1, - anon_sym_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4360), 2, - anon_sym_complex, - anon_sym___stdcall, - ACTIONS(4352), 4, + [101696] = 11, + ACTIONS(4366), 1, + anon_sym_DOT, + ACTIONS(4368), 1, anon_sym_LPAREN, + ACTIONS(4376), 1, anon_sym_STAR_STAR, + ACTIONS(4378), 1, anon_sym_LBRACK, - anon_sym_AMP, - ACTIONS(4358), 4, - anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4370), 2, + anon_sym_STAR, anon_sym_SLASH, + ACTIONS(4382), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2434), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4282), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4350), 25, - anon_sym_DOT, + ACTIONS(4380), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4280), 20, + anon_sym_RPAREN, 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, @@ -203404,49 +204891,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [100900] = 20, - ACTIONS(59), 1, - anon_sym_class, - ACTIONS(4004), 1, + [101757] = 20, + ACTIONS(3934), 1, sym_identifier, - ACTIONS(4006), 1, + ACTIONS(3936), 1, anon_sym_LPAREN, - ACTIONS(4018), 1, + ACTIONS(3948), 1, anon_sym_long, - ACTIONS(4104), 1, + ACTIONS(4124), 1, + anon_sym_class, + ACTIONS(4126), 1, anon_sym_extern, - ACTIONS(4108), 1, + ACTIONS(4132), 1, anon_sym_enum, - ACTIONS(4112), 1, + ACTIONS(4136), 1, anon_sym_fused, - STATE(3188), 1, + STATE(3198), 1, sym__signedness, - STATE(3410), 1, + STATE(3409), 1, sym__longness, - STATE(3505), 1, + STATE(3482), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4014), 2, + ACTIONS(3944), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4016), 2, + ACTIONS(3946), 2, anon_sym_char, anon_sym_short, - ACTIONS(4020), 2, + ACTIONS(3950), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4106), 2, + ACTIONS(4130), 2, anon_sym_struct, anon_sym_union, - STATE(2838), 2, + STATE(2925), 2, sym_storageclass, aux_sym_class_definition_repeat1, - STATE(3669), 2, + STATE(3668), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4012), 3, + ACTIONS(3942), 3, anon_sym_int, anon_sym_double, anon_sym_complex, @@ -203456,42 +204943,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(1239), 6, + STATE(3054), 6, sym_class_definition, sym_extern_block, sym_cvar_decl, sym_struct, sym_enum, sym_fused, - [100979] = 8, - ACTIONS(4398), 1, + [101836] = 8, + ACTIONS(4406), 1, anon_sym_DOT, - ACTIONS(4400), 1, - anon_sym_LPAREN, ACTIONS(4408), 1, + anon_sym_LPAREN, + ACTIONS(4416), 1, anon_sym_STAR_STAR, - ACTIONS(4410), 1, + ACTIONS(4418), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2501), 2, + STATE(2551), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4348), 5, + ACTIONS(4282), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4346), 25, - anon_sym_RPAREN, + ACTIONS(4280), 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, @@ -203510,27 +204997,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [101034] = 5, - ACTIONS(586), 1, - anon_sym_COMMA, - ACTIONS(596), 1, - anon_sym_COLON_EQ, + [101891] = 20, + ACTIONS(59), 1, + anon_sym_class, + ACTIONS(3934), 1, + sym_identifier, + ACTIONS(3936), 1, + anon_sym_LPAREN, + ACTIONS(3948), 1, + anon_sym_long, + ACTIONS(4056), 1, + anon_sym_extern, + ACTIONS(4060), 1, + anon_sym_enum, + ACTIONS(4064), 1, + anon_sym_fused, + STATE(3198), 1, + sym__signedness, + STATE(3409), 1, + sym__longness, + STATE(3474), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3944), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(3946), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(3950), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4058), 2, + anon_sym_struct, + anon_sym_union, + STATE(2834), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(3668), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(3942), 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, + STATE(1216), 6, + sym_class_definition, + sym_extern_block, + sym_cvar_decl, + sym_struct, + sym_enum, + sym_fused, + [101970] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(581), 6, + ACTIONS(4404), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(579), 28, + ACTIONS(4402), 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, @@ -203554,242 +205098,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [101083] = 3, + [102015] = 14, + ACTIONS(4366), 1, + anon_sym_DOT, + ACTIONS(4368), 1, + anon_sym_LPAREN, + ACTIONS(4376), 1, + anon_sym_STAR_STAR, + ACTIONS(4378), 1, + anon_sym_LBRACK, + ACTIONS(4386), 1, + anon_sym_AMP, + ACTIONS(4388), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4396), 5, + ACTIONS(4370), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(4372), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4382), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2434), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4282), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4394), 31, - sym_string_start, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4380), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4280), 16, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, 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, - [101128] = 20, - ACTIONS(4004), 1, - sym_identifier, - ACTIONS(4006), 1, - anon_sym_LPAREN, - ACTIONS(4018), 1, - anon_sym_long, - ACTIONS(4167), 1, - anon_sym_class, - ACTIONS(4169), 1, - anon_sym_extern, - ACTIONS(4175), 1, - anon_sym_enum, - ACTIONS(4179), 1, - anon_sym_fused, - STATE(3188), 1, - sym__signedness, - STATE(3410), 1, - sym__longness, - STATE(3472), 1, - sym_c_type, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4014), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(4016), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4020), 2, - anon_sym_const, - anon_sym_volatile, - ACTIONS(4173), 2, - anon_sym_struct, - anon_sym_union, - STATE(2890), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3669), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4012), 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, - STATE(3000), 6, - sym_class_definition, - sym_extern_block, - sym_cvar_decl, - sym_struct, - sym_enum, - sym_fused, - [101207] = 8, - ACTIONS(4426), 1, + [102082] = 12, + ACTIONS(4434), 1, anon_sym_DOT, - ACTIONS(4428), 1, - anon_sym_LPAREN, ACTIONS(4436), 1, + anon_sym_LPAREN, + ACTIONS(4444), 1, anon_sym_STAR_STAR, - ACTIONS(4438), 1, + ACTIONS(4446), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2433), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4348), 5, - anon_sym_as, + ACTIONS(4438), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(4440), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4450), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2436), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4282), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4346), 25, + ACTIONS(4448), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4280), 18, anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_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, - [101262] = 20, - ACTIONS(4004), 1, - sym_identifier, - ACTIONS(4006), 1, - anon_sym_LPAREN, - ACTIONS(4018), 1, - anon_sym_long, - ACTIONS(4167), 1, - anon_sym_class, - ACTIONS(4169), 1, - anon_sym_extern, - ACTIONS(4175), 1, - anon_sym_enum, - ACTIONS(4179), 1, - anon_sym_fused, - STATE(3188), 1, - sym__signedness, - STATE(3410), 1, - sym__longness, - STATE(3472), 1, - sym_c_type, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4014), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(4016), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4020), 2, - anon_sym_const, - anon_sym_volatile, - ACTIONS(4173), 2, - anon_sym_struct, - anon_sym_union, - STATE(2890), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3669), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4012), 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, - STATE(2975), 6, - sym_class_definition, - sym_extern_block, - sym_cvar_decl, - sym_struct, - sym_enum, - sym_fused, - [101341] = 5, - ACTIONS(2475), 1, - sym_string_start, + [102145] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2200), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(3710), 4, + ACTIONS(4541), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3699), 29, + ACTIONS(4539), 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, @@ -203805,33 +205243,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [101390] = 4, - ACTIONS(596), 1, - anon_sym_COLON_EQ, + [102189] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(581), 6, + ACTIONS(3903), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(579), 29, + ACTIONS(3901), 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, @@ -203847,34 +205284,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [101437] = 4, - ACTIONS(3712), 1, - anon_sym_COLON_EQ, + [102233] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3710), 6, + ACTIONS(3903), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3699), 29, + ACTIONS(3901), 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, @@ -203890,26 +205325,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [101484] = 4, - ACTIONS(596), 1, - anon_sym_COLON_EQ, + [102277] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(581), 6, + ACTIONS(4468), 5, anon_sym_as, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(579), 29, + ACTIONS(4466), 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, @@ -203934,38 +205366,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [101531] = 8, - ACTIONS(4398), 1, - anon_sym_DOT, - ACTIONS(4400), 1, - anon_sym_LPAREN, - ACTIONS(4408), 1, - anon_sym_STAR_STAR, - ACTIONS(4410), 1, - anon_sym_LBRACK, + [102321] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2501), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4306), 5, + ACTIONS(4492), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4304), 25, - anon_sym_RPAREN, + ACTIONS(4490), 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, @@ -203981,47 +205407,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [101586] = 11, - ACTIONS(4398), 1, - anon_sym_DOT, - ACTIONS(4400), 1, - anon_sym_LPAREN, - ACTIONS(4408), 1, - anon_sym_STAR_STAR, - ACTIONS(4410), 1, - anon_sym_LBRACK, + [102365] = 5, + ACTIONS(4731), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4402), 2, + STATE(2246), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4275), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4414), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2501), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4306), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4412), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4304), 20, + ACTIONS(4273), 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_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, @@ -204031,92 +205450,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [101647] = 15, - ACTIONS(4398), 1, - anon_sym_DOT, - ACTIONS(4400), 1, - anon_sym_LPAREN, - ACTIONS(4408), 1, - anon_sym_STAR_STAR, - ACTIONS(4410), 1, - anon_sym_LBRACK, - ACTIONS(4416), 1, - anon_sym_PIPE, - ACTIONS(4418), 1, - anon_sym_AMP, - ACTIONS(4420), 1, - anon_sym_CARET, + [102413] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4402), 2, + ACTIONS(3876), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(4404), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4414), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2501), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4312), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4412), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4310), 15, - anon_sym_RPAREN, + ACTIONS(3874), 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, + 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, - [101716] = 8, - ACTIONS(4398), 1, - anon_sym_DOT, - ACTIONS(4400), 1, - anon_sym_LPAREN, - ACTIONS(4408), 1, - anon_sym_STAR_STAR, - ACTIONS(4410), 1, - anon_sym_LBRACK, + [102457] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2501), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4306), 5, - anon_sym_as, + ACTIONS(4480), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4304), 25, - anon_sym_RPAREN, + ACTIONS(4478), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -204132,46 +205531,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [101771] = 10, - ACTIONS(4398), 1, - anon_sym_DOT, - ACTIONS(4400), 1, - anon_sym_LPAREN, - ACTIONS(4408), 1, - anon_sym_STAR_STAR, - ACTIONS(4410), 1, - anon_sym_LBRACK, + sym_type_conversion, + [102501] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4402), 2, + ACTIONS(4611), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - STATE(2501), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4306), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4412), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4304), 22, - anon_sym_RPAREN, + ACTIONS(4609), 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, @@ -204181,189 +205573,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [101830] = 14, - ACTIONS(4398), 1, - anon_sym_DOT, - ACTIONS(4400), 1, - anon_sym_LPAREN, - ACTIONS(4408), 1, - anon_sym_STAR_STAR, - ACTIONS(4410), 1, - anon_sym_LBRACK, - ACTIONS(4418), 1, - anon_sym_AMP, - ACTIONS(4420), 1, - anon_sym_CARET, + [102545] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4402), 2, + ACTIONS(4631), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4404), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4414), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2501), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4306), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4412), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4304), 16, - anon_sym_RPAREN, + ACTIONS(4629), 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, - [101897] = 13, - ACTIONS(4398), 1, - anon_sym_DOT, - ACTIONS(4400), 1, - anon_sym_LPAREN, - ACTIONS(4408), 1, - anon_sym_STAR_STAR, - ACTIONS(4410), 1, - anon_sym_LBRACK, - ACTIONS(4420), 1, - anon_sym_CARET, + [102589] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4402), 2, + ACTIONS(4549), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(4404), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4414), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2501), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4306), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4412), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4304), 17, - anon_sym_RPAREN, + ACTIONS(4547), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, 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, - [101962] = 12, - ACTIONS(4398), 1, - anon_sym_DOT, - ACTIONS(4400), 1, - anon_sym_LPAREN, - ACTIONS(4408), 1, - anon_sym_STAR_STAR, - ACTIONS(4410), 1, - anon_sym_LBRACK, + sym_type_conversion, + [102633] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4402), 2, + ACTIONS(4404), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(4404), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4414), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2501), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4306), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4412), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4304), 18, - anon_sym_RPAREN, + ACTIONS(4402), 30, + sym_string_start, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_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, - [102025] = 6, - ACTIONS(3712), 1, + [102677] = 5, + ACTIONS(1020), 1, anon_sym_COLON_EQ, - ACTIONS(4725), 1, - anon_sym_LBRACK, - STATE(4153), 1, - sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3710), 6, + ACTIONS(1010), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1005), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3699), 27, - sym__newline, - anon_sym_SEMI, + ACTIONS(1003), 27, anon_sym_DOT, anon_sym_LPAREN, - 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, @@ -204382,17 +205739,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [102076] = 3, + [102725] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4575), 5, + ACTIONS(4564), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4573), 30, + ACTIONS(4562), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -204423,24 +205780,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [102120] = 3, + [102769] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4511), 5, + ACTIONS(3896), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(3899), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4509), 30, + ACTIONS(3893), 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(3891), 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, + [102817] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3918), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3913), 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, @@ -204463,18 +205864,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [102164] = 3, + [102861] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4591), 5, + ACTIONS(3714), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4589), 30, + ACTIONS(3703), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -204505,23 +205905,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [102208] = 3, + [102905] = 6, + ACTIONS(3716), 1, + anon_sym_COLON_EQ, + ACTIONS(4734), 1, + anon_sym_LBRACK, + STATE(4352), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4611), 5, + ACTIONS(3714), 5, anon_sym_STAR, - anon_sym_EQ, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4609), 30, + ACTIONS(3703), 27, 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_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, + [102955] = 4, + ACTIONS(3709), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3714), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3703), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, @@ -204546,17 +205991,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [102252] = 3, + [103001] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4583), 5, + ACTIONS(3907), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4581), 30, + ACTIONS(3905), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -204587,19 +206032,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [102296] = 3, + [103045] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4215), 5, + ACTIONS(3907), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4201), 30, + ACTIONS(3905), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -204612,7 +206058,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, @@ -204628,21 +206073,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [102340] = 4, - ACTIONS(3881), 1, - anon_sym_COMMA, + [103089] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3884), 5, + ACTIONS(4537), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3879), 29, + ACTIONS(4535), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, @@ -204670,19 +206114,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [102386] = 4, - ACTIONS(4727), 1, - anon_sym_and, + [103133] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4556), 5, + ACTIONS(3926), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4554), 29, + ACTIONS(3924), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -204699,6 +206141,7 @@ 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, @@ -204712,34 +206155,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [102432] = 5, - STATE(2368), 1, - aux_sym_comparison_operator_repeat1, + [103177] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1982), 2, - sym__not_in, - sym__is_not, - ACTIONS(4237), 4, + ACTIONS(3876), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4235), 28, + ACTIONS(3874), 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, @@ -204755,21 +206195,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [102480] = 4, - ACTIONS(3705), 1, + sym_type_conversion, + [103221] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3876), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3874), 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, + [103265] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3710), 5, + ACTIONS(3903), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3699), 29, + ACTIONS(3901), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, @@ -204797,17 +206278,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [102526] = 3, + [103309] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4548), 5, + ACTIONS(3903), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4546), 30, + ACTIONS(3901), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -204838,25 +206319,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [102570] = 3, + [103353] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4358), 5, + ACTIONS(3896), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3899), 3, anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3893), 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(3891), 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, + [103401] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3907), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4350), 30, + ACTIONS(3905), 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_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, + [103445] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3891), 3, anon_sym_COLON, anon_sym_async, anon_sym_for, + ACTIONS(3896), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3893), 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, @@ -204879,17 +206445,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [102614] = 3, + [103491] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4456), 5, + ACTIONS(4404), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4454), 30, + ACTIONS(4402), 30, sym_string_start, anon_sym_DOT, anon_sym_LPAREN, @@ -204920,32 +206486,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [102658] = 3, + [103535] = 4, + ACTIONS(1020), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3907), 5, + ACTIONS(1005), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3905), 30, + ACTIONS(1003), 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, @@ -204961,19 +206528,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [102702] = 4, - ACTIONS(3892), 1, + [103581] = 4, + ACTIONS(3880), 1, anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3895), 5, + ACTIONS(3883), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3890), 29, + ACTIONS(3878), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_as, @@ -205003,34 +206570,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [102748] = 3, + [103627] = 9, + ACTIONS(4246), 1, + anon_sym_not, + ACTIONS(4739), 1, + anon_sym_is, + STATE(2274), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3903), 5, - anon_sym_as, + ACTIONS(4241), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(4742), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3901), 30, + STATE(1916), 2, + sym__not_in, + sym__is_not, + ACTIONS(4736), 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(4239), 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_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, @@ -205038,40 +206617,31 @@ 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, - [102792] = 8, - ACTIONS(4477), 1, - anon_sym_DOT, - ACTIONS(4479), 1, - anon_sym_LPAREN, - ACTIONS(4487), 1, - anon_sym_STAR_STAR, - ACTIONS(4489), 1, - anon_sym_LBRACK, + [103683] = 5, + STATE(2274), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2610), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4306), 4, + STATE(1916), 2, + sym__not_in, + sym__is_not, + ACTIONS(4271), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4304), 25, + ACTIONS(4269), 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, @@ -205090,40 +206660,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [102846] = 3, + [103731] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4358), 5, + ACTIONS(1297), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(1300), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4350), 30, + ACTIONS(1498), 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(1295), 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, @@ -205131,26 +206703,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [102890] = 3, + [103779] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3903), 5, - anon_sym_as, + ACTIONS(4400), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3901), 30, + ACTIONS(4398), 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_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -205172,40 +206744,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [102934] = 7, - ACTIONS(4729), 1, - anon_sym_as, - ACTIONS(4731), 1, - anon_sym_if, - ACTIONS(4733), 1, - anon_sym_and, - ACTIONS(4735), 1, - anon_sym_or, + [103823] = 4, + ACTIONS(3716), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4607), 4, + ACTIONS(3714), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4605), 27, + ACTIONS(3703), 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, @@ -205217,31 +206786,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [102986] = 3, + [103869] = 5, + ACTIONS(1020), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4567), 5, + ACTIONS(1295), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1297), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4565), 30, + ACTIONS(1498), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -205257,19 +206829,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [103030] = 5, + [103917] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1297), 2, + ACTIONS(3896), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1300), 3, + ACTIONS(3899), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1498), 14, + ACTIONS(3893), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -205284,7 +206855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1295), 16, + ACTIONS(3891), 16, anon_sym_COMMA, anon_sym_as, anon_sym_if, @@ -205301,27 +206872,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [103078] = 4, - ACTIONS(3712), 1, + [103965] = 5, + ACTIONS(3716), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3710), 5, + ACTIONS(3891), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(3896), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3699), 29, + ACTIONS(3893), 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, @@ -205343,22 +206915,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [103124] = 6, - ACTIONS(4733), 1, - anon_sym_and, - ACTIONS(4735), 1, - anon_sym_or, - ACTIONS(4737), 1, - anon_sym_as, + [104013] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4622), 4, + ACTIONS(3883), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4617), 28, + ACTIONS(3878), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -205376,6 +206943,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, @@ -205387,24 +206956,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [103174] = 3, + [104057] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3710), 5, + ACTIONS(3868), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3699), 30, + ACTIONS(3863), 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, @@ -205427,30 +206997,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [103218] = 5, - ACTIONS(4733), 1, - anon_sym_and, - ACTIONS(4735), 1, - anon_sym_or, + [104101] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4579), 5, - anon_sym_as, + ACTIONS(3918), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4577), 28, + ACTIONS(3913), 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, @@ -205460,6 +207024,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, @@ -205471,19 +207037,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [103266] = 4, - ACTIONS(4733), 1, - anon_sym_and, + sym_type_conversion, + [104145] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4556), 5, + ACTIONS(4635), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4554), 29, + ACTIONS(4633), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -205501,6 +207066,7 @@ 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, @@ -205513,42 +207079,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [103312] = 7, - ACTIONS(4727), 1, - anon_sym_and, - ACTIONS(4740), 1, - anon_sym_as, - ACTIONS(4742), 1, - anon_sym_if, - ACTIONS(4744), 1, - anon_sym_or, + [104189] = 6, + ACTIONS(4355), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4607), 5, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(4360), 2, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(4358), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4605), 26, - anon_sym_DOT, + ACTIONS(4352), 4, anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + ACTIONS(4350), 25, + anon_sym_DOT, 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, anon_sym_CARET, anon_sym_LT_LT, anon_sym_is, @@ -205557,32 +207123,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [103364] = 7, - ACTIONS(4729), 1, - anon_sym_as, - ACTIONS(4731), 1, - anon_sym_if, - ACTIONS(4733), 1, - anon_sym_and, - ACTIONS(4735), 1, - anon_sym_or, + [104239] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4469), 4, + ACTIONS(1005), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4465), 27, + ACTIONS(1003), 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, @@ -205592,6 +207150,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, @@ -205603,46 +207163,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [103416] = 11, - ACTIONS(4477), 1, - anon_sym_DOT, - ACTIONS(4479), 1, - anon_sym_LPAREN, - ACTIONS(4487), 1, - anon_sym_STAR_STAR, - ACTIONS(4489), 1, - anon_sym_LBRACK, + sym_type_conversion, + [104283] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4306), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4481), 2, + ACTIONS(4400), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4493), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2610), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4491), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4304), 20, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4398), 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_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, @@ -205652,33 +207205,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [103476] = 4, + [104327] = 8, + ACTIONS(4507), 1, + anon_sym_DOT, + ACTIONS(4509), 1, + anon_sym_LPAREN, + ACTIONS(4517), 1, + anon_sym_STAR_STAR, + ACTIONS(4519), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3865), 3, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - ACTIONS(3870), 5, - anon_sym_as, + STATE(2633), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4348), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3867), 27, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4346), 25, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -205694,17 +207251,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [103522] = 3, + [104381] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4519), 5, + ACTIONS(4568), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4517), 30, + ACTIONS(4566), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -205735,33 +207292,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [103566] = 4, - ACTIONS(596), 1, - anon_sym_COLON_EQ, + [104425] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(581), 5, + ACTIONS(4476), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(579), 29, + ACTIONS(4474), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -205777,28 +207333,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [103612] = 7, - ACTIONS(4729), 1, - anon_sym_as, - ACTIONS(4731), 1, - anon_sym_if, - ACTIONS(4733), 1, - anon_sym_and, - ACTIONS(4735), 1, - anon_sym_or, + [104469] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4571), 4, + ACTIONS(4505), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4569), 27, + ACTIONS(4503), 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, @@ -205811,6 +207361,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, @@ -205822,85 +207374,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [103664] = 20, - ACTIONS(4225), 1, - anon_sym_not, - ACTIONS(4366), 1, - anon_sym_DOT, - ACTIONS(4368), 1, - anon_sym_LPAREN, - ACTIONS(4376), 1, - anon_sym_STAR_STAR, - ACTIONS(4378), 1, - anon_sym_LBRACK, - ACTIONS(4384), 1, - anon_sym_PIPE, - ACTIONS(4386), 1, - anon_sym_AMP, - ACTIONS(4388), 1, - anon_sym_CARET, - ACTIONS(4390), 1, - anon_sym_is, - STATE(2568), 1, - aux_sym_comparison_operator_repeat1, + [104513] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4370), 2, + ACTIONS(3903), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(4372), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4382), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4392), 2, anon_sym_LT, anon_sym_GT, - STATE(1899), 2, - sym__not_in, - sym__is_not, - STATE(2439), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4380), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4201), 4, + ACTIONS(3901), 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_PLUS, + anon_sym_not, anon_sym_and, anon_sym_or, - ACTIONS(4374), 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, - [103742] = 8, - ACTIONS(4477), 1, + [104557] = 8, + ACTIONS(4507), 1, anon_sym_DOT, - ACTIONS(4479), 1, + ACTIONS(4509), 1, anon_sym_LPAREN, - ACTIONS(4487), 1, + ACTIONS(4517), 1, anon_sym_STAR_STAR, - ACTIONS(4489), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2610), 2, + STATE(2633), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4306), 4, + ACTIONS(4344), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4304), 25, + ACTIONS(4342), 25, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -205926,32 +207461,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [103796] = 4, - ACTIONS(3911), 1, - anon_sym_COMMA, + [104611] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3914), 5, + ACTIONS(3903), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3909), 29, + ACTIONS(3901), 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, @@ -205967,25 +207502,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [103842] = 3, + [104655] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4507), 5, + ACTIONS(4549), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4505), 30, + ACTIONS(4547), 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, @@ -206008,33 +207543,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [103886] = 3, + [104699] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4456), 5, + ACTIONS(4564), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4454), 30, - sym_string_start, + ACTIONS(4562), 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, @@ -206050,17 +207584,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [103930] = 3, + [104743] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(581), 5, + ACTIONS(3714), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(579), 30, + ACTIONS(3703), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -206091,17 +207625,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [103974] = 3, + [104787] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3895), 5, + ACTIONS(4545), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3890), 30, + ACTIONS(4543), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -206132,20 +207666,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [104018] = 3, + [104831] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3922), 5, + ACTIONS(4560), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3920), 30, + ACTIONS(4558), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -206158,6 +207691,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, @@ -206173,24 +207707,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [104062] = 3, + [104875] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4599), 5, + ACTIONS(4627), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4597), 30, + ACTIONS(4625), 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, @@ -206213,32 +207748,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [104106] = 3, + [104919] = 5, + ACTIONS(3716), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4560), 5, + ACTIONS(3891), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(3896), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4558), 30, + ACTIONS(3893), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -206254,18 +207791,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [104150] = 3, + [104967] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4527), 5, + ACTIONS(3883), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4525), 30, + ACTIONS(3878), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -206296,99 +207832,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [104194] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4548), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4546), 30, + [105011] = 20, + ACTIONS(4229), 1, + anon_sym_not, + ACTIONS(4434), 1, anon_sym_DOT, + ACTIONS(4436), 1, 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, + ACTIONS(4444), 1, anon_sym_STAR_STAR, + ACTIONS(4446), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(4452), 1, anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(4454), 1, anon_sym_AMP, + ACTIONS(4456), 1, anon_sym_CARET, - anon_sym_LT_LT, + ACTIONS(4458), 1, anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [104238] = 3, + STATE(2609), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4552), 5, - anon_sym_as, + ACTIONS(4438), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4550), 30, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(4440), 2, 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_LT_LT, + ACTIONS(4450), 2, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, + ACTIONS(4460), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1936), 2, + sym__not_in, + sym__is_not, + STATE(2436), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4448), 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(4205), 4, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(4442), 6, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [104282] = 3, + [105089] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4531), 5, + ACTIONS(3868), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4529), 30, + ACTIONS(3863), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -206419,17 +207931,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [104326] = 3, + [105133] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4603), 5, + ACTIONS(4484), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4601), 30, + ACTIONS(4482), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -206460,17 +207972,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [104370] = 3, + [105177] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3914), 5, + ACTIONS(4648), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3909), 30, + ACTIONS(4646), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -206501,67 +208013,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [104414] = 3, + [105221] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4626), 5, + ACTIONS(4464), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4624), 30, + ACTIONS(4462), 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, - [104458] = 5, - ACTIONS(596), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(586), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(581), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(579), 27, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, @@ -206570,6 +208038,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, @@ -206585,24 +208054,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [104506] = 3, + [105265] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4515), 5, + ACTIONS(4472), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4513), 30, + ACTIONS(4470), 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, @@ -206625,18 +208095,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [104550] = 3, + [105309] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4615), 5, + ACTIONS(4635), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4613), 30, + ACTIONS(4633), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -206667,23 +208136,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [104594] = 3, + [105353] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3888), 5, + ACTIONS(4400), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3886), 30, + ACTIONS(4398), 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_COLON, anon_sym_async, anon_sym_for, anon_sym_in, @@ -206692,7 +208162,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, @@ -206708,20 +208177,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [104638] = 3, + [105397] = 4, + ACTIONS(3865), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4643), 5, + ACTIONS(3868), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4641), 30, + ACTIONS(3863), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, @@ -206749,101 +208219,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [104682] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4535), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4533), 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, - [104726] = 5, - ACTIONS(596), 1, - anon_sym_COLON_EQ, + [105443] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1295), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1297), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1498), 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, - [104774] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4587), 5, + ACTIONS(4476), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4585), 30, + ACTIONS(4474), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -206874,23 +208260,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [104818] = 3, + [105487] = 5, + ACTIONS(3716), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3922), 5, + ACTIONS(3709), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3714), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3920), 30, + ACTIONS(3703), 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, @@ -206899,7 +208288,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, @@ -206915,25 +208303,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [104862] = 3, + [105535] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3863), 5, - anon_sym_as, + ACTIONS(4505), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3861), 30, + ACTIONS(4503), 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, @@ -206956,25 +208343,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [104906] = 3, + sym_type_conversion, + [105579] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3863), 5, - anon_sym_as, + ACTIONS(4545), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3861), 30, + ACTIONS(4543), 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, @@ -206997,25 +208384,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [104950] = 3, + sym_type_conversion, + [105623] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4507), 5, - anon_sym_as, + ACTIONS(4560), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4505), 30, + ACTIONS(4558), 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, @@ -207038,33 +208425,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [104994] = 6, - ACTIONS(4355), 1, - anon_sym_STAR, + sym_type_conversion, + [105667] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4360), 2, - anon_sym_complex, - anon_sym___stdcall, - ACTIONS(4358), 3, + ACTIONS(4404), 5, + anon_sym_as, + anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4352), 4, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - ACTIONS(4350), 25, + ACTIONS(4402), 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_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -207074,6 +208458,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, @@ -207082,58 +208467,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [105044] = 3, + [105711] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3863), 5, - anon_sym_as, + ACTIONS(1297), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1300), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3861), 30, + ACTIONS(1498), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(1295), 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, - [105088] = 3, + [105759] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4630), 5, + ACTIONS(4484), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4628), 30, + ACTIONS(4482), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -207164,31 +208551,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [105132] = 3, + [105803] = 15, + ACTIONS(4507), 1, + anon_sym_DOT, + ACTIONS(4509), 1, + anon_sym_LPAREN, + ACTIONS(4517), 1, + anon_sym_STAR_STAR, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4525), 1, + anon_sym_PIPE, + ACTIONS(4527), 1, + anon_sym_AMP, + ACTIONS(4529), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4364), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4511), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4513), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4523), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2633), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4521), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4362), 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, + [105871] = 4, + ACTIONS(1020), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4523), 5, + ACTIONS(1005), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4521), 30, + ACTIONS(1003), 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, @@ -207204,33 +208646,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [105176] = 3, + [105917] = 4, + ACTIONS(3716), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3903), 5, - anon_sym_as, + ACTIONS(3714), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3901), 30, + ACTIONS(3703), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -207246,17 +208688,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [105220] = 3, + [105963] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4599), 5, + ACTIONS(4556), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4597), 30, + ACTIONS(4554), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -207287,17 +208729,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [105264] = 3, + [106007] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3903), 5, + ACTIONS(4488), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3901), 30, + ACTIONS(4486), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -207328,17 +208770,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [105308] = 3, + [106051] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4560), 5, + ACTIONS(4219), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4558), 30, + ACTIONS(4205), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -207369,34 +208811,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [105352] = 5, - ACTIONS(1408), 1, - sym_string_start, + [106095] = 4, + ACTIONS(3915), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2323), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(3710), 4, + ACTIONS(3918), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3699), 28, + ACTIONS(3913), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -207412,20 +208852,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [105400] = 3, + sym_type_conversion, + [106141] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3863), 5, + ACTIONS(3911), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3861), 30, + ACTIONS(3909), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -207438,6 +208878,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, @@ -207453,45 +208894,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [105444] = 10, - ACTIONS(4477), 1, - anon_sym_DOT, - ACTIONS(4479), 1, - anon_sym_LPAREN, - ACTIONS(4487), 1, - anon_sym_STAR_STAR, - ACTIONS(4489), 1, - anon_sym_LBRACK, + [106185] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4306), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4481), 2, + ACTIONS(4358), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - STATE(2610), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4491), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4304), 22, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4350), 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, @@ -207501,117 +208934,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [105502] = 14, - ACTIONS(4477), 1, - anon_sym_DOT, - ACTIONS(4479), 1, - anon_sym_LPAREN, - ACTIONS(4487), 1, - anon_sym_STAR_STAR, - ACTIONS(4489), 1, - anon_sym_LBRACK, - ACTIONS(4497), 1, - anon_sym_AMP, - ACTIONS(4499), 1, - anon_sym_CARET, + sym_type_conversion, + [106229] = 5, + ACTIONS(3716), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4306), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4481), 2, + ACTIONS(3709), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(3714), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4483), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3703), 27, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4493), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2610), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4491), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4304), 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_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, - [105568] = 5, + [106277] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3870), 2, + ACTIONS(1005), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3873), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3867), 14, + ACTIONS(1003), 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, - ACTIONS(3865), 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, - [105616] = 3, + [106321] = 7, + ACTIONS(4745), 1, + anon_sym_as, + ACTIONS(4747), 1, + anon_sym_if, + ACTIONS(4749), 1, + anon_sym_and, + ACTIONS(4751), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4527), 5, - anon_sym_as, + ACTIONS(4578), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4525), 30, + ACTIONS(4574), 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, @@ -207624,8 +209053,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, @@ -207637,37 +209064,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [105660] = 4, - ACTIONS(3712), 1, - anon_sym_COLON_EQ, + [106373] = 6, + ACTIONS(4749), 1, + anon_sym_and, + ACTIONS(4751), 1, + anon_sym_or, + ACTIONS(4753), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3710), 6, + ACTIONS(4595), 4, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3699), 28, + ACTIONS(4590), 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_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, @@ -207679,25 +209108,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [105706] = 3, + [106423] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3884), 5, - anon_sym_as, + ACTIONS(4219), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3879), 30, + ACTIONS(4205), 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, @@ -207720,37 +209148,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [105750] = 4, - ACTIONS(3712), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [106467] = 5, + ACTIONS(4749), 1, + anon_sym_and, + ACTIONS(4751), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3710), 5, + ACTIONS(4599), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3699), 29, + ACTIONS(4597), 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, @@ -207762,18 +209192,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [105796] = 3, + [106515] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4396), 5, + ACTIONS(4572), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4394), 30, - sym_string_start, + ACTIONS(4570), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -207781,13 +209210,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, @@ -207803,24 +209232,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [105840] = 3, + sym_type_conversion, + [106559] = 4, + ACTIONS(4749), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4552), 5, + ACTIONS(4607), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4550), 30, + ACTIONS(4605), 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, @@ -207830,7 +209263,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, @@ -207843,70 +209275,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [105884] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3870), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3873), 3, + [106605] = 7, + ACTIONS(4745), 1, anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3867), 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(3865), 16, - anon_sym_COMMA, + ACTIONS(4747), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_not, + ACTIONS(4749), 1, anon_sym_and, + ACTIONS(4751), 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, - [105932] = 5, - ACTIONS(3712), 1, - anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3705), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3710), 5, - anon_sym_as, + ACTIONS(4615), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3699), 27, + ACTIONS(4613), 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, @@ -207915,10 +209306,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, @@ -207930,17 +209320,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [105980] = 3, + [106657] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4523), 5, + ACTIONS(4588), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4521), 30, + ACTIONS(4586), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -207971,75 +209361,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [106024] = 13, - ACTIONS(4477), 1, - anon_sym_DOT, - ACTIONS(4479), 1, - anon_sym_LPAREN, - ACTIONS(4487), 1, - anon_sym_STAR_STAR, - ACTIONS(4489), 1, - anon_sym_LBRACK, - ACTIONS(4499), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4306), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4481), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4483), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4493), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2610), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4491), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4304), 17, - anon_sym_COMMA, + [106701] = 7, + ACTIONS(4745), 1, anon_sym_as, + ACTIONS(4747), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_not, + ACTIONS(4749), 1, anon_sym_and, + ACTIONS(4751), 1, 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, - [106088] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(581), 5, + ACTIONS(4623), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(579), 30, + ACTIONS(4621), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -208049,8 +209395,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, @@ -208062,84 +209406,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [106132] = 12, - ACTIONS(4477), 1, - anon_sym_DOT, - ACTIONS(4479), 1, - anon_sym_LPAREN, - ACTIONS(4487), 1, - anon_sym_STAR_STAR, - ACTIONS(4489), 1, - anon_sym_LBRACK, + [106753] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4306), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4481), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4483), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4493), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2610), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4491), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4304), 18, - anon_sym_COMMA, + ACTIONS(4607), 5, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [106194] = 4, - ACTIONS(596), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(581), 6, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(579), 28, + ACTIONS(4605), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_else, + anon_sym_COLON, + anon_sym_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, @@ -208155,17 +209447,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [106240] = 3, + [106797] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4556), 5, + ACTIONS(4568), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4554), 30, + ACTIONS(4566), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -208196,78 +209488,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [106284] = 15, - ACTIONS(4477), 1, - anon_sym_DOT, - ACTIONS(4479), 1, - anon_sym_LPAREN, - ACTIONS(4487), 1, - anon_sym_STAR_STAR, - ACTIONS(4489), 1, - anon_sym_LBRACK, - ACTIONS(4495), 1, - anon_sym_PIPE, - ACTIONS(4497), 1, - anon_sym_AMP, - ACTIONS(4499), 1, - anon_sym_CARET, + [106841] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4312), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4481), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4483), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4493), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2610), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4491), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4310), 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, - [106352] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4531), 5, - anon_sym_as, + ACTIONS(4541), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4529), 30, + ACTIONS(4539), 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, @@ -208290,28 +209528,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [106396] = 5, - ACTIONS(1408), 1, - sym_string_start, + sym_type_conversion, + [106885] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2336), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4251), 4, + ACTIONS(3926), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4249), 28, + ACTIONS(3924), 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, @@ -208333,36 +209570,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [106444] = 3, + [106929] = 7, + ACTIONS(4756), 1, + anon_sym_as, + ACTIONS(4758), 1, + anon_sym_if, + ACTIONS(4760), 1, + anon_sym_and, + ACTIONS(4762), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3888), 5, + ACTIONS(4578), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3886), 30, + ACTIONS(4574), 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, @@ -208374,25 +209614,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [106488] = 3, + sym_type_conversion, + [106981] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4595), 5, - anon_sym_as, + ACTIONS(4588), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4593), 30, + ACTIONS(4586), 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, @@ -208415,36 +209655,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [106532] = 3, + sym_type_conversion, + [107025] = 6, + ACTIONS(4760), 1, + anon_sym_and, + ACTIONS(4762), 1, + anon_sym_or, + ACTIONS(4764), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3922), 5, + ACTIONS(4595), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3920), 30, + ACTIONS(4590), 27, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_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, @@ -208456,29 +209699,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [106576] = 7, - ACTIONS(4727), 1, + sym_type_conversion, + [107075] = 5, + ACTIONS(4760), 1, anon_sym_and, - ACTIONS(4740), 1, - anon_sym_as, - ACTIONS(4742), 1, - anon_sym_if, - ACTIONS(4744), 1, + ACTIONS(4762), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4469), 5, + ACTIONS(4599), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4465), 26, + ACTIONS(4597), 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, @@ -208501,17 +209743,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [106628] = 3, + [107123] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3907), 5, + ACTIONS(4607), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3905), 30, + ACTIONS(4605), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -208542,37 +209784,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [106672] = 5, - ACTIONS(3712), 1, - anon_sym_COLON_EQ, + [107167] = 4, + ACTIONS(4760), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3865), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(3870), 5, - anon_sym_as, + ACTIONS(4607), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3867), 27, + ACTIONS(4605), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -208585,32 +209825,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [106720] = 3, + sym_type_conversion, + [107213] = 8, + ACTIONS(4507), 1, + anon_sym_DOT, + ACTIONS(4509), 1, + anon_sym_LPAREN, + ACTIONS(4517), 1, + anon_sym_STAR_STAR, + ACTIONS(4519), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4626), 5, - anon_sym_as, + STATE(2633), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4282), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4624), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4280), 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, @@ -208626,38 +209872,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [106764] = 3, + [107267] = 11, + ACTIONS(4507), 1, + anon_sym_DOT, + ACTIONS(4509), 1, + anon_sym_LPAREN, + ACTIONS(4517), 1, + anon_sym_STAR_STAR, + ACTIONS(4519), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3888), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(4282), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3886), 30, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(4511), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4523), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2633), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4521), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4280), 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_STAR_STAR, - anon_sym_LBRACK, - 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, @@ -208667,29 +209921,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [106808] = 3, + [107327] = 8, + ACTIONS(4507), 1, + anon_sym_DOT, + ACTIONS(4509), 1, + anon_sym_LPAREN, + ACTIONS(4517), 1, + anon_sym_STAR_STAR, + ACTIONS(4519), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3863), 5, + STATE(2633), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4282), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3861), 30, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(4280), 25, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -208708,38 +209967,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [106852] = 3, + [107381] = 10, + ACTIONS(4507), 1, + anon_sym_DOT, + ACTIONS(4509), 1, + anon_sym_LPAREN, + ACTIONS(4517), 1, + anon_sym_STAR_STAR, + ACTIONS(4519), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4515), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(4282), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4513), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4511), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(2633), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4521), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4280), 22, 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_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, @@ -208749,159 +210015,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [106896] = 3, + [107439] = 14, + ACTIONS(4507), 1, + anon_sym_DOT, + ACTIONS(4509), 1, + anon_sym_LPAREN, + ACTIONS(4517), 1, + anon_sym_STAR_STAR, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4527), 1, + anon_sym_AMP, + ACTIONS(4529), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4615), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(4282), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4613), 30, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(4511), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4513), 2, anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4523), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2633), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4521), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4280), 16, + 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, - [106940] = 5, + [107505] = 13, + ACTIONS(4507), 1, + anon_sym_DOT, + ACTIONS(4509), 1, + anon_sym_LPAREN, + ACTIONS(4517), 1, + anon_sym_STAR_STAR, + ACTIONS(4519), 1, + anon_sym_LBRACK, + ACTIONS(4529), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1297), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1300), 3, - anon_sym_as, + ACTIONS(4282), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1498), 14, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4511), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4513), 2, anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(4523), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, + STATE(2633), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4521), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(1295), 16, + ACTIONS(4280), 17, 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_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, - [106988] = 5, - ACTIONS(4746), 1, - sym_string_start, + [107569] = 12, + ACTIONS(4507), 1, + anon_sym_DOT, + ACTIONS(4509), 1, + anon_sym_LPAREN, + ACTIONS(4517), 1, + anon_sym_STAR_STAR, + ACTIONS(4519), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2336), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4271), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(4282), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4269), 28, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(4511), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4513), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4523), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2633), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4521), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4280), 18, 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_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, - [107036] = 3, + [107631] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4396), 5, - anon_sym_as, + ACTIONS(4627), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4394), 30, - sym_string_start, + ACTIONS(4625), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -208917,23 +210208,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [107080] = 3, + sym_type_conversion, + [107675] = 7, + ACTIONS(4756), 1, + anon_sym_as, + ACTIONS(4758), 1, + anon_sym_if, + ACTIONS(4760), 1, + anon_sym_and, + ACTIONS(4762), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4603), 5, + ACTIONS(4615), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4601), 30, + ACTIONS(4613), 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, @@ -208944,8 +210242,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, @@ -208958,25 +210254,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [107124] = 3, + [107727] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4643), 5, - anon_sym_as, + ACTIONS(4648), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4641), 30, + ACTIONS(4646), 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, @@ -208999,32 +210294,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [107168] = 3, + sym_type_conversion, + [107771] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4396), 5, - anon_sym_as, + ACTIONS(4464), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4394), 30, - sym_string_start, + ACTIONS(4462), 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, @@ -209040,34 +210335,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [107212] = 5, - ACTIONS(596), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [107815] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1295), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1297), 5, - anon_sym_as, + ACTIONS(4472), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1498), 27, + ACTIONS(4470), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -209083,38 +210376,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [107260] = 5, - ACTIONS(3712), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [107859] = 7, + ACTIONS(4756), 1, + anon_sym_as, + ACTIONS(4758), 1, + anon_sym_if, + ACTIONS(4760), 1, + anon_sym_and, + ACTIONS(4762), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3865), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(3870), 5, - anon_sym_as, + ACTIONS(4623), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3867), 27, + ACTIONS(4621), 26, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, 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, @@ -209126,24 +210421,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [107308] = 3, + sym_type_conversion, + [107911] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3888), 5, + ACTIONS(4603), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3886), 30, + ACTIONS(4601), 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, @@ -209166,33 +210463,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [107352] = 3, + [107955] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3863), 5, + ACTIONS(4480), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3861), 30, + ACTIONS(4478), 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, @@ -209208,31 +210504,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [107396] = 3, + [107999] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4215), 5, + ACTIONS(3876), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4201), 30, + ACTIONS(3874), 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, @@ -209248,24 +210545,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [107440] = 3, + [108043] = 4, + ACTIONS(1020), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4460), 5, + ACTIONS(1005), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4458), 30, + ACTIONS(1003), 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, @@ -209274,7 +210572,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, @@ -209290,31 +210587,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [107484] = 3, + [108089] = 4, + ACTIONS(3716), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4535), 5, + ACTIONS(3714), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4533), 30, + ACTIONS(3703), 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, @@ -209330,18 +210629,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [107528] = 3, + [108135] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3922), 5, + ACTIONS(4556), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3920), 30, + ACTIONS(4554), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -209372,31 +210670,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [107572] = 3, + [108179] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3863), 5, + ACTIONS(3876), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3861), 30, + ACTIONS(3874), 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, @@ -209412,66 +210711,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [107616] = 3, + [108223] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3863), 5, + ACTIONS(1297), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(1300), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(3861), 30, + ACTIONS(1498), 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(1295), 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, - sym_type_conversion, - [107660] = 3, + [108271] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3903), 5, + ACTIONS(4619), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3901), 30, + ACTIONS(4617), 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, @@ -209494,18 +210795,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [107704] = 3, + [108315] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3903), 5, + ACTIONS(4603), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3901), 30, + ACTIONS(4601), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -209536,25 +210836,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [107748] = 3, + [108359] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4575), 5, - anon_sym_as, + ACTIONS(4619), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4573), 30, + ACTIONS(4617), 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, @@ -209577,32 +210876,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [107792] = 3, + sym_type_conversion, + [108403] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3903), 5, + ACTIONS(3907), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3901), 30, + ACTIONS(3905), 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, @@ -209618,75 +210918,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [107836] = 5, + [108447] = 5, + ACTIONS(1408), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3870), 2, + STATE(2246), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4267), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3873), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3867), 14, + ACTIONS(4265), 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(3865), 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, - [107884] = 3, + [108495] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3907), 5, + ACTIONS(4488), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3905), 30, + ACTIONS(4486), 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, @@ -209702,24 +211001,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [107928] = 3, + sym_type_conversion, + [108539] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3884), 5, + ACTIONS(4537), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3879), 30, + ACTIONS(4535), 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, @@ -209742,33 +211043,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [107972] = 3, + [108583] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3903), 5, + ACTIONS(4468), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3901), 30, + ACTIONS(4466), 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, @@ -209784,17 +211083,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [108016] = 3, + sym_type_conversion, + [108627] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4556), 5, + ACTIONS(4492), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4554), 30, + ACTIONS(4490), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -209825,30 +211125,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [108060] = 7, - ACTIONS(4727), 1, - anon_sym_and, - ACTIONS(4740), 1, - anon_sym_as, - ACTIONS(4742), 1, - anon_sym_if, - ACTIONS(4744), 1, - anon_sym_or, + [108671] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4571), 5, + ACTIONS(3926), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4569), 26, + ACTIONS(3924), 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, @@ -209858,6 +211153,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, @@ -209869,38 +211166,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [108112] = 8, - ACTIONS(4477), 1, - anon_sym_DOT, - ACTIONS(4479), 1, - anon_sym_LPAREN, - ACTIONS(4487), 1, - anon_sym_STAR_STAR, - ACTIONS(4489), 1, - anon_sym_LBRACK, + [108715] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2610), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4344), 4, + ACTIONS(3876), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4342), 25, + ACTIONS(3874), 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, @@ -209916,17 +211207,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [108166] = 3, + [108759] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4511), 5, + ACTIONS(3876), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4509), 30, + ACTIONS(3874), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -209957,37 +211248,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [108210] = 8, - ACTIONS(4477), 1, - anon_sym_DOT, - ACTIONS(4479), 1, - anon_sym_LPAREN, - ACTIONS(4487), 1, - anon_sym_STAR_STAR, - ACTIONS(4489), 1, - anon_sym_LBRACK, + [108803] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2610), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4348), 4, + ACTIONS(4358), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4346), 25, + ACTIONS(4350), 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, @@ -210003,25 +211289,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [108264] = 3, + [108847] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4647), 5, - anon_sym_as, + ACTIONS(4611), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4645), 30, + ACTIONS(4609), 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, @@ -210044,34 +211329,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [108308] = 5, - ACTIONS(3712), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [108891] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3705), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3710), 5, - anon_sym_as, + ACTIONS(4631), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3699), 27, + ACTIONS(4629), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -210087,25 +211370,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [108356] = 4, - ACTIONS(596), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [108935] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(581), 5, + ACTIONS(3903), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(579), 29, + ACTIONS(3901), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, @@ -210114,6 +211396,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, @@ -210129,17 +211412,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [108402] = 3, + [108979] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4591), 5, + ACTIONS(3903), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4589), 30, + ACTIONS(3901), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -210170,46 +211453,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [108446] = 9, - ACTIONS(4260), 1, - anon_sym_not, - ACTIONS(4752), 1, - anon_sym_is, - STATE(2368), 1, - aux_sym_comparison_operator_repeat1, + [109023] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4255), 2, + ACTIONS(4572), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4755), 2, anon_sym_LT, anon_sym_GT, - STATE(1982), 2, - sym__not_in, - sym__is_not, - ACTIONS(4749), 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(4253), 20, + ACTIONS(4570), 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, anon_sym_or, anon_sym_PERCENT, @@ -210217,23 +211488,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [108502] = 3, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [109067] = 5, + ACTIONS(1020), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4611), 5, + ACTIONS(1010), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1005), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4609), 30, + ACTIONS(1003), 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, @@ -210242,7 +211522,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, @@ -210258,32 +211537,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [108546] = 3, + [109115] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4587), 5, - anon_sym_as, + ACTIONS(3926), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4585), 30, + ACTIONS(3924), 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, @@ -210299,32 +211578,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [108590] = 3, + [109159] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4583), 5, - anon_sym_as, + ACTIONS(3876), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4581), 30, + ACTIONS(3874), 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, @@ -210340,26 +211619,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [108634] = 3, + [109203] = 5, + ACTIONS(1408), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4456), 5, - anon_sym_as, + STATE(2376), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(3714), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4454), 30, - sym_string_start, + ACTIONS(3703), 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, @@ -210381,69 +211662,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [108678] = 5, + [109251] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1297), 2, + ACTIONS(3911), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1300), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1498), 14, + ACTIONS(3909), 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_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(1295), 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, - [108726] = 3, + [109295] = 5, + ACTIONS(1020), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3907), 5, + ACTIONS(1295), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1297), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3905), 30, + ACTIONS(1498), 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, @@ -210465,17 +211746,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [108770] = 3, + [109343] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4595), 5, + ACTIONS(3911), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4593), 30, + ACTIONS(3909), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -210506,19 +211787,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [108814] = 3, + [109387] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4567), 5, + ACTIONS(3911), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4565), 30, + ACTIONS(3909), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -210531,7 +211813,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, @@ -210547,23 +211828,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [108858] = 3, + [109431] = 13, + ACTIONS(4656), 1, + anon_sym_LPAREN, + ACTIONS(4664), 1, + anon_sym_STAR_STAR, + ACTIONS(4674), 1, + anon_sym_CARET, + ACTIONS(4692), 1, + anon_sym_DOT, + ACTIONS(4694), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4282), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4658), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4660), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4668), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2660), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4666), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4280), 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, + [109494] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3710), 5, + ACTIONS(3907), 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(3905), 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, + [109537] = 7, + ACTIONS(4767), 1, anon_sym_as, + ACTIONS(4769), 1, + anon_sym_if, + ACTIONS(4771), 1, + anon_sym_and, + ACTIONS(4773), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4623), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3699), 30, + ACTIONS(4621), 26, 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, @@ -210572,11 +211949,8 @@ 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, @@ -210588,38 +211962,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [108902] = 6, - ACTIONS(4727), 1, - anon_sym_and, - ACTIONS(4744), 1, - anon_sym_or, - ACTIONS(4758), 1, - anon_sym_as, + [109588] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4622), 5, + ACTIONS(3714), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4617), 27, + ACTIONS(3703), 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, @@ -210631,32 +212002,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [108952] = 3, + [109631] = 6, + ACTIONS(3716), 1, + anon_sym_COLON_EQ, + ACTIONS(3724), 1, + anon_sym_from, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4460), 5, + ACTIONS(3709), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(3714), 5, anon_sym_STAR, - anon_sym_EQ, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4458), 30, + ACTIONS(3703), 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, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -210672,18 +212045,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [108996] = 3, + [109680] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4647), 5, + ACTIONS(4468), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4645), 30, + ACTIONS(4466), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -210691,13 +212063,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, @@ -210713,22 +212085,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [109040] = 5, - ACTIONS(4727), 1, - anon_sym_and, - ACTIONS(4744), 1, - anon_sym_or, + [109723] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4579), 5, + ACTIONS(4492), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4577), 28, + ACTIONS(4490), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -210736,15 +212103,17 @@ 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, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -210756,33 +212125,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [109088] = 3, + [109766] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4519), 5, + ACTIONS(3903), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4517), 30, + ACTIONS(3901), 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, @@ -210798,31 +212165,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [109132] = 6, - ACTIONS(3712), 1, - anon_sym_COLON_EQ, - ACTIONS(4761), 1, - anon_sym_LBRACK, - STATE(4442), 1, - sym_type_parameter, + [109809] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3710), 5, + ACTIONS(3876), 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(3874), 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, + [109852] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4480), 5, + anon_sym_as, + anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3699), 27, + ACTIONS(4478), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, @@ -210842,32 +212245,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [109182] = 3, + [109895] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4630), 5, + ACTIONS(4488), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4628), 30, + ACTIONS(4486), 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, @@ -210883,31 +212285,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [109226] = 3, + [109938] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3895), 5, + ACTIONS(4607), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3890), 30, + ACTIONS(4605), 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, @@ -210923,18 +212325,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [109270] = 3, + [109981] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3914), 5, + ACTIONS(4537), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3909), 30, + ACTIONS(4535), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -210942,13 +212343,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, @@ -210964,25 +212365,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [109314] = 5, - ACTIONS(596), 1, - anon_sym_COLON_EQ, + [110024] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(586), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(581), 5, + ACTIONS(4484), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(579), 27, + ACTIONS(4482), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -210990,6 +212386,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, @@ -211008,26 +212405,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [109362] = 4, + [110067] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3710), 4, + ACTIONS(4549), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4763), 4, - sym__newline, - anon_sym_COLON, - anon_sym_with, - anon_sym_nogil, - ACTIONS(3699), 26, + ACTIONS(4547), 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_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -211049,28 +212445,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [109407] = 3, + [110110] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4456), 4, + ACTIONS(4564), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4454), 30, - sym_string_start, + ACTIONS(4562), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -211089,66 +212485,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [109450] = 5, + [110153] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1297), 2, + ACTIONS(3714), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1300), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1498), 14, + ACTIONS(3703), 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, - ACTIONS(1295), 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, - [109497] = 3, + [110196] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4396), 4, + ACTIONS(3918), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4394), 30, - sym_string_start, + ACTIONS(3913), 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, @@ -211171,59 +212565,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [109540] = 5, + [110239] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3870), 2, + ACTIONS(4611), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(3873), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(3867), 14, + ACTIONS(4609), 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(3865), 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, - [109587] = 3, + [110282] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4215), 5, + ACTIONS(4631), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4201), 29, + ACTIONS(4629), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -211253,192 +212645,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [109630] = 4, + [110325] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3879), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(3884), 13, + ACTIONS(3903), 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(3720), 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, - [109675] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3699), 3, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3901), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(3710), 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(3720), 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, - [109720] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3890), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(3895), 13, - anon_sym_STAR, anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(3899), 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, - [109765] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3909), 3, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(3914), 13, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, + 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(3918), 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, - [109810] = 3, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [110368] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4552), 5, + ACTIONS(3883), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4550), 29, + ACTIONS(3878), 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, @@ -211457,29 +212725,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [109853] = 7, - ACTIONS(4765), 1, - anon_sym_as, - ACTIONS(4767), 1, - anon_sym_if, - ACTIONS(4769), 1, - anon_sym_and, - ACTIONS(4771), 1, - anon_sym_or, + [110411] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4607), 5, + ACTIONS(3883), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4605), 25, + ACTIONS(3878), 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, @@ -211490,6 +212752,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, @@ -211501,25 +212765,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [109904] = 3, + [110454] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4519), 5, + ACTIONS(4219), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4517), 29, + ACTIONS(4205), 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, @@ -211541,30 +212805,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [109947] = 6, - ACTIONS(4769), 1, - anon_sym_and, - ACTIONS(4771), 1, - anon_sym_or, - ACTIONS(4773), 1, - anon_sym_as, + [110497] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4622), 5, + ACTIONS(3915), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3918), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4617), 26, + ACTIONS(3913), 27, anon_sym_DOT, anon_sym_LPAREN, - 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, @@ -211573,6 +212833,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, @@ -211584,37 +212846,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [109996] = 5, - ACTIONS(4769), 1, - anon_sym_and, - ACTIONS(4771), 1, - anon_sym_or, + [110542] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4579), 5, + ACTIONS(3868), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4577), 27, + ACTIONS(3863), 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, anon_sym_PLUS, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -211626,28 +212886,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [110043] = 3, + [110585] = 8, + ACTIONS(4656), 1, + anon_sym_LPAREN, + ACTIONS(4664), 1, + anon_sym_STAR_STAR, + ACTIONS(4692), 1, + anon_sym_DOT, + ACTIONS(4694), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4556), 5, + STATE(2660), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4282), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4554), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4280), 24, + 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, @@ -211666,27 +212931,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [110086] = 4, - ACTIONS(4769), 1, - anon_sym_and, + [110638] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4556), 5, + ACTIONS(3709), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3714), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4554), 28, + ACTIONS(3703), 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, @@ -211695,6 +212959,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, @@ -211707,39 +212972,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [110131] = 7, - ACTIONS(4765), 1, - anon_sym_as, - ACTIONS(4767), 1, - anon_sym_if, - ACTIONS(4769), 1, - anon_sym_and, - ACTIONS(4771), 1, - anon_sym_or, + [110683] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4469), 5, + ACTIONS(4358), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4465), 25, + ACTIONS(4350), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_else, + 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, @@ -211751,31 +213012,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [110182] = 7, - ACTIONS(4765), 1, - anon_sym_as, - ACTIONS(4767), 1, - anon_sym_if, - ACTIONS(4769), 1, - anon_sym_and, - ACTIONS(4771), 1, - anon_sym_or, + [110726] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4571), 5, + ACTIONS(3880), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3883), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4569), 25, + ACTIONS(3878), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_else, + anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -211784,6 +213040,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, @@ -211795,107 +213053,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [110233] = 5, + [110771] = 6, + ACTIONS(1020), 1, + anon_sym_COLON_EQ, + ACTIONS(1039), 1, + anon_sym_from, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3870), 2, + ACTIONS(1010), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(1005), 5, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, - ACTIONS(3873), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(3867), 14, + ACTIONS(1003), 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, - ACTIONS(3865), 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, - [110280] = 3, + [110820] = 6, + ACTIONS(4355), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3907), 13, - anon_sym_STAR, - anon_sym_GT_GT, + ACTIONS(4360), 2, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(4358), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4352), 4, + anon_sym_LPAREN, anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + ACTIONS(4350), 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_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(3905), 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, - [110323] = 3, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [110869] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(581), 5, + ACTIONS(3891), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(3896), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(579), 29, + ACTIONS(3893), 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_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -211917,259 +213180,188 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [110366] = 3, + [110914] = 11, + ACTIONS(4656), 1, + anon_sym_LPAREN, + ACTIONS(4664), 1, + anon_sym_STAR_STAR, + ACTIONS(4692), 1, + anon_sym_DOT, + ACTIONS(4694), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3888), 13, + ACTIONS(4282), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4658), 2, anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, + anon_sym_SLASH, + ACTIONS(4668), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, - anon_sym_SLASH, + STATE(2660), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4666), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + ACTIONS(4280), 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(3886), 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, - [110409] = 3, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [110973] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3922), 13, + ACTIONS(4611), 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(3920), 21, - sym__newline, - anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4609), 29, 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, - [110452] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3863), 13, - anon_sym_STAR, anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(3861), 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, - [110495] = 3, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [111016] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3863), 13, + ACTIONS(4648), 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(3861), 21, - sym__newline, - anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4646), 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, - [110538] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3903), 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(3901), 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, - [110581] = 3, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [111059] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3903), 13, + ACTIONS(4635), 5, + anon_sym_as, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4633), 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_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(3901), 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, - [110624] = 3, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [111102] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4511), 5, + ACTIONS(4541), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4509), 29, + ACTIONS(4539), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -212178,7 +213370,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, @@ -212197,28 +213388,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [110667] = 3, + [111145] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4567), 5, - anon_sym_as, + ACTIONS(4635), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4565), 29, + ACTIONS(4633), 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, @@ -212237,28 +213428,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [110710] = 3, + [111188] = 8, + ACTIONS(4656), 1, + anon_sym_LPAREN, + ACTIONS(4664), 1, + anon_sym_STAR_STAR, + ACTIONS(4692), 1, + anon_sym_DOT, + ACTIONS(4694), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3710), 5, - anon_sym_as, + STATE(2660), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4282), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3699), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4280), 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, @@ -212277,15 +213473,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [110753] = 4, + [111241] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1498), 3, + ACTIONS(1003), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(1297), 13, + ACTIONS(1005), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -212299,7 +213495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1295), 18, + ACTIONS(1039), 18, sym__newline, anon_sym_SEMI, anon_sym_COMMA, @@ -212318,59 +213514,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [110798] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4548), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4546), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [110841] = 3, + [111286] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4215), 5, + ACTIONS(4472), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4201), 29, + ACTIONS(4470), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -212379,7 +213536,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, @@ -212398,20 +213554,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [110884] = 4, + [111329] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3881), 2, + ACTIONS(3865), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3884), 5, + ACTIONS(3868), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3879), 27, + ACTIONS(3863), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -212439,22 +213595,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [110929] = 4, + [111374] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3705), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3710), 5, + ACTIONS(1005), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3699), 27, + ACTIONS(1003), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -212480,41 +213635,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [110974] = 6, - ACTIONS(4355), 1, - anon_sym_STAR, + [111417] = 10, + ACTIONS(4656), 1, + anon_sym_LPAREN, + ACTIONS(4664), 1, + anon_sym_STAR_STAR, + ACTIONS(4692), 1, + anon_sym_DOT, + ACTIONS(4694), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4360), 2, - anon_sym_complex, - anon_sym___stdcall, - ACTIONS(4358), 3, - anon_sym_SLASH, + ACTIONS(4282), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4352), 4, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - ACTIONS(4350), 24, - anon_sym_DOT, + ACTIONS(4658), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(2660), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4666), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4280), 21, 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_AMP, anon_sym_CARET, anon_sym_LT_LT, anon_sym_is, @@ -212523,36 +213682,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111023] = 4, + [111474] = 7, + ACTIONS(4775), 1, + anon_sym_as, + ACTIONS(4777), 1, + anon_sym_if, + ACTIONS(4779), 1, + anon_sym_and, + ACTIONS(4781), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3892), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3895), 5, - anon_sym_as, + ACTIONS(4578), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3890), 27, + ACTIONS(4574), 26, 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, @@ -212564,63 +213726,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111068] = 4, + [111525] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3867), 3, + ACTIONS(3868), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3863), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(3870), 13, - anon_sym_STAR, + 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_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(3865), 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, - [111113] = 4, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [111568] = 14, + ACTIONS(4656), 1, + anon_sym_LPAREN, + ACTIONS(4664), 1, + anon_sym_STAR_STAR, + ACTIONS(4672), 1, + anon_sym_AMP, + ACTIONS(4674), 1, + anon_sym_CARET, + ACTIONS(4692), 1, + anon_sym_DOT, + ACTIONS(4694), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3911), 2, + ACTIONS(4282), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4658), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4660), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4668), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2660), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4666), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4280), 15, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3914), 5, + 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, + [111633] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4568), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3909), 27, + ACTIONS(4566), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -212646,19 +213857,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111158] = 3, + [111676] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(581), 5, + ACTIONS(4572), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(579), 29, + ACTIONS(4570), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -212667,7 +213879,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, @@ -212686,17 +213897,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111201] = 3, + [111719] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4548), 5, + ACTIONS(4464), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4546), 29, + ACTIONS(4462), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -212726,19 +213937,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111244] = 3, + [111762] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4552), 5, + ACTIONS(4484), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4550), 29, + ACTIONS(4482), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -212747,7 +213959,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, @@ -212766,93 +213977,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111287] = 21, - ACTIONS(371), 1, - anon_sym_long, - ACTIONS(4094), 1, - anon_sym_operator, - ACTIONS(4776), 1, - sym_identifier, - ACTIONS(4780), 1, - anon_sym_COLON, - ACTIONS(4782), 1, - anon_sym_class, - ACTIONS(4784), 1, - anon_sym_api, - ACTIONS(4788), 1, - anon_sym_enum, - STATE(3130), 1, - sym__signedness, - STATE(3228), 1, - sym_int_type, - STATE(3321), 1, - sym__longness, - STATE(3597), 1, - sym_operator_name, - STATE(3832), 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(4096), 2, - anon_sym_const, - anon_sym_volatile, - ACTIONS(4786), 2, - anon_sym_struct, - anon_sym_union, - STATE(2727), 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(4778), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - [111366] = 3, + [111805] = 6, + ACTIONS(4779), 1, + anon_sym_and, + ACTIONS(4781), 1, + anon_sym_or, + ACTIONS(4783), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3884), 5, + ACTIONS(4595), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3879), 29, + ACTIONS(4590), 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, anon_sym_PLUS, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -212864,59 +214020,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111409] = 3, + [111854] = 12, + ACTIONS(4656), 1, + anon_sym_LPAREN, + ACTIONS(4664), 1, + anon_sym_STAR_STAR, + ACTIONS(4692), 1, + anon_sym_DOT, + ACTIONS(4694), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4595), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(4282), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4593), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(4658), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4660), 2, anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4668), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2660), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4666), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4280), 17, + 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, - [111452] = 3, + [111915] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4460), 5, + ACTIONS(4480), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4458), 29, + ACTIONS(4478), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -212925,7 +214091,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, @@ -212944,17 +214109,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111495] = 3, + [111958] = 5, + ACTIONS(4779), 1, + anon_sym_and, + ACTIONS(4781), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4647), 5, + ACTIONS(4599), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4645), 29, + ACTIONS(4597), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -212971,8 +214140,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, @@ -212984,17 +214151,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111538] = 3, + [112005] = 4, + ACTIONS(4779), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4591), 5, + ACTIONS(4607), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4589), 29, + ACTIONS(4605), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -213011,7 +214180,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, @@ -213024,17 +214192,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111581] = 3, + [112050] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4611), 5, + ACTIONS(4603), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4609), 29, + ACTIONS(4601), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -213064,22 +214232,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111624] = 3, + [112093] = 7, + ACTIONS(4775), 1, + anon_sym_as, + ACTIONS(4777), 1, + anon_sym_if, + ACTIONS(4779), 1, + anon_sym_and, + ACTIONS(4781), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4583), 5, - anon_sym_as, + ACTIONS(4615), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4581), 29, + ACTIONS(4613), 26, 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, @@ -213091,8 +214265,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, @@ -213104,28 +214276,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111667] = 3, + [112144] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4595), 5, + ACTIONS(4472), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4593), 29, + ACTIONS(4470), 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, @@ -213144,17 +214316,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111710] = 3, + [112187] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4519), 5, + ACTIONS(4468), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4517), 29, + ACTIONS(4466), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -213184,22 +214356,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111753] = 3, + [112230] = 7, + ACTIONS(4775), 1, + anon_sym_as, + ACTIONS(4777), 1, + anon_sym_if, + ACTIONS(4779), 1, + anon_sym_and, + ACTIONS(4781), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4556), 5, - anon_sym_as, + ACTIONS(4623), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4554), 29, + ACTIONS(4621), 26, 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, @@ -213211,8 +214389,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, @@ -213224,17 +214400,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111796] = 3, + [112281] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4358), 5, + ACTIONS(4607), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4350), 29, + ACTIONS(4605), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -213264,25 +214440,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111839] = 3, + [112324] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4460), 5, + ACTIONS(4358), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4458), 29, + ACTIONS(4350), 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, @@ -213304,68 +214480,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111882] = 3, + [112367] = 21, + ACTIONS(371), 1, + anon_sym_long, + ACTIONS(3978), 1, + anon_sym_operator, + ACTIONS(4786), 1, + sym_identifier, + ACTIONS(4790), 1, + anon_sym_COLON, + ACTIONS(4792), 1, + anon_sym_class, + ACTIONS(4794), 1, + anon_sym_api, + ACTIONS(4798), 1, + anon_sym_enum, + STATE(3140), 1, + sym__signedness, + STATE(3191), 1, + sym_int_type, + STATE(3368), 1, + sym__longness, + STATE(3562), 1, + sym_operator_name, + STATE(3820), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4647), 5, + ACTIONS(367), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(369), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(3980), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4796), 2, + anon_sym_struct, + anon_sym_union, + STATE(2735), 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(4788), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + [112446] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3903), 13, anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4645), 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_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, - [111925] = 3, + ACTIONS(3901), 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, + [112489] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4507), 5, - anon_sym_as, + ACTIONS(4480), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4505), 29, + ACTIONS(4478), 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, @@ -213384,19 +214618,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111968] = 3, + [112532] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4599), 5, + ACTIONS(4631), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4597), 29, + ACTIONS(4629), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -213405,7 +214640,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, @@ -213424,17 +214658,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112011] = 3, + [112575] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4560), 5, + ACTIONS(4549), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4558), 29, + ACTIONS(4547), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -213464,17 +214698,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112054] = 3, + [112618] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4527), 5, + ACTIONS(4564), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4525), 29, + ACTIONS(4562), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -213504,24 +214738,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112097] = 3, + [112661] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4531), 5, + ACTIONS(3891), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(3896), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4529), 29, + ACTIONS(3893), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -213544,25 +214779,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112140] = 3, + [112706] = 5, + ACTIONS(1020), 1, + anon_sym_COLON_EQ, + ACTIONS(2383), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4603), 5, + ACTIONS(1005), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4601), 29, + ACTIONS(1003), 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_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -213584,17 +214821,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112183] = 3, + [112753] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4626), 5, + ACTIONS(3714), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4624), 29, + ACTIONS(3703), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -213624,17 +214861,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112226] = 3, + [112796] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4515), 5, + ACTIONS(3926), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4513), 29, + ACTIONS(3924), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -213664,19 +214901,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112269] = 3, + [112839] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4615), 5, + ACTIONS(3918), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4613), 29, + ACTIONS(3913), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -213685,7 +214923,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, @@ -213704,19 +214941,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112312] = 3, + [112882] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4643), 5, + ACTIONS(4488), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4641), 29, + ACTIONS(4486), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -213725,7 +214963,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, @@ -213744,25 +214981,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112355] = 3, + [112925] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4511), 5, - anon_sym_as, + ACTIONS(4476), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4509), 29, + ACTIONS(4474), 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, @@ -213784,17 +215021,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112398] = 3, + [112968] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4567), 5, + ACTIONS(4537), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4565), 29, + ACTIONS(4535), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -213824,17 +215061,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112441] = 3, + [113011] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3710), 5, + ACTIONS(4603), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3699), 29, + ACTIONS(4601), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -213864,60 +215101,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112484] = 3, + [113054] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4535), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4533), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [112527] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4215), 5, + ACTIONS(3876), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4201), 29, + ACTIONS(3874), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -213926,6 +215122,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, @@ -213944,29 +215141,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112570] = 4, + [113097] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3881), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3884), 5, - anon_sym_as, + ACTIONS(4404), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3879), 27, + ACTIONS(4402), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -213985,109 +215181,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112615] = 3, + [113140] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4575), 5, - anon_sym_as, + ACTIONS(1297), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1300), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4573), 29, + ACTIONS(1498), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [112658] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3705), 2, - anon_sym_RPAREN, + ACTIONS(1295), 15, anon_sym_COMMA, - ACTIONS(3710), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3699), 27, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, + anon_sym_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, - [112703] = 3, + [113187] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4587), 5, - anon_sym_as, + ACTIONS(4505), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4585), 29, + ACTIONS(4503), 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, @@ -214106,25 +215263,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112746] = 3, + [113230] = 5, + ACTIONS(3716), 1, + anon_sym_COLON_EQ, + ACTIONS(4340), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4591), 5, + ACTIONS(3714), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4589), 29, + ACTIONS(3703), 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_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -214146,29 +215305,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112789] = 4, + [113277] = 8, + ACTIONS(4656), 1, + anon_sym_LPAREN, + ACTIONS(4664), 1, + anon_sym_STAR_STAR, + ACTIONS(4692), 1, + anon_sym_DOT, + ACTIONS(4694), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3892), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3895), 5, - anon_sym_as, + STATE(2660), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4344), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3890), 27, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4342), 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, @@ -214187,31 +215350,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112834] = 6, - ACTIONS(596), 1, - anon_sym_COLON_EQ, - ACTIONS(612), 1, - anon_sym_from, + [113330] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(586), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(581), 5, + ACTIONS(4619), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(579), 25, + ACTIONS(4617), 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, @@ -214230,28 +215390,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112883] = 3, + [113373] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4611), 5, + ACTIONS(4537), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4609), 29, + ACTIONS(4535), 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, @@ -214270,24 +215430,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112926] = 4, + [113416] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3865), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(3870), 5, - anon_sym_as, + ACTIONS(3714), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3867), 27, + ACTIONS(4800), 4, + sym__newline, + anon_sym_COLON, + anon_sym_with, + anon_sym_nogil, + ACTIONS(3703), 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_in, @@ -214311,28 +215471,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112971] = 3, + [113461] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4583), 5, + ACTIONS(3911), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4581), 29, + ACTIONS(3909), 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, @@ -214351,24 +215511,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113014] = 3, + [113504] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4630), 5, - anon_sym_as, + ACTIONS(3893), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(3896), 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(3891), 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, + [113549] = 4, + ACTIONS(1020), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1005), 5, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4628), 29, + ACTIONS(1003), 28, 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, @@ -214391,19 +215593,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113057] = 3, + [113594] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1498), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1297), 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(1295), 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, + [113639] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4523), 5, + ACTIONS(4468), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4521), 29, + ACTIONS(4466), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -214412,7 +215656,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, @@ -214431,26 +215674,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113100] = 4, + [113682] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3911), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3914), 5, - anon_sym_as, + ACTIONS(4545), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3909), 27, + ACTIONS(4543), 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, @@ -214472,17 +215714,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113145] = 3, + [113725] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(581), 5, + ACTIONS(4492), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(579), 29, + ACTIONS(4490), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -214512,20 +215754,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113188] = 3, + [113768] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4548), 5, + ACTIONS(4219), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4546), 29, + ACTIONS(4205), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -214534,6 +215775,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, @@ -214552,21 +215794,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113231] = 3, + [113811] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4552), 5, + ACTIONS(3915), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(3918), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4550), 29, + ACTIONS(3913), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -214592,25 +215835,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113274] = 4, + [113856] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3865), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(3870), 5, - anon_sym_as, + ACTIONS(4400), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3867), 27, + ACTIONS(4398), 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_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -214633,25 +215875,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113319] = 3, + [113899] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3884), 5, - anon_sym_as, + ACTIONS(4560), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3879), 29, + ACTIONS(4558), 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, @@ -214673,31 +215915,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113362] = 7, - ACTIONS(4790), 1, - anon_sym_as, - ACTIONS(4792), 1, - anon_sym_if, - ACTIONS(4794), 1, - anon_sym_and, - ACTIONS(4796), 1, - anon_sym_or, + [113942] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4607), 4, + ACTIONS(1005), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4605), 26, + ACTIONS(1003), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, - anon_sym_async, - anon_sym_for, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -214706,6 +215942,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, @@ -214717,25 +215955,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113413] = 3, + [113985] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4358), 5, + ACTIONS(4627), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4350), 29, + ACTIONS(4625), 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, @@ -214757,25 +215995,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113456] = 6, - ACTIONS(4794), 1, + [114028] = 7, + ACTIONS(3922), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3896), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3899), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3920), 5, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(3891), 12, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_not, anon_sym_and, - ACTIONS(4796), 1, anon_sym_or, - ACTIONS(4798), 1, - anon_sym_as, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(3893), 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, + [114079] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4622), 4, + ACTIONS(3876), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4617), 27, + ACTIONS(3874), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -214784,11 +216060,14 @@ 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, @@ -214800,21 +216079,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113505] = 5, - ACTIONS(4794), 1, - anon_sym_and, - ACTIONS(4796), 1, - anon_sym_or, + [114122] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4579), 5, + ACTIONS(4648), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4577), 27, + ACTIONS(4646), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -214831,6 +216106,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, @@ -214842,27 +216119,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113552] = 4, - ACTIONS(4794), 1, - anon_sym_and, + [114165] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4556), 5, - anon_sym_as, + ACTIONS(4568), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4554), 28, + ACTIONS(4566), 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, @@ -214871,6 +216146,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, @@ -214883,29 +216159,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113597] = 7, - ACTIONS(4790), 1, + [114208] = 15, + ACTIONS(4656), 1, + anon_sym_LPAREN, + ACTIONS(4664), 1, + anon_sym_STAR_STAR, + ACTIONS(4670), 1, + anon_sym_PIPE, + ACTIONS(4672), 1, + anon_sym_AMP, + ACTIONS(4674), 1, + anon_sym_CARET, + ACTIONS(4692), 1, + anon_sym_DOT, + ACTIONS(4694), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4364), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4658), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4660), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4668), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2660), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4666), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4362), 14, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_as, - ACTIONS(4792), 1, anon_sym_if, - ACTIONS(4794), 1, + anon_sym_in, + anon_sym_not, anon_sym_and, - ACTIONS(4796), 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, + [114275] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4469), 4, + ACTIONS(3926), 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(3924), 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, + [114318] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4476), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4465), 26, + ACTIONS(4474), 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, @@ -214916,6 +216278,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, @@ -214927,74 +216291,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113648] = 12, - ACTIONS(4676), 1, - anon_sym_DOT, - ACTIONS(4678), 1, - anon_sym_LPAREN, - ACTIONS(4686), 1, - anon_sym_STAR_STAR, - ACTIONS(4688), 1, - anon_sym_LBRACK, + [114361] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4306), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4680), 2, + ACTIONS(4358), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(4682), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4692), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2656), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4690), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4304), 17, - anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4350), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113709] = 3, + [114404] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4507), 5, + ACTIONS(4464), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4505), 29, + ACTIONS(4462), 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, @@ -215016,39 +216371,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113752] = 7, - ACTIONS(4801), 1, - anon_sym_as, - ACTIONS(4803), 1, - anon_sym_if, - ACTIONS(4805), 1, - anon_sym_and, - ACTIONS(4807), 1, - anon_sym_or, + [114447] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4607), 4, + ACTIONS(3709), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(3714), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4605), 26, + ACTIONS(3703), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_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, @@ -215060,24 +216412,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113803] = 6, - ACTIONS(4805), 1, - anon_sym_and, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_as, + [114492] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4622), 4, + ACTIONS(4619), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4617), 27, + ACTIONS(4617), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -215086,12 +216434,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, anon_sym_AMP, @@ -215103,21 +216452,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113852] = 5, - ACTIONS(4805), 1, - anon_sym_and, - ACTIONS(4807), 1, - anon_sym_or, + [114535] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4579), 5, + ACTIONS(4611), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4577), 27, + ACTIONS(4609), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -215134,6 +216479,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, @@ -215145,22 +216492,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113899] = 4, - ACTIONS(4805), 1, - anon_sym_and, + [114578] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4556), 5, + ACTIONS(3880), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(3883), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4554), 28, + ACTIONS(3878), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -215168,12 +216515,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, @@ -215186,39 +216533,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113944] = 7, - ACTIONS(4801), 1, - anon_sym_as, - ACTIONS(4803), 1, - anon_sym_if, - ACTIONS(4805), 1, - anon_sym_and, - ACTIONS(4807), 1, - anon_sym_or, + [114623] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4469), 4, + ACTIONS(4541), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4465), 26, + ACTIONS(4539), 29, 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_else, 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, @@ -215230,30 +216573,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113995] = 7, - ACTIONS(4801), 1, - anon_sym_as, - ACTIONS(4803), 1, - anon_sym_if, - ACTIONS(4805), 1, - anon_sym_and, - ACTIONS(4807), 1, - anon_sym_or, + [114666] = 21, + ACTIONS(371), 1, + anon_sym_long, + ACTIONS(3978), 1, + anon_sym_operator, + ACTIONS(4794), 1, + anon_sym_api, + ACTIONS(4802), 1, + sym_identifier, + ACTIONS(4806), 1, + anon_sym_COLON, + ACTIONS(4808), 1, + anon_sym_class, + ACTIONS(4812), 1, + anon_sym_enum, + STATE(3140), 1, + sym__signedness, + STATE(3191), 1, + sym_int_type, + STATE(3368), 1, + sym__longness, + STATE(3562), 1, + sym_operator_name, + STATE(3790), 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(3980), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4810), 2, + anon_sym_struct, + anon_sym_union, + STATE(2735), 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(4804), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + [114745] = 4, + ACTIONS(3716), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4571), 4, + ACTIONS(3714), 5, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4569), 26, + ACTIONS(3703), 28, 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_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -215263,6 +216659,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, @@ -215274,17 +216672,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114046] = 3, + [114790] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4599), 5, + ACTIONS(4627), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4597), 29, + ACTIONS(4625), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -215314,25 +216712,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114089] = 3, + [114833] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3895), 5, - anon_sym_as, + ACTIONS(4648), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3890), 29, + ACTIONS(4646), 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, @@ -215354,25 +216752,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114132] = 3, + [114876] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3914), 5, - anon_sym_as, + ACTIONS(4464), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3909), 29, + ACTIONS(4462), 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, @@ -215394,25 +216792,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114175] = 3, + [114919] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4560), 5, + ACTIONS(3865), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(3868), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4558), 29, + ACTIONS(3863), 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, @@ -215434,28 +216833,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114218] = 3, + [114964] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4527), 5, + ACTIONS(1005), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4525), 29, + ACTIONS(1003), 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, @@ -215474,17 +216873,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114261] = 3, + [115007] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4531), 5, + ACTIONS(4472), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4529), 29, + ACTIONS(4470), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -215514,19 +216913,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114304] = 3, + [115050] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3907), 5, + ACTIONS(4545), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3905), 29, + ACTIONS(4543), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -215535,7 +216935,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, @@ -215554,68 +216953,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114347] = 3, + [115093] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4626), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4624), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(4541), 5, 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, - [114390] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4515), 5, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4513), 29, + ACTIONS(4539), 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, @@ -215634,17 +216993,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114433] = 3, + [115136] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4595), 5, + ACTIONS(4588), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4593), 29, + ACTIONS(4586), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -215674,97 +217033,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114476] = 3, + [115179] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4603), 5, - anon_sym_as, + ACTIONS(3896), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(3899), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4601), 29, + ACTIONS(3893), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [114519] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4615), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4613), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(3891), 15, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_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, - [114562] = 3, + [115226] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3888), 5, + ACTIONS(4588), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3886), 29, + ACTIONS(4586), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -215794,17 +217115,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114605] = 3, + [115269] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4535), 5, + ACTIONS(4556), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4533), 29, + ACTIONS(4554), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -215834,20 +217155,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114648] = 3, + [115312] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4460), 5, + ACTIONS(4560), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4458), 29, + ACTIONS(4558), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -215856,6 +217176,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, @@ -215874,20 +217195,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114691] = 3, + [115355] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4647), 5, + ACTIONS(4631), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4645), 29, + ACTIONS(4629), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -215896,6 +217216,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, @@ -215914,17 +217235,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114734] = 3, + [115398] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3922), 5, + ACTIONS(4568), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3920), 29, + ACTIONS(4566), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -215954,17 +217275,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114777] = 3, + [115441] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3863), 5, + ACTIONS(4572), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3861), 29, + ACTIONS(4570), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -215994,19 +217315,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114820] = 3, + [115484] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3863), 5, + ACTIONS(4556), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3861), 29, + ACTIONS(4554), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -216015,7 +217337,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, @@ -216034,103 +217355,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114863] = 7, - ACTIONS(3877), 1, - anon_sym_EQ, + [115527] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3870), 2, + ACTIONS(3903), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3873), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3875), 5, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(3865), 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(3867), 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_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [114914] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4643), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4641), 29, + ACTIONS(3901), 21, + 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_EQ, 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, - [114957] = 3, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [115570] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3903), 5, + ACTIONS(4560), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3901), 29, + ACTIONS(4558), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -216139,7 +217417,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, @@ -216158,17 +217435,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115000] = 3, + [115613] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4591), 5, + ACTIONS(3883), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4589), 29, + ACTIONS(3878), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -216198,17 +217475,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115043] = 3, + [115656] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3903), 5, + ACTIONS(4627), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3901), 29, + ACTIONS(4625), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -216238,25 +217515,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115086] = 3, + [115699] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4611), 5, - anon_sym_as, + ACTIONS(3918), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4609), 29, + ACTIONS(3913), 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, @@ -216278,57 +217555,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115129] = 3, + [115742] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4583), 5, - anon_sym_as, + ACTIONS(3876), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4581), 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_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, - [115172] = 3, + ACTIONS(3874), 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, + [115785] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4519), 5, + ACTIONS(3868), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4517), 29, + ACTIONS(3863), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -216358,17 +217635,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115215] = 3, + [115828] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4556), 5, + ACTIONS(4505), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4554), 29, + ACTIONS(4503), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -216398,20 +217675,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115258] = 3, + [115871] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4358), 5, + ACTIONS(3907), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4350), 29, + ACTIONS(3905), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -216420,6 +217696,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, @@ -216438,27 +217715,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115301] = 5, - ACTIONS(596), 1, - anon_sym_COLON_EQ, - ACTIONS(2433), 1, - anon_sym_EQ, + [115914] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(581), 4, + ACTIONS(4549), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(579), 28, + ACTIONS(4547), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -216480,27 +217755,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115348] = 5, - ACTIONS(3712), 1, - anon_sym_COLON_EQ, - ACTIONS(4308), 1, - anon_sym_EQ, + [115957] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3710), 4, + ACTIONS(4564), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3699), 28, + ACTIONS(4562), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -216522,28 +217795,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115395] = 3, + [116000] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3884), 5, - anon_sym_as, + ACTIONS(4219), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3879), 29, + ACTIONS(4205), 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, @@ -216562,100 +217835,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115438] = 3, + [116043] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4507), 5, - anon_sym_as, + ACTIONS(3913), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(3918), 13, anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4505), 29, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(3724), 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, + [116088] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3703), 3, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3714), 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, - [115481] = 6, - ACTIONS(3712), 1, - anon_sym_COLON_EQ, - ACTIONS(3839), 1, - anon_sym_LBRACK, - STATE(4590), 1, - sym_type_parameter, + ACTIONS(3724), 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, + [116133] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3710), 6, + ACTIONS(3878), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(3883), 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(3885), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3699), 25, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [116178] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3863), 3, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_as, + anon_sym_LBRACK, + ACTIONS(3868), 13, + 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_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [115530] = 3, + ACTIONS(3872), 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, + [116223] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4575), 5, + ACTIONS(4556), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4573), 29, + ACTIONS(4554), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -216685,17 +218039,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115573] = 3, + [116266] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4587), 5, + ACTIONS(4572), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4585), 29, + ACTIONS(4570), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -216725,23 +218079,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115616] = 3, + [116309] = 7, + ACTIONS(4767), 1, + anon_sym_as, + ACTIONS(4769), 1, + anon_sym_if, + ACTIONS(4771), 1, + anon_sym_and, + ACTIONS(4773), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4599), 5, - anon_sym_as, + ACTIONS(4578), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4597), 29, + ACTIONS(4574), 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, @@ -216752,8 +218112,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, @@ -216765,20 +218123,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115659] = 3, + [116360] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4560), 5, + ACTIONS(4635), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4558), 29, + ACTIONS(4633), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -216787,6 +218144,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, @@ -216805,25 +218163,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115702] = 3, + [116403] = 7, + ACTIONS(4814), 1, + anon_sym_as, + ACTIONS(4816), 1, + anon_sym_if, + ACTIONS(4818), 1, + anon_sym_and, + ACTIONS(4820), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4527), 5, - anon_sym_as, + ACTIONS(4578), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4525), 29, + ACTIONS(4574), 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, @@ -216832,8 +218196,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, @@ -216845,25 +218207,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115745] = 3, + [116454] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4531), 5, - anon_sym_as, + ACTIONS(4588), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4529), 29, + ACTIONS(4586), 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, @@ -216885,25 +218247,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115788] = 3, + [116497] = 6, + ACTIONS(4818), 1, + anon_sym_and, + ACTIONS(4820), 1, + anon_sym_or, + ACTIONS(4822), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4603), 5, - anon_sym_as, + ACTIONS(4595), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4601), 29, + ACTIONS(4590), 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, @@ -216912,8 +218279,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, @@ -216925,25 +218290,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115831] = 3, + [116546] = 5, + ACTIONS(4818), 1, + anon_sym_and, + ACTIONS(4820), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4626), 5, - anon_sym_as, + ACTIONS(4599), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4624), 29, + ACTIONS(4597), 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_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -216952,8 +218321,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, @@ -216965,28 +218332,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115874] = 3, + [116593] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3895), 5, - anon_sym_as, + ACTIONS(4607), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3890), 29, + ACTIONS(4605), 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, @@ -217005,25 +218372,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115917] = 3, + [116636] = 4, + ACTIONS(4818), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4515), 5, - anon_sym_as, + ACTIONS(4607), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4513), 29, + ACTIONS(4605), 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_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -217032,7 +218401,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, @@ -217045,25 +218413,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115960] = 3, + [116681] = 7, + ACTIONS(4814), 1, + anon_sym_as, + ACTIONS(4816), 1, + anon_sym_if, + ACTIONS(4818), 1, + anon_sym_and, + ACTIONS(4820), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(4615), 5, - anon_sym_as, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4613), 29, + ACTIONS(4613), 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, @@ -217072,8 +218446,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, @@ -217085,17 +218457,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [116003] = 3, + [116732] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3914), 5, + ACTIONS(4545), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3909), 29, + ACTIONS(4543), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -217125,58 +218497,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [116046] = 4, + [116775] = 7, + ACTIONS(4814), 1, + anon_sym_as, + ACTIONS(4816), 1, + anon_sym_if, + ACTIONS(4818), 1, + anon_sym_and, + ACTIONS(4820), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(579), 3, + ACTIONS(4623), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4621), 25, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(581), 13, - anon_sym_STAR, + 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_SLASH, + anon_sym_not, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(612), 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, - [116091] = 3, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [116826] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4630), 5, + ACTIONS(4603), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4628), 29, + ACTIONS(4601), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -217206,28 +218581,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [116134] = 3, + [116869] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4523), 5, + ACTIONS(4492), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4521), 29, + ACTIONS(4490), 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, @@ -217246,17 +218621,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [116177] = 3, + [116912] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4511), 5, + ACTIONS(4619), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4509), 29, + ACTIONS(4617), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -217286,25 +218661,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [116220] = 3, + [116955] = 6, + ACTIONS(4771), 1, + anon_sym_and, + ACTIONS(4773), 1, + anon_sym_or, + ACTIONS(4825), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3895), 5, + ACTIONS(4595), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3890), 29, + ACTIONS(4590), 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_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -217313,8 +218693,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, @@ -217326,17 +218704,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [116263] = 3, + [117004] = 5, + ACTIONS(4771), 1, + anon_sym_and, + ACTIONS(4773), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4643), 5, + ACTIONS(4599), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4641), 29, + ACTIONS(4597), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -217353,8 +218735,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, @@ -217366,20 +218746,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [116306] = 3, + [117051] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4535), 5, + ACTIONS(4476), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4533), 29, + ACTIONS(4474), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -217388,6 +218767,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, @@ -217406,17 +218786,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [116349] = 3, + [117094] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3914), 5, + ACTIONS(4488), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3909), 29, + ACTIONS(4486), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -217446,17 +218826,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [116392] = 3, + [117137] = 4, + ACTIONS(4771), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4575), 5, + ACTIONS(4607), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4573), 29, + ACTIONS(4605), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -217473,7 +218855,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, @@ -217486,20 +218867,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [116435] = 3, + [117182] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4587), 5, + ACTIONS(4505), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4585), 29, + ACTIONS(4503), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -217508,6 +218888,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, @@ -217526,111 +218907,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [116478] = 3, + [117225] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4567), 5, + ACTIONS(3896), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(3899), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4565), 29, + ACTIONS(3893), 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(3891), 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, - [116521] = 3, + [117272] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3710), 5, + ACTIONS(1297), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(1300), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(3699), 29, + ACTIONS(1498), 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(1295), 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, - [116564] = 6, - ACTIONS(3712), 1, - anon_sym_COLON_EQ, - ACTIONS(3720), 1, - anon_sym_from, + [117319] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3705), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(3710), 5, + ACTIONS(3911), 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(3909), 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, + [117362] = 8, + ACTIONS(4656), 1, + anon_sym_LPAREN, + ACTIONS(4664), 1, + anon_sym_STAR_STAR, + ACTIONS(4692), 1, + anon_sym_DOT, + ACTIONS(4694), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2660), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4348), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3699), 25, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4346), 24, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_STAR_STAR, - anon_sym_LBRACK, + anon_sym_in, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -217649,71 +219076,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [116613] = 5, + [117415] = 7, + ACTIONS(4767), 1, + anon_sym_as, + ACTIONS(4769), 1, + anon_sym_if, + ACTIONS(4771), 1, + anon_sym_and, + ACTIONS(4773), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1297), 2, + ACTIONS(4615), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1300), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1498), 14, + ACTIONS(4613), 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_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1295), 15, - anon_sym_RPAREN, - 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, + [117466] = 6, + ACTIONS(3716), 1, + anon_sym_COLON_EQ, + ACTIONS(3843), 1, + anon_sym_LBRACK, + STATE(4577), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3714), 6, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3703), 25, + anon_sym_DOT, + anon_sym_LPAREN, + 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_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, - [116660] = 4, - ACTIONS(596), 1, - anon_sym_COLON_EQ, + [117515] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(581), 5, + ACTIONS(4484), 5, anon_sym_STAR, - anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(579), 28, + ACTIONS(4482), 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, @@ -217732,25 +219203,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [116705] = 4, - ACTIONS(3712), 1, - anon_sym_COLON_EQ, + [117558] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3710), 5, + ACTIONS(4358), 4, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3699), 28, + ACTIONS(4350), 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, @@ -217773,36 +219242,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [116750] = 8, - ACTIONS(4676), 1, - anon_sym_DOT, - ACTIONS(4678), 1, - anon_sym_LPAREN, - ACTIONS(4686), 1, - anon_sym_STAR_STAR, - ACTIONS(4688), 1, - anon_sym_LBRACK, + [117600] = 4, + ACTIONS(3716), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2656), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4344), 4, + ACTIONS(3896), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4342), 24, - anon_sym_RPAREN, + ACTIONS(3893), 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, @@ -217818,40 +219282,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [116803] = 8, - ACTIONS(4676), 1, - anon_sym_DOT, - ACTIONS(4678), 1, - anon_sym_LPAREN, - ACTIONS(4686), 1, - anon_sym_STAR_STAR, - ACTIONS(4688), 1, - anon_sym_LBRACK, + [117644] = 7, + ACTIONS(4828), 1, + anon_sym_as, + ACTIONS(4830), 1, + anon_sym_if, + ACTIONS(4832), 1, + anon_sym_and, + ACTIONS(4834), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2656), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4348), 4, + ACTIONS(4578), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4346), 24, - anon_sym_RPAREN, + ACTIONS(4574), 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, + 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, @@ -217863,28 +219325,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [116856] = 3, + [117694] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4630), 5, - anon_sym_as, + ACTIONS(1005), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4628), 29, + ACTIONS(1003), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -217903,28 +219364,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [116899] = 3, + [117736] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4523), 5, - anon_sym_as, + ACTIONS(4627), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4521), 29, + ACTIONS(4625), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -217943,150 +219403,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [116942] = 21, - ACTIONS(371), 1, - anon_sym_long, - ACTIONS(4094), 1, - anon_sym_operator, - ACTIONS(4784), 1, - anon_sym_api, - ACTIONS(4812), 1, - sym_identifier, - ACTIONS(4816), 1, - anon_sym_COLON, - ACTIONS(4818), 1, - anon_sym_class, - ACTIONS(4822), 1, - anon_sym_enum, - STATE(3130), 1, - sym__signedness, - STATE(3228), 1, - sym_int_type, - STATE(3321), 1, - sym__longness, - STATE(3597), 1, - sym_operator_name, - STATE(3792), 1, - sym_maybe_typed_name, + [117778] = 6, + ACTIONS(4832), 1, + anon_sym_and, + ACTIONS(4834), 1, + anon_sym_or, + ACTIONS(4836), 1, + anon_sym_as, 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(4096), 2, - anon_sym_const, - anon_sym_volatile, - ACTIONS(4820), 2, - anon_sym_struct, - anon_sym_union, - STATE(2727), 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(4814), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - [117021] = 15, - ACTIONS(4676), 1, + ACTIONS(4595), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4590), 26, anon_sym_DOT, - ACTIONS(4678), 1, anon_sym_LPAREN, - ACTIONS(4686), 1, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, - ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(4694), 1, - anon_sym_PIPE, - ACTIONS(4696), 1, - anon_sym_AMP, - ACTIONS(4698), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4312), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4680), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4682), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4692), 2, + anon_sym_RBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, - STATE(2656), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4690), 3, - anon_sym_AT, + anon_sym_not, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4310), 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_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, - [117088] = 8, - ACTIONS(4676), 1, - anon_sym_DOT, - ACTIONS(4678), 1, - anon_sym_LPAREN, - ACTIONS(4686), 1, - anon_sym_STAR_STAR, - ACTIONS(4688), 1, - anon_sym_LBRACK, + [117826] = 5, + ACTIONS(4832), 1, + anon_sym_and, + ACTIONS(4834), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2656), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4306), 4, + ACTIONS(4599), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4304), 24, - anon_sym_RPAREN, + ACTIONS(4597), 27, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -218098,45 +219486,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [117141] = 11, - ACTIONS(4676), 1, - anon_sym_DOT, - ACTIONS(4678), 1, - anon_sym_LPAREN, - ACTIONS(4686), 1, - anon_sym_STAR_STAR, - ACTIONS(4688), 1, - anon_sym_LBRACK, + [117872] = 4, + ACTIONS(4832), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4306), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4680), 2, + ACTIONS(4607), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4692), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2656), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4690), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4304), 19, - anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4605), 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_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, @@ -218146,40 +219526,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [117200] = 8, - ACTIONS(4676), 1, - anon_sym_DOT, - ACTIONS(4678), 1, - anon_sym_LPAREN, - ACTIONS(4686), 1, - anon_sym_STAR_STAR, - ACTIONS(4688), 1, - anon_sym_LBRACK, + [117916] = 7, + ACTIONS(4828), 1, + anon_sym_as, + ACTIONS(4830), 1, + anon_sym_if, + ACTIONS(4832), 1, + anon_sym_and, + ACTIONS(4834), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2656), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4306), 4, + ACTIONS(4615), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4304), 24, - anon_sym_RPAREN, + ACTIONS(4613), 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, + 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, @@ -218191,44 +219569,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [117253] = 10, - ACTIONS(4676), 1, - anon_sym_DOT, - ACTIONS(4678), 1, - anon_sym_LPAREN, - ACTIONS(4686), 1, - anon_sym_STAR_STAR, - ACTIONS(4688), 1, - anon_sym_LBRACK, + [117966] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4306), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4680), 2, + ACTIONS(4488), 4, anon_sym_STAR, anon_sym_SLASH, - STATE(2656), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4690), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4304), 21, - anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4486), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -218238,140 +219608,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [117310] = 14, - ACTIONS(4676), 1, - anon_sym_DOT, - ACTIONS(4678), 1, - anon_sym_LPAREN, - ACTIONS(4686), 1, - anon_sym_STAR_STAR, - ACTIONS(4688), 1, - anon_sym_LBRACK, - ACTIONS(4696), 1, - anon_sym_AMP, - ACTIONS(4698), 1, - anon_sym_CARET, + [118008] = 7, + ACTIONS(4828), 1, + anon_sym_as, + ACTIONS(4830), 1, + anon_sym_if, + ACTIONS(4832), 1, + anon_sym_and, + ACTIONS(4834), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4306), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4680), 2, + ACTIONS(4623), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4682), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4621), 25, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4692), 2, + 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, - STATE(2656), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4690), 3, - anon_sym_AT, + anon_sym_not, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4304), 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_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, - [117375] = 13, - ACTIONS(4676), 1, - anon_sym_DOT, - ACTIONS(4678), 1, - anon_sym_LPAREN, - ACTIONS(4686), 1, - anon_sym_STAR_STAR, - ACTIONS(4688), 1, - anon_sym_LBRACK, - ACTIONS(4698), 1, - anon_sym_CARET, + [118058] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4306), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4680), 2, + ACTIONS(3911), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4682), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4692), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2656), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4690), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4304), 16, - anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3909), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [117438] = 7, - ACTIONS(4790), 1, - anon_sym_as, - ACTIONS(4792), 1, - anon_sym_if, - ACTIONS(4794), 1, - anon_sym_and, - ACTIONS(4796), 1, - anon_sym_or, + [118100] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4571), 4, + ACTIONS(3918), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4569), 26, + ACTIONS(3913), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, 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, + 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, @@ -218383,16 +219729,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [117489] = 3, + [118142] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4556), 4, + ACTIONS(3883), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4554), 29, + ACTIONS(3878), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -218422,44 +219768,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [117531] = 9, - ACTIONS(4225), 1, - anon_sym_not, - ACTIONS(4390), 1, - anon_sym_is, - STATE(2139), 1, - aux_sym_comparison_operator_repeat1, + [118184] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4237), 2, + ACTIONS(4468), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4392), 2, anon_sym_LT, anon_sym_GT, - STATE(1899), 2, - sym__not_in, - sym__is_not, - ACTIONS(4374), 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(4235), 18, + ACTIONS(4466), 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, @@ -218467,23 +219801,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [117585] = 3, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [118226] = 4, + ACTIONS(1020), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3907), 4, + ACTIONS(1297), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3905), 29, + ACTIONS(1498), 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, @@ -218506,16 +219847,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [117627] = 3, + [118270] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4603), 4, + ACTIONS(4492), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4601), 29, + ACTIONS(4490), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -218545,16 +219886,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [117669] = 3, + [118312] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3888), 4, + ACTIONS(4560), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3886), 29, + ACTIONS(4558), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -218584,16 +219925,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [117711] = 3, + [118354] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4535), 4, + ACTIONS(4648), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4533), 29, + ACTIONS(4646), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -218623,23 +219964,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [117753] = 3, + [118396] = 4, + ACTIONS(3716), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4643), 4, + ACTIONS(3896), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4641), 29, + ACTIONS(3893), 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, @@ -218662,16 +220004,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [117795] = 3, + [118440] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3922), 4, + ACTIONS(4611), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3920), 29, + ACTIONS(4609), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -218701,18 +220043,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [117837] = 4, - ACTIONS(596), 1, + [118482] = 4, + ACTIONS(1020), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1297), 4, + ACTIONS(1005), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1498), 28, + ACTIONS(1003), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -218741,28 +220083,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [117881] = 4, - ACTIONS(3712), 1, - anon_sym_COLON_EQ, + [118526] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3870), 4, + ACTIONS(4568), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3867), 28, + ACTIONS(4566), 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, @@ -218781,16 +220122,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [117925] = 3, + [118568] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3863), 4, + ACTIONS(4480), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3861), 29, + ACTIONS(4478), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -218820,16 +220161,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [117967] = 3, + [118610] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3863), 4, + ACTIONS(4572), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3861), 29, + ACTIONS(4570), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -218859,28 +220200,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [118009] = 4, - ACTIONS(596), 1, - anon_sym_COLON_EQ, + [118652] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(581), 4, + ACTIONS(4631), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(579), 28, + ACTIONS(4629), 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, @@ -218899,97 +220239,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [118053] = 4, - ACTIONS(3712), 1, - anon_sym_COLON_EQ, + [118694] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3710), 4, + ACTIONS(3896), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(3899), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3699), 28, + ACTIONS(3893), 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, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [118097] = 5, - ACTIONS(3918), 1, - anon_sym_from, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3911), 2, + ACTIONS(3891), 15, anon_sym_COMMA, - anon_sym_in, - ACTIONS(3914), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3909), 26, - anon_sym_DOT, - anon_sym_LPAREN, 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_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, - [118143] = 3, + [118740] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3903), 4, + ACTIONS(3868), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3901), 29, + ACTIONS(3863), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -219019,16 +220319,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [118185] = 3, + [118782] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3903), 4, + ACTIONS(4464), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3901), 29, + ACTIONS(4462), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -219058,31 +220358,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [118227] = 4, - ACTIONS(596), 1, - anon_sym_COLON_EQ, + [118824] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1297), 4, + ACTIONS(3907), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1498), 28, + ACTIONS(3905), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -219098,64 +220397,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [118271] = 4, - ACTIONS(3712), 1, - anon_sym_COLON_EQ, + [118866] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3870), 4, + ACTIONS(1297), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1300), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3867), 28, + ACTIONS(1498), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_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(1295), 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, - [118315] = 4, - ACTIONS(596), 1, - anon_sym_COLON_EQ, + [118912] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1297), 4, + ACTIONS(4537), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1498), 28, + ACTIONS(4535), 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, @@ -219178,66 +220477,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [118359] = 6, + [118954] = 9, + ACTIONS(4229), 1, + anon_sym_not, + ACTIONS(4458), 1, + anon_sym_is, + STATE(2169), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3870), 2, + ACTIONS(4271), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3873), 2, + ACTIONS(4460), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3875), 5, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - ACTIONS(3865), 12, - anon_sym_as, - anon_sym_if, + STATE(1936), 2, + sym__not_in, + sym__is_not, + ACTIONS(4442), 6, 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(3867), 12, + ACTIONS(4269), 18, + 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_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [118407] = 4, - ACTIONS(3712), 1, - anon_sym_COLON_EQ, + [119008] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3870), 4, + ACTIONS(4472), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3867), 28, + ACTIONS(4470), 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, @@ -219260,27 +220561,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [118451] = 3, + [119050] = 5, + ACTIONS(3724), 1, + anon_sym_from, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4630), 4, + ACTIONS(3915), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(3918), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4628), 29, + ACTIONS(3913), 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, @@ -219299,16 +220602,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [118493] = 3, + [119096] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4523), 4, + ACTIONS(4476), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4521), 29, + ACTIONS(4474), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -219338,27 +220641,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [118535] = 3, + [119138] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3884), 4, + ACTIONS(4400), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3879), 29, + ACTIONS(4398), 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, @@ -219377,29 +220680,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [118577] = 5, - ACTIONS(3720), 1, - anon_sym_from, + [119180] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3881), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(3884), 4, + ACTIONS(3926), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3879), 26, + ACTIONS(3924), 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, @@ -219418,28 +220719,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [118623] = 7, - ACTIONS(4824), 1, - anon_sym_as, - ACTIONS(4826), 1, - anon_sym_if, - ACTIONS(4828), 1, - anon_sym_and, - ACTIONS(4830), 1, - anon_sym_or, + [119222] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4607), 4, + ACTIONS(4556), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4605), 25, + ACTIONS(4554), 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, @@ -219450,6 +220745,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, @@ -219461,16 +220758,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [118673] = 3, + [119264] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4575), 4, + ACTIONS(4505), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4573), 29, + ACTIONS(4503), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -219500,27 +220797,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [118715] = 3, + [119306] = 4, + ACTIONS(3716), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3895), 4, + ACTIONS(3714), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3890), 29, + ACTIONS(3703), 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, @@ -219539,16 +220837,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [118757] = 3, + [119350] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3914), 4, + ACTIONS(3876), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3909), 29, + ACTIONS(3874), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -219578,37 +220876,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [118799] = 6, - ACTIONS(4828), 1, - anon_sym_and, - ACTIONS(4830), 1, - anon_sym_or, - ACTIONS(4832), 1, - anon_sym_as, + [119392] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4622), 4, + ACTIONS(4404), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4617), 26, + ACTIONS(4402), 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, anon_sym_PLUS, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -219620,70 +220915,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [118847] = 5, - ACTIONS(4828), 1, - anon_sym_and, - ACTIONS(4830), 1, - anon_sym_or, + [119434] = 6, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4579), 4, + ACTIONS(3896), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(3899), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4577), 27, + ACTIONS(3920), 5, anon_sym_DOT, - anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + ACTIONS(3891), 12, anon_sym_as, - anon_sym_GT_GT, 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(3893), 12, + anon_sym_LPAREN, + anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, anon_sym_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, - [118893] = 5, - ACTIONS(3720), 1, - anon_sym_from, + [119482] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3705), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(3710), 4, + ACTIONS(3876), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3699), 26, + ACTIONS(3874), 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, @@ -219702,21 +220996,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [118939] = 5, - ACTIONS(3899), 1, + [119524] = 5, + ACTIONS(3872), 1, anon_sym_from, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3892), 2, + ACTIONS(3865), 2, anon_sym_COMMA, anon_sym_in, - ACTIONS(3895), 4, + ACTIONS(3868), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3890), 26, + ACTIONS(3863), 26, anon_sym_DOT, anon_sym_LPAREN, anon_sym_as, @@ -219743,16 +221037,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [118985] = 3, + [119570] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4511), 4, + ACTIONS(3903), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4509), 29, + ACTIONS(3901), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -219782,16 +221076,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119027] = 3, + [119612] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4567), 4, + ACTIONS(4588), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4565), 29, + ACTIONS(4586), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -219821,16 +221115,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119069] = 3, + [119654] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4615), 4, + ACTIONS(3903), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4613), 29, + ACTIONS(3901), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -219860,27 +221154,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119111] = 3, + [119696] = 4, + ACTIONS(1020), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4215), 4, + ACTIONS(1297), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4201), 29, + ACTIONS(1498), 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, @@ -219899,17 +221194,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119153] = 3, + [119740] = 4, + ACTIONS(3716), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4456), 4, + ACTIONS(3896), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4454), 29, - sym_string_start, + ACTIONS(3893), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -219938,57 +221234,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119195] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1297), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1300), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1498), 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(1295), 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, - [119241] = 3, + [119784] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(581), 4, + ACTIONS(4603), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(579), 29, + ACTIONS(4601), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -220018,16 +221273,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119283] = 3, + [119826] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4548), 4, + ACTIONS(4545), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4546), 29, + ACTIONS(4543), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -220057,16 +221312,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119325] = 3, + [119868] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4552), 4, + ACTIONS(3714), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4550), 29, + ACTIONS(3703), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -220096,16 +221351,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119367] = 3, + [119910] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4595), 4, + ACTIONS(4219), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4593), 29, + ACTIONS(4205), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -220135,20 +221390,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119409] = 3, + [119952] = 4, + ACTIONS(1020), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4396), 4, + ACTIONS(1297), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4394), 29, - sym_string_start, + ACTIONS(1498), 28, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -220159,6 +221414,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, @@ -220174,16 +221430,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119451] = 3, + [119996] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4460), 4, + ACTIONS(4635), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4458), 29, + ACTIONS(4633), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -220213,16 +221469,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119493] = 3, + [120038] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4647), 4, + ACTIONS(4549), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4645), 29, + ACTIONS(4547), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -220252,16 +221508,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119535] = 3, + [120080] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4591), 4, + ACTIONS(4619), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4589), 29, + ACTIONS(4617), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -220291,16 +221547,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119577] = 3, + [120122] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4611), 4, + ACTIONS(4607), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4609), 29, + ACTIONS(4605), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -220330,16 +221586,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119619] = 3, + [120164] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4583), 4, + ACTIONS(4484), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4581), 29, + ACTIONS(4482), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -220369,16 +221625,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119661] = 3, + [120206] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4519), 4, + ACTIONS(4541), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4517), 29, + ACTIONS(4539), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -220408,27 +221664,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119703] = 3, + [120248] = 5, + ACTIONS(3885), 1, + anon_sym_from, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4358), 4, + ACTIONS(3880), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(3883), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4350), 29, + ACTIONS(3878), 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, @@ -220447,34 +221705,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119745] = 4, - ACTIONS(4828), 1, - anon_sym_and, + [120294] = 5, + ACTIONS(3724), 1, + anon_sym_from, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4556), 4, + ACTIONS(3709), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(3714), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4554), 28, + ACTIONS(3703), 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, anon_sym_PLUS, anon_sym_not, + anon_sym_and, anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -220487,28 +221746,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119789] = 7, - ACTIONS(4824), 1, - anon_sym_as, - ACTIONS(4826), 1, - anon_sym_if, - ACTIONS(4828), 1, - anon_sym_and, - ACTIONS(4830), 1, - anon_sym_or, + [120340] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4469), 4, + ACTIONS(4564), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4465), 25, + ACTIONS(4562), 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, @@ -220519,6 +221772,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, @@ -220530,38 +221785,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119839] = 7, - ACTIONS(4824), 1, - anon_sym_as, - ACTIONS(4826), 1, - anon_sym_if, - ACTIONS(4828), 1, - anon_sym_and, - ACTIONS(4830), 1, - anon_sym_or, + [120382] = 22, + ACTIONS(3948), 1, + anon_sym_long, + ACTIONS(4839), 1, + sym_identifier, + ACTIONS(4841), 1, + anon_sym_LPAREN, + ACTIONS(4843), 1, + anon_sym_STAR, + ACTIONS(4845), 1, + anon_sym_COLON, + ACTIONS(4847), 1, + anon_sym_STAR_STAR, + ACTIONS(4849), 1, + anon_sym_SLASH, + STATE(3198), 1, + sym__signedness, + STATE(3409), 1, + sym__longness, + STATE(4198), 1, + sym_c_type, + STATE(4934), 1, + sym_parameter, + STATE(4949), 1, + sym_tuple_pattern, + STATE(5621), 1, + sym_lambda_parameters, + STATE(5733), 1, + sym__parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3944), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(3946), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4851), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3655), 2, + sym_int_type, + sym_function_pointer_type, + STATE(5175), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(3942), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(5172), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [120461] = 22, + ACTIONS(3948), 1, + anon_sym_long, + ACTIONS(4839), 1, + sym_identifier, + ACTIONS(4841), 1, + anon_sym_LPAREN, + ACTIONS(4843), 1, + anon_sym_STAR, + ACTIONS(4847), 1, + anon_sym_STAR_STAR, + ACTIONS(4849), 1, + anon_sym_SLASH, + ACTIONS(4853), 1, + anon_sym_COLON, + STATE(3198), 1, + sym__signedness, + STATE(3409), 1, + sym__longness, + STATE(4198), 1, + sym_c_type, + STATE(4934), 1, + sym_parameter, + STATE(4949), 1, + sym_tuple_pattern, + STATE(5670), 1, + sym_lambda_parameters, + STATE(5733), 1, + sym__parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3944), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(3946), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4851), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3655), 2, + sym_int_type, + sym_function_pointer_type, + STATE(5175), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(3942), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(5172), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [120540] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4571), 4, + ACTIONS(3918), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4569), 25, + ACTIONS(3913), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, - anon_sym_COLON, + 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, @@ -220573,68 +221937,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119889] = 5, + [120581] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3870), 2, + ACTIONS(3883), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3873), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3867), 14, + ACTIONS(3878), 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(3865), 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, - [119935] = 3, + [120622] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4587), 4, + ACTIONS(3868), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4585), 29, + ACTIONS(3863), 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, @@ -220653,66 +222013,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119977] = 3, + [120663] = 21, + ACTIONS(1235), 1, + anon_sym_None, + ACTIONS(1247), 1, + sym_string_start, + ACTIONS(4855), 1, + sym_identifier, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4859), 1, + anon_sym_STAR, + ACTIONS(4861), 1, + anon_sym_if, + ACTIONS(4863), 1, + anon_sym_COLON, + ACTIONS(4865), 1, + anon_sym_STAR_STAR, + ACTIONS(4867), 1, + anon_sym_LBRACK, + ACTIONS(4869), 1, + anon_sym_DASH, + ACTIONS(4873), 1, + anon_sym_LBRACE, + ACTIONS(4875), 1, + sym_integer, + ACTIONS(4877), 1, + sym_float, + STATE(3941), 1, + sym_string, + STATE(4165), 1, + sym_dotted_name, + STATE(4480), 1, + sym_case_pattern, + STATE(5498), 1, + sym_if_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4507), 4, + STATE(4509), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(4871), 3, + anon_sym__, + sym_true, + sym_false, + STATE(4167), 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, + [120740] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1297), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1300), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4505), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(1295), 14, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, 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(1498), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [120019] = 3, + [120785] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4599), 4, + ACTIONS(4549), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4597), 29, + ACTIONS(4547), 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, @@ -220731,27 +222147,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [120061] = 3, + [120826] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4560), 4, + ACTIONS(4564), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4558), 29, + ACTIONS(4562), 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, @@ -220770,27 +222185,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [120103] = 3, + [120867] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4527), 4, + ACTIONS(3714), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4525), 29, + ACTIONS(3703), 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, @@ -220809,27 +222223,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [120145] = 3, + [120908] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4531), 4, + ACTIONS(4219), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4529), 29, + ACTIONS(4205), 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, @@ -220848,66 +222261,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [120187] = 3, + [120949] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4626), 4, + ACTIONS(3913), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(3918), 13, anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4624), 29, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(3724), 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, + [120992] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3703), 3, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, + anon_sym_LBRACK, + ACTIONS(3714), 13, + anon_sym_STAR, anon_sym_GT_GT, - anon_sym_if, + 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(3724), 16, + 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, + [121035] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3878), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(3883), 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(3885), 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, + [121078] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3863), 3, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(3868), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [120229] = 3, + ACTIONS(3872), 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, + [121121] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4515), 4, + ACTIONS(1005), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4513), 29, + ACTIONS(1003), 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, @@ -220926,27 +222455,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [120271] = 3, + [121162] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3710), 4, + ACTIONS(4568), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3699), 29, + ACTIONS(4566), 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, @@ -220962,76 +222490,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [120313] = 22, - ACTIONS(4018), 1, - anon_sym_long, - ACTIONS(4835), 1, - sym_identifier, - ACTIONS(4837), 1, - anon_sym_LPAREN, - ACTIONS(4839), 1, - anon_sym_STAR, - ACTIONS(4841), 1, - anon_sym_COLON, - ACTIONS(4843), 1, - anon_sym_STAR_STAR, - ACTIONS(4845), 1, - anon_sym_SLASH, - STATE(3188), 1, - sym__signedness, - STATE(3410), 1, - sym__longness, - STATE(4280), 1, - sym_c_type, - STATE(4990), 1, - sym_parameter, - STATE(5040), 1, - sym_tuple_pattern, - STATE(5427), 1, - sym_lambda_parameters, - STATE(5630), 1, - sym__parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4014), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(4016), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4847), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3681), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5368), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(4012), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(5283), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [120392] = 3, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [121203] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3903), 4, + ACTIONS(4572), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3901), 28, + ACTIONS(4570), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -221060,86 +222531,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [120433] = 22, - ACTIONS(4018), 1, - anon_sym_long, - ACTIONS(4835), 1, - sym_identifier, - ACTIONS(4837), 1, - anon_sym_LPAREN, - ACTIONS(4839), 1, - anon_sym_STAR, - ACTIONS(4843), 1, - anon_sym_STAR_STAR, - ACTIONS(4845), 1, - anon_sym_SLASH, - ACTIONS(4849), 1, - anon_sym_COLON, - STATE(3188), 1, - sym__signedness, - STATE(3410), 1, - sym__longness, - STATE(4280), 1, - sym_c_type, - STATE(4990), 1, - sym_parameter, - STATE(5040), 1, - sym_tuple_pattern, - STATE(5630), 1, - sym__parameters, - STATE(5631), 1, - sym_lambda_parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4014), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(4016), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4847), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3681), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5368), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(4012), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(5283), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [120512] = 7, - ACTIONS(4851), 1, - anon_sym_as, - ACTIONS(4853), 1, - anon_sym_if, - ACTIONS(4855), 1, - anon_sym_and, - ACTIONS(4857), 1, - anon_sym_or, + [121244] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4607), 4, + ACTIONS(4635), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4605), 24, + ACTIONS(4633), 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, @@ -221148,6 +222556,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, @@ -221159,65 +222569,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [120561] = 4, + [121285] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3890), 3, + ACTIONS(4476), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4474), 28, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(3895), 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(3899), 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, - [120604] = 6, - ACTIONS(4855), 1, - anon_sym_and, - ACTIONS(4857), 1, - anon_sym_or, - ACTIONS(4859), 1, - anon_sym_as, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [121326] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4622), 4, + ACTIONS(4505), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4617), 25, + ACTIONS(4503), 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, @@ -221228,6 +222632,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, @@ -221239,74 +222645,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [120651] = 21, - ACTIONS(1235), 1, - anon_sym_None, - ACTIONS(1247), 1, - sym_string_start, - ACTIONS(4862), 1, - sym_identifier, - ACTIONS(4864), 1, - anon_sym_LPAREN, - ACTIONS(4866), 1, - anon_sym_STAR, - ACTIONS(4868), 1, - anon_sym_if, - ACTIONS(4870), 1, - anon_sym_COLON, - ACTIONS(4872), 1, - anon_sym_STAR_STAR, - ACTIONS(4874), 1, - anon_sym_LBRACK, - ACTIONS(4876), 1, - anon_sym_DASH, - ACTIONS(4880), 1, - anon_sym_LBRACE, - ACTIONS(4882), 1, - sym_integer, - ACTIONS(4884), 1, - sym_float, - STATE(3959), 1, - sym_string, - STATE(4213), 1, - sym_dotted_name, - STATE(4505), 1, - sym_case_pattern, - STATE(5423), 1, - sym_if_clause, + [121367] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4606), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(4878), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4219), 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, - [120728] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3870), 4, + ACTIONS(4545), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3867), 28, + ACTIONS(4543), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -221317,7 +222668,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, @@ -221333,20 +222683,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [120769] = 5, - ACTIONS(4855), 1, - anon_sym_and, - ACTIONS(4857), 1, - anon_sym_or, + [121408] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4579), 4, + ACTIONS(4560), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4577), 26, + ACTIONS(4558), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -221362,6 +222708,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, @@ -221373,18 +222721,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [120814] = 4, - ACTIONS(4855), 1, - anon_sym_and, + [121449] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4556), 4, + ACTIONS(4484), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4554), 27, + ACTIONS(4482), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -221400,6 +222746,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, @@ -221412,55 +222759,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [120857] = 4, + [121490] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3909), 3, + ACTIONS(4588), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4586), 28, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(3914), 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(3918), 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, - [120900] = 3, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [121531] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(581), 4, + ACTIONS(4607), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(579), 28, + ACTIONS(4605), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -221489,29 +222835,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [120941] = 7, - ACTIONS(4851), 1, - anon_sym_as, - ACTIONS(4853), 1, - anon_sym_if, - ACTIONS(4855), 1, - anon_sym_and, - ACTIONS(4857), 1, - anon_sym_or, + [121572] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4469), 4, + ACTIONS(4358), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4465), 24, + ACTIONS(4350), 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, @@ -221520,6 +222860,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, @@ -221531,16 +222873,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [120990] = 3, + [121613] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4548), 4, + ACTIONS(4541), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4546), 28, + ACTIONS(4539), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -221569,16 +222911,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [121031] = 3, + [121654] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4552), 4, + ACTIONS(4627), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4550), 28, + ACTIONS(4625), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -221607,86 +222949,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [121072] = 22, - ACTIONS(4018), 1, - anon_sym_long, - ACTIONS(4835), 1, - sym_identifier, - ACTIONS(4837), 1, - anon_sym_LPAREN, - ACTIONS(4839), 1, - anon_sym_STAR, - ACTIONS(4843), 1, - anon_sym_STAR_STAR, - ACTIONS(4845), 1, - anon_sym_SLASH, - ACTIONS(4886), 1, - anon_sym_COLON, - STATE(3188), 1, - sym__signedness, - STATE(3410), 1, - sym__longness, - STATE(4280), 1, - sym_c_type, - STATE(4990), 1, - sym_parameter, - STATE(5040), 1, - sym_tuple_pattern, - STATE(5630), 1, - sym__parameters, - STATE(5704), 1, - sym_lambda_parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4014), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(4016), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4847), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3681), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5368), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(4012), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(5283), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [121151] = 7, - ACTIONS(4851), 1, - anon_sym_as, - ACTIONS(4853), 1, - anon_sym_if, - ACTIONS(4855), 1, - anon_sym_and, - ACTIONS(4857), 1, - anon_sym_or, + [121695] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4571), 4, + ACTIONS(4648), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4569), 24, + ACTIONS(4646), 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, @@ -221695,6 +222974,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, @@ -221706,227 +222987,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [121200] = 5, + [121736] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1297), 2, + ACTIONS(4464), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1300), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1295), 14, + ACTIONS(4462), 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, - ACTIONS(1498), 14, + [121777] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4472), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4470), 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, - [121245] = 22, - ACTIONS(4018), 1, - anon_sym_long, - ACTIONS(4835), 1, - sym_identifier, - ACTIONS(4837), 1, - anon_sym_LPAREN, - ACTIONS(4839), 1, - anon_sym_STAR, - ACTIONS(4843), 1, - anon_sym_STAR_STAR, - ACTIONS(4845), 1, - anon_sym_SLASH, - ACTIONS(4888), 1, - anon_sym_COLON, - STATE(3188), 1, - sym__signedness, - STATE(3410), 1, - sym__longness, - STATE(4280), 1, - sym_c_type, - STATE(4990), 1, - sym_parameter, - STATE(5040), 1, - sym_tuple_pattern, - STATE(5395), 1, - sym_lambda_parameters, - STATE(5630), 1, - sym__parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4014), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(4016), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4847), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3681), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5368), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(4012), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(5283), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [121324] = 22, - ACTIONS(4018), 1, - anon_sym_long, - ACTIONS(4835), 1, - sym_identifier, - ACTIONS(4837), 1, - anon_sym_LPAREN, - ACTIONS(4839), 1, - anon_sym_STAR, - ACTIONS(4843), 1, - anon_sym_STAR_STAR, - ACTIONS(4845), 1, - anon_sym_SLASH, - ACTIONS(4890), 1, - anon_sym_COLON, - STATE(3188), 1, - sym__signedness, - STATE(3410), 1, - sym__longness, - STATE(4280), 1, - sym_c_type, - STATE(4990), 1, - sym_parameter, - STATE(5040), 1, - sym_tuple_pattern, - STATE(5612), 1, - sym_lambda_parameters, - STATE(5630), 1, - sym__parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4014), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(4016), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4847), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3681), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5368), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(4012), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(5283), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [121403] = 22, - ACTIONS(4018), 1, - anon_sym_long, - ACTIONS(4835), 1, - sym_identifier, - ACTIONS(4837), 1, - anon_sym_LPAREN, - ACTIONS(4839), 1, - anon_sym_STAR, - ACTIONS(4843), 1, - anon_sym_STAR_STAR, - ACTIONS(4845), 1, - anon_sym_SLASH, - ACTIONS(4892), 1, - anon_sym_COLON, - STATE(3188), 1, - sym__signedness, - STATE(3410), 1, - sym__longness, - STATE(4280), 1, - sym_c_type, - STATE(4990), 1, - sym_parameter, - STATE(5040), 1, - sym_tuple_pattern, - STATE(5407), 1, - sym_lambda_parameters, - STATE(5630), 1, - sym__parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4014), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(4016), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4847), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3681), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5368), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(4012), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(5283), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [121482] = 3, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [121818] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3903), 4, + ACTIONS(4556), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3901), 28, + ACTIONS(4554), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -221955,16 +223101,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [121523] = 3, + [121859] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3895), 4, + ACTIONS(4603), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3890), 28, + ACTIONS(4601), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -221993,16 +223139,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [121564] = 3, + [121900] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3914), 4, + ACTIONS(4619), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3909), 28, + ACTIONS(4617), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -222031,16 +223177,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [121605] = 3, + [121941] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4595), 4, + ACTIONS(4488), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4593), 28, + ACTIONS(4486), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -222069,130 +223215,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [121646] = 22, - ACTIONS(4018), 1, - anon_sym_long, - ACTIONS(4835), 1, - sym_identifier, - ACTIONS(4837), 1, - anon_sym_LPAREN, - ACTIONS(4839), 1, - anon_sym_STAR, - ACTIONS(4843), 1, - anon_sym_STAR_STAR, - ACTIONS(4845), 1, - anon_sym_SLASH, - ACTIONS(4894), 1, - anon_sym_COLON, - STATE(3188), 1, - sym__signedness, - STATE(3410), 1, - sym__longness, - STATE(4280), 1, - sym_c_type, - STATE(4990), 1, - sym_parameter, - STATE(5040), 1, - sym_tuple_pattern, - STATE(5443), 1, - sym_lambda_parameters, - STATE(5630), 1, - sym__parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4014), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(4016), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4847), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3681), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5368), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(4012), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(5283), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [121725] = 22, - ACTIONS(4018), 1, - anon_sym_long, - ACTIONS(4835), 1, - sym_identifier, - ACTIONS(4837), 1, - anon_sym_LPAREN, - ACTIONS(4839), 1, - anon_sym_STAR, - ACTIONS(4843), 1, - anon_sym_STAR_STAR, - ACTIONS(4845), 1, - anon_sym_SLASH, - ACTIONS(4896), 1, - anon_sym_COLON, - STATE(3188), 1, - sym__signedness, - STATE(3410), 1, - sym__longness, - STATE(4280), 1, - sym_c_type, - STATE(4990), 1, - sym_parameter, - STATE(5040), 1, - sym_tuple_pattern, - STATE(5456), 1, - sym_lambda_parameters, - STATE(5630), 1, - sym__parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4014), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(4016), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4847), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3681), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5368), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(4012), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(5283), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [121804] = 3, + [121982] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4460), 4, + ACTIONS(4468), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4458), 28, + ACTIONS(4466), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -222221,16 +223253,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [121845] = 3, + [122023] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4647), 4, + ACTIONS(4492), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4645), 28, + ACTIONS(4490), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -222259,115 +223291,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [121886] = 22, - ACTIONS(4018), 1, - anon_sym_long, - ACTIONS(4835), 1, - sym_identifier, - ACTIONS(4837), 1, - anon_sym_LPAREN, - ACTIONS(4839), 1, - anon_sym_STAR, - ACTIONS(4843), 1, - anon_sym_STAR_STAR, - ACTIONS(4845), 1, - anon_sym_SLASH, - ACTIONS(4898), 1, - anon_sym_COLON, - STATE(3188), 1, - sym__signedness, - STATE(3410), 1, - sym__longness, - STATE(4280), 1, - sym_c_type, - STATE(4990), 1, - sym_parameter, - STATE(5040), 1, - sym_tuple_pattern, - STATE(5470), 1, - sym_lambda_parameters, - STATE(5630), 1, - sym__parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4014), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(4016), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4847), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3681), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5368), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(4012), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(5283), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [121965] = 7, - ACTIONS(3877), 1, - anon_sym_EQ, + [122064] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3870), 2, + ACTIONS(4611), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3873), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3875), 3, + ACTIONS(4609), 28, anon_sym_DOT, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(3865), 12, + 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(3867), 12, - anon_sym_LPAREN, - anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [122014] = 3, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [122105] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4591), 4, + ACTIONS(4631), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4589), 28, + ACTIONS(4629), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -222396,73 +223367,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [122055] = 22, - ACTIONS(4018), 1, - anon_sym_long, - ACTIONS(4835), 1, - sym_identifier, - ACTIONS(4837), 1, - anon_sym_LPAREN, - ACTIONS(4839), 1, - anon_sym_STAR, - ACTIONS(4843), 1, - anon_sym_STAR_STAR, - ACTIONS(4845), 1, - anon_sym_SLASH, - ACTIONS(4900), 1, - anon_sym_COLON, - STATE(3188), 1, - sym__signedness, - STATE(3410), 1, - sym__longness, - STATE(4280), 1, - sym_c_type, - STATE(4990), 1, - sym_parameter, - STATE(5040), 1, - sym_tuple_pattern, - STATE(5529), 1, - sym_lambda_parameters, - STATE(5630), 1, - sym__parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4014), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(4016), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4847), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3681), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5368), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(4012), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(5283), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [122134] = 3, + [122146] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4611), 4, + ACTIONS(3911), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4609), 28, + ACTIONS(3909), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -222491,16 +223405,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [122175] = 3, + [122187] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4583), 4, + ACTIONS(4480), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4581), 28, + ACTIONS(4478), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -222529,16 +223443,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [122216] = 3, + [122228] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3922), 4, + ACTIONS(3907), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3920), 28, + ACTIONS(3905), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -222567,16 +223481,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [122257] = 3, + [122269] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4519), 4, + ACTIONS(4537), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4517), 28, + ACTIONS(4535), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -222605,16 +223519,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [122298] = 3, + [122310] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4556), 4, + ACTIONS(3926), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4554), 28, + ACTIONS(3924), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -222643,16 +223557,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [122339] = 3, + [122351] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4358), 4, + ACTIONS(3876), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4350), 28, + ACTIONS(3874), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -222681,16 +223595,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [122380] = 3, + [122392] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3884), 4, + ACTIONS(3876), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3879), 28, + ACTIONS(3874), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -222719,55 +223633,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [122421] = 4, + [122433] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(579), 3, + ACTIONS(3903), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3901), 28, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(581), 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(612), 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, - [122464] = 3, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [122474] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4507), 4, + ACTIONS(3903), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4505), 28, + ACTIONS(3901), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -222796,149 +223709,457 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [122505] = 22, - ACTIONS(4018), 1, + [122515] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3896), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3899), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3891), 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, + ACTIONS(3893), 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, + [122560] = 22, + ACTIONS(3948), 1, anon_sym_long, - ACTIONS(4835), 1, + ACTIONS(4839), 1, sym_identifier, - ACTIONS(4837), 1, + ACTIONS(4841), 1, anon_sym_LPAREN, - ACTIONS(4839), 1, - anon_sym_STAR, ACTIONS(4843), 1, + anon_sym_STAR, + ACTIONS(4847), 1, anon_sym_STAR_STAR, - ACTIONS(4845), 1, + ACTIONS(4849), 1, anon_sym_SLASH, - ACTIONS(4902), 1, + ACTIONS(4879), 1, anon_sym_COLON, - STATE(3188), 1, + STATE(3198), 1, sym__signedness, - STATE(3410), 1, + STATE(3409), 1, sym__longness, - STATE(4280), 1, + STATE(4198), 1, sym_c_type, - STATE(4990), 1, + STATE(4934), 1, sym_parameter, - STATE(5040), 1, + STATE(4949), 1, sym_tuple_pattern, - STATE(5389), 1, + STATE(5676), 1, sym_lambda_parameters, - STATE(5630), 1, + STATE(5733), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4014), 2, + ACTIONS(3944), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4016), 2, + ACTIONS(3946), 2, anon_sym_char, anon_sym_short, - ACTIONS(4847), 2, + ACTIONS(4851), 2, anon_sym_const, anon_sym_volatile, - STATE(3681), 2, + STATE(3655), 2, sym_int_type, sym_function_pointer_type, - STATE(5368), 2, + STATE(5175), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - ACTIONS(4012), 3, + ACTIONS(3942), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(5283), 5, + STATE(5172), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [122584] = 3, + [122639] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4599), 4, + ACTIONS(3911), 13, anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4597), 28, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(3909), 19, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, + 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, + [122680] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3907), 13, + 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_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(3905), 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, + [122721] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3926), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [122625] = 3, + ACTIONS(3924), 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, + [122762] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4560), 4, + ACTIONS(3876), 13, anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4558), 28, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(3874), 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, + [122803] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3876), 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(3874), 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, + [122844] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3903), 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(3901), 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, + [122885] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3903), 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(3901), 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, + [122926] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1498), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1297), 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(1295), 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, + [122969] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3893), 3, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, + anon_sym_LBRACK, + ACTIONS(3896), 13, + anon_sym_STAR, 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, - [122666] = 3, + ACTIONS(3891), 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, + [123012] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4527), 4, + ACTIONS(3896), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4525), 28, + ACTIONS(3893), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -222967,19 +224188,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [122707] = 3, + [123053] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4531), 4, + ACTIONS(3896), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4529), 28, + ACTIONS(3893), 28, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -222987,6 +224207,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, @@ -223005,19 +224226,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [122748] = 3, + [123094] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4626), 4, + ACTIONS(3896), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4624), 28, + ACTIONS(3893), 28, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -223028,6 +224248,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, @@ -223043,61 +224264,238 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [122789] = 3, + [123135] = 22, + ACTIONS(3948), 1, + anon_sym_long, + ACTIONS(4839), 1, + sym_identifier, + ACTIONS(4841), 1, + anon_sym_LPAREN, + ACTIONS(4843), 1, + anon_sym_STAR, + ACTIONS(4847), 1, + anon_sym_STAR_STAR, + ACTIONS(4849), 1, + anon_sym_SLASH, + ACTIONS(4881), 1, + anon_sym_COLON, + STATE(3198), 1, + sym__signedness, + STATE(3409), 1, + sym__longness, + STATE(4198), 1, + sym_c_type, + STATE(4934), 1, + sym_parameter, + STATE(4949), 1, + sym_tuple_pattern, + STATE(5528), 1, + sym_lambda_parameters, + STATE(5733), 1, + sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4515), 4, + ACTIONS(3944), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(3946), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4851), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3655), 2, + sym_int_type, + sym_function_pointer_type, + STATE(5175), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(3942), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(5172), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [123214] = 22, + ACTIONS(3948), 1, + anon_sym_long, + ACTIONS(4839), 1, + sym_identifier, + ACTIONS(4841), 1, + anon_sym_LPAREN, + ACTIONS(4843), 1, anon_sym_STAR, + ACTIONS(4847), 1, + anon_sym_STAR_STAR, + ACTIONS(4849), 1, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4513), 28, + ACTIONS(4883), 1, + anon_sym_COLON, + STATE(3198), 1, + sym__signedness, + STATE(3409), 1, + sym__longness, + STATE(4198), 1, + sym_c_type, + STATE(4934), 1, + sym_parameter, + STATE(4949), 1, + sym_tuple_pattern, + STATE(5395), 1, + sym_lambda_parameters, + STATE(5733), 1, + sym__parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3944), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(3946), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4851), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3655), 2, + sym_int_type, + sym_function_pointer_type, + STATE(5175), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(3942), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(5172), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [123293] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1003), 3, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, + anon_sym_LBRACK, + ACTIONS(1005), 13, + anon_sym_STAR, 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, - [122830] = 3, + ACTIONS(1039), 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, + [123336] = 21, + ACTIONS(1235), 1, + anon_sym_None, + ACTIONS(1247), 1, + sym_string_start, + ACTIONS(4855), 1, + sym_identifier, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4859), 1, + anon_sym_STAR, + ACTIONS(4861), 1, + anon_sym_if, + ACTIONS(4865), 1, + anon_sym_STAR_STAR, + ACTIONS(4867), 1, + anon_sym_LBRACK, + ACTIONS(4869), 1, + anon_sym_DASH, + ACTIONS(4873), 1, + anon_sym_LBRACE, + ACTIONS(4875), 1, + sym_integer, + ACTIONS(4877), 1, + sym_float, + ACTIONS(4885), 1, + anon_sym_COLON, + STATE(3941), 1, + sym_string, + STATE(4165), 1, + sym_dotted_name, + STATE(4480), 1, + sym_case_pattern, + STATE(5564), 1, + sym_if_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4615), 4, + STATE(4509), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(4871), 3, + anon_sym__, + sym_true, + sym_false, + STATE(4167), 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, + [123413] = 7, + ACTIONS(4887), 1, + anon_sym_as, + ACTIONS(4889), 1, + anon_sym_if, + ACTIONS(4891), 1, + anon_sym_and, + ACTIONS(4893), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4578), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4613), 28, + ACTIONS(4574), 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, @@ -223106,8 +224504,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, @@ -223119,21 +224515,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [122871] = 3, + [123462] = 6, + ACTIONS(4891), 1, + anon_sym_and, + ACTIONS(4893), 1, + anon_sym_or, + ACTIONS(4895), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4643), 4, + ACTIONS(4595), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4641), 28, + ACTIONS(4590), 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, @@ -223144,8 +224545,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, @@ -223157,73 +224556,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [122912] = 22, - ACTIONS(4018), 1, - anon_sym_long, - ACTIONS(4835), 1, - sym_identifier, - ACTIONS(4837), 1, - anon_sym_LPAREN, - ACTIONS(4839), 1, - anon_sym_STAR, - ACTIONS(4843), 1, - anon_sym_STAR_STAR, - ACTIONS(4845), 1, - anon_sym_SLASH, - ACTIONS(4904), 1, - anon_sym_COLON, - STATE(3188), 1, - sym__signedness, - STATE(3410), 1, - sym__longness, - STATE(4280), 1, - sym_c_type, - STATE(4990), 1, - sym_parameter, - STATE(5040), 1, - sym_tuple_pattern, - STATE(5457), 1, - sym_lambda_parameters, - STATE(5630), 1, - sym__parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4014), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(4016), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4847), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3681), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5368), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(4012), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(5283), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [122991] = 3, + [123509] = 5, + ACTIONS(4891), 1, + anon_sym_and, + ACTIONS(4893), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4587), 4, + ACTIONS(4599), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4585), 28, + ACTIONS(4597), 26, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -223239,8 +224585,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, @@ -223252,16 +224596,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [123032] = 3, + [123554] = 4, + ACTIONS(4891), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3863), 4, + ACTIONS(4607), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3861), 28, + ACTIONS(4605), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -223277,7 +224623,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, @@ -223290,23 +224635,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [123073] = 3, + [123597] = 7, + ACTIONS(4887), 1, + anon_sym_as, + ACTIONS(4889), 1, + anon_sym_if, + ACTIONS(4891), 1, + anon_sym_and, + ACTIONS(4893), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4630), 4, + ACTIONS(4615), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4628), 28, + ACTIONS(4613), 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, @@ -223315,8 +224666,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, @@ -223328,23 +224677,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [123114] = 3, + [123646] = 7, + ACTIONS(4887), 1, + anon_sym_as, + ACTIONS(4889), 1, + anon_sym_if, + ACTIONS(4891), 1, + anon_sym_and, + ACTIONS(4893), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4523), 4, + ACTIONS(4623), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4521), 28, + ACTIONS(4621), 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, @@ -223353,8 +224708,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, @@ -223366,1682 +224719,1188 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [123155] = 22, - ACTIONS(4018), 1, + [123695] = 22, + ACTIONS(3948), 1, anon_sym_long, - ACTIONS(4835), 1, + ACTIONS(4839), 1, sym_identifier, - ACTIONS(4837), 1, + ACTIONS(4841), 1, anon_sym_LPAREN, - ACTIONS(4839), 1, - anon_sym_STAR, ACTIONS(4843), 1, + anon_sym_STAR, + ACTIONS(4847), 1, anon_sym_STAR_STAR, - ACTIONS(4845), 1, + ACTIONS(4849), 1, anon_sym_SLASH, - ACTIONS(4906), 1, + ACTIONS(4898), 1, anon_sym_COLON, - STATE(3188), 1, + STATE(3198), 1, sym__signedness, - STATE(3410), 1, + STATE(3409), 1, sym__longness, - STATE(4280), 1, + STATE(4198), 1, sym_c_type, - STATE(4990), 1, + STATE(4934), 1, sym_parameter, - STATE(5040), 1, + STATE(4949), 1, sym_tuple_pattern, - STATE(5477), 1, + STATE(5637), 1, sym_lambda_parameters, - STATE(5630), 1, + STATE(5733), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4014), 2, + ACTIONS(3944), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4016), 2, + ACTIONS(3946), 2, anon_sym_char, anon_sym_short, - ACTIONS(4847), 2, + ACTIONS(4851), 2, anon_sym_const, anon_sym_volatile, - STATE(3681), 2, + STATE(3655), 2, sym_int_type, sym_function_pointer_type, - STATE(5368), 2, + STATE(5175), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - ACTIONS(4012), 3, + ACTIONS(3942), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(5283), 5, + STATE(5172), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [123234] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3907), 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(3905), 19, - anon_sym_DOT, + [123774] = 22, + ACTIONS(3948), 1, + anon_sym_long, + ACTIONS(4839), 1, + sym_identifier, + ACTIONS(4841), 1, 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, - [123275] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3888), 13, + ACTIONS(4843), 1, anon_sym_STAR, - anon_sym_GT_GT, + ACTIONS(4847), 1, anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, + ACTIONS(4849), 1, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(3886), 19, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(4900), 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, - [123316] = 3, + STATE(3198), 1, + sym__signedness, + STATE(3409), 1, + sym__longness, + STATE(4198), 1, + sym_c_type, + STATE(4934), 1, + sym_parameter, + STATE(4949), 1, + sym_tuple_pattern, + STATE(5562), 1, + sym_lambda_parameters, + STATE(5733), 1, + sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3922), 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(3920), 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, - [123357] = 22, - ACTIONS(4018), 1, + ACTIONS(3944), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(3946), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4851), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3655), 2, + sym_int_type, + sym_function_pointer_type, + STATE(5175), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(3942), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(5172), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [123853] = 22, + ACTIONS(3948), 1, anon_sym_long, - ACTIONS(4835), 1, + ACTIONS(4839), 1, sym_identifier, - ACTIONS(4837), 1, + ACTIONS(4841), 1, anon_sym_LPAREN, - ACTIONS(4839), 1, - anon_sym_STAR, ACTIONS(4843), 1, + anon_sym_STAR, + ACTIONS(4847), 1, anon_sym_STAR_STAR, - ACTIONS(4845), 1, + ACTIONS(4849), 1, anon_sym_SLASH, - ACTIONS(4908), 1, + ACTIONS(4902), 1, anon_sym_COLON, - STATE(3188), 1, + STATE(3198), 1, sym__signedness, - STATE(3410), 1, + STATE(3409), 1, sym__longness, - STATE(4280), 1, + STATE(4198), 1, sym_c_type, - STATE(4990), 1, + STATE(4934), 1, sym_parameter, - STATE(5040), 1, + STATE(4949), 1, sym_tuple_pattern, - STATE(5502), 1, + STATE(5534), 1, sym_lambda_parameters, - STATE(5630), 1, + STATE(5733), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4014), 2, + ACTIONS(3944), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4016), 2, + ACTIONS(3946), 2, anon_sym_char, anon_sym_short, - ACTIONS(4847), 2, + ACTIONS(4851), 2, anon_sym_const, anon_sym_volatile, - STATE(3681), 2, + STATE(3655), 2, sym_int_type, sym_function_pointer_type, - STATE(5368), 2, + STATE(5175), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - ACTIONS(4012), 3, + ACTIONS(3942), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(5283), 5, + STATE(5172), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [123436] = 22, - ACTIONS(4018), 1, + [123932] = 22, + ACTIONS(3948), 1, anon_sym_long, - ACTIONS(4835), 1, + ACTIONS(4839), 1, sym_identifier, - ACTIONS(4837), 1, + ACTIONS(4841), 1, anon_sym_LPAREN, - ACTIONS(4839), 1, - anon_sym_STAR, ACTIONS(4843), 1, + anon_sym_STAR, + ACTIONS(4847), 1, anon_sym_STAR_STAR, - ACTIONS(4845), 1, + ACTIONS(4849), 1, anon_sym_SLASH, - ACTIONS(4910), 1, + ACTIONS(4904), 1, anon_sym_COLON, - STATE(3188), 1, + STATE(3198), 1, sym__signedness, - STATE(3410), 1, + STATE(3409), 1, sym__longness, - STATE(4280), 1, + STATE(4198), 1, sym_c_type, - STATE(4990), 1, + STATE(4934), 1, sym_parameter, - STATE(5040), 1, + STATE(4949), 1, sym_tuple_pattern, - STATE(5562), 1, - sym_lambda_parameters, - STATE(5630), 1, + STATE(5733), 1, sym__parameters, + STATE(5741), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4014), 2, + ACTIONS(3944), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4016), 2, + ACTIONS(3946), 2, anon_sym_char, anon_sym_short, - ACTIONS(4847), 2, + ACTIONS(4851), 2, anon_sym_const, anon_sym_volatile, - STATE(3681), 2, + STATE(3655), 2, sym_int_type, sym_function_pointer_type, - STATE(5368), 2, + STATE(5175), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - ACTIONS(4012), 3, + ACTIONS(3942), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(5283), 5, + STATE(5172), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [123515] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3863), 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(3861), 19, - anon_sym_DOT, + [124011] = 22, + ACTIONS(3948), 1, + anon_sym_long, + ACTIONS(4839), 1, + sym_identifier, + ACTIONS(4841), 1, 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, - [123556] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3863), 13, + ACTIONS(4843), 1, anon_sym_STAR, - anon_sym_GT_GT, + ACTIONS(4847), 1, anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, + ACTIONS(4849), 1, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(3861), 19, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(4906), 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, - [123597] = 5, + STATE(3198), 1, + sym__signedness, + STATE(3409), 1, + sym__longness, + STATE(4198), 1, + sym_c_type, + STATE(4934), 1, + sym_parameter, + STATE(4949), 1, + sym_tuple_pattern, + STATE(5458), 1, + sym_lambda_parameters, + STATE(5733), 1, + sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3870), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3873), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3865), 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, - ACTIONS(3867), 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, - [123642] = 22, - ACTIONS(4018), 1, + ACTIONS(3944), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(3946), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4851), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3655), 2, + sym_int_type, + sym_function_pointer_type, + STATE(5175), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(3942), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(5172), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [124090] = 22, + ACTIONS(3948), 1, anon_sym_long, - ACTIONS(4835), 1, + ACTIONS(4839), 1, sym_identifier, - ACTIONS(4837), 1, + ACTIONS(4841), 1, anon_sym_LPAREN, - ACTIONS(4839), 1, - anon_sym_STAR, ACTIONS(4843), 1, + anon_sym_STAR, + ACTIONS(4847), 1, anon_sym_STAR_STAR, - ACTIONS(4845), 1, + ACTIONS(4849), 1, anon_sym_SLASH, - ACTIONS(4912), 1, + ACTIONS(4908), 1, anon_sym_COLON, - STATE(3188), 1, + STATE(3198), 1, sym__signedness, - STATE(3410), 1, + STATE(3409), 1, sym__longness, - STATE(4280), 1, + STATE(4198), 1, sym_c_type, - STATE(4990), 1, + STATE(4934), 1, sym_parameter, - STATE(5040), 1, + STATE(4949), 1, sym_tuple_pattern, - STATE(5567), 1, + STATE(5480), 1, sym_lambda_parameters, - STATE(5630), 1, + STATE(5733), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4014), 2, + ACTIONS(3944), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4016), 2, + ACTIONS(3946), 2, anon_sym_char, anon_sym_short, - ACTIONS(4847), 2, + ACTIONS(4851), 2, anon_sym_const, anon_sym_volatile, - STATE(3681), 2, + STATE(3655), 2, sym_int_type, sym_function_pointer_type, - STATE(5368), 2, + STATE(5175), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - ACTIONS(4012), 3, + ACTIONS(3942), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(5283), 5, + STATE(5172), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [123721] = 22, - ACTIONS(4018), 1, + [124169] = 22, + ACTIONS(3948), 1, anon_sym_long, - ACTIONS(4835), 1, + ACTIONS(4839), 1, sym_identifier, - ACTIONS(4837), 1, + ACTIONS(4841), 1, anon_sym_LPAREN, - ACTIONS(4839), 1, - anon_sym_STAR, ACTIONS(4843), 1, + anon_sym_STAR, + ACTIONS(4847), 1, anon_sym_STAR_STAR, - ACTIONS(4845), 1, + ACTIONS(4849), 1, anon_sym_SLASH, - ACTIONS(4914), 1, + ACTIONS(4910), 1, anon_sym_COLON, - STATE(3188), 1, + STATE(3198), 1, sym__signedness, - STATE(3410), 1, + STATE(3409), 1, sym__longness, - STATE(4280), 1, + STATE(4198), 1, sym_c_type, - STATE(4990), 1, + STATE(4934), 1, sym_parameter, - STATE(5040), 1, + STATE(4949), 1, sym_tuple_pattern, - STATE(5630), 1, - sym__parameters, - STATE(5695), 1, + STATE(5427), 1, sym_lambda_parameters, + STATE(5733), 1, + sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4014), 2, + ACTIONS(3944), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4016), 2, + ACTIONS(3946), 2, anon_sym_char, anon_sym_short, - ACTIONS(4847), 2, + ACTIONS(4851), 2, anon_sym_const, anon_sym_volatile, - STATE(3681), 2, + STATE(3655), 2, sym_int_type, sym_function_pointer_type, - STATE(5368), 2, + STATE(5175), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - ACTIONS(4012), 3, + ACTIONS(3942), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(5283), 5, + STATE(5172), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [123800] = 22, - ACTIONS(4018), 1, + [124248] = 22, + ACTIONS(3948), 1, anon_sym_long, - ACTIONS(4835), 1, + ACTIONS(4839), 1, sym_identifier, - ACTIONS(4837), 1, + ACTIONS(4841), 1, anon_sym_LPAREN, - ACTIONS(4839), 1, - anon_sym_STAR, ACTIONS(4843), 1, + anon_sym_STAR, + ACTIONS(4847), 1, anon_sym_STAR_STAR, - ACTIONS(4845), 1, + ACTIONS(4849), 1, anon_sym_SLASH, - ACTIONS(4916), 1, + ACTIONS(4912), 1, anon_sym_COLON, - STATE(3188), 1, + STATE(3198), 1, sym__signedness, - STATE(3410), 1, + STATE(3409), 1, sym__longness, - STATE(4280), 1, + STATE(4198), 1, sym_c_type, - STATE(4990), 1, + STATE(4934), 1, sym_parameter, - STATE(5040), 1, + STATE(4949), 1, sym_tuple_pattern, - STATE(5501), 1, + STATE(5474), 1, sym_lambda_parameters, - STATE(5630), 1, + STATE(5733), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4014), 2, + ACTIONS(3944), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4016), 2, + ACTIONS(3946), 2, anon_sym_char, anon_sym_short, - ACTIONS(4847), 2, + ACTIONS(4851), 2, anon_sym_const, anon_sym_volatile, - STATE(3681), 2, + STATE(3655), 2, sym_int_type, sym_function_pointer_type, - STATE(5368), 2, + STATE(5175), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - ACTIONS(4012), 3, + ACTIONS(3942), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(5283), 5, + STATE(5172), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [123879] = 21, - ACTIONS(1235), 1, - anon_sym_None, - ACTIONS(1247), 1, - sym_string_start, - ACTIONS(4862), 1, + [124327] = 22, + ACTIONS(3948), 1, + anon_sym_long, + ACTIONS(4839), 1, sym_identifier, - ACTIONS(4864), 1, + ACTIONS(4841), 1, anon_sym_LPAREN, - ACTIONS(4866), 1, - anon_sym_STAR, - ACTIONS(4868), 1, - anon_sym_if, - ACTIONS(4872), 1, - anon_sym_STAR_STAR, - ACTIONS(4874), 1, - anon_sym_LBRACK, - ACTIONS(4876), 1, - anon_sym_DASH, - ACTIONS(4880), 1, - anon_sym_LBRACE, - ACTIONS(4882), 1, - sym_integer, - ACTIONS(4884), 1, - sym_float, - ACTIONS(4918), 1, - anon_sym_COLON, - STATE(3959), 1, - sym_string, - STATE(4213), 1, - sym_dotted_name, - STATE(4505), 1, - sym_case_pattern, - STATE(5709), 1, - sym_if_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4606), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(4878), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4219), 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, - [123956] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4535), 4, + ACTIONS(4843), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4533), 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, + ACTIONS(4847), 1, 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, - [123997] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3907), 4, - anon_sym_STAR, + ACTIONS(4849), 1, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3905), 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, - [124038] = 3, + ACTIONS(4914), 1, + anon_sym_COLON, + STATE(3198), 1, + sym__signedness, + STATE(3409), 1, + sym__longness, + STATE(4198), 1, + sym_c_type, + STATE(4934), 1, + sym_parameter, + STATE(4949), 1, + sym_tuple_pattern, + STATE(5460), 1, + sym_lambda_parameters, + STATE(5733), 1, + sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3903), 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(3901), 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, - [124079] = 22, - ACTIONS(4018), 1, + ACTIONS(3944), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(3946), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4851), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3655), 2, + sym_int_type, + sym_function_pointer_type, + STATE(5175), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(3942), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(5172), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [124406] = 22, + ACTIONS(3948), 1, anon_sym_long, - ACTIONS(4835), 1, + ACTIONS(4839), 1, sym_identifier, - ACTIONS(4837), 1, + ACTIONS(4841), 1, anon_sym_LPAREN, - ACTIONS(4839), 1, - anon_sym_STAR, ACTIONS(4843), 1, + anon_sym_STAR, + ACTIONS(4847), 1, anon_sym_STAR_STAR, - ACTIONS(4845), 1, + ACTIONS(4849), 1, anon_sym_SLASH, - ACTIONS(4920), 1, + ACTIONS(4916), 1, anon_sym_COLON, - STATE(3188), 1, + STATE(3198), 1, sym__signedness, - STATE(3410), 1, + STATE(3409), 1, sym__longness, - STATE(4280), 1, + STATE(4198), 1, sym_c_type, - STATE(4990), 1, + STATE(4934), 1, sym_parameter, - STATE(5040), 1, + STATE(4949), 1, sym_tuple_pattern, - STATE(5630), 1, - sym__parameters, - STATE(5660), 1, + STATE(5633), 1, sym_lambda_parameters, + STATE(5733), 1, + sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4014), 2, + ACTIONS(3944), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4016), 2, + ACTIONS(3946), 2, anon_sym_char, anon_sym_short, - ACTIONS(4847), 2, + ACTIONS(4851), 2, anon_sym_const, anon_sym_volatile, - STATE(3681), 2, + STATE(3655), 2, sym_int_type, sym_function_pointer_type, - STATE(5368), 2, + STATE(5175), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - ACTIONS(4012), 3, + ACTIONS(3942), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(5283), 5, + STATE(5172), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [124158] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1498), 3, - anon_sym_DOT, + [124485] = 22, + ACTIONS(3948), 1, + anon_sym_long, + ACTIONS(4839), 1, + sym_identifier, + ACTIONS(4841), 1, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1297), 13, + ACTIONS(4843), 1, anon_sym_STAR, - anon_sym_GT_GT, + ACTIONS(4847), 1, anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, + ACTIONS(4849), 1, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(1295), 16, - anon_sym_COMMA, + ACTIONS(4918), 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, - [124201] = 3, + STATE(3198), 1, + sym__signedness, + STATE(3409), 1, + sym__longness, + STATE(4198), 1, + sym_c_type, + STATE(4934), 1, + sym_parameter, + STATE(4949), 1, + sym_tuple_pattern, + STATE(5421), 1, + sym_lambda_parameters, + STATE(5733), 1, + sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3903), 13, + ACTIONS(3944), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(3946), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4851), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3655), 2, + sym_int_type, + sym_function_pointer_type, + STATE(5175), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(3942), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(5172), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [124564] = 22, + ACTIONS(3948), 1, + anon_sym_long, + ACTIONS(4839), 1, + sym_identifier, + ACTIONS(4841), 1, + anon_sym_LPAREN, + ACTIONS(4843), 1, anon_sym_STAR, - anon_sym_GT_GT, + ACTIONS(4847), 1, anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, + ACTIONS(4849), 1, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(3901), 19, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(4920), 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, - [124242] = 3, + STATE(3198), 1, + sym__signedness, + STATE(3409), 1, + sym__longness, + STATE(4198), 1, + sym_c_type, + STATE(4934), 1, + sym_parameter, + STATE(4949), 1, + sym_tuple_pattern, + STATE(5452), 1, + sym_lambda_parameters, + STATE(5733), 1, + sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3870), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3867), 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, - [124283] = 22, - ACTIONS(4018), 1, + ACTIONS(3944), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(3946), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4851), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3655), 2, + sym_int_type, + sym_function_pointer_type, + STATE(5175), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(3942), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(5172), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [124643] = 22, + ACTIONS(3948), 1, anon_sym_long, - ACTIONS(4835), 1, + ACTIONS(4839), 1, sym_identifier, - ACTIONS(4837), 1, + ACTIONS(4841), 1, anon_sym_LPAREN, - ACTIONS(4839), 1, - anon_sym_STAR, ACTIONS(4843), 1, + anon_sym_STAR, + ACTIONS(4847), 1, anon_sym_STAR_STAR, - ACTIONS(4845), 1, + ACTIONS(4849), 1, anon_sym_SLASH, ACTIONS(4922), 1, anon_sym_COLON, - STATE(3188), 1, + STATE(3198), 1, sym__signedness, - STATE(3410), 1, + STATE(3409), 1, sym__longness, - STATE(4280), 1, + STATE(4198), 1, sym_c_type, - STATE(4990), 1, + STATE(4934), 1, sym_parameter, - STATE(5040), 1, + STATE(4949), 1, sym_tuple_pattern, - STATE(5630), 1, - sym__parameters, - STATE(5652), 1, + STATE(5465), 1, sym_lambda_parameters, + STATE(5733), 1, + sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4014), 2, + ACTIONS(3944), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4016), 2, + ACTIONS(3946), 2, anon_sym_char, anon_sym_short, - ACTIONS(4847), 2, + ACTIONS(4851), 2, anon_sym_const, anon_sym_volatile, - STATE(3681), 2, + STATE(3655), 2, sym_int_type, sym_function_pointer_type, - STATE(5368), 2, + STATE(5175), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - ACTIONS(4012), 3, + ACTIONS(3942), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(5283), 5, + STATE(5172), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [124362] = 22, - ACTIONS(4018), 1, + [124722] = 22, + ACTIONS(3948), 1, anon_sym_long, - ACTIONS(4835), 1, + ACTIONS(4839), 1, sym_identifier, - ACTIONS(4837), 1, + ACTIONS(4841), 1, anon_sym_LPAREN, - ACTIONS(4839), 1, - anon_sym_STAR, ACTIONS(4843), 1, + anon_sym_STAR, + ACTIONS(4847), 1, anon_sym_STAR_STAR, - ACTIONS(4845), 1, + ACTIONS(4849), 1, anon_sym_SLASH, ACTIONS(4924), 1, anon_sym_COLON, - STATE(3188), 1, + STATE(3198), 1, sym__signedness, - STATE(3410), 1, + STATE(3409), 1, sym__longness, - STATE(4280), 1, + STATE(4198), 1, sym_c_type, - STATE(4990), 1, + STATE(4934), 1, sym_parameter, - STATE(5040), 1, + STATE(4949), 1, sym_tuple_pattern, - STATE(5499), 1, + STATE(5479), 1, sym_lambda_parameters, - STATE(5630), 1, + STATE(5733), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4014), 2, + ACTIONS(3944), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4016), 2, + ACTIONS(3946), 2, anon_sym_char, anon_sym_short, - ACTIONS(4847), 2, + ACTIONS(4851), 2, anon_sym_const, anon_sym_volatile, - STATE(3681), 2, + STATE(3655), 2, sym_int_type, sym_function_pointer_type, - STATE(5368), 2, + STATE(5175), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - ACTIONS(4012), 3, + ACTIONS(3942), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(5283), 5, + STATE(5172), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [124441] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3863), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3861), 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, - [124482] = 22, - ACTIONS(4018), 1, + [124801] = 22, + ACTIONS(3948), 1, anon_sym_long, - ACTIONS(4835), 1, + ACTIONS(4839), 1, sym_identifier, - ACTIONS(4837), 1, + ACTIONS(4841), 1, anon_sym_LPAREN, - ACTIONS(4839), 1, - anon_sym_STAR, ACTIONS(4843), 1, + anon_sym_STAR, + ACTIONS(4847), 1, anon_sym_STAR_STAR, - ACTIONS(4845), 1, + ACTIONS(4849), 1, anon_sym_SLASH, ACTIONS(4926), 1, anon_sym_COLON, - STATE(3188), 1, + STATE(3198), 1, sym__signedness, - STATE(3410), 1, + STATE(3409), 1, sym__longness, - STATE(4280), 1, + STATE(4198), 1, sym_c_type, - STATE(4990), 1, + STATE(4934), 1, sym_parameter, - STATE(5040), 1, + STATE(4949), 1, sym_tuple_pattern, - STATE(5630), 1, - sym__parameters, - STATE(5658), 1, + STATE(5491), 1, sym_lambda_parameters, + STATE(5733), 1, + sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4014), 2, + ACTIONS(3944), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4016), 2, + ACTIONS(3946), 2, anon_sym_char, anon_sym_short, - ACTIONS(4847), 2, + ACTIONS(4851), 2, anon_sym_const, anon_sym_volatile, - STATE(3681), 2, + STATE(3655), 2, sym_int_type, sym_function_pointer_type, - STATE(5368), 2, + STATE(5175), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - ACTIONS(4012), 3, + ACTIONS(3942), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(5283), 5, + STATE(5172), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [124561] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3870), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3867), 28, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [124602] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4511), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4509), 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, - [124643] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4567), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4565), 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, - [124684] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3710), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3699), 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, - [124725] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4215), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4201), 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, - [124766] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4603), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4601), 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, - [124807] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3879), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(3884), 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(3720), 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, - [124850] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3867), 3, - anon_sym_DOT, + [124880] = 22, + ACTIONS(3948), 1, + anon_sym_long, + ACTIONS(4839), 1, + sym_identifier, + ACTIONS(4841), 1, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(3870), 13, + ACTIONS(4843), 1, anon_sym_STAR, - anon_sym_GT_GT, + ACTIONS(4847), 1, anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, + ACTIONS(4849), 1, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(3865), 16, - anon_sym_COMMA, + ACTIONS(4928), 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, - [124893] = 4, + STATE(3198), 1, + sym__signedness, + STATE(3409), 1, + sym__longness, + STATE(4198), 1, + sym_c_type, + STATE(4934), 1, + sym_parameter, + STATE(4949), 1, + sym_tuple_pattern, + STATE(5539), 1, + sym_lambda_parameters, + STATE(5733), 1, + sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3699), 3, - anon_sym_DOT, + ACTIONS(3944), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(3946), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4851), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3655), 2, + sym_int_type, + sym_function_pointer_type, + STATE(5175), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(3942), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(5172), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [124959] = 22, + ACTIONS(3948), 1, + anon_sym_long, + ACTIONS(4839), 1, + sym_identifier, + ACTIONS(4841), 1, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(3710), 13, + ACTIONS(4843), 1, anon_sym_STAR, - anon_sym_GT_GT, + ACTIONS(4847), 1, anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, + ACTIONS(4849), 1, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(3720), 16, - anon_sym_COMMA, + ACTIONS(4930), 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, - [124936] = 3, + STATE(3198), 1, + sym__signedness, + STATE(3409), 1, + sym__longness, + STATE(4198), 1, + sym_c_type, + STATE(4934), 1, + sym_parameter, + STATE(4949), 1, + sym_tuple_pattern, + STATE(5406), 1, + sym_lambda_parameters, + STATE(5733), 1, + sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3888), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3886), 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, - [124977] = 22, - ACTIONS(4018), 1, + ACTIONS(3944), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(3946), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4851), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3655), 2, + sym_int_type, + sym_function_pointer_type, + STATE(5175), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(3942), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(5172), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [125038] = 22, + ACTIONS(3948), 1, anon_sym_long, - ACTIONS(4835), 1, + ACTIONS(4839), 1, sym_identifier, - ACTIONS(4837), 1, + ACTIONS(4841), 1, anon_sym_LPAREN, - ACTIONS(4839), 1, - anon_sym_STAR, ACTIONS(4843), 1, + anon_sym_STAR, + ACTIONS(4847), 1, anon_sym_STAR_STAR, - ACTIONS(4845), 1, + ACTIONS(4849), 1, anon_sym_SLASH, - ACTIONS(4928), 1, + ACTIONS(4932), 1, anon_sym_COLON, - STATE(3188), 1, + STATE(3198), 1, sym__signedness, - STATE(3410), 1, + STATE(3409), 1, sym__longness, - STATE(4280), 1, + STATE(4198), 1, sym_c_type, - STATE(4990), 1, + STATE(4934), 1, sym_parameter, - STATE(5040), 1, + STATE(4949), 1, sym_tuple_pattern, - STATE(5630), 1, - sym__parameters, - STATE(5723), 1, + STATE(5494), 1, sym_lambda_parameters, + STATE(5733), 1, + sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4014), 2, + ACTIONS(3944), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4016), 2, + ACTIONS(3946), 2, anon_sym_char, anon_sym_short, - ACTIONS(4847), 2, + ACTIONS(4851), 2, anon_sym_const, anon_sym_volatile, - STATE(3681), 2, + STATE(3655), 2, sym_int_type, sym_function_pointer_type, - STATE(5368), 2, + STATE(5175), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - ACTIONS(4012), 3, + ACTIONS(3942), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(5283), 5, + STATE(5172), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [125056] = 3, + [125117] = 7, + ACTIONS(3922), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4575), 4, + ACTIONS(3896), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(3899), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4573), 28, + ACTIONS(3920), 3, anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(3891), 12, 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(3893), 12, + anon_sym_LPAREN, + anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [125097] = 19, - ACTIONS(371), 1, - anon_sym_long, - ACTIONS(4094), 1, - anon_sym_operator, - ACTIONS(4165), 1, + [125166] = 19, + ACTIONS(4934), 1, sym_identifier, - ACTIONS(4171), 1, + ACTIONS(4943), 1, + anon_sym_operator, + ACTIONS(4952), 1, + anon_sym_long, + ACTIONS(4958), 1, anon_sym_ctypedef, - ACTIONS(4177), 1, + ACTIONS(4961), 1, anon_sym_cppclass, - ACTIONS(4930), 1, + ACTIONS(4964), 1, sym__dedent, - STATE(3130), 1, + STATE(3140), 1, sym__signedness, - STATE(3228), 1, + STATE(3191), 1, sym_int_type, - STATE(3321), 1, + STATE(3368), 1, sym__longness, - STATE(3597), 1, + STATE(3562), 1, sym_operator_name, - STATE(3811), 1, + STATE(3795), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(367), 2, + ACTIONS(4946), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(369), 2, + ACTIONS(4949), 2, anon_sym_char, anon_sym_short, - ACTIONS(4096), 2, + ACTIONS(4955), 2, anon_sym_const, anon_sym_volatile, - STATE(3074), 2, + STATE(3085), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(365), 3, + ACTIONS(4940), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(2728), 4, + STATE(2734), 4, sym_cvar_def, sym_ctypedef_statement, sym_cppclass, aux_sym__cppclass_suite_repeat1, - ACTIONS(103), 5, + ACTIONS(4937), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [125238] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4968), 2, + anon_sym_LPAREN, + anon_sym_COLON, + STATE(2735), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(4970), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [125169] = 19, + ACTIONS(4966), 22, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_class, + sym_identifier, + anon_sym_await, + 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, + [125282] = 19, ACTIONS(371), 1, anon_sym_long, - ACTIONS(4094), 1, + ACTIONS(3978), 1, anon_sym_operator, - ACTIONS(4165), 1, + ACTIONS(4122), 1, sym_identifier, - ACTIONS(4171), 1, + ACTIONS(4128), 1, anon_sym_ctypedef, - ACTIONS(4177), 1, + ACTIONS(4134), 1, anon_sym_cppclass, - ACTIONS(4932), 1, + ACTIONS(4973), 1, sym__dedent, - STATE(3130), 1, + STATE(3140), 1, sym__signedness, - STATE(3228), 1, + STATE(3191), 1, sym_int_type, - STATE(3321), 1, + STATE(3368), 1, sym__longness, - STATE(3597), 1, + STATE(3562), 1, sym_operator_name, - STATE(3811), 1, + STATE(3795), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -225052,17 +225911,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(4096), 2, + ACTIONS(3980), 2, anon_sym_const, anon_sym_volatile, - STATE(3074), 2, + STATE(3085), 2, sym_storageclass, aux_sym_class_definition_repeat1, ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(2728), 4, + STATE(2738), 4, sym_cvar_def, sym_ctypedef_statement, sym_cppclass, @@ -225073,28 +225932,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [125241] = 19, + [125354] = 19, ACTIONS(371), 1, anon_sym_long, - ACTIONS(4094), 1, + ACTIONS(3978), 1, anon_sym_operator, - ACTIONS(4165), 1, + ACTIONS(4122), 1, sym_identifier, - ACTIONS(4171), 1, + ACTIONS(4128), 1, anon_sym_ctypedef, - ACTIONS(4177), 1, + ACTIONS(4134), 1, anon_sym_cppclass, - ACTIONS(4934), 1, + ACTIONS(4975), 1, sym__dedent, - STATE(3130), 1, + STATE(3140), 1, sym__signedness, - STATE(3228), 1, + STATE(3191), 1, sym_int_type, - STATE(3321), 1, + STATE(3368), 1, sym__longness, - STATE(3597), 1, + STATE(3562), 1, sym_operator_name, - STATE(3811), 1, + STATE(3795), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -225105,17 +225964,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(4096), 2, + ACTIONS(3980), 2, anon_sym_const, anon_sym_volatile, - STATE(3074), 2, + STATE(3085), 2, sym_storageclass, aux_sym_class_definition_repeat1, ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(2730), 4, + STATE(2740), 4, sym_cvar_def, sym_ctypedef_statement, sym_cppclass, @@ -225126,120 +225985,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [125313] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4938), 2, - anon_sym_LPAREN, - anon_sym_COLON, - STATE(2727), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(4940), 5, - anon_sym_api, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - ACTIONS(4936), 22, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_class, - sym_identifier, - anon_sym_await, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - anon_sym_operator, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_char, - anon_sym_short, + [125426] = 19, + ACTIONS(371), 1, anon_sym_long, - anon_sym_const, - anon_sym_volatile, - anon_sym_ctypedef, - anon_sym_struct, - anon_sym_union, - anon_sym_enum, - [125357] = 19, - ACTIONS(4943), 1, - sym_identifier, - ACTIONS(4952), 1, + ACTIONS(3978), 1, anon_sym_operator, - ACTIONS(4961), 1, - anon_sym_long, - ACTIONS(4967), 1, + ACTIONS(4122), 1, + sym_identifier, + ACTIONS(4128), 1, anon_sym_ctypedef, - ACTIONS(4970), 1, + ACTIONS(4134), 1, anon_sym_cppclass, - ACTIONS(4973), 1, + ACTIONS(4977), 1, sym__dedent, - STATE(3130), 1, + STATE(3140), 1, sym__signedness, - STATE(3228), 1, + STATE(3191), 1, sym_int_type, - STATE(3321), 1, + STATE(3368), 1, sym__longness, - STATE(3597), 1, + STATE(3562), 1, sym_operator_name, - STATE(3811), 1, + STATE(3795), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4955), 2, + ACTIONS(367), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4958), 2, + ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(4964), 2, + ACTIONS(3980), 2, anon_sym_const, anon_sym_volatile, - STATE(3074), 2, + STATE(3085), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(4949), 3, + ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(2728), 4, + STATE(2734), 4, sym_cvar_def, sym_ctypedef_statement, sym_cppclass, aux_sym__cppclass_suite_repeat1, - ACTIONS(4946), 5, + ACTIONS(103), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [125429] = 19, + [125498] = 19, ACTIONS(371), 1, anon_sym_long, - ACTIONS(4094), 1, + ACTIONS(3978), 1, anon_sym_operator, - ACTIONS(4165), 1, + ACTIONS(4122), 1, sym_identifier, - ACTIONS(4171), 1, + ACTIONS(4128), 1, anon_sym_ctypedef, - ACTIONS(4177), 1, + ACTIONS(4134), 1, anon_sym_cppclass, - ACTIONS(4975), 1, + ACTIONS(4979), 1, sym__dedent, - STATE(3130), 1, + STATE(3140), 1, sym__signedness, - STATE(3228), 1, + STATE(3191), 1, sym_int_type, - STATE(3321), 1, + STATE(3368), 1, sym__longness, - STATE(3597), 1, + STATE(3562), 1, sym_operator_name, - STATE(3811), 1, + STATE(3795), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -225250,17 +226070,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(4096), 2, + ACTIONS(3980), 2, anon_sym_const, anon_sym_volatile, - STATE(3074), 2, + STATE(3085), 2, sym_storageclass, aux_sym_class_definition_repeat1, ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(2724), 4, + STATE(2742), 4, sym_cvar_def, sym_ctypedef_statement, sym_cppclass, @@ -225271,28 +226091,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [125501] = 19, + [125570] = 19, ACTIONS(371), 1, anon_sym_long, - ACTIONS(4094), 1, + ACTIONS(3978), 1, anon_sym_operator, - ACTIONS(4165), 1, + ACTIONS(4122), 1, sym_identifier, - ACTIONS(4171), 1, + ACTIONS(4128), 1, anon_sym_ctypedef, - ACTIONS(4177), 1, + ACTIONS(4134), 1, anon_sym_cppclass, - ACTIONS(4977), 1, + ACTIONS(4981), 1, sym__dedent, - STATE(3130), 1, + STATE(3140), 1, sym__signedness, - STATE(3228), 1, + STATE(3191), 1, sym_int_type, - STATE(3321), 1, + STATE(3368), 1, sym__longness, - STATE(3597), 1, + STATE(3562), 1, sym_operator_name, - STATE(3811), 1, + STATE(3795), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -225303,17 +226123,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(4096), 2, + ACTIONS(3980), 2, anon_sym_const, anon_sym_volatile, - STATE(3074), 2, + STATE(3085), 2, sym_storageclass, aux_sym_class_definition_repeat1, ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(2728), 4, + STATE(2734), 4, sym_cvar_def, sym_ctypedef_statement, sym_cppclass, @@ -225324,83 +226144,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [125573] = 21, - ACTIONS(4018), 1, + [125642] = 21, + ACTIONS(3948), 1, anon_sym_long, - ACTIONS(4979), 1, + ACTIONS(4983), 1, sym_identifier, - ACTIONS(4981), 1, + ACTIONS(4985), 1, anon_sym_LPAREN, - ACTIONS(4983), 1, + ACTIONS(4987), 1, anon_sym_RPAREN, - ACTIONS(4985), 1, + ACTIONS(4989), 1, anon_sym_STAR, - ACTIONS(4987), 1, + ACTIONS(4991), 1, anon_sym_STAR_STAR, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_SLASH, - STATE(3188), 1, + STATE(3198), 1, sym__signedness, - STATE(3410), 1, + STATE(3409), 1, sym__longness, - STATE(4212), 1, + STATE(4256), 1, sym_c_type, - STATE(5135), 1, + STATE(4779), 1, sym_tuple_pattern, - STATE(5141), 1, + STATE(5007), 1, sym_parameter, - STATE(5671), 1, + STATE(5438), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4014), 2, + ACTIONS(3944), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4016), 2, + ACTIONS(3946), 2, anon_sym_char, anon_sym_short, - ACTIONS(4847), 2, + ACTIONS(4851), 2, anon_sym_const, anon_sym_volatile, - STATE(3681), 2, + STATE(3655), 2, sym_int_type, sym_function_pointer_type, - STATE(5145), 2, + STATE(5016), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - ACTIONS(4012), 3, + ACTIONS(3942), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(5376), 5, + STATE(5211), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [125649] = 19, + [125718] = 19, ACTIONS(371), 1, anon_sym_long, - ACTIONS(4094), 1, + ACTIONS(3978), 1, anon_sym_operator, - ACTIONS(4165), 1, + ACTIONS(4122), 1, sym_identifier, - ACTIONS(4171), 1, + ACTIONS(4128), 1, anon_sym_ctypedef, - ACTIONS(4177), 1, + ACTIONS(4134), 1, anon_sym_cppclass, - ACTIONS(4991), 1, + ACTIONS(4995), 1, sym__dedent, - STATE(3130), 1, + STATE(3140), 1, sym__signedness, - STATE(3228), 1, + STATE(3191), 1, sym_int_type, - STATE(3321), 1, + STATE(3368), 1, sym__longness, - STATE(3597), 1, + STATE(3562), 1, sym_operator_name, - STATE(3811), 1, + STATE(3795), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -225411,17 +226231,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(4096), 2, + ACTIONS(3980), 2, anon_sym_const, anon_sym_volatile, - STATE(3074), 2, + STATE(3085), 2, sym_storageclass, aux_sym_class_definition_repeat1, ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(2725), 4, + STATE(2734), 4, sym_cvar_def, sym_ctypedef_statement, sym_cppclass, @@ -225432,48 +226252,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [125721] = 19, - ACTIONS(1396), 1, + [125790] = 19, + ACTIONS(2477), 1, anon_sym_None, - ACTIONS(1408), 1, + ACTIONS(2485), 1, sym_string_start, - ACTIONS(4993), 1, - sym_identifier, - ACTIONS(4995), 1, - anon_sym_LPAREN, ACTIONS(4997), 1, - anon_sym_RPAREN, + sym_identifier, ACTIONS(4999), 1, - anon_sym_STAR, + anon_sym_LPAREN, ACTIONS(5001), 1, - anon_sym_STAR_STAR, + anon_sym_STAR, ACTIONS(5003), 1, - anon_sym_LBRACK, + anon_sym_STAR_STAR, ACTIONS(5005), 1, - anon_sym_DASH, + anon_sym_LBRACK, + ACTIONS(5007), 1, + anon_sym_RBRACK, ACTIONS(5009), 1, + anon_sym_DASH, + ACTIONS(5013), 1, anon_sym_LBRACE, - ACTIONS(5011), 1, + ACTIONS(5015), 1, sym_integer, - ACTIONS(5013), 1, + ACTIONS(5017), 1, sym_float, - STATE(4084), 1, + STATE(4015), 1, sym_string, - STATE(4428), 1, + STATE(4330), 1, sym_dotted_name, - STATE(4517), 1, + STATE(4528), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4986), 2, + STATE(4759), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5007), 3, + ACTIONS(5011), 3, anon_sym__, sym_true, sym_false, - STATE(4429), 10, + STATE(4391), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -225484,48 +226304,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [125792] = 19, - ACTIONS(2467), 1, + [125861] = 19, + ACTIONS(1396), 1, anon_sym_None, - ACTIONS(2475), 1, + ACTIONS(1408), 1, sym_string_start, - ACTIONS(5015), 1, - sym_identifier, - ACTIONS(5017), 1, - anon_sym_LPAREN, ACTIONS(5019), 1, - anon_sym_STAR, + sym_identifier, ACTIONS(5021), 1, - anon_sym_STAR_STAR, + anon_sym_LPAREN, ACTIONS(5023), 1, - anon_sym_LBRACK, + anon_sym_RPAREN, ACTIONS(5025), 1, - anon_sym_RBRACK, + anon_sym_STAR, ACTIONS(5027), 1, - anon_sym_DASH, + anon_sym_STAR_STAR, + ACTIONS(5029), 1, + anon_sym_LBRACK, ACTIONS(5031), 1, + anon_sym_DASH, + ACTIONS(5035), 1, anon_sym_LBRACE, - ACTIONS(5033), 1, + ACTIONS(5037), 1, sym_integer, - ACTIONS(5035), 1, + ACTIONS(5039), 1, sym_float, - STATE(4066), 1, + STATE(4123), 1, sym_string, - STATE(4397), 1, + STATE(4373), 1, sym_dotted_name, - STATE(5077), 1, + STATE(4551), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4916), 2, + STATE(5089), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5029), 3, + ACTIONS(5033), 3, anon_sym__, sym_true, sym_false, - STATE(4398), 10, + STATE(4374), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -225536,48 +226356,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [125863] = 19, + [125932] = 19, ACTIONS(1396), 1, anon_sym_None, ACTIONS(1408), 1, sym_string_start, - ACTIONS(4993), 1, + ACTIONS(5019), 1, sym_identifier, - ACTIONS(4995), 1, + ACTIONS(5021), 1, anon_sym_LPAREN, - ACTIONS(4999), 1, + ACTIONS(5025), 1, anon_sym_STAR, - ACTIONS(5001), 1, + ACTIONS(5027), 1, anon_sym_STAR_STAR, - ACTIONS(5003), 1, + ACTIONS(5029), 1, anon_sym_LBRACK, - ACTIONS(5005), 1, + ACTIONS(5031), 1, anon_sym_DASH, - ACTIONS(5009), 1, + ACTIONS(5035), 1, anon_sym_LBRACE, - ACTIONS(5011), 1, + ACTIONS(5037), 1, sym_integer, - ACTIONS(5013), 1, + ACTIONS(5039), 1, sym_float, - ACTIONS(5037), 1, + ACTIONS(5041), 1, anon_sym_RPAREN, - STATE(4084), 1, + STATE(4123), 1, sym_string, - STATE(4428), 1, + STATE(4373), 1, sym_dotted_name, - STATE(5143), 1, + STATE(4740), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4986), 2, + STATE(5089), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5007), 3, + ACTIONS(5033), 3, anon_sym__, sym_true, sym_false, - STATE(4429), 10, + STATE(4374), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -225588,48 +226408,100 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [125934] = 19, - ACTIONS(2467), 1, + [126003] = 19, + ACTIONS(2477), 1, anon_sym_None, - ACTIONS(2475), 1, + ACTIONS(2485), 1, sym_string_start, - ACTIONS(5015), 1, + ACTIONS(4997), 1, sym_identifier, + ACTIONS(4999), 1, + anon_sym_LPAREN, + ACTIONS(5001), 1, + anon_sym_STAR, + ACTIONS(5003), 1, + anon_sym_STAR_STAR, + ACTIONS(5005), 1, + anon_sym_LBRACK, + ACTIONS(5009), 1, + anon_sym_DASH, + ACTIONS(5013), 1, + anon_sym_LBRACE, + ACTIONS(5015), 1, + sym_integer, ACTIONS(5017), 1, + sym_float, + ACTIONS(5043), 1, + anon_sym_RBRACK, + STATE(4015), 1, + sym_string, + STATE(4330), 1, + sym_dotted_name, + STATE(4716), 1, + sym_case_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4759), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5011), 3, + anon_sym__, + sym_true, + sym_false, + STATE(4391), 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, + [126074] = 19, + ACTIONS(2477), 1, + anon_sym_None, + ACTIONS(2485), 1, + sym_string_start, + ACTIONS(4997), 1, + sym_identifier, + ACTIONS(4999), 1, anon_sym_LPAREN, - ACTIONS(5019), 1, + ACTIONS(5001), 1, anon_sym_STAR, - ACTIONS(5021), 1, + ACTIONS(5003), 1, anon_sym_STAR_STAR, - ACTIONS(5023), 1, + ACTIONS(5005), 1, anon_sym_LBRACK, - ACTIONS(5027), 1, + ACTIONS(5009), 1, anon_sym_DASH, - ACTIONS(5031), 1, + ACTIONS(5013), 1, anon_sym_LBRACE, - ACTIONS(5033), 1, + ACTIONS(5015), 1, sym_integer, - ACTIONS(5035), 1, + ACTIONS(5017), 1, sym_float, - ACTIONS(5039), 1, + ACTIONS(5045), 1, anon_sym_RBRACK, - STATE(4066), 1, + STATE(4015), 1, sym_string, - STATE(4397), 1, + STATE(4330), 1, sym_dotted_name, - STATE(5077), 1, + STATE(4716), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4916), 2, + STATE(4759), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5029), 3, + ACTIONS(5011), 3, anon_sym__, sym_true, sym_false, - STATE(4398), 10, + STATE(4391), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -225640,48 +226512,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [126005] = 19, + [126145] = 19, ACTIONS(1396), 1, anon_sym_None, ACTIONS(1408), 1, sym_string_start, - ACTIONS(4993), 1, + ACTIONS(5019), 1, sym_identifier, - ACTIONS(4995), 1, + ACTIONS(5021), 1, anon_sym_LPAREN, - ACTIONS(4999), 1, + ACTIONS(5025), 1, anon_sym_STAR, - ACTIONS(5001), 1, + ACTIONS(5027), 1, anon_sym_STAR_STAR, - ACTIONS(5003), 1, + ACTIONS(5029), 1, anon_sym_LBRACK, - ACTIONS(5005), 1, + ACTIONS(5031), 1, anon_sym_DASH, - ACTIONS(5009), 1, + ACTIONS(5035), 1, anon_sym_LBRACE, - ACTIONS(5011), 1, + ACTIONS(5037), 1, sym_integer, - ACTIONS(5013), 1, + ACTIONS(5039), 1, sym_float, - ACTIONS(5041), 1, + ACTIONS(5047), 1, anon_sym_RPAREN, - STATE(4084), 1, + STATE(4123), 1, sym_string, - STATE(4428), 1, + STATE(4373), 1, sym_dotted_name, - STATE(5143), 1, + STATE(4740), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4986), 2, + STATE(5089), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5007), 3, + ACTIONS(5033), 3, anon_sym__, sym_true, sym_false, - STATE(4429), 10, + STATE(4374), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -225692,48 +226564,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [126076] = 19, + [126216] = 19, ACTIONS(1396), 1, anon_sym_None, ACTIONS(1408), 1, sym_string_start, - ACTIONS(4993), 1, + ACTIONS(5019), 1, sym_identifier, - ACTIONS(4995), 1, + ACTIONS(5021), 1, anon_sym_LPAREN, - ACTIONS(4999), 1, + ACTIONS(5025), 1, anon_sym_STAR, - ACTIONS(5001), 1, + ACTIONS(5027), 1, anon_sym_STAR_STAR, - ACTIONS(5003), 1, + ACTIONS(5029), 1, anon_sym_LBRACK, - ACTIONS(5005), 1, + ACTIONS(5031), 1, anon_sym_DASH, - ACTIONS(5009), 1, + ACTIONS(5035), 1, anon_sym_LBRACE, - ACTIONS(5011), 1, + ACTIONS(5037), 1, sym_integer, - ACTIONS(5013), 1, + ACTIONS(5039), 1, sym_float, - ACTIONS(5043), 1, + ACTIONS(5049), 1, anon_sym_RPAREN, - STATE(4084), 1, + STATE(4123), 1, sym_string, - STATE(4428), 1, + STATE(4373), 1, sym_dotted_name, - STATE(5143), 1, + STATE(4740), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4986), 2, + STATE(5089), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5007), 3, + ACTIONS(5033), 3, anon_sym__, sym_true, sym_false, - STATE(4429), 10, + STATE(4374), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -225744,259 +226616,154 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [126147] = 20, - ACTIONS(4018), 1, + [126287] = 20, + ACTIONS(3948), 1, anon_sym_long, - ACTIONS(4837), 1, + ACTIONS(4841), 1, anon_sym_LPAREN, - ACTIONS(4839), 1, - anon_sym_STAR, ACTIONS(4843), 1, + anon_sym_STAR, + ACTIONS(4847), 1, anon_sym_STAR_STAR, - ACTIONS(4845), 1, + ACTIONS(4849), 1, anon_sym_SLASH, - ACTIONS(5045), 1, + ACTIONS(5051), 1, sym_identifier, - ACTIONS(5047), 1, + ACTIONS(5053), 1, anon_sym_COLON, - STATE(3188), 1, + STATE(3198), 1, sym__signedness, - STATE(3410), 1, + STATE(3409), 1, sym__longness, - STATE(4280), 1, + STATE(4198), 1, sym_c_type, - STATE(4664), 1, + STATE(4654), 1, sym_tuple_pattern, - STATE(5374), 1, + STATE(5180), 1, sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4014), 2, + ACTIONS(3944), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4016), 2, + ACTIONS(3946), 2, anon_sym_char, anon_sym_short, - ACTIONS(4847), 2, + ACTIONS(4851), 2, anon_sym_const, anon_sym_volatile, - STATE(3681), 2, + STATE(3655), 2, sym_int_type, sym_function_pointer_type, - STATE(5368), 2, + STATE(5175), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - ACTIONS(4012), 3, + ACTIONS(3942), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(5283), 5, + STATE(5172), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [126220] = 20, - ACTIONS(125), 1, + [126360] = 20, + ACTIONS(59), 1, anon_sym_class, ACTIONS(371), 1, anon_sym_long, - ACTIONS(4094), 1, + ACTIONS(3978), 1, anon_sym_operator, - ACTIONS(4165), 1, + ACTIONS(4122), 1, sym_identifier, - ACTIONS(5049), 1, + ACTIONS(5055), 1, anon_sym_COLON, - ACTIONS(5051), 1, + ACTIONS(5057), 1, anon_sym_namespace, - ACTIONS(5053), 1, + ACTIONS(5059), 1, anon_sym_nogil, - STATE(3130), 1, - sym__signedness, - STATE(3228), 1, - sym_int_type, - STATE(3321), 1, - sym__longness, - STATE(3597), 1, - sym_operator_name, - STATE(3788), 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(4096), 2, - anon_sym_const, - anon_sym_volatile, - STATE(573), 2, - sym_class_definition, - sym_cvar_def, - STATE(3073), 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, - [126293] = 19, - ACTIONS(2467), 1, - anon_sym_None, - ACTIONS(2475), 1, - sym_string_start, - ACTIONS(5015), 1, - sym_identifier, - ACTIONS(5017), 1, - anon_sym_LPAREN, - ACTIONS(5019), 1, - anon_sym_STAR, - ACTIONS(5021), 1, - anon_sym_STAR_STAR, - ACTIONS(5023), 1, - anon_sym_LBRACK, - ACTIONS(5027), 1, - anon_sym_DASH, - ACTIONS(5031), 1, - anon_sym_LBRACE, - ACTIONS(5033), 1, - sym_integer, - ACTIONS(5035), 1, - sym_float, - ACTIONS(5055), 1, - anon_sym_RBRACK, - STATE(4066), 1, - sym_string, - STATE(4397), 1, - sym_dotted_name, - STATE(4524), 1, - sym_case_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4916), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(5029), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4398), 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, - [126364] = 20, - ACTIONS(4018), 1, - anon_sym_long, - ACTIONS(4979), 1, - sym_identifier, - ACTIONS(4981), 1, - anon_sym_LPAREN, - ACTIONS(4985), 1, - anon_sym_STAR, - ACTIONS(4987), 1, - anon_sym_STAR_STAR, - ACTIONS(4989), 1, - anon_sym_SLASH, - ACTIONS(5057), 1, - anon_sym_RPAREN, - STATE(3188), 1, + STATE(3140), 1, sym__signedness, - STATE(3410), 1, + STATE(3191), 1, + sym_int_type, + STATE(3368), 1, sym__longness, - STATE(4212), 1, - sym_c_type, - STATE(5135), 1, - sym_tuple_pattern, - STATE(5178), 1, - sym_parameter, + STATE(3562), 1, + sym_operator_name, + STATE(3869), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4014), 2, + ACTIONS(367), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4016), 2, + ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(4847), 2, + ACTIONS(3980), 2, anon_sym_const, anon_sym_volatile, - STATE(3681), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5145), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(4012), 3, + STATE(1271), 2, + sym_class_definition, + sym_cvar_def, + STATE(3082), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(5376), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [126437] = 19, + ACTIONS(103), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [126433] = 19, ACTIONS(1396), 1, anon_sym_None, ACTIONS(1408), 1, sym_string_start, - ACTIONS(4993), 1, + ACTIONS(5019), 1, sym_identifier, - ACTIONS(4995), 1, + ACTIONS(5021), 1, anon_sym_LPAREN, - ACTIONS(4999), 1, + ACTIONS(5025), 1, anon_sym_STAR, - ACTIONS(5001), 1, + ACTIONS(5027), 1, anon_sym_STAR_STAR, - ACTIONS(5003), 1, + ACTIONS(5029), 1, anon_sym_LBRACK, - ACTIONS(5005), 1, + ACTIONS(5031), 1, anon_sym_DASH, - ACTIONS(5009), 1, + ACTIONS(5035), 1, anon_sym_LBRACE, - ACTIONS(5011), 1, + ACTIONS(5037), 1, sym_integer, - ACTIONS(5013), 1, + ACTIONS(5039), 1, sym_float, - ACTIONS(5059), 1, + ACTIONS(5061), 1, anon_sym_RPAREN, - STATE(4084), 1, + STATE(4123), 1, sym_string, - STATE(4428), 1, + STATE(4373), 1, sym_dotted_name, - STATE(4509), 1, + STATE(4740), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4986), 2, + STATE(5089), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5007), 3, + ACTIONS(5033), 3, anon_sym__, sym_true, sym_false, - STATE(4429), 10, + STATE(4374), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -226007,48 +226774,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [126508] = 19, - ACTIONS(2467), 1, + [126504] = 19, + ACTIONS(2477), 1, anon_sym_None, - ACTIONS(2475), 1, + ACTIONS(2485), 1, sym_string_start, - ACTIONS(5015), 1, + ACTIONS(4997), 1, sym_identifier, - ACTIONS(5017), 1, + ACTIONS(4999), 1, anon_sym_LPAREN, - ACTIONS(5019), 1, + ACTIONS(5001), 1, anon_sym_STAR, - ACTIONS(5021), 1, + ACTIONS(5003), 1, anon_sym_STAR_STAR, - ACTIONS(5023), 1, + ACTIONS(5005), 1, anon_sym_LBRACK, - ACTIONS(5027), 1, + ACTIONS(5009), 1, anon_sym_DASH, - ACTIONS(5031), 1, + ACTIONS(5013), 1, anon_sym_LBRACE, - ACTIONS(5033), 1, + ACTIONS(5015), 1, sym_integer, - ACTIONS(5035), 1, + ACTIONS(5017), 1, sym_float, - ACTIONS(5061), 1, + ACTIONS(5063), 1, anon_sym_RBRACK, - STATE(4066), 1, + STATE(4015), 1, sym_string, - STATE(4397), 1, + STATE(4330), 1, sym_dotted_name, - STATE(4510), 1, + STATE(4716), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4916), 2, + STATE(4759), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5029), 3, + ACTIONS(5011), 3, anon_sym__, sym_true, sym_false, - STATE(4398), 10, + STATE(4391), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -226059,48 +226826,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [126579] = 19, + [126575] = 19, ACTIONS(1396), 1, anon_sym_None, ACTIONS(1408), 1, sym_string_start, - ACTIONS(4993), 1, + ACTIONS(5019), 1, sym_identifier, - ACTIONS(4995), 1, + ACTIONS(5021), 1, anon_sym_LPAREN, - ACTIONS(4999), 1, + ACTIONS(5025), 1, anon_sym_STAR, - ACTIONS(5001), 1, + ACTIONS(5027), 1, anon_sym_STAR_STAR, - ACTIONS(5003), 1, + ACTIONS(5029), 1, anon_sym_LBRACK, - ACTIONS(5005), 1, + ACTIONS(5031), 1, anon_sym_DASH, - ACTIONS(5009), 1, + ACTIONS(5035), 1, anon_sym_LBRACE, - ACTIONS(5011), 1, + ACTIONS(5037), 1, sym_integer, - ACTIONS(5013), 1, + ACTIONS(5039), 1, sym_float, - ACTIONS(5063), 1, + ACTIONS(5065), 1, anon_sym_RPAREN, - STATE(4084), 1, + STATE(4123), 1, sym_string, - STATE(4428), 1, + STATE(4373), 1, sym_dotted_name, - STATE(4527), 1, + STATE(4740), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4986), 2, + STATE(5089), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5007), 3, + ACTIONS(5033), 3, anon_sym__, sym_true, sym_false, - STATE(4429), 10, + STATE(4374), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -226111,30 +226878,30 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [126650] = 20, - ACTIONS(59), 1, + [126646] = 20, + ACTIONS(125), 1, anon_sym_class, ACTIONS(371), 1, anon_sym_long, - ACTIONS(4094), 1, + ACTIONS(3978), 1, anon_sym_operator, - ACTIONS(4165), 1, + ACTIONS(4122), 1, sym_identifier, - ACTIONS(5065), 1, - anon_sym_COLON, ACTIONS(5067), 1, - anon_sym_namespace, + anon_sym_COLON, ACTIONS(5069), 1, + anon_sym_namespace, + ACTIONS(5071), 1, anon_sym_nogil, - STATE(3130), 1, + STATE(3140), 1, sym__signedness, - STATE(3228), 1, + STATE(3191), 1, sym_int_type, - STATE(3321), 1, + STATE(3368), 1, sym__longness, - STATE(3597), 1, + STATE(3562), 1, sym_operator_name, - STATE(3847), 1, + STATE(3810), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -226145,13 +226912,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(4096), 2, + ACTIONS(3980), 2, anon_sym_const, anon_sym_volatile, - STATE(1322), 2, + STATE(644), 2, sym_class_definition, sym_cvar_def, - STATE(3075), 2, + STATE(3084), 2, sym_storageclass, aux_sym_class_definition_repeat1, ACTIONS(365), 3, @@ -226164,48 +226931,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [126723] = 19, + [126719] = 19, ACTIONS(1396), 1, anon_sym_None, ACTIONS(1408), 1, sym_string_start, - ACTIONS(4993), 1, + ACTIONS(5019), 1, sym_identifier, - ACTIONS(4995), 1, + ACTIONS(5021), 1, anon_sym_LPAREN, - ACTIONS(4999), 1, + ACTIONS(5025), 1, anon_sym_STAR, - ACTIONS(5001), 1, + ACTIONS(5027), 1, anon_sym_STAR_STAR, - ACTIONS(5003), 1, + ACTIONS(5029), 1, anon_sym_LBRACK, - ACTIONS(5005), 1, + ACTIONS(5031), 1, anon_sym_DASH, - ACTIONS(5009), 1, + ACTIONS(5035), 1, anon_sym_LBRACE, - ACTIONS(5011), 1, + ACTIONS(5037), 1, sym_integer, - ACTIONS(5013), 1, + ACTIONS(5039), 1, sym_float, - ACTIONS(5071), 1, + ACTIONS(5073), 1, anon_sym_RPAREN, - STATE(4084), 1, + STATE(4123), 1, sym_string, - STATE(4428), 1, + STATE(4373), 1, sym_dotted_name, - STATE(5143), 1, + STATE(4506), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4986), 2, + STATE(5089), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5007), 3, + ACTIONS(5033), 3, anon_sym__, sym_true, sym_false, - STATE(4429), 10, + STATE(4374), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -226216,48 +226983,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [126794] = 19, - ACTIONS(2467), 1, + [126790] = 19, + ACTIONS(2477), 1, anon_sym_None, - ACTIONS(2475), 1, + ACTIONS(2485), 1, sym_string_start, - ACTIONS(5015), 1, + ACTIONS(4997), 1, sym_identifier, - ACTIONS(5017), 1, + ACTIONS(4999), 1, anon_sym_LPAREN, - ACTIONS(5019), 1, + ACTIONS(5001), 1, anon_sym_STAR, - ACTIONS(5021), 1, + ACTIONS(5003), 1, anon_sym_STAR_STAR, - ACTIONS(5023), 1, + ACTIONS(5005), 1, anon_sym_LBRACK, - ACTIONS(5027), 1, + ACTIONS(5009), 1, anon_sym_DASH, - ACTIONS(5031), 1, + ACTIONS(5013), 1, anon_sym_LBRACE, - ACTIONS(5033), 1, + ACTIONS(5015), 1, sym_integer, - ACTIONS(5035), 1, + ACTIONS(5017), 1, sym_float, - ACTIONS(5073), 1, + ACTIONS(5075), 1, anon_sym_RBRACK, - STATE(4066), 1, + STATE(4015), 1, sym_string, - STATE(4397), 1, + STATE(4330), 1, sym_dotted_name, - STATE(5077), 1, + STATE(4507), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4916), 2, + STATE(4759), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5029), 3, + ACTIONS(5011), 3, anon_sym__, sym_true, sym_false, - STATE(4398), 10, + STATE(4391), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -226268,48 +227035,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [126865] = 19, + [126861] = 19, ACTIONS(1396), 1, anon_sym_None, ACTIONS(1408), 1, sym_string_start, - ACTIONS(4993), 1, + ACTIONS(5019), 1, sym_identifier, - ACTIONS(4995), 1, + ACTIONS(5021), 1, anon_sym_LPAREN, - ACTIONS(4999), 1, + ACTIONS(5025), 1, anon_sym_STAR, - ACTIONS(5001), 1, + ACTIONS(5027), 1, anon_sym_STAR_STAR, - ACTIONS(5003), 1, + ACTIONS(5029), 1, anon_sym_LBRACK, - ACTIONS(5005), 1, + ACTIONS(5031), 1, anon_sym_DASH, - ACTIONS(5009), 1, + ACTIONS(5035), 1, anon_sym_LBRACE, - ACTIONS(5011), 1, + ACTIONS(5037), 1, sym_integer, - ACTIONS(5013), 1, + ACTIONS(5039), 1, sym_float, - ACTIONS(5075), 1, + ACTIONS(5077), 1, anon_sym_RPAREN, - STATE(4084), 1, + STATE(4123), 1, sym_string, - STATE(4428), 1, + STATE(4373), 1, sym_dotted_name, - STATE(5143), 1, + STATE(4740), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4986), 2, + STATE(5089), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5007), 3, + ACTIONS(5033), 3, anon_sym__, sym_true, sym_false, - STATE(4429), 10, + STATE(4374), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -226320,48 +227087,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [126936] = 19, - ACTIONS(2467), 1, + [126932] = 19, + ACTIONS(1396), 1, anon_sym_None, - ACTIONS(2475), 1, + ACTIONS(1408), 1, sym_string_start, - ACTIONS(5015), 1, + ACTIONS(5019), 1, sym_identifier, - ACTIONS(5017), 1, + ACTIONS(5021), 1, anon_sym_LPAREN, - ACTIONS(5019), 1, + ACTIONS(5025), 1, anon_sym_STAR, - ACTIONS(5021), 1, + ACTIONS(5027), 1, anon_sym_STAR_STAR, - ACTIONS(5023), 1, + ACTIONS(5029), 1, anon_sym_LBRACK, - ACTIONS(5027), 1, - anon_sym_DASH, ACTIONS(5031), 1, + anon_sym_DASH, + ACTIONS(5035), 1, anon_sym_LBRACE, - ACTIONS(5033), 1, + ACTIONS(5037), 1, sym_integer, - ACTIONS(5035), 1, + ACTIONS(5039), 1, sym_float, - ACTIONS(5077), 1, - anon_sym_RBRACK, - STATE(4066), 1, + ACTIONS(5079), 1, + anon_sym_RPAREN, + STATE(4123), 1, sym_string, - STATE(4397), 1, + STATE(4373), 1, sym_dotted_name, - STATE(5077), 1, + STATE(4624), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4916), 2, + STATE(5089), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5029), 3, + ACTIONS(5033), 3, anon_sym__, sym_true, sym_false, - STATE(4398), 10, + STATE(4374), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -226372,48 +227139,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [127007] = 19, - ACTIONS(1396), 1, + [127003] = 19, + ACTIONS(2477), 1, anon_sym_None, - ACTIONS(1408), 1, + ACTIONS(2485), 1, sym_string_start, - ACTIONS(4993), 1, + ACTIONS(4997), 1, sym_identifier, - ACTIONS(4995), 1, - anon_sym_LPAREN, ACTIONS(4999), 1, - anon_sym_STAR, + anon_sym_LPAREN, ACTIONS(5001), 1, - anon_sym_STAR_STAR, + anon_sym_STAR, ACTIONS(5003), 1, - anon_sym_LBRACK, + anon_sym_STAR_STAR, ACTIONS(5005), 1, - anon_sym_DASH, + anon_sym_LBRACK, ACTIONS(5009), 1, + anon_sym_DASH, + ACTIONS(5013), 1, anon_sym_LBRACE, - ACTIONS(5011), 1, + ACTIONS(5015), 1, sym_integer, - ACTIONS(5013), 1, + ACTIONS(5017), 1, sym_float, - ACTIONS(5079), 1, - anon_sym_RPAREN, - STATE(4084), 1, + ACTIONS(5081), 1, + anon_sym_RBRACK, + STATE(4015), 1, sym_string, - STATE(4428), 1, + STATE(4330), 1, sym_dotted_name, - STATE(5143), 1, + STATE(4628), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4986), 2, + STATE(4759), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5007), 3, + ACTIONS(5011), 3, anon_sym__, sym_true, sym_false, - STATE(4429), 10, + STATE(4391), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -226424,101 +227191,100 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [127078] = 20, - ACTIONS(4018), 1, - anon_sym_long, - ACTIONS(4979), 1, + [127074] = 19, + ACTIONS(1396), 1, + anon_sym_None, + ACTIONS(1408), 1, + sym_string_start, + ACTIONS(5019), 1, sym_identifier, - ACTIONS(4981), 1, + ACTIONS(5021), 1, anon_sym_LPAREN, - ACTIONS(4985), 1, + ACTIONS(5025), 1, anon_sym_STAR, - ACTIONS(4987), 1, + ACTIONS(5027), 1, anon_sym_STAR_STAR, - ACTIONS(4989), 1, - anon_sym_SLASH, - ACTIONS(5047), 1, + ACTIONS(5029), 1, + anon_sym_LBRACK, + ACTIONS(5031), 1, + anon_sym_DASH, + ACTIONS(5035), 1, + anon_sym_LBRACE, + ACTIONS(5037), 1, + sym_integer, + ACTIONS(5039), 1, + sym_float, + ACTIONS(5083), 1, anon_sym_RPAREN, - STATE(3188), 1, - sym__signedness, - STATE(3410), 1, - sym__longness, - STATE(4212), 1, - sym_c_type, - STATE(5135), 1, - sym_tuple_pattern, - STATE(5178), 1, - sym_parameter, + STATE(4123), 1, + sym_string, + STATE(4373), 1, + sym_dotted_name, + STATE(4515), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4014), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(4016), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4847), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3681), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5145), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(4012), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(5376), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [127151] = 19, + STATE(5089), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5033), 3, + anon_sym__, + sym_true, + sym_false, + STATE(4374), 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, + [127145] = 19, ACTIONS(1396), 1, anon_sym_None, ACTIONS(1408), 1, sym_string_start, - ACTIONS(4993), 1, + ACTIONS(5019), 1, sym_identifier, - ACTIONS(4995), 1, + ACTIONS(5021), 1, anon_sym_LPAREN, - ACTIONS(4999), 1, + ACTIONS(5025), 1, anon_sym_STAR, - ACTIONS(5001), 1, + ACTIONS(5027), 1, anon_sym_STAR_STAR, - ACTIONS(5003), 1, + ACTIONS(5029), 1, anon_sym_LBRACK, - ACTIONS(5005), 1, + ACTIONS(5031), 1, anon_sym_DASH, - ACTIONS(5009), 1, + ACTIONS(5035), 1, anon_sym_LBRACE, - ACTIONS(5011), 1, + ACTIONS(5037), 1, sym_integer, - ACTIONS(5013), 1, + ACTIONS(5039), 1, sym_float, - ACTIONS(5081), 1, + ACTIONS(5085), 1, anon_sym_RPAREN, - STATE(4084), 1, + STATE(4123), 1, sym_string, - STATE(4428), 1, + STATE(4373), 1, sym_dotted_name, - STATE(5143), 1, + STATE(4740), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4986), 2, + STATE(5089), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5007), 3, + ACTIONS(5033), 3, anon_sym__, sym_true, sym_false, - STATE(4429), 10, + STATE(4374), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -226529,48 +227295,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [127222] = 19, - ACTIONS(1396), 1, + [127216] = 19, + ACTIONS(2477), 1, anon_sym_None, - ACTIONS(1408), 1, + ACTIONS(2485), 1, sym_string_start, - ACTIONS(4993), 1, + ACTIONS(4997), 1, sym_identifier, - ACTIONS(4995), 1, - anon_sym_LPAREN, ACTIONS(4999), 1, - anon_sym_STAR, + anon_sym_LPAREN, ACTIONS(5001), 1, - anon_sym_STAR_STAR, + anon_sym_STAR, ACTIONS(5003), 1, - anon_sym_LBRACK, + anon_sym_STAR_STAR, ACTIONS(5005), 1, - anon_sym_DASH, + anon_sym_LBRACK, ACTIONS(5009), 1, + anon_sym_DASH, + ACTIONS(5013), 1, anon_sym_LBRACE, - ACTIONS(5011), 1, + ACTIONS(5015), 1, sym_integer, - ACTIONS(5013), 1, + ACTIONS(5017), 1, sym_float, - ACTIONS(5083), 1, - anon_sym_RPAREN, - STATE(4084), 1, + ACTIONS(5087), 1, + anon_sym_RBRACK, + STATE(4015), 1, sym_string, - STATE(4428), 1, + STATE(4330), 1, sym_dotted_name, - STATE(5143), 1, + STATE(4716), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4986), 2, + STATE(4759), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5007), 3, + ACTIONS(5011), 3, anon_sym__, sym_true, sym_false, - STATE(4429), 10, + STATE(4391), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -226581,48 +227347,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [127293] = 19, + [127287] = 19, ACTIONS(1396), 1, anon_sym_None, ACTIONS(1408), 1, sym_string_start, - ACTIONS(4993), 1, + ACTIONS(5019), 1, sym_identifier, - ACTIONS(4995), 1, + ACTIONS(5021), 1, anon_sym_LPAREN, - ACTIONS(4999), 1, + ACTIONS(5025), 1, anon_sym_STAR, - ACTIONS(5001), 1, + ACTIONS(5027), 1, anon_sym_STAR_STAR, - ACTIONS(5003), 1, + ACTIONS(5029), 1, anon_sym_LBRACK, - ACTIONS(5005), 1, + ACTIONS(5031), 1, anon_sym_DASH, - ACTIONS(5009), 1, + ACTIONS(5035), 1, anon_sym_LBRACE, - ACTIONS(5011), 1, + ACTIONS(5037), 1, sym_integer, - ACTIONS(5013), 1, + ACTIONS(5039), 1, sym_float, - ACTIONS(5085), 1, + ACTIONS(5089), 1, anon_sym_RPAREN, - STATE(4084), 1, + STATE(4123), 1, sym_string, - STATE(4428), 1, + STATE(4373), 1, sym_dotted_name, - STATE(4591), 1, + STATE(4740), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4986), 2, + STATE(5089), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5007), 3, + ACTIONS(5033), 3, anon_sym__, sym_true, sym_false, - STATE(4429), 10, + STATE(4374), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -226633,48 +227399,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [127364] = 19, - ACTIONS(2467), 1, + [127358] = 19, + ACTIONS(2477), 1, anon_sym_None, - ACTIONS(2475), 1, + ACTIONS(2485), 1, sym_string_start, - ACTIONS(5015), 1, + ACTIONS(4997), 1, sym_identifier, - ACTIONS(5017), 1, + ACTIONS(4999), 1, anon_sym_LPAREN, - ACTIONS(5019), 1, + ACTIONS(5001), 1, anon_sym_STAR, - ACTIONS(5021), 1, + ACTIONS(5003), 1, anon_sym_STAR_STAR, - ACTIONS(5023), 1, + ACTIONS(5005), 1, anon_sym_LBRACK, - ACTIONS(5027), 1, + ACTIONS(5009), 1, anon_sym_DASH, - ACTIONS(5031), 1, + ACTIONS(5013), 1, anon_sym_LBRACE, - ACTIONS(5033), 1, + ACTIONS(5015), 1, sym_integer, - ACTIONS(5035), 1, + ACTIONS(5017), 1, sym_float, - ACTIONS(5087), 1, + ACTIONS(5091), 1, anon_sym_RBRACK, - STATE(4066), 1, + STATE(4015), 1, sym_string, - STATE(4397), 1, + STATE(4330), 1, sym_dotted_name, - STATE(4592), 1, + STATE(4716), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4916), 2, + STATE(4759), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5029), 3, + ACTIONS(5011), 3, anon_sym__, sym_true, sym_false, - STATE(4398), 10, + STATE(4391), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -226685,48 +227451,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [127435] = 19, + [127429] = 19, ACTIONS(1396), 1, anon_sym_None, ACTIONS(1408), 1, sym_string_start, - ACTIONS(4993), 1, + ACTIONS(5019), 1, sym_identifier, - ACTIONS(4995), 1, + ACTIONS(5021), 1, anon_sym_LPAREN, - ACTIONS(4999), 1, + ACTIONS(5025), 1, anon_sym_STAR, - ACTIONS(5001), 1, + ACTIONS(5027), 1, anon_sym_STAR_STAR, - ACTIONS(5003), 1, + ACTIONS(5029), 1, anon_sym_LBRACK, - ACTIONS(5005), 1, + ACTIONS(5031), 1, anon_sym_DASH, - ACTIONS(5009), 1, + ACTIONS(5035), 1, anon_sym_LBRACE, - ACTIONS(5011), 1, + ACTIONS(5037), 1, sym_integer, - ACTIONS(5013), 1, + ACTIONS(5039), 1, sym_float, - ACTIONS(5089), 1, + ACTIONS(5093), 1, anon_sym_RPAREN, - STATE(4084), 1, + STATE(4123), 1, sym_string, - STATE(4428), 1, + STATE(4373), 1, sym_dotted_name, - STATE(5143), 1, + STATE(4740), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4986), 2, + STATE(5089), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5007), 3, + ACTIONS(5033), 3, anon_sym__, sym_true, sym_false, - STATE(4429), 10, + STATE(4374), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -226737,48 +227503,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [127506] = 19, + [127500] = 19, ACTIONS(1396), 1, anon_sym_None, ACTIONS(1408), 1, sym_string_start, - ACTIONS(4993), 1, + ACTIONS(5019), 1, sym_identifier, - ACTIONS(4995), 1, + ACTIONS(5021), 1, anon_sym_LPAREN, - ACTIONS(4999), 1, + ACTIONS(5025), 1, anon_sym_STAR, - ACTIONS(5001), 1, + ACTIONS(5027), 1, anon_sym_STAR_STAR, - ACTIONS(5003), 1, + ACTIONS(5029), 1, anon_sym_LBRACK, - ACTIONS(5005), 1, + ACTIONS(5031), 1, anon_sym_DASH, - ACTIONS(5009), 1, + ACTIONS(5035), 1, anon_sym_LBRACE, - ACTIONS(5011), 1, + ACTIONS(5037), 1, sym_integer, - ACTIONS(5013), 1, + ACTIONS(5039), 1, sym_float, - ACTIONS(5091), 1, + ACTIONS(5095), 1, anon_sym_RPAREN, - STATE(4084), 1, + STATE(4123), 1, sym_string, - STATE(4428), 1, + STATE(4373), 1, sym_dotted_name, - STATE(5143), 1, + STATE(4740), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4986), 2, + STATE(5089), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5007), 3, + ACTIONS(5033), 3, anon_sym__, sym_true, sym_false, - STATE(4429), 10, + STATE(4374), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -226789,48 +227555,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [127577] = 19, - ACTIONS(2467), 1, + [127571] = 19, + ACTIONS(2477), 1, anon_sym_None, - ACTIONS(2475), 1, + ACTIONS(2485), 1, sym_string_start, - ACTIONS(5015), 1, + ACTIONS(4997), 1, sym_identifier, - ACTIONS(5017), 1, + ACTIONS(4999), 1, anon_sym_LPAREN, - ACTIONS(5019), 1, + ACTIONS(5001), 1, anon_sym_STAR, - ACTIONS(5021), 1, + ACTIONS(5003), 1, anon_sym_STAR_STAR, - ACTIONS(5023), 1, + ACTIONS(5005), 1, anon_sym_LBRACK, - ACTIONS(5027), 1, + ACTIONS(5009), 1, anon_sym_DASH, - ACTIONS(5031), 1, + ACTIONS(5013), 1, anon_sym_LBRACE, - ACTIONS(5033), 1, + ACTIONS(5015), 1, sym_integer, - ACTIONS(5035), 1, + ACTIONS(5017), 1, sym_float, - ACTIONS(5093), 1, + ACTIONS(5097), 1, anon_sym_RBRACK, - STATE(4066), 1, + STATE(4015), 1, sym_string, - STATE(4397), 1, + STATE(4330), 1, sym_dotted_name, - STATE(5077), 1, + STATE(4716), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4916), 2, + STATE(4759), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5029), 3, + ACTIONS(5011), 3, anon_sym__, sym_true, sym_false, - STATE(4398), 10, + STATE(4391), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -226841,48 +227607,105 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [127648] = 19, + [127642] = 24, + ACTIONS(1356), 1, + anon_sym_long, + ACTIONS(5099), 1, + sym_identifier, + ACTIONS(5101), 1, + anon_sym_LPAREN, + ACTIONS(5103), 1, + anon_sym_RPAREN, + ACTIONS(5109), 1, + anon_sym_LBRACK, + ACTIONS(5111), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5113), 1, + anon_sym_operator, + STATE(3148), 1, + sym__signedness, + STATE(3162), 1, + sym_int_type, + STATE(3367), 1, + sym__longness, + STATE(3449), 1, + sym_function_pointer_type, + STATE(3513), 1, + sym_operator_name, + STATE(4360), 1, + sym_maybe_typed_name, + STATE(4508), 1, + sym_c_type, + STATE(5024), 1, + sym_type_index, + STATE(5521), 1, + sym__typedargslist, + STATE(5640), 1, + sym_type_qualifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1352), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(1354), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5105), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(5107), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + ACTIONS(5115), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(1348), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [127723] = 19, ACTIONS(1396), 1, anon_sym_None, ACTIONS(1408), 1, sym_string_start, - ACTIONS(4993), 1, + ACTIONS(5019), 1, sym_identifier, - ACTIONS(4995), 1, + ACTIONS(5021), 1, anon_sym_LPAREN, - ACTIONS(4999), 1, + ACTIONS(5025), 1, anon_sym_STAR, - ACTIONS(5001), 1, + ACTIONS(5027), 1, anon_sym_STAR_STAR, - ACTIONS(5003), 1, + ACTIONS(5029), 1, anon_sym_LBRACK, - ACTIONS(5005), 1, + ACTIONS(5031), 1, anon_sym_DASH, - ACTIONS(5009), 1, + ACTIONS(5035), 1, anon_sym_LBRACE, - ACTIONS(5011), 1, + ACTIONS(5037), 1, sym_integer, - ACTIONS(5013), 1, + ACTIONS(5039), 1, sym_float, - ACTIONS(5095), 1, + ACTIONS(5117), 1, anon_sym_RPAREN, - STATE(4084), 1, + STATE(4123), 1, sym_string, - STATE(4428), 1, + STATE(4373), 1, sym_dotted_name, - STATE(5143), 1, + STATE(4532), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4986), 2, + STATE(5089), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5007), 3, + ACTIONS(5033), 3, anon_sym__, sym_true, sym_false, - STATE(4429), 10, + STATE(4374), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -226893,48 +227716,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [127719] = 19, - ACTIONS(2467), 1, + [127794] = 19, + ACTIONS(2477), 1, anon_sym_None, - ACTIONS(2475), 1, + ACTIONS(2485), 1, sym_string_start, - ACTIONS(5015), 1, + ACTIONS(4997), 1, sym_identifier, - ACTIONS(5017), 1, + ACTIONS(4999), 1, anon_sym_LPAREN, - ACTIONS(5019), 1, + ACTIONS(5001), 1, anon_sym_STAR, - ACTIONS(5021), 1, + ACTIONS(5003), 1, anon_sym_STAR_STAR, - ACTIONS(5023), 1, + ACTIONS(5005), 1, anon_sym_LBRACK, - ACTIONS(5027), 1, + ACTIONS(5009), 1, anon_sym_DASH, - ACTIONS(5031), 1, + ACTIONS(5013), 1, anon_sym_LBRACE, - ACTIONS(5033), 1, + ACTIONS(5015), 1, sym_integer, - ACTIONS(5035), 1, + ACTIONS(5017), 1, sym_float, - ACTIONS(5097), 1, + ACTIONS(5119), 1, anon_sym_RBRACK, - STATE(4066), 1, + STATE(4015), 1, sym_string, - STATE(4397), 1, + STATE(4330), 1, sym_dotted_name, - STATE(5077), 1, + STATE(4533), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4916), 2, + STATE(4759), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5029), 3, + ACTIONS(5011), 3, anon_sym__, sym_true, sym_false, - STATE(4398), 10, + STATE(4391), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -226945,48 +227768,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [127790] = 19, + [127865] = 19, ACTIONS(1396), 1, anon_sym_None, ACTIONS(1408), 1, sym_string_start, - ACTIONS(4993), 1, + ACTIONS(5019), 1, sym_identifier, - ACTIONS(4995), 1, + ACTIONS(5021), 1, anon_sym_LPAREN, - ACTIONS(4999), 1, + ACTIONS(5025), 1, anon_sym_STAR, - ACTIONS(5001), 1, + ACTIONS(5027), 1, anon_sym_STAR_STAR, - ACTIONS(5003), 1, + ACTIONS(5029), 1, anon_sym_LBRACK, - ACTIONS(5005), 1, + ACTIONS(5031), 1, anon_sym_DASH, - ACTIONS(5009), 1, + ACTIONS(5035), 1, anon_sym_LBRACE, - ACTIONS(5011), 1, + ACTIONS(5037), 1, sym_integer, - ACTIONS(5013), 1, + ACTIONS(5039), 1, sym_float, - ACTIONS(5099), 1, + ACTIONS(5121), 1, anon_sym_RPAREN, - STATE(4084), 1, + STATE(4123), 1, sym_string, - STATE(4428), 1, + STATE(4373), 1, sym_dotted_name, - STATE(5143), 1, + STATE(4537), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4986), 2, + STATE(5089), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5007), 3, + ACTIONS(5033), 3, anon_sym__, sym_true, sym_false, - STATE(4429), 10, + STATE(4374), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -226997,48 +227820,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [127861] = 19, + [127936] = 19, ACTIONS(1396), 1, anon_sym_None, ACTIONS(1408), 1, sym_string_start, - ACTIONS(4993), 1, + ACTIONS(5019), 1, sym_identifier, - ACTIONS(4995), 1, + ACTIONS(5021), 1, anon_sym_LPAREN, - ACTIONS(4999), 1, + ACTIONS(5025), 1, anon_sym_STAR, - ACTIONS(5001), 1, + ACTIONS(5027), 1, anon_sym_STAR_STAR, - ACTIONS(5003), 1, + ACTIONS(5029), 1, anon_sym_LBRACK, - ACTIONS(5005), 1, + ACTIONS(5031), 1, anon_sym_DASH, - ACTIONS(5009), 1, + ACTIONS(5035), 1, anon_sym_LBRACE, - ACTIONS(5011), 1, + ACTIONS(5037), 1, sym_integer, - ACTIONS(5013), 1, + ACTIONS(5039), 1, sym_float, - ACTIONS(5101), 1, + ACTIONS(5123), 1, anon_sym_RPAREN, - STATE(4084), 1, + STATE(4123), 1, sym_string, - STATE(4428), 1, + STATE(4373), 1, sym_dotted_name, - STATE(5143), 1, + STATE(4740), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4986), 2, + STATE(5089), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5007), 3, + ACTIONS(5033), 3, anon_sym__, sym_true, sym_false, - STATE(4429), 10, + STATE(4374), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -227049,48 +227872,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [127932] = 19, - ACTIONS(2467), 1, + [128007] = 19, + ACTIONS(2477), 1, anon_sym_None, - ACTIONS(2475), 1, + ACTIONS(2485), 1, sym_string_start, - ACTIONS(5015), 1, + ACTIONS(4997), 1, sym_identifier, - ACTIONS(5017), 1, + ACTIONS(4999), 1, anon_sym_LPAREN, - ACTIONS(5019), 1, + ACTIONS(5001), 1, anon_sym_STAR, - ACTIONS(5021), 1, + ACTIONS(5003), 1, anon_sym_STAR_STAR, - ACTIONS(5023), 1, + ACTIONS(5005), 1, anon_sym_LBRACK, - ACTIONS(5027), 1, + ACTIONS(5009), 1, anon_sym_DASH, - ACTIONS(5031), 1, + ACTIONS(5013), 1, anon_sym_LBRACE, - ACTIONS(5033), 1, + ACTIONS(5015), 1, sym_integer, - ACTIONS(5035), 1, + ACTIONS(5017), 1, sym_float, - ACTIONS(5103), 1, + ACTIONS(5125), 1, anon_sym_RBRACK, - STATE(4066), 1, + STATE(4015), 1, sym_string, - STATE(4397), 1, + STATE(4330), 1, sym_dotted_name, - STATE(5077), 1, + STATE(4716), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4916), 2, + STATE(4759), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5029), 3, + ACTIONS(5011), 3, anon_sym__, sym_true, sym_false, - STATE(4398), 10, + STATE(4391), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -227101,48 +227924,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [128003] = 19, + [128078] = 19, ACTIONS(1396), 1, anon_sym_None, ACTIONS(1408), 1, sym_string_start, - ACTIONS(4993), 1, + ACTIONS(5019), 1, sym_identifier, - ACTIONS(4995), 1, + ACTIONS(5021), 1, anon_sym_LPAREN, - ACTIONS(4999), 1, + ACTIONS(5025), 1, anon_sym_STAR, - ACTIONS(5001), 1, + ACTIONS(5027), 1, anon_sym_STAR_STAR, - ACTIONS(5003), 1, + ACTIONS(5029), 1, anon_sym_LBRACK, - ACTIONS(5005), 1, + ACTIONS(5031), 1, anon_sym_DASH, - ACTIONS(5009), 1, + ACTIONS(5035), 1, anon_sym_LBRACE, - ACTIONS(5011), 1, + ACTIONS(5037), 1, sym_integer, - ACTIONS(5013), 1, + ACTIONS(5039), 1, sym_float, - ACTIONS(5105), 1, + ACTIONS(5127), 1, anon_sym_RPAREN, - STATE(4084), 1, + STATE(4123), 1, sym_string, - STATE(4428), 1, + STATE(4373), 1, sym_dotted_name, - STATE(5143), 1, + STATE(4740), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4986), 2, + STATE(5089), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5007), 3, + ACTIONS(5033), 3, anon_sym__, sym_true, sym_false, - STATE(4429), 10, + STATE(4374), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -227153,158 +227976,152 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [128074] = 24, - ACTIONS(1356), 1, - anon_sym_long, - ACTIONS(5107), 1, + [128149] = 19, + ACTIONS(1396), 1, + anon_sym_None, + ACTIONS(1408), 1, + sym_string_start, + ACTIONS(5019), 1, sym_identifier, - ACTIONS(5109), 1, + ACTIONS(5021), 1, anon_sym_LPAREN, - ACTIONS(5111), 1, - anon_sym_RPAREN, - ACTIONS(5117), 1, + ACTIONS(5025), 1, + anon_sym_STAR, + ACTIONS(5027), 1, + anon_sym_STAR_STAR, + ACTIONS(5029), 1, anon_sym_LBRACK, - ACTIONS(5119), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5121), 1, - anon_sym_operator, - STATE(3124), 1, - sym__signedness, - STATE(3142), 1, - sym_int_type, - STATE(3338), 1, - sym__longness, - STATE(3507), 1, - sym_function_pointer_type, - STATE(3527), 1, - sym_operator_name, - STATE(4385), 1, - sym_maybe_typed_name, - STATE(4622), 1, - sym_c_type, - STATE(4976), 1, - sym_type_index, - STATE(5644), 1, - sym__typedargslist, - STATE(5713), 1, - sym_type_qualifier, + ACTIONS(5031), 1, + anon_sym_DASH, + ACTIONS(5035), 1, + anon_sym_LBRACE, + ACTIONS(5037), 1, + sym_integer, + ACTIONS(5039), 1, + sym_float, + ACTIONS(5129), 1, + anon_sym_RPAREN, + STATE(4123), 1, + sym_string, + STATE(4373), 1, + sym_dotted_name, + STATE(4740), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1352), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(1354), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(5113), 2, + STATE(5089), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5033), 3, + anon_sym__, + sym_true, + sym_false, + STATE(4374), 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, + [128220] = 19, + ACTIONS(2477), 1, + anon_sym_None, + ACTIONS(2485), 1, + sym_string_start, + ACTIONS(4997), 1, + sym_identifier, + ACTIONS(4999), 1, + anon_sym_LPAREN, + ACTIONS(5001), 1, anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(5115), 2, + ACTIONS(5003), 1, anon_sym_STAR_STAR, - anon_sym_AMP, - ACTIONS(5123), 2, - anon_sym_const, - anon_sym_volatile, - ACTIONS(1348), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [128155] = 20, - ACTIONS(371), 1, - anon_sym_long, - ACTIONS(4094), 1, - anon_sym_operator, - ACTIONS(4165), 1, - sym_identifier, - ACTIONS(4167), 1, - anon_sym_class, - ACTIONS(5125), 1, - anon_sym_COLON, - ACTIONS(5127), 1, - anon_sym_namespace, - ACTIONS(5129), 1, - anon_sym_nogil, - STATE(3130), 1, - sym__signedness, - STATE(3228), 1, - sym_int_type, - STATE(3321), 1, - sym__longness, - STATE(3597), 1, - sym_operator_name, - STATE(3811), 1, - sym_maybe_typed_name, + ACTIONS(5005), 1, + anon_sym_LBRACK, + ACTIONS(5009), 1, + anon_sym_DASH, + ACTIONS(5013), 1, + anon_sym_LBRACE, + ACTIONS(5015), 1, + sym_integer, + ACTIONS(5017), 1, + sym_float, + ACTIONS(5131), 1, + anon_sym_RBRACK, + STATE(4015), 1, + sym_string, + STATE(4330), 1, + sym_dotted_name, + STATE(4716), 1, + sym_case_pattern, 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(4096), 2, - anon_sym_const, - anon_sym_volatile, - STATE(2945), 2, - sym_class_definition, - sym_cvar_def, - STATE(3072), 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, - [128228] = 19, + STATE(4759), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5011), 3, + anon_sym__, + sym_true, + sym_false, + STATE(4391), 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, + [128291] = 19, ACTIONS(1396), 1, anon_sym_None, ACTIONS(1408), 1, sym_string_start, - ACTIONS(4993), 1, + ACTIONS(5019), 1, sym_identifier, - ACTIONS(4995), 1, + ACTIONS(5021), 1, anon_sym_LPAREN, - ACTIONS(4999), 1, + ACTIONS(5025), 1, anon_sym_STAR, - ACTIONS(5001), 1, + ACTIONS(5027), 1, anon_sym_STAR_STAR, - ACTIONS(5003), 1, + ACTIONS(5029), 1, anon_sym_LBRACK, - ACTIONS(5005), 1, + ACTIONS(5031), 1, anon_sym_DASH, - ACTIONS(5009), 1, + ACTIONS(5035), 1, anon_sym_LBRACE, - ACTIONS(5011), 1, + ACTIONS(5037), 1, sym_integer, - ACTIONS(5013), 1, + ACTIONS(5039), 1, sym_float, - ACTIONS(5131), 1, + ACTIONS(5133), 1, anon_sym_RPAREN, - STATE(4084), 1, + STATE(4123), 1, sym_string, - STATE(4428), 1, + STATE(4373), 1, sym_dotted_name, - STATE(5143), 1, + STATE(4740), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4986), 2, + STATE(5089), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5007), 3, + ACTIONS(5033), 3, anon_sym__, sym_true, sym_false, - STATE(4429), 10, + STATE(4374), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -227315,48 +228132,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [128299] = 19, + [128362] = 19, ACTIONS(1396), 1, anon_sym_None, ACTIONS(1408), 1, sym_string_start, - ACTIONS(4993), 1, + ACTIONS(5019), 1, sym_identifier, - ACTIONS(4995), 1, + ACTIONS(5021), 1, anon_sym_LPAREN, - ACTIONS(4999), 1, + ACTIONS(5025), 1, anon_sym_STAR, - ACTIONS(5001), 1, + ACTIONS(5027), 1, anon_sym_STAR_STAR, - ACTIONS(5003), 1, + ACTIONS(5029), 1, anon_sym_LBRACK, - ACTIONS(5005), 1, + ACTIONS(5031), 1, anon_sym_DASH, - ACTIONS(5009), 1, + ACTIONS(5035), 1, anon_sym_LBRACE, - ACTIONS(5011), 1, + ACTIONS(5037), 1, sym_integer, - ACTIONS(5013), 1, + ACTIONS(5039), 1, sym_float, - ACTIONS(5133), 1, + ACTIONS(5135), 1, anon_sym_RPAREN, - STATE(4084), 1, + STATE(4123), 1, sym_string, - STATE(4428), 1, + STATE(4373), 1, sym_dotted_name, - STATE(4549), 1, + STATE(4740), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4986), 2, + STATE(5089), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5007), 3, + ACTIONS(5033), 3, anon_sym__, sym_true, sym_false, - STATE(4429), 10, + STATE(4374), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -227367,48 +228184,207 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [128370] = 19, - ACTIONS(2467), 1, + [128433] = 20, + ACTIONS(3948), 1, + anon_sym_long, + ACTIONS(4983), 1, + sym_identifier, + ACTIONS(4985), 1, + anon_sym_LPAREN, + ACTIONS(4989), 1, + anon_sym_STAR, + ACTIONS(4991), 1, + anon_sym_STAR_STAR, + ACTIONS(4993), 1, + anon_sym_SLASH, + ACTIONS(5053), 1, + anon_sym_RPAREN, + STATE(3198), 1, + sym__signedness, + STATE(3409), 1, + sym__longness, + STATE(4256), 1, + sym_c_type, + STATE(4779), 1, + sym_tuple_pattern, + STATE(5391), 1, + sym_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3944), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(3946), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4851), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3655), 2, + sym_int_type, + sym_function_pointer_type, + STATE(5016), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(3942), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(5211), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [128506] = 20, + ACTIONS(371), 1, + anon_sym_long, + ACTIONS(3978), 1, + anon_sym_operator, + ACTIONS(4122), 1, + sym_identifier, + ACTIONS(4124), 1, + anon_sym_class, + ACTIONS(5137), 1, + anon_sym_COLON, + ACTIONS(5139), 1, + anon_sym_namespace, + ACTIONS(5141), 1, + anon_sym_nogil, + STATE(3140), 1, + sym__signedness, + STATE(3191), 1, + sym_int_type, + STATE(3368), 1, + sym__longness, + STATE(3562), 1, + sym_operator_name, + STATE(3795), 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(3980), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3045), 2, + sym_class_definition, + sym_cvar_def, + STATE(3083), 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, + [128579] = 20, + ACTIONS(3948), 1, + anon_sym_long, + ACTIONS(4841), 1, + anon_sym_LPAREN, + ACTIONS(4843), 1, + anon_sym_STAR, + ACTIONS(4847), 1, + anon_sym_STAR_STAR, + ACTIONS(4849), 1, + anon_sym_SLASH, + ACTIONS(5051), 1, + sym_identifier, + ACTIONS(5143), 1, + anon_sym_COLON, + STATE(3198), 1, + sym__signedness, + STATE(3409), 1, + sym__longness, + STATE(4198), 1, + sym_c_type, + STATE(4654), 1, + sym_tuple_pattern, + STATE(5180), 1, + sym_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3944), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(3946), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4851), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3655), 2, + sym_int_type, + sym_function_pointer_type, + STATE(5175), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(3942), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(5172), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [128652] = 19, + ACTIONS(1396), 1, anon_sym_None, - ACTIONS(2475), 1, + ACTIONS(1408), 1, sym_string_start, - ACTIONS(5015), 1, + ACTIONS(5019), 1, sym_identifier, - ACTIONS(5017), 1, + ACTIONS(5021), 1, anon_sym_LPAREN, - ACTIONS(5019), 1, + ACTIONS(5025), 1, anon_sym_STAR, - ACTIONS(5021), 1, + ACTIONS(5027), 1, anon_sym_STAR_STAR, - ACTIONS(5023), 1, + ACTIONS(5029), 1, anon_sym_LBRACK, - ACTIONS(5027), 1, - anon_sym_DASH, ACTIONS(5031), 1, + anon_sym_DASH, + ACTIONS(5035), 1, anon_sym_LBRACE, - ACTIONS(5033), 1, + ACTIONS(5037), 1, sym_integer, - ACTIONS(5035), 1, + ACTIONS(5039), 1, sym_float, - ACTIONS(5135), 1, - anon_sym_RBRACK, - STATE(4066), 1, + ACTIONS(5145), 1, + anon_sym_RPAREN, + STATE(4123), 1, sym_string, - STATE(4397), 1, + STATE(4373), 1, sym_dotted_name, - STATE(4552), 1, + STATE(4527), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4916), 2, + STATE(5089), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5029), 3, + ACTIONS(5033), 3, anon_sym__, sym_true, sym_false, - STATE(4398), 10, + STATE(4374), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -227419,48 +228395,101 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [128441] = 19, + [128723] = 20, + ACTIONS(3948), 1, + anon_sym_long, + ACTIONS(4983), 1, + sym_identifier, + ACTIONS(4985), 1, + anon_sym_LPAREN, + ACTIONS(4989), 1, + anon_sym_STAR, + ACTIONS(4991), 1, + anon_sym_STAR_STAR, + ACTIONS(4993), 1, + anon_sym_SLASH, + ACTIONS(5143), 1, + anon_sym_RPAREN, + STATE(3198), 1, + sym__signedness, + STATE(3409), 1, + sym__longness, + STATE(4256), 1, + sym_c_type, + STATE(4779), 1, + sym_tuple_pattern, + STATE(5391), 1, + sym_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3944), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(3946), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4851), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3655), 2, + sym_int_type, + sym_function_pointer_type, + STATE(5016), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(3942), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(5211), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [128796] = 19, ACTIONS(1396), 1, anon_sym_None, ACTIONS(1408), 1, sym_string_start, - ACTIONS(4993), 1, + ACTIONS(5019), 1, sym_identifier, - ACTIONS(4995), 1, + ACTIONS(5021), 1, anon_sym_LPAREN, - ACTIONS(4999), 1, + ACTIONS(5025), 1, anon_sym_STAR, - ACTIONS(5001), 1, + ACTIONS(5027), 1, anon_sym_STAR_STAR, - ACTIONS(5003), 1, + ACTIONS(5029), 1, anon_sym_LBRACK, - ACTIONS(5005), 1, + ACTIONS(5031), 1, anon_sym_DASH, - ACTIONS(5009), 1, + ACTIONS(5035), 1, anon_sym_LBRACE, - ACTIONS(5011), 1, + ACTIONS(5037), 1, sym_integer, - ACTIONS(5013), 1, + ACTIONS(5039), 1, sym_float, - ACTIONS(5137), 1, + ACTIONS(5147), 1, anon_sym_RPAREN, - STATE(4084), 1, + STATE(4123), 1, sym_string, - STATE(4428), 1, + STATE(4373), 1, sym_dotted_name, - STATE(4485), 1, + STATE(4479), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4986), 2, + STATE(5089), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5007), 3, + ACTIONS(5033), 3, anon_sym__, sym_true, sym_false, - STATE(4429), 10, + STATE(4374), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -227471,48 +228500,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [128512] = 19, + [128867] = 19, ACTIONS(1396), 1, anon_sym_None, ACTIONS(1408), 1, sym_string_start, - ACTIONS(4993), 1, + ACTIONS(5019), 1, sym_identifier, - ACTIONS(4995), 1, + ACTIONS(5021), 1, anon_sym_LPAREN, - ACTIONS(4999), 1, + ACTIONS(5025), 1, anon_sym_STAR, - ACTIONS(5001), 1, + ACTIONS(5027), 1, anon_sym_STAR_STAR, - ACTIONS(5003), 1, + ACTIONS(5029), 1, anon_sym_LBRACK, - ACTIONS(5005), 1, + ACTIONS(5031), 1, anon_sym_DASH, - ACTIONS(5009), 1, + ACTIONS(5035), 1, anon_sym_LBRACE, - ACTIONS(5011), 1, + ACTIONS(5037), 1, sym_integer, - ACTIONS(5013), 1, + ACTIONS(5039), 1, sym_float, - ACTIONS(5139), 1, + ACTIONS(5149), 1, anon_sym_RPAREN, - STATE(4084), 1, + STATE(4123), 1, sym_string, - STATE(4428), 1, + STATE(4373), 1, sym_dotted_name, - STATE(4582), 1, + STATE(4740), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4986), 2, + STATE(5089), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5007), 3, + ACTIONS(5033), 3, anon_sym__, sym_true, sym_false, - STATE(4429), 10, + STATE(4374), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -227523,101 +228552,183 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [128583] = 20, - ACTIONS(4018), 1, + [128938] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1484), 3, + sym__dedent, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(1482), 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, + [128976] = 19, + ACTIONS(125), 1, + anon_sym_class, + ACTIONS(371), 1, + anon_sym_long, + ACTIONS(3978), 1, + anon_sym_operator, + ACTIONS(4122), 1, + sym_identifier, + ACTIONS(5151), 1, + anon_sym_COLON, + ACTIONS(5153), 1, + anon_sym_nogil, + STATE(3140), 1, + sym__signedness, + STATE(3191), 1, + sym_int_type, + STATE(3368), 1, + sym__longness, + STATE(3562), 1, + sym_operator_name, + STATE(3810), 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(3980), 2, + anon_sym_const, + anon_sym_volatile, + STATE(666), 2, + sym_class_definition, + sym_cvar_def, + STATE(3084), 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, + [129046] = 19, + ACTIONS(3948), 1, anon_sym_long, - ACTIONS(4837), 1, + ACTIONS(4983), 1, + sym_identifier, + ACTIONS(4985), 1, anon_sym_LPAREN, - ACTIONS(4839), 1, + ACTIONS(4989), 1, anon_sym_STAR, - ACTIONS(4843), 1, + ACTIONS(4991), 1, anon_sym_STAR_STAR, - ACTIONS(4845), 1, + ACTIONS(4993), 1, anon_sym_SLASH, - ACTIONS(5045), 1, - sym_identifier, - ACTIONS(5057), 1, - anon_sym_COLON, - STATE(3188), 1, + STATE(3198), 1, sym__signedness, - STATE(3410), 1, + STATE(3409), 1, sym__longness, - STATE(4280), 1, + STATE(4256), 1, sym_c_type, - STATE(4664), 1, + STATE(4779), 1, sym_tuple_pattern, - STATE(5374), 1, + STATE(5391), 1, sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4014), 2, + ACTIONS(3944), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4016), 2, + ACTIONS(3946), 2, anon_sym_char, anon_sym_short, - ACTIONS(4847), 2, + ACTIONS(4851), 2, anon_sym_const, anon_sym_volatile, - STATE(3681), 2, + STATE(3655), 2, sym_int_type, sym_function_pointer_type, - STATE(5368), 2, + STATE(5016), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - ACTIONS(4012), 3, + ACTIONS(3942), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(5283), 5, + STATE(5211), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [128656] = 19, - ACTIONS(1396), 1, + [129116] = 18, + ACTIONS(1235), 1, anon_sym_None, - ACTIONS(1408), 1, + ACTIONS(1247), 1, sym_string_start, - ACTIONS(4993), 1, + ACTIONS(4855), 1, sym_identifier, - ACTIONS(4995), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4999), 1, + ACTIONS(4859), 1, anon_sym_STAR, - ACTIONS(5001), 1, + ACTIONS(4865), 1, anon_sym_STAR_STAR, - ACTIONS(5003), 1, + ACTIONS(4867), 1, anon_sym_LBRACK, - ACTIONS(5005), 1, + ACTIONS(4869), 1, anon_sym_DASH, - ACTIONS(5009), 1, + ACTIONS(4873), 1, anon_sym_LBRACE, - ACTIONS(5011), 1, + ACTIONS(4875), 1, sym_integer, - ACTIONS(5013), 1, + ACTIONS(4877), 1, sym_float, - ACTIONS(5141), 1, - anon_sym_RPAREN, - STATE(4084), 1, + STATE(3941), 1, sym_string, - STATE(4428), 1, + STATE(4165), 1, sym_dotted_name, - STATE(5143), 1, + STATE(4166), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4986), 2, + STATE(4509), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5007), 3, + ACTIONS(4871), 3, anon_sym__, sym_true, sym_false, - STATE(4429), 10, + STATE(4167), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -227628,48 +228739,81 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [128727] = 19, - ACTIONS(2467), 1, + [129184] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1480), 3, + sym__dedent, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(1478), 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, + [129222] = 18, + ACTIONS(1959), 1, anon_sym_None, - ACTIONS(2475), 1, + ACTIONS(1967), 1, sym_string_start, - ACTIONS(5015), 1, + ACTIONS(5155), 1, sym_identifier, - ACTIONS(5017), 1, + ACTIONS(5157), 1, anon_sym_LPAREN, - ACTIONS(5019), 1, + ACTIONS(5159), 1, anon_sym_STAR, - ACTIONS(5021), 1, + ACTIONS(5161), 1, anon_sym_STAR_STAR, - ACTIONS(5023), 1, + ACTIONS(5163), 1, anon_sym_LBRACK, - ACTIONS(5027), 1, + ACTIONS(5165), 1, anon_sym_DASH, - ACTIONS(5031), 1, + ACTIONS(5169), 1, anon_sym_LBRACE, - ACTIONS(5033), 1, + ACTIONS(5171), 1, sym_integer, - ACTIONS(5035), 1, + ACTIONS(5173), 1, sym_float, - ACTIONS(5143), 1, - anon_sym_RBRACK, - STATE(4066), 1, + STATE(4087), 1, sym_string, - STATE(4397), 1, + STATE(4349), 1, sym_dotted_name, - STATE(5077), 1, + STATE(5027), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4916), 2, + STATE(4971), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5029), 3, + ACTIONS(5167), 3, anon_sym__, sym_true, sym_false, - STATE(4398), 10, + STATE(4355), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -227680,48 +228824,46 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [128798] = 19, + [129290] = 18, ACTIONS(1396), 1, anon_sym_None, ACTIONS(1408), 1, sym_string_start, - ACTIONS(4993), 1, + ACTIONS(5019), 1, sym_identifier, - ACTIONS(4995), 1, + ACTIONS(5021), 1, anon_sym_LPAREN, - ACTIONS(4999), 1, + ACTIONS(5025), 1, anon_sym_STAR, - ACTIONS(5001), 1, + ACTIONS(5027), 1, anon_sym_STAR_STAR, - ACTIONS(5003), 1, + ACTIONS(5029), 1, anon_sym_LBRACK, - ACTIONS(5005), 1, + ACTIONS(5031), 1, anon_sym_DASH, - ACTIONS(5009), 1, + ACTIONS(5035), 1, anon_sym_LBRACE, - ACTIONS(5011), 1, + ACTIONS(5037), 1, sym_integer, - ACTIONS(5013), 1, + ACTIONS(5039), 1, sym_float, - ACTIONS(5145), 1, - anon_sym_RPAREN, - STATE(4084), 1, + STATE(4123), 1, sym_string, - STATE(4428), 1, + STATE(4373), 1, sym_dotted_name, - STATE(4598), 1, + STATE(4740), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4986), 2, + STATE(5089), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5007), 3, + ACTIONS(5033), 3, anon_sym__, sym_true, sym_false, - STATE(4429), 10, + STATE(4374), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -227732,63 +228874,28 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [128869] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3697), 2, - anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(5147), 27, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, + [129358] = 19, + ACTIONS(59), 1, 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_ctypedef, - anon_sym_struct, - anon_sym_union, - anon_sym_enum, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - [128907] = 19, ACTIONS(371), 1, anon_sym_long, - ACTIONS(4094), 1, + ACTIONS(3978), 1, anon_sym_operator, - ACTIONS(4165), 1, + ACTIONS(4122), 1, sym_identifier, - ACTIONS(5149), 1, - anon_sym_class, - ACTIONS(5151), 1, - anon_sym_ctypedef, - ACTIONS(5155), 1, - anon_sym_enum, - STATE(3130), 1, + ACTIONS(5175), 1, + anon_sym_COLON, + ACTIONS(5177), 1, + anon_sym_nogil, + STATE(3140), 1, sym__signedness, - STATE(3228), 1, + STATE(3191), 1, sym_int_type, - STATE(3321), 1, + STATE(3368), 1, sym__longness, - STATE(3597), 1, + STATE(3562), 1, sym_operator_name, - STATE(3813), 1, + STATE(3869), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -227799,13 +228906,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(4096), 2, + ACTIONS(3980), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(5153), 2, - anon_sym_struct, - anon_sym_union, - STATE(2727), 2, + STATE(1166), 2, + sym_class_definition, + sym_cvar_def, + STATE(3082), 2, sym_storageclass, aux_sym_class_definition_repeat1, ACTIONS(365), 3, @@ -227818,28 +228925,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [128977] = 19, + [129428] = 18, + ACTIONS(2477), 1, + anon_sym_None, + ACTIONS(2485), 1, + sym_string_start, + ACTIONS(4997), 1, + sym_identifier, + ACTIONS(4999), 1, + anon_sym_LPAREN, + ACTIONS(5001), 1, + anon_sym_STAR, + ACTIONS(5003), 1, + anon_sym_STAR_STAR, + ACTIONS(5005), 1, + anon_sym_LBRACK, + ACTIONS(5009), 1, + anon_sym_DASH, + ACTIONS(5013), 1, + anon_sym_LBRACE, + ACTIONS(5015), 1, + sym_integer, + ACTIONS(5017), 1, + sym_float, + STATE(4015), 1, + sym_string, + STATE(4330), 1, + sym_dotted_name, + STATE(4716), 1, + sym_case_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4759), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5011), 3, + anon_sym__, + sym_true, + sym_false, + STATE(4391), 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, + [129496] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1492), 3, + sym__dedent, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(1490), 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, + [129534] = 19, ACTIONS(125), 1, anon_sym_class, ACTIONS(371), 1, anon_sym_long, - ACTIONS(4094), 1, + ACTIONS(3978), 1, anon_sym_operator, - ACTIONS(4165), 1, + ACTIONS(4122), 1, sym_identifier, - ACTIONS(5157), 1, + ACTIONS(5179), 1, + anon_sym_from, + ACTIONS(5181), 1, anon_sym_COLON, - ACTIONS(5159), 1, - anon_sym_nogil, - STATE(3130), 1, + STATE(3140), 1, sym__signedness, - STATE(3228), 1, + STATE(3191), 1, sym_int_type, - STATE(3321), 1, + STATE(3368), 1, sym__longness, - STATE(3597), 1, + STATE(3562), 1, sym_operator_name, - STATE(3788), 1, + STATE(3810), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -227850,13 +229042,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(4096), 2, + ACTIONS(3980), 2, anon_sym_const, anon_sym_volatile, - STATE(600), 2, + STATE(633), 2, sym_class_definition, sym_cvar_def, - STATE(3073), 2, + STATE(3084), 2, sym_storageclass, aux_sym_class_definition_repeat1, ACTIONS(365), 3, @@ -227869,28 +229061,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [129047] = 19, + [129604] = 19, ACTIONS(371), 1, anon_sym_long, - ACTIONS(4094), 1, + ACTIONS(3978), 1, anon_sym_operator, - ACTIONS(4165), 1, + ACTIONS(4122), 1, sym_identifier, - ACTIONS(4167), 1, + ACTIONS(4124), 1, anon_sym_class, - ACTIONS(5161), 1, + ACTIONS(5183), 1, anon_sym_from, - ACTIONS(5163), 1, + ACTIONS(5185), 1, anon_sym_COLON, - STATE(3130), 1, + STATE(3140), 1, sym__signedness, - STATE(3228), 1, + STATE(3191), 1, sym_int_type, - STATE(3321), 1, + STATE(3368), 1, sym__longness, - STATE(3597), 1, + STATE(3562), 1, sym_operator_name, - STATE(3811), 1, + STATE(3795), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -227901,13 +229093,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(4096), 2, + ACTIONS(3980), 2, anon_sym_const, anon_sym_volatile, - STATE(2935), 2, + STATE(2962), 2, sym_class_definition, sym_cvar_def, - STATE(3072), 2, + STATE(3083), 2, sym_storageclass, aux_sym_class_definition_repeat1, ACTIONS(365), 3, @@ -227920,167 +229112,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [129117] = 19, - ACTIONS(4018), 1, - anon_sym_long, - ACTIONS(4979), 1, - sym_identifier, - ACTIONS(4981), 1, - anon_sym_LPAREN, - ACTIONS(4985), 1, - anon_sym_STAR, - ACTIONS(4987), 1, - anon_sym_STAR_STAR, - ACTIONS(4989), 1, - anon_sym_SLASH, - STATE(3188), 1, - sym__signedness, - STATE(3410), 1, - sym__longness, - STATE(4212), 1, - sym_c_type, - STATE(5135), 1, - sym_tuple_pattern, - STATE(5178), 1, - sym_parameter, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4014), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(4016), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4847), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3681), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5145), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(4012), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(5376), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [129187] = 18, - ACTIONS(1923), 1, - anon_sym_None, - ACTIONS(1931), 1, - sym_string_start, - ACTIONS(5165), 1, + [129674] = 18, + ACTIONS(3934), 1, sym_identifier, - ACTIONS(5167), 1, + ACTIONS(3936), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, - anon_sym_STAR, - ACTIONS(5171), 1, - anon_sym_STAR_STAR, - ACTIONS(5173), 1, - anon_sym_LBRACK, - ACTIONS(5175), 1, - anon_sym_DASH, - ACTIONS(5179), 1, - anon_sym_LBRACE, - ACTIONS(5181), 1, - sym_integer, - ACTIONS(5183), 1, - sym_float, - STATE(4002), 1, - sym_string, - STATE(4361), 1, - sym_dotted_name, - STATE(4842), 1, - sym_case_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4776), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(5177), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4362), 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, - [129255] = 19, - ACTIONS(4018), 1, + ACTIONS(3948), 1, anon_sym_long, - ACTIONS(4837), 1, - anon_sym_LPAREN, - ACTIONS(4839), 1, - anon_sym_STAR, - ACTIONS(4843), 1, - anon_sym_STAR_STAR, - ACTIONS(4845), 1, - anon_sym_SLASH, - ACTIONS(5045), 1, - sym_identifier, - STATE(3188), 1, + ACTIONS(4792), 1, + anon_sym_class, + ACTIONS(4798), 1, + anon_sym_enum, + ACTIONS(5187), 1, + anon_sym_ctypedef, + STATE(3198), 1, sym__signedness, - STATE(3410), 1, + STATE(3409), 1, sym__longness, - STATE(4280), 1, + STATE(3464), 1, sym_c_type, - STATE(4664), 1, - sym_tuple_pattern, - STATE(5374), 1, - sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4014), 2, + ACTIONS(3944), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4016), 2, + ACTIONS(3946), 2, anon_sym_char, anon_sym_short, - ACTIONS(4847), 2, + ACTIONS(3950), 2, anon_sym_const, anon_sym_volatile, - STATE(3681), 2, + ACTIONS(4796), 2, + anon_sym_struct, + anon_sym_union, + STATE(2735), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(3668), 2, sym_int_type, sym_function_pointer_type, - STATE(5368), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(4012), 3, + ACTIONS(3942), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(5283), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [129325] = 3, + ACTIONS(103), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [129742] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1488), 3, + ACTIONS(1496), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1486), 26, + ACTIONS(1494), 26, anon_sym_case, anon_sym_class, sym_identifier, @@ -228107,47 +229197,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [129363] = 18, - ACTIONS(4004), 1, + [129780] = 18, + ACTIONS(3934), 1, sym_identifier, - ACTIONS(4006), 1, + ACTIONS(3936), 1, anon_sym_LPAREN, - ACTIONS(4018), 1, + ACTIONS(3938), 1, + anon_sym_pass, + ACTIONS(3948), 1, anon_sym_long, - ACTIONS(4818), 1, - anon_sym_class, - ACTIONS(4822), 1, - anon_sym_enum, - ACTIONS(5185), 1, - anon_sym_ctypedef, - STATE(3188), 1, + ACTIONS(5189), 1, + sym__dedent, + STATE(3198), 1, sym__signedness, - STATE(3410), 1, + STATE(3409), 1, sym__longness, - STATE(3476), 1, + STATE(3482), 1, sym_c_type, + STATE(5507), 1, + sym_pass_statement, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4014), 2, + ACTIONS(3944), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4016), 2, + ACTIONS(3946), 2, anon_sym_char, anon_sym_short, - ACTIONS(4020), 2, + ACTIONS(3950), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4820), 2, - anon_sym_struct, - anon_sym_union, - STATE(2727), 2, + STATE(3025), 2, + sym_cvar_decl, + aux_sym_struct_suite_repeat1, + STATE(3087), 2, sym_storageclass, aux_sym_class_definition_repeat1, - STATE(3669), 2, + STATE(3668), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4012), 3, + ACTIONS(3942), 3, anon_sym_int, anon_sym_double, anon_sym_complex, @@ -228157,47 +229247,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [129431] = 18, - ACTIONS(4004), 1, + [129848] = 18, + ACTIONS(3934), 1, sym_identifier, - ACTIONS(4006), 1, + ACTIONS(3936), 1, anon_sym_LPAREN, - ACTIONS(4008), 1, + ACTIONS(3938), 1, anon_sym_pass, - ACTIONS(4018), 1, + ACTIONS(3948), 1, anon_sym_long, - ACTIONS(5187), 1, + ACTIONS(5191), 1, sym__dedent, - STATE(3188), 1, + STATE(3198), 1, sym__signedness, - STATE(3410), 1, + STATE(3409), 1, sym__longness, - STATE(3472), 1, + STATE(3482), 1, sym_c_type, - STATE(5568), 1, + STATE(5550), 1, sym_pass_statement, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4014), 2, + ACTIONS(3944), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4016), 2, + ACTIONS(3946), 2, anon_sym_char, anon_sym_short, - ACTIONS(4020), 2, + ACTIONS(3950), 2, anon_sym_const, anon_sym_volatile, - STATE(3005), 2, + STATE(2965), 2, sym_cvar_decl, aux_sym_struct_suite_repeat1, - STATE(3079), 2, + STATE(3087), 2, sym_storageclass, aux_sym_class_definition_repeat1, - STATE(3669), 2, + STATE(3668), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4012), 3, + ACTIONS(3942), 3, anon_sym_int, anon_sym_double, anon_sym_complex, @@ -228207,48 +229297,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [129499] = 19, - ACTIONS(59), 1, - anon_sym_class, - ACTIONS(371), 1, - anon_sym_long, - ACTIONS(4094), 1, - anon_sym_operator, - ACTIONS(4165), 1, + [129916] = 18, + ACTIONS(3934), 1, sym_identifier, - ACTIONS(5189), 1, - anon_sym_COLON, - ACTIONS(5191), 1, - anon_sym_nogil, - STATE(3130), 1, + ACTIONS(3936), 1, + anon_sym_LPAREN, + ACTIONS(3938), 1, + anon_sym_pass, + ACTIONS(3948), 1, + anon_sym_long, + ACTIONS(5193), 1, + sym__dedent, + STATE(3198), 1, sym__signedness, - STATE(3228), 1, - sym_int_type, - STATE(3321), 1, + STATE(3409), 1, sym__longness, - STATE(3597), 1, - sym_operator_name, - STATE(3847), 1, - sym_maybe_typed_name, + STATE(3482), 1, + sym_c_type, + STATE(5425), 1, + sym_pass_statement, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(367), 2, + ACTIONS(3944), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(369), 2, + ACTIONS(3946), 2, anon_sym_char, anon_sym_short, - ACTIONS(4096), 2, + ACTIONS(3950), 2, anon_sym_const, anon_sym_volatile, - STATE(1237), 2, - sym_class_definition, - sym_cvar_def, - STATE(3075), 2, + STATE(2993), 2, + sym_cvar_decl, + aux_sym_struct_suite_repeat1, + STATE(3087), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(365), 3, + STATE(3668), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(3942), 3, anon_sym_int, anon_sym_double, anon_sym_complex, @@ -228258,96 +229347,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [129569] = 18, - ACTIONS(4004), 1, - sym_identifier, - ACTIONS(4006), 1, - anon_sym_LPAREN, - ACTIONS(4008), 1, - anon_sym_pass, - ACTIONS(4018), 1, - anon_sym_long, - ACTIONS(5193), 1, - sym__dedent, - STATE(3188), 1, - sym__signedness, - STATE(3410), 1, - sym__longness, - STATE(3472), 1, - sym_c_type, - STATE(5594), 1, - sym_pass_statement, + [129984] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4014), 2, + ACTIONS(1488), 3, + sym__dedent, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(1486), 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, - ACTIONS(4016), 2, anon_sym_char, anon_sym_short, - ACTIONS(4020), 2, + anon_sym_long, anon_sym_const, anon_sym_volatile, - STATE(2985), 2, - sym_cvar_decl, - aux_sym_struct_suite_repeat1, - STATE(3079), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3669), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4012), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - ACTIONS(103), 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, - [129637] = 18, + [130022] = 18, ACTIONS(1235), 1, anon_sym_None, ACTIONS(1247), 1, sym_string_start, - ACTIONS(4862), 1, + ACTIONS(4855), 1, sym_identifier, - ACTIONS(4864), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4866), 1, + ACTIONS(4859), 1, anon_sym_STAR, - ACTIONS(4872), 1, + ACTIONS(4865), 1, anon_sym_STAR_STAR, - ACTIONS(4874), 1, + ACTIONS(4867), 1, anon_sym_LBRACK, - ACTIONS(4876), 1, + ACTIONS(4869), 1, anon_sym_DASH, - ACTIONS(4880), 1, + ACTIONS(4873), 1, anon_sym_LBRACE, - ACTIONS(4882), 1, + ACTIONS(4875), 1, sym_integer, - ACTIONS(4884), 1, + ACTIONS(4877), 1, sym_float, - STATE(3959), 1, + STATE(3941), 1, sym_string, - STATE(4213), 1, + STATE(4165), 1, sym_dotted_name, - STATE(4214), 1, + STATE(4480), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4606), 2, + STATE(4509), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(4878), 3, + ACTIONS(4871), 3, anon_sym__, sym_true, sym_false, - STATE(4219), 10, + STATE(4167), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -228358,28 +229432,28 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [129705] = 19, - ACTIONS(125), 1, - anon_sym_class, + [130090] = 19, ACTIONS(371), 1, anon_sym_long, - ACTIONS(4094), 1, + ACTIONS(3978), 1, anon_sym_operator, - ACTIONS(4165), 1, + ACTIONS(4122), 1, sym_identifier, ACTIONS(5195), 1, - anon_sym_from, + anon_sym_class, ACTIONS(5197), 1, - anon_sym_COLON, - STATE(3130), 1, + anon_sym_ctypedef, + ACTIONS(5201), 1, + anon_sym_enum, + STATE(3140), 1, sym__signedness, - STATE(3228), 1, + STATE(3191), 1, sym_int_type, - STATE(3321), 1, + STATE(3368), 1, sym__longness, - STATE(3597), 1, + STATE(3562), 1, sym_operator_name, - STATE(3788), 1, + STATE(3814), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -228390,13 +229464,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(4096), 2, + ACTIONS(3980), 2, anon_sym_const, anon_sym_volatile, - STATE(560), 2, - sym_class_definition, - sym_cvar_def, - STATE(3073), 2, + ACTIONS(5199), 2, + anon_sym_struct, + anon_sym_union, + STATE(2735), 2, sym_storageclass, aux_sym_class_definition_repeat1, ACTIONS(365), 3, @@ -228409,28 +229483,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [129775] = 19, + [130160] = 19, ACTIONS(371), 1, anon_sym_long, - ACTIONS(4094), 1, + ACTIONS(3978), 1, anon_sym_operator, - ACTIONS(4165), 1, + ACTIONS(4122), 1, sym_identifier, - ACTIONS(4167), 1, + ACTIONS(4124), 1, anon_sym_class, - ACTIONS(5199), 1, + ACTIONS(5203), 1, anon_sym_COLON, - ACTIONS(5201), 1, + ACTIONS(5205), 1, anon_sym_nogil, - STATE(3130), 1, + STATE(3140), 1, sym__signedness, - STATE(3228), 1, + STATE(3191), 1, sym_int_type, - STATE(3321), 1, + STATE(3368), 1, sym__longness, - STATE(3597), 1, + STATE(3562), 1, sym_operator_name, - STATE(3811), 1, + STATE(3795), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -228441,13 +229515,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(4096), 2, + ACTIONS(3980), 2, anon_sym_const, anon_sym_volatile, - STATE(3029), 2, + STATE(2972), 2, sym_class_definition, sym_cvar_def, - STATE(3072), 2, + STATE(3083), 2, sym_storageclass, aux_sym_class_definition_repeat1, ACTIONS(365), 3, @@ -228460,20 +229534,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [129845] = 3, + [130230] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1496), 3, - sym__dedent, - anon_sym_SEMI, + ACTIONS(3701), 2, anon_sym_LPAREN, - ACTIONS(1494), 26, - anon_sym_case, + anon_sym_COLON, + ACTIONS(5207), 27, + 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_extern, anon_sym_int, anon_sym_double, anon_sym_complex, @@ -228489,169 +229565,83 @@ static const uint16_t ts_small_parse_table[] = { 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, - [129883] = 18, - ACTIONS(2467), 1, - anon_sym_None, - ACTIONS(2475), 1, - sym_string_start, - ACTIONS(5015), 1, - sym_identifier, - ACTIONS(5017), 1, + [130268] = 19, + ACTIONS(3948), 1, + anon_sym_long, + ACTIONS(4841), 1, anon_sym_LPAREN, - ACTIONS(5019), 1, + ACTIONS(4843), 1, anon_sym_STAR, - ACTIONS(5021), 1, + ACTIONS(4847), 1, anon_sym_STAR_STAR, - ACTIONS(5023), 1, - anon_sym_LBRACK, - ACTIONS(5027), 1, - anon_sym_DASH, - ACTIONS(5031), 1, - anon_sym_LBRACE, - ACTIONS(5033), 1, - sym_integer, - ACTIONS(5035), 1, - sym_float, - STATE(4066), 1, - sym_string, - STATE(4397), 1, - sym_dotted_name, - STATE(5077), 1, - sym_case_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4916), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(5029), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4398), 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, - [129951] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1484), 3, - sym__dedent, - anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1482), 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, - [129989] = 18, - ACTIONS(4004), 1, + ACTIONS(4849), 1, + anon_sym_SLASH, + ACTIONS(5051), 1, sym_identifier, - ACTIONS(4006), 1, - anon_sym_LPAREN, - ACTIONS(4008), 1, - anon_sym_pass, - ACTIONS(4018), 1, - anon_sym_long, - ACTIONS(5203), 1, - sym__dedent, - STATE(3188), 1, + STATE(3198), 1, sym__signedness, - STATE(3410), 1, + STATE(3409), 1, sym__longness, - STATE(3472), 1, + STATE(4198), 1, sym_c_type, - STATE(5578), 1, - sym_pass_statement, + STATE(4654), 1, + sym_tuple_pattern, + STATE(5180), 1, + sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4014), 2, + ACTIONS(3944), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4016), 2, + ACTIONS(3946), 2, anon_sym_char, anon_sym_short, - ACTIONS(4020), 2, + ACTIONS(4851), 2, anon_sym_const, anon_sym_volatile, - STATE(2960), 2, - sym_cvar_decl, - aux_sym_struct_suite_repeat1, - STATE(3079), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3669), 2, + STATE(3655), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4012), 3, + STATE(5175), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(3942), 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, - [130057] = 19, + STATE(5172), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [130338] = 19, ACTIONS(59), 1, anon_sym_class, ACTIONS(371), 1, anon_sym_long, - ACTIONS(4094), 1, + ACTIONS(3978), 1, anon_sym_operator, - ACTIONS(4165), 1, + ACTIONS(4122), 1, sym_identifier, - ACTIONS(5205), 1, + ACTIONS(5209), 1, anon_sym_from, - ACTIONS(5207), 1, + ACTIONS(5211), 1, anon_sym_COLON, - STATE(3130), 1, + STATE(3140), 1, sym__signedness, - STATE(3228), 1, + STATE(3191), 1, sym_int_type, - STATE(3321), 1, + STATE(3368), 1, sym__longness, - STATE(3597), 1, + STATE(3562), 1, sym_operator_name, - STATE(3847), 1, + STATE(3869), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -228662,13 +229652,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(4096), 2, + ACTIONS(3980), 2, anon_sym_const, anon_sym_volatile, - STATE(1281), 2, + STATE(1252), 2, sym_class_definition, sym_cvar_def, - STATE(3075), 2, + STATE(3082), 2, sym_storageclass, aux_sym_class_definition_repeat1, ACTIONS(365), 3, @@ -228681,66 +229671,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [130127] = 18, + [130408] = 19, ACTIONS(1235), 1, anon_sym_None, ACTIONS(1247), 1, sym_string_start, - ACTIONS(4862), 1, - sym_identifier, - ACTIONS(4864), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4866), 1, - anon_sym_STAR, - ACTIONS(4872), 1, - anon_sym_STAR_STAR, - ACTIONS(4874), 1, + ACTIONS(4867), 1, anon_sym_LBRACK, - ACTIONS(4876), 1, + ACTIONS(4869), 1, anon_sym_DASH, - ACTIONS(4880), 1, + ACTIONS(4873), 1, anon_sym_LBRACE, - ACTIONS(4882), 1, + ACTIONS(4875), 1, sym_integer, - ACTIONS(4884), 1, + ACTIONS(4877), 1, sym_float, - STATE(3959), 1, + ACTIONS(5159), 1, + anon_sym_STAR, + ACTIONS(5161), 1, + anon_sym_STAR_STAR, + ACTIONS(5213), 1, + sym_identifier, + ACTIONS(5217), 1, + anon_sym_RBRACE, + STATE(3941), 1, sym_string, - STATE(4213), 1, + STATE(4165), 1, sym_dotted_name, - STATE(4505), 1, - sym_case_pattern, + STATE(4587), 1, + sym_splat_pattern, + STATE(5232), 1, + sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4606), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(4878), 3, + ACTIONS(5215), 3, anon_sym__, sym_true, sym_false, - STATE(4219), 10, + STATE(5132), 9, 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, - [130195] = 3, + [130477] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1492), 3, + ACTIONS(1623), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1490), 26, - anon_sym_case, + ACTIONS(1621), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -228766,16 +229755,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [130233] = 3, + [130514] = 19, + ACTIONS(1235), 1, + anon_sym_None, + ACTIONS(1247), 1, + sym_string_start, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4867), 1, + anon_sym_LBRACK, + ACTIONS(4869), 1, + anon_sym_DASH, + ACTIONS(4873), 1, + anon_sym_LBRACE, + ACTIONS(4875), 1, + sym_integer, + ACTIONS(4877), 1, + sym_float, + ACTIONS(5159), 1, + anon_sym_STAR, + ACTIONS(5161), 1, + anon_sym_STAR_STAR, + ACTIONS(5213), 1, + sym_identifier, + ACTIONS(5219), 1, + anon_sym_RBRACE, + STATE(3941), 1, + sym_string, + STATE(4165), 1, + sym_dotted_name, + STATE(4587), 1, + sym_splat_pattern, + STATE(5232), 1, + sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1480), 3, + ACTIONS(5215), 3, + anon_sym__, + sym_true, + sym_false, + STATE(5132), 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, + [130583] = 19, + ACTIONS(1235), 1, + anon_sym_None, + ACTIONS(1247), 1, + sym_string_start, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4867), 1, + anon_sym_LBRACK, + ACTIONS(4869), 1, + anon_sym_DASH, + ACTIONS(4873), 1, + anon_sym_LBRACE, + ACTIONS(4875), 1, + sym_integer, + ACTIONS(4877), 1, + sym_float, + ACTIONS(5159), 1, + anon_sym_STAR, + ACTIONS(5161), 1, + anon_sym_STAR_STAR, + ACTIONS(5213), 1, + sym_identifier, + ACTIONS(5221), 1, + anon_sym_RBRACE, + STATE(3941), 1, + sym_string, + STATE(4165), 1, + sym_dotted_name, + STATE(4587), 1, + sym_splat_pattern, + STATE(5232), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5215), 3, + anon_sym__, + sym_true, + sym_false, + STATE(5132), 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, + [130652] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1627), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1478), 26, - anon_sym_case, + ACTIONS(1625), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -228801,65 +229889,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [130271] = 18, - ACTIONS(1396), 1, - anon_sym_None, - ACTIONS(1408), 1, - sym_string_start, - ACTIONS(4993), 1, - sym_identifier, - ACTIONS(4995), 1, - anon_sym_LPAREN, - ACTIONS(4999), 1, - anon_sym_STAR, - ACTIONS(5001), 1, - anon_sym_STAR_STAR, - ACTIONS(5003), 1, - anon_sym_LBRACK, - ACTIONS(5005), 1, - anon_sym_DASH, - ACTIONS(5009), 1, - anon_sym_LBRACE, - ACTIONS(5011), 1, - sym_integer, - ACTIONS(5013), 1, - sym_float, - STATE(4084), 1, - sym_string, - STATE(4428), 1, - sym_dotted_name, - STATE(5143), 1, - sym_case_pattern, + [130689] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4986), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(5007), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4429), 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, - [130339] = 3, + ACTIONS(1631), 3, + sym__dedent, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(1629), 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, + [130726] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1775), 3, + ACTIONS(1635), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1773), 25, + ACTIONS(1633), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -228885,15 +229957,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [130376] = 3, + [130763] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1611), 3, + ACTIONS(1631), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1609), 25, + ACTIONS(1629), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -228919,15 +229991,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [130413] = 3, + [130800] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1615), 3, + ACTIONS(1631), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1613), 25, + ACTIONS(1629), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -228953,15 +230025,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [130450] = 3, + [130837] = 4, + ACTIONS(5223), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1735), 3, + ACTIONS(1547), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1733), 25, + ACTIONS(1545), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -228987,15 +230060,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [130487] = 3, + [130876] = 18, + ACTIONS(59), 1, + anon_sym_class, + ACTIONS(371), 1, + anon_sym_long, + ACTIONS(3978), 1, + anon_sym_operator, + ACTIONS(4122), 1, + sym_identifier, + ACTIONS(5225), 1, + anon_sym_COLON, + STATE(3140), 1, + sym__signedness, + STATE(3191), 1, + sym_int_type, + STATE(3368), 1, + sym__longness, + STATE(3562), 1, + sym_operator_name, + STATE(3869), 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(3980), 2, + anon_sym_const, + anon_sym_volatile, + STATE(1329), 2, + sym_class_definition, + sym_cvar_def, + STATE(3082), 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, + [130943] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1699), 3, + ACTIONS(1679), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1697), 25, + ACTIONS(1677), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -229021,15 +230143,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [130524] = 3, + [130980] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1739), 3, + ACTIONS(1683), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1737), 25, + ACTIONS(1681), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -229055,15 +230177,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [130561] = 3, + [131017] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1743), 3, + ACTIONS(1687), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1741), 25, + ACTIONS(1685), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -229089,15 +230211,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [130598] = 3, + [131054] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1509), 3, + ACTIONS(1691), 3, sym__dedent, anon_sym_SEMI, - anon_sym_COLON, - ACTIONS(1507), 25, + anon_sym_LPAREN, + ACTIONS(1689), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -229123,15 +230245,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [130635] = 3, + [131091] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2111), 3, + ACTIONS(1695), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2109), 25, + ACTIONS(1693), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -229157,64 +230279,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [130672] = 18, - ACTIONS(59), 1, - anon_sym_class, - ACTIONS(371), 1, - anon_sym_long, - ACTIONS(4094), 1, - anon_sym_operator, - ACTIONS(4165), 1, - sym_identifier, - ACTIONS(5209), 1, - anon_sym_COLON, - STATE(3130), 1, - sym__signedness, - STATE(3228), 1, - sym_int_type, - STATE(3321), 1, - sym__longness, - STATE(3597), 1, - sym_operator_name, - STATE(3847), 1, - sym_maybe_typed_name, + [131128] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(367), 2, + ACTIONS(1699), 3, + sym__dedent, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(1697), 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(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(4096), 2, + anon_sym_long, anon_sym_const, anon_sym_volatile, - STATE(1298), 2, - sym_class_definition, - sym_cvar_def, - STATE(3075), 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_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, - [130739] = 3, + [131165] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1747), 3, + ACTIONS(1679), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1745), 25, + ACTIONS(1677), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -229240,16 +230347,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [130776] = 4, - ACTIONS(5211), 1, - anon_sym_COLON, + [131202] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1535), 2, + ACTIONS(1703), 3, sym__dedent, anon_sym_SEMI, - ACTIONS(1533), 25, + anon_sym_LPAREN, + ACTIONS(1701), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -229275,15 +230381,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [130815] = 3, + [131239] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2065), 3, + ACTIONS(1687), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2063), 25, + ACTIONS(1685), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -229309,15 +230415,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [130852] = 3, + [131276] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2073), 3, + ACTIONS(1707), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2071), 25, + ACTIONS(1705), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -229343,15 +230449,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [130889] = 3, + [131313] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1599), 3, + ACTIONS(1679), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1597), 25, + ACTIONS(1677), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -229377,64 +230483,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [130926] = 18, - ACTIONS(125), 1, - anon_sym_class, - ACTIONS(371), 1, - anon_sym_long, - ACTIONS(4094), 1, - anon_sym_operator, - ACTIONS(4165), 1, - sym_identifier, - ACTIONS(5213), 1, + [131350] = 4, + ACTIONS(5227), 1, anon_sym_COLON, - STATE(3130), 1, - sym__signedness, - STATE(3228), 1, - sym_int_type, - STATE(3321), 1, - sym__longness, - STATE(3597), 1, - sym_operator_name, - STATE(3788), 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(4096), 2, - anon_sym_const, - anon_sym_volatile, - STATE(585), 2, - sym_class_definition, - sym_cvar_def, - STATE(3073), 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, - [130993] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1513), 3, + ACTIONS(1553), 2, sym__dedent, anon_sym_SEMI, - anon_sym_COLON, - ACTIONS(1511), 25, + ACTIONS(1551), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -229460,296 +230518,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [131030] = 19, - ACTIONS(1235), 1, - anon_sym_None, - ACTIONS(1247), 1, - sym_string_start, - ACTIONS(4864), 1, - anon_sym_LPAREN, - ACTIONS(4874), 1, - anon_sym_LBRACK, - ACTIONS(4876), 1, - anon_sym_DASH, - ACTIONS(4880), 1, - anon_sym_LBRACE, - ACTIONS(4882), 1, - sym_integer, - ACTIONS(4884), 1, - sym_float, - ACTIONS(5169), 1, - anon_sym_STAR, - ACTIONS(5171), 1, - anon_sym_STAR_STAR, - ACTIONS(5215), 1, - sym_identifier, - ACTIONS(5219), 1, - anon_sym_RBRACE, - STATE(3959), 1, - sym_string, - STATE(4213), 1, - sym_dotted_name, - STATE(4330), 1, - sym_splat_pattern, - STATE(4641), 1, - sym__key_value_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5217), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4927), 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, - [131099] = 19, - ACTIONS(1235), 1, - anon_sym_None, - ACTIONS(1247), 1, - sym_string_start, - ACTIONS(4864), 1, - anon_sym_LPAREN, - ACTIONS(4874), 1, - anon_sym_LBRACK, - ACTIONS(4876), 1, - anon_sym_DASH, - ACTIONS(4880), 1, - anon_sym_LBRACE, - ACTIONS(4882), 1, - sym_integer, - ACTIONS(4884), 1, - sym_float, - ACTIONS(5169), 1, - anon_sym_STAR, - ACTIONS(5171), 1, - anon_sym_STAR_STAR, - ACTIONS(5215), 1, - sym_identifier, - ACTIONS(5221), 1, - anon_sym_RBRACE, - STATE(3959), 1, - sym_string, - STATE(4213), 1, - sym_dotted_name, - STATE(4407), 1, - sym_splat_pattern, - STATE(4934), 1, - sym__key_value_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5217), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4927), 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, - [131168] = 19, - ACTIONS(1235), 1, - anon_sym_None, - ACTIONS(1247), 1, - sym_string_start, - ACTIONS(4864), 1, - anon_sym_LPAREN, - ACTIONS(4874), 1, - anon_sym_LBRACK, - ACTIONS(4876), 1, - anon_sym_DASH, - ACTIONS(4880), 1, - anon_sym_LBRACE, - ACTIONS(4882), 1, - sym_integer, - ACTIONS(4884), 1, - sym_float, - ACTIONS(5169), 1, - anon_sym_STAR, - ACTIONS(5171), 1, - anon_sym_STAR_STAR, - ACTIONS(5215), 1, - sym_identifier, - ACTIONS(5223), 1, - anon_sym_RBRACE, - STATE(3959), 1, - sym_string, - STATE(4213), 1, - sym_dotted_name, - STATE(4495), 1, - sym_splat_pattern, - STATE(5380), 1, - sym__key_value_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5217), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4927), 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, - [131237] = 19, - ACTIONS(1235), 1, - anon_sym_None, - ACTIONS(1247), 1, - sym_string_start, - ACTIONS(4864), 1, - anon_sym_LPAREN, - ACTIONS(4874), 1, - anon_sym_LBRACK, - ACTIONS(4876), 1, - anon_sym_DASH, - ACTIONS(4880), 1, - anon_sym_LBRACE, - ACTIONS(4882), 1, - sym_integer, - ACTIONS(4884), 1, - sym_float, - ACTIONS(5169), 1, - anon_sym_STAR, - ACTIONS(5171), 1, - anon_sym_STAR_STAR, - ACTIONS(5215), 1, + [131389] = 17, + ACTIONS(3934), 1, sym_identifier, - ACTIONS(5225), 1, - anon_sym_RBRACE, - STATE(3959), 1, - sym_string, - STATE(4213), 1, - sym_dotted_name, - STATE(4495), 1, - sym_splat_pattern, - STATE(5380), 1, - sym__key_value_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5217), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4927), 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, - [131306] = 19, - ACTIONS(1235), 1, - anon_sym_None, - ACTIONS(1247), 1, - sym_string_start, - ACTIONS(4864), 1, + ACTIONS(3936), 1, anon_sym_LPAREN, - ACTIONS(4874), 1, - anon_sym_LBRACK, - ACTIONS(4876), 1, - anon_sym_DASH, - ACTIONS(4880), 1, - anon_sym_LBRACE, - ACTIONS(4882), 1, - sym_integer, - ACTIONS(4884), 1, - sym_float, - ACTIONS(5169), 1, - anon_sym_STAR, - ACTIONS(5171), 1, - anon_sym_STAR_STAR, - ACTIONS(5215), 1, - sym_identifier, - ACTIONS(5227), 1, - anon_sym_RBRACE, - STATE(3959), 1, - sym_string, - STATE(4213), 1, - sym_dotted_name, - STATE(4495), 1, - sym_splat_pattern, - STATE(5380), 1, - sym__key_value_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5217), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4927), 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, - [131375] = 18, - ACTIONS(125), 1, - anon_sym_class, - ACTIONS(371), 1, + ACTIONS(3948), 1, anon_sym_long, - ACTIONS(4094), 1, - anon_sym_operator, - ACTIONS(4165), 1, - sym_identifier, - ACTIONS(5229), 1, - anon_sym_COLON, - STATE(3130), 1, + ACTIONS(4808), 1, + anon_sym_class, + ACTIONS(4812), 1, + anon_sym_enum, + STATE(3198), 1, sym__signedness, - STATE(3228), 1, - sym_int_type, - STATE(3321), 1, + STATE(3409), 1, sym__longness, - STATE(3597), 1, - sym_operator_name, - STATE(3788), 1, - sym_maybe_typed_name, + STATE(3499), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(367), 2, + ACTIONS(3944), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(369), 2, + ACTIONS(3946), 2, anon_sym_char, anon_sym_short, - ACTIONS(4096), 2, + ACTIONS(3950), 2, anon_sym_const, anon_sym_volatile, - STATE(610), 2, - sym_class_definition, - sym_cvar_def, - STATE(3073), 2, + ACTIONS(4810), 2, + anon_sym_struct, + anon_sym_union, + STATE(2735), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(365), 3, + STATE(3668), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(3942), 3, anon_sym_int, anon_sym_double, anon_sym_complex, @@ -229759,65 +230566,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [131442] = 19, - ACTIONS(1235), 1, - anon_sym_None, - ACTIONS(1247), 1, - sym_string_start, - ACTIONS(4864), 1, - anon_sym_LPAREN, - ACTIONS(4874), 1, - anon_sym_LBRACK, - ACTIONS(4876), 1, - anon_sym_DASH, - ACTIONS(4880), 1, - anon_sym_LBRACE, - ACTIONS(4882), 1, - sym_integer, - ACTIONS(4884), 1, - sym_float, - ACTIONS(5169), 1, - anon_sym_STAR, - ACTIONS(5171), 1, - anon_sym_STAR_STAR, - ACTIONS(5215), 1, - sym_identifier, - ACTIONS(5231), 1, - anon_sym_RBRACE, - STATE(3959), 1, - sym_string, - STATE(4213), 1, - sym_dotted_name, - STATE(4495), 1, - sym_splat_pattern, - STATE(5380), 1, - sym__key_value_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5217), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4927), 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, - [131511] = 3, + [131454] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2155), 3, + ACTIONS(1759), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2153), 25, + ACTIONS(1757), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -229843,15 +230600,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [131548] = 3, + [131491] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2159), 3, + ACTIONS(1763), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2157), 25, + ACTIONS(1761), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -229877,15 +230634,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [131585] = 3, + [131528] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1695), 3, + ACTIONS(1767), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1693), 25, + ACTIONS(1765), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -229911,115 +230668,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [131622] = 19, - ACTIONS(1235), 1, - anon_sym_None, - ACTIONS(1247), 1, - sym_string_start, - ACTIONS(4864), 1, - anon_sym_LPAREN, - ACTIONS(4874), 1, - anon_sym_LBRACK, - ACTIONS(4876), 1, - anon_sym_DASH, - ACTIONS(4880), 1, - anon_sym_LBRACE, - ACTIONS(4882), 1, - sym_integer, - ACTIONS(4884), 1, - sym_float, - ACTIONS(5169), 1, - anon_sym_STAR, - ACTIONS(5171), 1, - anon_sym_STAR_STAR, - ACTIONS(5215), 1, - sym_identifier, - ACTIONS(5233), 1, - anon_sym_RBRACE, - STATE(3959), 1, - sym_string, - STATE(4213), 1, - sym_dotted_name, - STATE(4495), 1, - sym_splat_pattern, - STATE(5380), 1, - sym__key_value_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5217), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4927), 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, - [131691] = 19, - ACTIONS(1235), 1, - anon_sym_None, - ACTIONS(1247), 1, - sym_string_start, - ACTIONS(4864), 1, - anon_sym_LPAREN, - ACTIONS(4874), 1, - anon_sym_LBRACK, - ACTIONS(4876), 1, - anon_sym_DASH, - ACTIONS(4880), 1, - anon_sym_LBRACE, - ACTIONS(4882), 1, - sym_integer, - ACTIONS(4884), 1, - sym_float, - ACTIONS(5169), 1, - anon_sym_STAR, - ACTIONS(5171), 1, - anon_sym_STAR_STAR, - ACTIONS(5215), 1, - sym_identifier, - ACTIONS(5235), 1, - anon_sym_RBRACE, - STATE(3959), 1, - sym_string, - STATE(4213), 1, - sym_dotted_name, - STATE(4495), 1, - sym_splat_pattern, - STATE(5380), 1, - sym__key_value_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5217), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4927), 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, - [131760] = 3, + [131565] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2163), 3, + ACTIONS(1771), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2161), 25, + ACTIONS(1769), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -230045,23 +230702,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [131797] = 3, + [131602] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4454), 3, + ACTIONS(1775), 3, sym__dedent, - sym_string_start, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(4456), 25, + ACTIONS(1773), 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, @@ -230079,165 +230736,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [131834] = 19, - ACTIONS(1235), 1, - anon_sym_None, - ACTIONS(1247), 1, - sym_string_start, - ACTIONS(4864), 1, - anon_sym_LPAREN, - ACTIONS(4874), 1, - anon_sym_LBRACK, - ACTIONS(4876), 1, - anon_sym_DASH, - ACTIONS(4880), 1, - anon_sym_LBRACE, - ACTIONS(4882), 1, - sym_integer, - ACTIONS(4884), 1, - sym_float, - ACTIONS(5169), 1, - anon_sym_STAR, - ACTIONS(5171), 1, - anon_sym_STAR_STAR, - ACTIONS(5215), 1, - sym_identifier, - ACTIONS(5237), 1, - anon_sym_RBRACE, - STATE(3959), 1, - sym_string, - STATE(4213), 1, - sym_dotted_name, - STATE(4495), 1, - sym_splat_pattern, - STATE(5380), 1, - sym__key_value_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5217), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4927), 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, - [131903] = 19, - ACTIONS(1235), 1, - anon_sym_None, - ACTIONS(1247), 1, - sym_string_start, - ACTIONS(4864), 1, - anon_sym_LPAREN, - ACTIONS(4874), 1, - anon_sym_LBRACK, - ACTIONS(4876), 1, - anon_sym_DASH, - ACTIONS(4880), 1, - anon_sym_LBRACE, - ACTIONS(4882), 1, - sym_integer, - ACTIONS(4884), 1, - sym_float, - ACTIONS(5169), 1, - anon_sym_STAR, - ACTIONS(5171), 1, - anon_sym_STAR_STAR, - ACTIONS(5215), 1, - sym_identifier, - ACTIONS(5239), 1, - anon_sym_RBRACE, - STATE(3959), 1, - sym_string, - STATE(4213), 1, - sym_dotted_name, - STATE(4495), 1, - sym_splat_pattern, - STATE(5380), 1, - sym__key_value_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5217), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4927), 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, - [131972] = 19, - ACTIONS(1235), 1, - anon_sym_None, - ACTIONS(1247), 1, - sym_string_start, - ACTIONS(4864), 1, - anon_sym_LPAREN, - ACTIONS(4874), 1, - anon_sym_LBRACK, - ACTIONS(4876), 1, - anon_sym_DASH, - ACTIONS(4880), 1, - anon_sym_LBRACE, - ACTIONS(4882), 1, - sym_integer, - ACTIONS(4884), 1, - sym_float, - ACTIONS(5169), 1, - anon_sym_STAR, - ACTIONS(5171), 1, - anon_sym_STAR_STAR, - ACTIONS(5215), 1, - sym_identifier, - ACTIONS(5241), 1, - anon_sym_RBRACE, - STATE(3959), 1, - sym_string, - STATE(4213), 1, - sym_dotted_name, - STATE(4495), 1, - sym_splat_pattern, - STATE(5380), 1, - sym__key_value_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5217), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4927), 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, - [132041] = 3, + [131639] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1835), 3, + ACTIONS(1779), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1833), 25, + ACTIONS(1777), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -230263,16 +230770,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [132078] = 4, - ACTIONS(5243), 1, - anon_sym_COLON, + [131676] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1523), 2, + ACTIONS(1783), 3, sym__dedent, anon_sym_SEMI, - ACTIONS(1521), 25, + anon_sym_LPAREN, + ACTIONS(1781), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -230298,16 +230804,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [132117] = 4, - ACTIONS(5245), 1, - anon_sym_COLON, + [131713] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1541), 2, + ACTIONS(1787), 3, sym__dedent, anon_sym_SEMI, - ACTIONS(1539), 25, + anon_sym_LPAREN, + ACTIONS(1785), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -230333,63 +230838,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [132156] = 17, - ACTIONS(4004), 1, - sym_identifier, - ACTIONS(4006), 1, - anon_sym_LPAREN, - ACTIONS(4018), 1, - anon_sym_long, - ACTIONS(4782), 1, - anon_sym_class, - ACTIONS(4788), 1, - anon_sym_enum, - STATE(3188), 1, - sym__signedness, - STATE(3410), 1, - sym__longness, - STATE(3457), 1, - sym_c_type, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4014), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(4016), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4020), 2, - anon_sym_const, - anon_sym_volatile, - ACTIONS(4786), 2, - anon_sym_struct, - anon_sym_union, - STATE(2727), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3669), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4012), 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, - [132221] = 3, + [131750] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2091), 3, + ACTIONS(1759), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2089), 25, + ACTIONS(1757), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -230415,65 +230872,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [132258] = 19, - ACTIONS(1235), 1, - anon_sym_None, - ACTIONS(1247), 1, - sym_string_start, - ACTIONS(4864), 1, - anon_sym_LPAREN, - ACTIONS(4874), 1, - anon_sym_LBRACK, - ACTIONS(4876), 1, - anon_sym_DASH, - ACTIONS(4880), 1, - anon_sym_LBRACE, - ACTIONS(4882), 1, - sym_integer, - ACTIONS(4884), 1, - sym_float, - ACTIONS(5169), 1, - anon_sym_STAR, - ACTIONS(5171), 1, - anon_sym_STAR_STAR, - ACTIONS(5215), 1, - sym_identifier, - ACTIONS(5247), 1, - anon_sym_RBRACE, - STATE(3959), 1, - sym_string, - STATE(4213), 1, - sym_dotted_name, - STATE(4359), 1, - sym_splat_pattern, - STATE(4763), 1, - sym__key_value_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5217), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4927), 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, - [132327] = 3, + [131787] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1619), 3, + ACTIONS(1791), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1617), 25, + ACTIONS(1789), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -230499,165 +230906,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [132364] = 19, - ACTIONS(1235), 1, - anon_sym_None, - ACTIONS(1247), 1, - sym_string_start, - ACTIONS(4864), 1, - anon_sym_LPAREN, - ACTIONS(4874), 1, - anon_sym_LBRACK, - ACTIONS(4876), 1, - anon_sym_DASH, - ACTIONS(4880), 1, - anon_sym_LBRACE, - ACTIONS(4882), 1, - sym_integer, - ACTIONS(4884), 1, - sym_float, - ACTIONS(5169), 1, - anon_sym_STAR, - ACTIONS(5171), 1, - anon_sym_STAR_STAR, - ACTIONS(5215), 1, - sym_identifier, - ACTIONS(5249), 1, - anon_sym_RBRACE, - STATE(3959), 1, - sym_string, - STATE(4213), 1, - sym_dotted_name, - STATE(4495), 1, - sym_splat_pattern, - STATE(5380), 1, - sym__key_value_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5217), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4927), 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, - [132433] = 19, - ACTIONS(1235), 1, - anon_sym_None, - ACTIONS(1247), 1, - sym_string_start, - ACTIONS(4864), 1, - anon_sym_LPAREN, - ACTIONS(4874), 1, - anon_sym_LBRACK, - ACTIONS(4876), 1, - anon_sym_DASH, - ACTIONS(4880), 1, - anon_sym_LBRACE, - ACTIONS(4882), 1, - sym_integer, - ACTIONS(4884), 1, - sym_float, - ACTIONS(5169), 1, - anon_sym_STAR, - ACTIONS(5171), 1, - anon_sym_STAR_STAR, - ACTIONS(5215), 1, - sym_identifier, - ACTIONS(5251), 1, - anon_sym_RBRACE, - STATE(3959), 1, - sym_string, - STATE(4213), 1, - sym_dotted_name, - STATE(4495), 1, - sym_splat_pattern, - STATE(5380), 1, - sym__key_value_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5217), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4927), 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, - [132502] = 19, - ACTIONS(1235), 1, - anon_sym_None, - ACTIONS(1247), 1, - sym_string_start, - ACTIONS(4864), 1, - anon_sym_LPAREN, - ACTIONS(4874), 1, - anon_sym_LBRACK, - ACTIONS(4876), 1, - anon_sym_DASH, - ACTIONS(4880), 1, - anon_sym_LBRACE, - ACTIONS(4882), 1, - sym_integer, - ACTIONS(4884), 1, - sym_float, - ACTIONS(5169), 1, - anon_sym_STAR, - ACTIONS(5171), 1, - anon_sym_STAR_STAR, - ACTIONS(5215), 1, - sym_identifier, - ACTIONS(5253), 1, - anon_sym_RBRACE, - STATE(3959), 1, - sym_string, - STATE(4213), 1, - sym_dotted_name, - STATE(4495), 1, - sym_splat_pattern, - STATE(5380), 1, - sym__key_value_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5217), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4927), 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, - [132571] = 3, + [131824] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2069), 3, + ACTIONS(1795), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2067), 25, + ACTIONS(1793), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -230683,115 +230940,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [132608] = 19, - ACTIONS(1235), 1, - anon_sym_None, - ACTIONS(1247), 1, - sym_string_start, - ACTIONS(4864), 1, - anon_sym_LPAREN, - ACTIONS(4874), 1, - anon_sym_LBRACK, - ACTIONS(4876), 1, - anon_sym_DASH, - ACTIONS(4880), 1, - anon_sym_LBRACE, - ACTIONS(4882), 1, - sym_integer, - ACTIONS(4884), 1, - sym_float, - ACTIONS(5169), 1, - anon_sym_STAR, - ACTIONS(5171), 1, - anon_sym_STAR_STAR, - ACTIONS(5215), 1, - sym_identifier, - ACTIONS(5255), 1, - anon_sym_RBRACE, - STATE(3959), 1, - sym_string, - STATE(4213), 1, - sym_dotted_name, - STATE(4495), 1, - sym_splat_pattern, - STATE(5380), 1, - sym__key_value_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5217), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4927), 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, - [132677] = 19, - ACTIONS(1235), 1, - anon_sym_None, - ACTIONS(1247), 1, - sym_string_start, - ACTIONS(4864), 1, - anon_sym_LPAREN, - ACTIONS(4874), 1, - anon_sym_LBRACK, - ACTIONS(4876), 1, - anon_sym_DASH, - ACTIONS(4880), 1, - anon_sym_LBRACE, - ACTIONS(4882), 1, - sym_integer, - ACTIONS(4884), 1, - sym_float, - ACTIONS(5169), 1, - anon_sym_STAR, - ACTIONS(5171), 1, - anon_sym_STAR_STAR, - ACTIONS(5215), 1, - sym_identifier, - ACTIONS(5257), 1, - anon_sym_RBRACE, - STATE(3959), 1, - sym_string, - STATE(4213), 1, - sym_dotted_name, - STATE(4495), 1, - sym_splat_pattern, - STATE(5380), 1, - sym__key_value_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5217), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4927), 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, - [132746] = 3, + [131861] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2219), 3, + ACTIONS(1767), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2217), 25, + ACTIONS(1765), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -230817,15 +230974,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [132783] = 3, + [131898] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2223), 3, + ACTIONS(1799), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2221), 25, + ACTIONS(1797), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -230851,23 +231008,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [132820] = 3, + [131935] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2227), 3, + ACTIONS(4402), 3, sym__dedent, - anon_sym_SEMI, + sym_string_start, anon_sym_LPAREN, - ACTIONS(2225), 25, + ACTIONS(4404), 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, @@ -230885,15 +231042,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [132857] = 3, + [131972] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2235), 3, + ACTIONS(1775), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2233), 25, + ACTIONS(1773), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -230919,23 +231076,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [132894] = 3, + [132009] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2239), 3, + ACTIONS(4398), 3, sym__dedent, - anon_sym_SEMI, + sym_string_start, anon_sym_LPAREN, - ACTIONS(2237), 25, + ACTIONS(4400), 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, @@ -230953,15 +231110,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [132931] = 3, + [132046] = 4, + ACTIONS(5229), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2235), 3, + ACTIONS(1503), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(2233), 25, + ACTIONS(1501), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -230987,133 +231145,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [132968] = 3, + [132085] = 18, + ACTIONS(59), 1, + anon_sym_class, + ACTIONS(371), 1, + anon_sym_long, + ACTIONS(3978), 1, + anon_sym_operator, + ACTIONS(4122), 1, + sym_identifier, + ACTIONS(5231), 1, + anon_sym_COLON, + STATE(3140), 1, + sym__signedness, + STATE(3191), 1, + sym_int_type, + STATE(3368), 1, + sym__longness, + STATE(3562), 1, + sym_operator_name, + STATE(3869), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2235), 3, - sym__dedent, - anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(2233), 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(3980), 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(1374), 2, + sym_class_definition, + sym_cvar_def, + STATE(3082), 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, - [133005] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1875), 3, - sym__dedent, - anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1873), 25, - anon_sym_class, - sym_identifier, - anon_sym_api, - anon_sym_extern, - anon_sym_int, - anon_sym_double, - anon_sym_complex, + [132152] = 18, + ACTIONS(371), 1, + anon_sym_long, + ACTIONS(3978), 1, anon_sym_operator, + ACTIONS(4122), 1, + sym_identifier, + ACTIONS(4124), 1, + anon_sym_class, + ACTIONS(5233), 1, + anon_sym_COLON, + STATE(3140), 1, + sym__signedness, + STATE(3191), 1, + sym_int_type, + STATE(3368), 1, + sym__longness, + STATE(3562), 1, + sym_operator_name, + STATE(3795), 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(3980), 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(2944), 2, + sym_class_definition, + sym_cvar_def, + STATE(3083), 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, - [133042] = 19, - ACTIONS(1235), 1, - anon_sym_None, - ACTIONS(1247), 1, - sym_string_start, - ACTIONS(4864), 1, - anon_sym_LPAREN, - ACTIONS(4874), 1, - anon_sym_LBRACK, - ACTIONS(4876), 1, - anon_sym_DASH, - ACTIONS(4880), 1, - anon_sym_LBRACE, - ACTIONS(4882), 1, - sym_integer, - ACTIONS(4884), 1, - sym_float, - ACTIONS(5169), 1, - anon_sym_STAR, - ACTIONS(5171), 1, - anon_sym_STAR_STAR, - ACTIONS(5215), 1, - sym_identifier, - ACTIONS(5259), 1, - anon_sym_RBRACE, - STATE(3959), 1, - sym_string, - STATE(4213), 1, - sym_dotted_name, - STATE(4495), 1, - sym_splat_pattern, - STATE(5380), 1, - sym__key_value_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5217), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4927), 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, - [133111] = 3, + [132219] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1883), 3, + ACTIONS(1851), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1881), 25, + ACTIONS(1849), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -231139,16 +231277,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [133148] = 4, - ACTIONS(5261), 1, - anon_sym_COLON, + [132256] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1553), 2, + ACTIONS(1855), 3, sym__dedent, anon_sym_SEMI, - ACTIONS(1551), 25, + anon_sym_LPAREN, + ACTIONS(1853), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -231174,16 +231311,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [133187] = 4, - ACTIONS(5263), 1, - anon_sym_COLON, + [132293] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1547), 2, + ACTIONS(1859), 3, sym__dedent, anon_sym_SEMI, - ACTIONS(1545), 25, + anon_sym_LPAREN, + ACTIONS(1857), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -231209,47 +231345,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [133226] = 19, + [132330] = 19, ACTIONS(1235), 1, anon_sym_None, ACTIONS(1247), 1, sym_string_start, - ACTIONS(4864), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4874), 1, + ACTIONS(4867), 1, anon_sym_LBRACK, - ACTIONS(4876), 1, + ACTIONS(4869), 1, anon_sym_DASH, - ACTIONS(4880), 1, + ACTIONS(4873), 1, anon_sym_LBRACE, - ACTIONS(4882), 1, + ACTIONS(4875), 1, sym_integer, - ACTIONS(4884), 1, + ACTIONS(4877), 1, sym_float, - ACTIONS(5169), 1, + ACTIONS(5159), 1, anon_sym_STAR, - ACTIONS(5171), 1, + ACTIONS(5161), 1, anon_sym_STAR_STAR, - ACTIONS(5215), 1, + ACTIONS(5213), 1, sym_identifier, - ACTIONS(5265), 1, + ACTIONS(5235), 1, anon_sym_RBRACE, - STATE(3959), 1, + STATE(3941), 1, sym_string, - STATE(4213), 1, + STATE(4165), 1, sym_dotted_name, - STATE(4495), 1, + STATE(4457), 1, sym_splat_pattern, - STATE(5380), 1, + STATE(4768), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5217), 3, + ACTIONS(5215), 3, anon_sym__, sym_true, sym_false, - STATE(4927), 9, + STATE(5132), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -231259,15 +231395,15 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [133295] = 3, + [132399] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1579), 3, + ACTIONS(1863), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1577), 25, + ACTIONS(1861), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -231293,15 +231429,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [133332] = 3, + [132436] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1659), 3, + ACTIONS(1867), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1657), 25, + ACTIONS(1865), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -231327,23 +231463,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [133369] = 3, + [132473] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4394), 3, + ACTIONS(1871), 3, sym__dedent, - sym_string_start, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(4396), 25, + ACTIONS(1869), 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, @@ -231361,26 +231497,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [133406] = 18, - ACTIONS(59), 1, + [132510] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1875), 3, + sym__dedent, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(1873), 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, + [132547] = 18, ACTIONS(371), 1, anon_sym_long, - ACTIONS(4094), 1, + ACTIONS(3978), 1, anon_sym_operator, - ACTIONS(4165), 1, + ACTIONS(4122), 1, sym_identifier, - ACTIONS(5267), 1, + ACTIONS(4124), 1, + anon_sym_class, + ACTIONS(5237), 1, anon_sym_COLON, - STATE(3130), 1, + STATE(3140), 1, sym__signedness, - STATE(3228), 1, + STATE(3191), 1, sym_int_type, - STATE(3321), 1, + STATE(3368), 1, sym__longness, - STATE(3597), 1, + STATE(3562), 1, sym_operator_name, - STATE(3847), 1, + STATE(3795), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -231391,13 +231561,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(4096), 2, + ACTIONS(3980), 2, anon_sym_const, anon_sym_volatile, - STATE(1313), 2, + STATE(2994), 2, sym_class_definition, sym_cvar_def, - STATE(3075), 2, + STATE(3083), 2, sym_storageclass, aux_sym_class_definition_repeat1, ACTIONS(365), 3, @@ -231410,15 +231580,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [133473] = 3, + [132614] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1663), 3, + ACTIONS(2111), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1661), 25, + ACTIONS(2109), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -231444,15 +231614,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [133510] = 3, + [132651] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1667), 3, + ACTIONS(1879), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1665), 25, + ACTIONS(1877), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -231478,64 +231648,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [133547] = 18, - ACTIONS(371), 1, - anon_sym_long, - ACTIONS(4094), 1, - anon_sym_operator, - ACTIONS(4165), 1, - sym_identifier, - ACTIONS(4167), 1, - anon_sym_class, - ACTIONS(5269), 1, - anon_sym_COLON, - STATE(3130), 1, - sym__signedness, - STATE(3228), 1, - sym_int_type, - STATE(3321), 1, - sym__longness, - STATE(3597), 1, - sym_operator_name, - STATE(3811), 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(4096), 2, - anon_sym_const, - anon_sym_volatile, - STATE(2966), 2, - sym_class_definition, - sym_cvar_def, - STATE(3072), 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, - [133614] = 3, + [132688] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1671), 3, + ACTIONS(1883), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1669), 25, + ACTIONS(1881), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -231561,15 +231682,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [133651] = 3, + [132725] = 19, + ACTIONS(1235), 1, + anon_sym_None, + ACTIONS(1247), 1, + sym_string_start, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4867), 1, + anon_sym_LBRACK, + ACTIONS(4869), 1, + anon_sym_DASH, + ACTIONS(4873), 1, + anon_sym_LBRACE, + ACTIONS(4875), 1, + sym_integer, + ACTIONS(4877), 1, + sym_float, + ACTIONS(5159), 1, + anon_sym_STAR, + ACTIONS(5161), 1, + anon_sym_STAR_STAR, + ACTIONS(5213), 1, + sym_identifier, + ACTIONS(5239), 1, + anon_sym_RBRACE, + STATE(3941), 1, + sym_string, + STATE(4165), 1, + sym_dotted_name, + STATE(4587), 1, + sym_splat_pattern, + STATE(5232), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5215), 3, + anon_sym__, + sym_true, + sym_false, + STATE(5132), 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, + [132794] = 19, + ACTIONS(1235), 1, + anon_sym_None, + ACTIONS(1247), 1, + sym_string_start, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4867), 1, + anon_sym_LBRACK, + ACTIONS(4869), 1, + anon_sym_DASH, + ACTIONS(4873), 1, + anon_sym_LBRACE, + ACTIONS(4875), 1, + sym_integer, + ACTIONS(4877), 1, + sym_float, + ACTIONS(5159), 1, + anon_sym_STAR, + ACTIONS(5161), 1, + anon_sym_STAR_STAR, + ACTIONS(5213), 1, + sym_identifier, + ACTIONS(5241), 1, + anon_sym_RBRACE, + STATE(3941), 1, + sym_string, + STATE(4165), 1, + sym_dotted_name, + STATE(4587), 1, + sym_splat_pattern, + STATE(5232), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5215), 3, + anon_sym__, + sym_true, + sym_false, + STATE(5132), 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, + [132863] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1955), 3, + ACTIONS(1887), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1953), 25, + ACTIONS(1885), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -231595,15 +231816,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [133688] = 3, + [132900] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1731), 3, + ACTIONS(1891), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1729), 25, + ACTIONS(1889), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -231629,15 +231850,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [133725] = 3, + [132937] = 19, + ACTIONS(1235), 1, + anon_sym_None, + ACTIONS(1247), 1, + sym_string_start, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4867), 1, + anon_sym_LBRACK, + ACTIONS(4869), 1, + anon_sym_DASH, + ACTIONS(4873), 1, + anon_sym_LBRACE, + ACTIONS(4875), 1, + sym_integer, + ACTIONS(4877), 1, + sym_float, + ACTIONS(5159), 1, + anon_sym_STAR, + ACTIONS(5161), 1, + anon_sym_STAR_STAR, + ACTIONS(5213), 1, + sym_identifier, + ACTIONS(5243), 1, + anon_sym_RBRACE, + STATE(3941), 1, + sym_string, + STATE(4165), 1, + sym_dotted_name, + STATE(4587), 1, + sym_splat_pattern, + STATE(5232), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5215), 3, + anon_sym__, + sym_true, + sym_false, + STATE(5132), 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, + [133006] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1959), 3, + ACTIONS(1619), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1957), 25, + ACTIONS(1617), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -231663,15 +231934,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [133762] = 3, + [133043] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2315), 3, + ACTIONS(1895), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2313), 25, + ACTIONS(1893), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -231697,23 +231968,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [133799] = 3, + [133080] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4077), 3, + ACTIONS(1855), 3, sym__dedent, - sym_string_start, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(5271), 25, + ACTIONS(1853), 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, @@ -231731,15 +232002,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [133836] = 3, + [133117] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2327), 3, + ACTIONS(2147), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2325), 25, + ACTIONS(2145), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -231765,15 +232036,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [133873] = 3, + [133154] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1607), 3, + ACTIONS(2151), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1605), 25, + ACTIONS(2149), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -231799,15 +232070,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [133910] = 3, + [133191] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1783), 3, + ACTIONS(1935), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1781), 25, + ACTIONS(1933), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -231833,15 +232104,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [133947] = 3, + [133228] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1803), 3, + ACTIONS(1939), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1801), 25, + ACTIONS(1937), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -231867,15 +232138,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [133984] = 3, + [133265] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1679), 3, + ACTIONS(2187), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1677), 25, + ACTIONS(2185), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -231901,15 +232172,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134021] = 3, + [133302] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1731), 3, + ACTIONS(2191), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1729), 25, + ACTIONS(2189), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -231935,15 +232206,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134058] = 3, + [133339] = 18, + ACTIONS(125), 1, + anon_sym_class, + ACTIONS(371), 1, + anon_sym_long, + ACTIONS(3978), 1, + anon_sym_operator, + ACTIONS(4122), 1, + sym_identifier, + ACTIONS(5245), 1, + anon_sym_COLON, + STATE(3140), 1, + sym__signedness, + STATE(3191), 1, + sym_int_type, + STATE(3368), 1, + sym__longness, + STATE(3562), 1, + sym_operator_name, + STATE(3810), 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(3980), 2, + anon_sym_const, + anon_sym_volatile, + STATE(654), 2, + sym_class_definition, + sym_cvar_def, + STATE(3084), 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, + [133406] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2295), 3, + ACTIONS(1971), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2293), 25, + ACTIONS(1969), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -231969,15 +232289,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134095] = 3, + [133443] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2327), 3, + ACTIONS(1975), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2325), 25, + ACTIONS(1973), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -232003,15 +232323,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134132] = 3, + [133480] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1675), 3, + ACTIONS(1979), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1673), 25, + ACTIONS(1977), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -232037,15 +232357,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134169] = 3, + [133517] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1731), 3, + ACTIONS(1983), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1729), 25, + ACTIONS(1981), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -232071,16 +232391,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134206] = 4, - ACTIONS(5273), 1, - anon_sym_COLON, + [133554] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1503), 2, + ACTIONS(1987), 3, sym__dedent, anon_sym_SEMI, - ACTIONS(1501), 25, + anon_sym_LPAREN, + ACTIONS(1985), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -232106,95 +232425,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134245] = 17, - ACTIONS(4004), 1, - sym_identifier, - ACTIONS(4006), 1, - anon_sym_LPAREN, - ACTIONS(4018), 1, - anon_sym_long, - ACTIONS(4818), 1, - anon_sym_class, - ACTIONS(4822), 1, - anon_sym_enum, - STATE(3188), 1, - sym__signedness, - STATE(3410), 1, - sym__longness, - STATE(3476), 1, - sym_c_type, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4014), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(4016), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4020), 2, - anon_sym_const, - anon_sym_volatile, - ACTIONS(4820), 2, - anon_sym_struct, - anon_sym_union, - STATE(2727), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3669), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4012), 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, - [134310] = 19, + [133591] = 19, ACTIONS(1235), 1, anon_sym_None, ACTIONS(1247), 1, sym_string_start, - ACTIONS(4864), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4874), 1, + ACTIONS(4867), 1, anon_sym_LBRACK, - ACTIONS(4876), 1, + ACTIONS(4869), 1, anon_sym_DASH, - ACTIONS(4880), 1, + ACTIONS(4873), 1, anon_sym_LBRACE, - ACTIONS(4882), 1, + ACTIONS(4875), 1, sym_integer, - ACTIONS(4884), 1, + ACTIONS(4877), 1, sym_float, - ACTIONS(5169), 1, + ACTIONS(5159), 1, anon_sym_STAR, - ACTIONS(5171), 1, + ACTIONS(5161), 1, anon_sym_STAR_STAR, - ACTIONS(5215), 1, + ACTIONS(5213), 1, sym_identifier, - ACTIONS(5275), 1, + ACTIONS(5247), 1, anon_sym_RBRACE, - STATE(3959), 1, + STATE(3941), 1, sym_string, - STATE(4213), 1, + STATE(4165), 1, sym_dotted_name, - STATE(4422), 1, + STATE(4298), 1, sym_splat_pattern, - STATE(4966), 1, + STATE(4651), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5217), 3, + ACTIONS(5215), 3, anon_sym__, sym_true, sym_false, - STATE(4927), 9, + STATE(5132), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -232204,15 +232475,15 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [134379] = 3, + [133660] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1683), 3, + ACTIONS(1991), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1681), 25, + ACTIONS(1989), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -232238,15 +232509,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134416] = 3, + [133697] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2027), 3, + ACTIONS(1995), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2025), 25, + ACTIONS(1993), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -232272,15 +232543,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134453] = 3, + [133734] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2037), 3, + ACTIONS(1999), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2035), 25, + ACTIONS(1997), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -232306,45 +232577,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134490] = 17, - ACTIONS(4004), 1, - sym_identifier, - ACTIONS(4006), 1, + [133771] = 19, + ACTIONS(1235), 1, + anon_sym_None, + ACTIONS(1247), 1, + sym_string_start, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4018), 1, - anon_sym_long, - ACTIONS(5149), 1, + ACTIONS(4867), 1, + anon_sym_LBRACK, + ACTIONS(4869), 1, + anon_sym_DASH, + ACTIONS(4873), 1, + anon_sym_LBRACE, + ACTIONS(4875), 1, + sym_integer, + ACTIONS(4877), 1, + sym_float, + ACTIONS(5159), 1, + anon_sym_STAR, + ACTIONS(5161), 1, + anon_sym_STAR_STAR, + ACTIONS(5213), 1, + sym_identifier, + ACTIONS(5249), 1, + anon_sym_RBRACE, + STATE(3941), 1, + sym_string, + STATE(4165), 1, + sym_dotted_name, + STATE(4456), 1, + sym_splat_pattern, + STATE(5143), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5215), 3, + anon_sym__, + sym_true, + sym_false, + STATE(5132), 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, + [133840] = 18, + ACTIONS(125), 1, anon_sym_class, - ACTIONS(5155), 1, - anon_sym_enum, - STATE(3188), 1, + ACTIONS(371), 1, + anon_sym_long, + ACTIONS(3978), 1, + anon_sym_operator, + ACTIONS(4122), 1, + sym_identifier, + ACTIONS(5251), 1, + anon_sym_COLON, + STATE(3140), 1, sym__signedness, - STATE(3410), 1, + STATE(3191), 1, + sym_int_type, + STATE(3368), 1, sym__longness, - STATE(3503), 1, - sym_c_type, + STATE(3562), 1, + sym_operator_name, + STATE(3810), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4014), 2, + ACTIONS(367), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4016), 2, + ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(4020), 2, + ACTIONS(3980), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(5153), 2, - anon_sym_struct, - anon_sym_union, - STATE(2727), 2, + STATE(675), 2, + sym_class_definition, + sym_cvar_def, + STATE(3084), 2, sym_storageclass, aux_sym_class_definition_repeat1, - STATE(3669), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4012), 3, + ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, @@ -232354,49 +232676,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134555] = 3, + [133907] = 19, + ACTIONS(1235), 1, + anon_sym_None, + ACTIONS(1247), 1, + sym_string_start, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4867), 1, + anon_sym_LBRACK, + ACTIONS(4869), 1, + anon_sym_DASH, + ACTIONS(4873), 1, + anon_sym_LBRACE, + ACTIONS(4875), 1, + sym_integer, + ACTIONS(4877), 1, + sym_float, + ACTIONS(5159), 1, + anon_sym_STAR, + ACTIONS(5161), 1, + anon_sym_STAR_STAR, + ACTIONS(5213), 1, + sym_identifier, + ACTIONS(5253), 1, + anon_sym_RBRACE, + STATE(3941), 1, + sym_string, + STATE(4165), 1, + sym_dotted_name, + STATE(4587), 1, + sym_splat_pattern, + STATE(5232), 1, + sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2187), 3, - sym__dedent, - anon_sym_SEMI, + ACTIONS(5215), 3, + anon_sym__, + sym_true, + sym_false, + STATE(5132), 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, + [133976] = 19, + ACTIONS(1235), 1, + anon_sym_None, + ACTIONS(1247), 1, + sym_string_start, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(2185), 25, - anon_sym_class, + ACTIONS(4867), 1, + anon_sym_LBRACK, + ACTIONS(4869), 1, + anon_sym_DASH, + ACTIONS(4873), 1, + anon_sym_LBRACE, + ACTIONS(4875), 1, + sym_integer, + ACTIONS(4877), 1, + sym_float, + ACTIONS(5159), 1, + anon_sym_STAR, + ACTIONS(5161), 1, + anon_sym_STAR_STAR, + ACTIONS(5213), 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, - [134592] = 3, + ACTIONS(5255), 1, + anon_sym_RBRACE, + STATE(3941), 1, + sym_string, + STATE(4165), 1, + sym_dotted_name, + STATE(4587), 1, + sym_splat_pattern, + STATE(5232), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5215), 3, + anon_sym__, + sym_true, + sym_false, + STATE(5132), 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, + [134045] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2215), 3, + ACTIONS(2227), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2213), 25, + ACTIONS(2225), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -232422,15 +232810,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134629] = 3, + [134082] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1751), 3, + ACTIONS(2231), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1749), 25, + ACTIONS(2229), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -232456,15 +232844,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134666] = 3, + [134119] = 19, + ACTIONS(1235), 1, + anon_sym_None, + ACTIONS(1247), 1, + sym_string_start, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4867), 1, + anon_sym_LBRACK, + ACTIONS(4869), 1, + anon_sym_DASH, + ACTIONS(4873), 1, + anon_sym_LBRACE, + ACTIONS(4875), 1, + sym_integer, + ACTIONS(4877), 1, + sym_float, + ACTIONS(5159), 1, + anon_sym_STAR, + ACTIONS(5161), 1, + anon_sym_STAR_STAR, + ACTIONS(5213), 1, + sym_identifier, + ACTIONS(5257), 1, + anon_sym_RBRACE, + STATE(3941), 1, + sym_string, + STATE(4165), 1, + sym_dotted_name, + STATE(4587), 1, + sym_splat_pattern, + STATE(5232), 1, + sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2231), 3, + ACTIONS(5215), 3, + anon_sym__, + sym_true, + sym_false, + STATE(5132), 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, + [134188] = 19, + ACTIONS(1235), 1, + anon_sym_None, + ACTIONS(1247), 1, + sym_string_start, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4867), 1, + anon_sym_LBRACK, + ACTIONS(4869), 1, + anon_sym_DASH, + ACTIONS(4873), 1, + anon_sym_LBRACE, + ACTIONS(4875), 1, + sym_integer, + ACTIONS(4877), 1, + sym_float, + ACTIONS(5159), 1, + anon_sym_STAR, + ACTIONS(5161), 1, + anon_sym_STAR_STAR, + ACTIONS(5213), 1, + sym_identifier, + ACTIONS(5259), 1, + anon_sym_RBRACE, + STATE(3941), 1, + sym_string, + STATE(4165), 1, + sym_dotted_name, + STATE(4587), 1, + sym_splat_pattern, + STATE(5232), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5215), 3, + anon_sym__, + sym_true, + sym_false, + STATE(5132), 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, + [134257] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2031), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2229), 25, + ACTIONS(2029), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -232490,15 +232978,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134703] = 3, + [134294] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2243), 3, + ACTIONS(2035), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2241), 25, + ACTIONS(2033), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -232524,15 +233012,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134740] = 3, + [134331] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1687), 3, + ACTIONS(2039), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1685), 25, + ACTIONS(2037), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -232558,7 +233046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134777] = 3, + [134368] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -232592,15 +233080,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134814] = 3, + [134405] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2263), 3, + ACTIONS(2255), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2261), 25, + ACTIONS(2253), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -232626,15 +233114,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134851] = 3, + [134442] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2279), 3, + ACTIONS(2043), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2277), 25, + ACTIONS(2041), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -232660,15 +233148,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134888] = 3, + [134479] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2291), 3, + ACTIONS(2047), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2289), 25, + ACTIONS(2045), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -232694,49 +233182,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134925] = 3, + [134516] = 19, + ACTIONS(1235), 1, + anon_sym_None, + ACTIONS(1247), 1, + sym_string_start, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4867), 1, + anon_sym_LBRACK, + ACTIONS(4869), 1, + anon_sym_DASH, + ACTIONS(4873), 1, + anon_sym_LBRACE, + ACTIONS(4875), 1, + sym_integer, + ACTIONS(4877), 1, + sym_float, + ACTIONS(5159), 1, + anon_sym_STAR, + ACTIONS(5161), 1, + anon_sym_STAR_STAR, + ACTIONS(5213), 1, + sym_identifier, + ACTIONS(5261), 1, + anon_sym_RBRACE, + STATE(3941), 1, + sym_string, + STATE(4165), 1, + sym_dotted_name, + STATE(4386), 1, + sym_splat_pattern, + STATE(4788), 1, + sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2187), 3, - sym__dedent, - anon_sym_SEMI, + ACTIONS(5215), 3, + anon_sym__, + sym_true, + sym_false, + STATE(5132), 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, + [134585] = 19, + ACTIONS(1235), 1, + anon_sym_None, + ACTIONS(1247), 1, + sym_string_start, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(2185), 25, - anon_sym_class, + ACTIONS(4867), 1, + anon_sym_LBRACK, + ACTIONS(4869), 1, + anon_sym_DASH, + ACTIONS(4873), 1, + anon_sym_LBRACE, + ACTIONS(4875), 1, + sym_integer, + ACTIONS(4877), 1, + sym_float, + ACTIONS(5159), 1, + anon_sym_STAR, + ACTIONS(5161), 1, + anon_sym_STAR_STAR, + ACTIONS(5213), 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, - [134962] = 3, + ACTIONS(5263), 1, + anon_sym_RBRACE, + STATE(3941), 1, + sym_string, + STATE(4165), 1, + sym_dotted_name, + STATE(4587), 1, + sym_splat_pattern, + STATE(5232), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5215), 3, + anon_sym__, + sym_true, + sym_false, + STATE(5132), 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, + [134654] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2299), 3, + ACTIONS(2063), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2297), 25, + ACTIONS(2061), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -232762,15 +233316,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134999] = 3, + [134691] = 19, + ACTIONS(1235), 1, + anon_sym_None, + ACTIONS(1247), 1, + sym_string_start, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4867), 1, + anon_sym_LBRACK, + ACTIONS(4869), 1, + anon_sym_DASH, + ACTIONS(4873), 1, + anon_sym_LBRACE, + ACTIONS(4875), 1, + sym_integer, + ACTIONS(4877), 1, + sym_float, + ACTIONS(5159), 1, + anon_sym_STAR, + ACTIONS(5161), 1, + anon_sym_STAR_STAR, + ACTIONS(5213), 1, + sym_identifier, + ACTIONS(5265), 1, + anon_sym_RBRACE, + STATE(3941), 1, + sym_string, + STATE(4165), 1, + sym_dotted_name, + STATE(4587), 1, + sym_splat_pattern, + STATE(5232), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5215), 3, + anon_sym__, + sym_true, + sym_false, + STATE(5132), 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, + [134760] = 19, + ACTIONS(1235), 1, + anon_sym_None, + ACTIONS(1247), 1, + sym_string_start, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4867), 1, + anon_sym_LBRACK, + ACTIONS(4869), 1, + anon_sym_DASH, + ACTIONS(4873), 1, + anon_sym_LBRACE, + ACTIONS(4875), 1, + sym_integer, + ACTIONS(4877), 1, + sym_float, + ACTIONS(5159), 1, + anon_sym_STAR, + ACTIONS(5161), 1, + anon_sym_STAR_STAR, + ACTIONS(5213), 1, + sym_identifier, + ACTIONS(5267), 1, + anon_sym_RBRACE, + STATE(3941), 1, + sym_string, + STATE(4165), 1, + sym_dotted_name, + STATE(4587), 1, + sym_splat_pattern, + STATE(5232), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5215), 3, + anon_sym__, + sym_true, + sym_false, + STATE(5132), 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, + [134829] = 4, + ACTIONS(5269), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2303), 3, + ACTIONS(1529), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(2301), 25, + ACTIONS(1527), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -232796,15 +233451,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135036] = 3, + [134868] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2231), 3, + ACTIONS(1575), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2229), 25, + ACTIONS(1573), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -232830,15 +233485,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135073] = 3, + [134905] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2307), 3, + ACTIONS(2275), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2305), 25, + ACTIONS(2273), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -232864,15 +233519,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135110] = 3, + [134942] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1691), 3, + ACTIONS(2279), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1689), 25, + ACTIONS(2277), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -232898,15 +233553,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135147] = 3, + [134979] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2251), 3, + ACTIONS(1579), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2249), 25, + ACTIONS(1577), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -232932,15 +233587,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135184] = 3, + [135016] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1603), 3, + ACTIONS(1583), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1601), 25, + ACTIONS(1581), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -232966,24 +233621,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135221] = 4, - ACTIONS(5277), 1, - anon_sym_COLON, + [135053] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1517), 2, + ACTIONS(4117), 3, sym__dedent, - anon_sym_SEMI, - ACTIONS(1515), 25, + sym_string_start, + anon_sym_LPAREN, + ACTIONS(5271), 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, @@ -233001,15 +233655,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135260] = 3, + [135090] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2003), 3, + ACTIONS(2291), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2001), 25, + ACTIONS(2289), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -233035,15 +233689,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135297] = 3, + [135127] = 19, + ACTIONS(1235), 1, + anon_sym_None, + ACTIONS(1247), 1, + sym_string_start, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4867), 1, + anon_sym_LBRACK, + ACTIONS(4869), 1, + anon_sym_DASH, + ACTIONS(4873), 1, + anon_sym_LBRACE, + ACTIONS(4875), 1, + sym_integer, + ACTIONS(4877), 1, + sym_float, + ACTIONS(5159), 1, + anon_sym_STAR, + ACTIONS(5161), 1, + anon_sym_STAR_STAR, + ACTIONS(5213), 1, + sym_identifier, + ACTIONS(5273), 1, + anon_sym_RBRACE, + STATE(3941), 1, + sym_string, + STATE(4165), 1, + sym_dotted_name, + STATE(4587), 1, + sym_splat_pattern, + STATE(5232), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5215), 3, + anon_sym__, + sym_true, + sym_false, + STATE(5132), 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, + [135196] = 19, + ACTIONS(1235), 1, + anon_sym_None, + ACTIONS(1247), 1, + sym_string_start, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4867), 1, + anon_sym_LBRACK, + ACTIONS(4869), 1, + anon_sym_DASH, + ACTIONS(4873), 1, + anon_sym_LBRACE, + ACTIONS(4875), 1, + sym_integer, + ACTIONS(4877), 1, + sym_float, + ACTIONS(5159), 1, + anon_sym_STAR, + ACTIONS(5161), 1, + anon_sym_STAR_STAR, + ACTIONS(5213), 1, + sym_identifier, + ACTIONS(5275), 1, + anon_sym_RBRACE, + STATE(3941), 1, + sym_string, + STATE(4165), 1, + sym_dotted_name, + STATE(4587), 1, + sym_splat_pattern, + STATE(5232), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5215), 3, + anon_sym__, + sym_true, + sym_false, + STATE(5132), 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, + [135265] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1559), 3, + ACTIONS(1509), 3, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1557), 25, + anon_sym_COLON, + ACTIONS(1507), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -233069,15 +233823,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135334] = 3, + [135302] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1575), 3, + ACTIONS(1513), 3, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1573), 25, + anon_sym_COLON, + ACTIONS(1511), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -233103,15 +233857,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135371] = 3, + [135339] = 4, + ACTIONS(5277), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1579), 3, + ACTIONS(1535), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1577), 25, + ACTIONS(1533), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -233137,15 +233892,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135408] = 3, + [135378] = 4, + ACTIONS(5279), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1583), 3, + ACTIONS(1541), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1581), 25, + ACTIONS(1539), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -233171,46 +233927,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135445] = 18, - ACTIONS(371), 1, - anon_sym_long, - ACTIONS(4094), 1, - anon_sym_operator, - ACTIONS(4165), 1, + [135417] = 17, + ACTIONS(3934), 1, sym_identifier, - ACTIONS(4167), 1, + ACTIONS(3936), 1, + anon_sym_LPAREN, + ACTIONS(3948), 1, + anon_sym_long, + ACTIONS(4792), 1, anon_sym_class, - ACTIONS(5279), 1, - anon_sym_COLON, - STATE(3130), 1, + ACTIONS(4798), 1, + anon_sym_enum, + STATE(3198), 1, sym__signedness, - STATE(3228), 1, - sym_int_type, - STATE(3321), 1, + STATE(3409), 1, sym__longness, - STATE(3597), 1, - sym_operator_name, - STATE(3811), 1, - sym_maybe_typed_name, + STATE(3464), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(367), 2, + ACTIONS(3944), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(369), 2, + ACTIONS(3946), 2, anon_sym_char, anon_sym_short, - ACTIONS(4096), 2, + ACTIONS(3950), 2, anon_sym_const, anon_sym_volatile, - STATE(2956), 2, - sym_class_definition, - sym_cvar_def, - STATE(3072), 2, + ACTIONS(4796), 2, + anon_sym_struct, + anon_sym_union, + STATE(2735), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(365), 3, + STATE(3668), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(3942), 3, anon_sym_int, anon_sym_double, anon_sym_complex, @@ -233220,50 +233975,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135512] = 3, + [135482] = 17, + ACTIONS(3934), 1, + sym_identifier, + ACTIONS(3936), 1, + anon_sym_LPAREN, + ACTIONS(3948), 1, + anon_sym_long, + ACTIONS(5195), 1, + anon_sym_class, + ACTIONS(5201), 1, + anon_sym_enum, + STATE(3198), 1, + sym__signedness, + STATE(3409), 1, + sym__longness, + STATE(3485), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1587), 3, - sym__dedent, - anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1585), 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(3944), 2, anon_sym_signed, anon_sym_unsigned, + ACTIONS(3946), 2, anon_sym_char, anon_sym_short, - anon_sym_long, + ACTIONS(3950), 2, anon_sym_const, anon_sym_volatile, - anon_sym_ctypedef, + ACTIONS(5199), 2, anon_sym_struct, anon_sym_union, - anon_sym_enum, - anon_sym_cppclass, - anon_sym_fused, + STATE(2735), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(3668), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(3942), 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, - [135549] = 4, + [135547] = 4, ACTIONS(5281), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1529), 2, + ACTIONS(1517), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1527), 25, + ACTIONS(1515), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -233289,15 +234058,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135588] = 3, + [135586] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1591), 3, + ACTIONS(2329), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1589), 25, + ACTIONS(2327), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -233323,15 +234092,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135625] = 3, + [135623] = 4, + ACTIONS(5283), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1595), 3, + ACTIONS(1523), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1593), 25, + ACTIONS(1521), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -233361,44 +234131,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2359), 3, + ACTIONS(2347), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2357), 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, - [135699] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2283), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(2281), 25, + ACTIONS(2345), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -233424,80 +234161,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135735] = 3, - ACTIONS(3697), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5147), 26, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_class, + [135699] = 19, + ACTIONS(1235), 1, + anon_sym_None, + ACTIONS(1247), 1, + sym_string_start, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4867), 1, + anon_sym_LBRACK, + ACTIONS(4869), 1, + anon_sym_DASH, + ACTIONS(4873), 1, + anon_sym_LBRACE, + ACTIONS(4875), 1, + sym_integer, + ACTIONS(4877), 1, + sym_float, + ACTIONS(5159), 1, + anon_sym_STAR, + ACTIONS(5161), 1, + anon_sym_STAR_STAR, + ACTIONS(5213), 1, 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, - [135771] = 3, + ACTIONS(5285), 1, + anon_sym_RBRACE, + STATE(3941), 1, + sym_string, + STATE(4165), 1, + sym_dotted_name, + STATE(4587), 1, + sym_splat_pattern, + STATE(5232), 1, + sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2019), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(2017), 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, - [135807] = 3, + ACTIONS(5215), 3, + anon_sym__, + sym_true, + sym_false, + STATE(5132), 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, + [135768] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2115), 2, + ACTIONS(2167), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2113), 25, + ACTIONS(2165), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -233523,14 +234244,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135843] = 3, + [135804] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2119), 2, + ACTIONS(2143), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2117), 25, + ACTIONS(2141), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -233556,14 +234277,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135879] = 3, + [135840] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2131), 2, + ACTIONS(1731), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2129), 25, + ACTIONS(1729), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -233589,14 +234310,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135915] = 3, + [135876] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2139), 2, + ACTIONS(1803), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2137), 25, + ACTIONS(1801), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -233622,14 +234343,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135951] = 3, + [135912] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2087), 2, + ACTIONS(1903), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2085), 25, + ACTIONS(1901), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -233655,14 +234376,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135987] = 3, + [135948] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1703), 2, + ACTIONS(1907), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1701), 25, + ACTIONS(1905), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -233688,14 +234409,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136023] = 3, + [135984] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1631), 2, + ACTIONS(1911), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1629), 25, + ACTIONS(1909), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -233721,14 +234442,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136059] = 3, + [136020] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1635), 2, + ACTIONS(1915), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1633), 25, + ACTIONS(1913), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -233754,14 +234475,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136095] = 3, + [136056] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2049), 2, + ACTIONS(1919), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2047), 25, + ACTIONS(1917), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -233787,14 +234508,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136131] = 3, + [136092] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1707), 2, + ACTIONS(1923), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1705), 25, + ACTIONS(1921), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -233820,14 +234541,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136167] = 3, + [136128] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1623), 2, + ACTIONS(1927), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1621), 25, + ACTIONS(1925), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -233853,14 +234574,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136203] = 3, + [136164] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1791), 2, + ACTIONS(1931), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1789), 25, + ACTIONS(1929), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -233886,14 +234607,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136239] = 3, + [136200] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1795), 2, + ACTIONS(1807), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1793), 25, + ACTIONS(1805), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -233919,14 +234640,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136275] = 3, + [136236] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1711), 2, + ACTIONS(2155), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1709), 25, + ACTIONS(2153), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -233952,14 +234673,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136311] = 3, + [136272] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2247), 2, + ACTIONS(2159), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2245), 25, + ACTIONS(2157), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -233985,14 +234706,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136347] = 3, + [136308] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2255), 2, + ACTIONS(2163), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2253), 25, + ACTIONS(2161), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -234018,14 +234739,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136383] = 3, + [136344] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2259), 2, + ACTIONS(2351), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2257), 25, + ACTIONS(2349), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -234051,14 +234772,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136419] = 3, + [136380] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2271), 2, + ACTIONS(2171), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2269), 25, + ACTIONS(2169), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -234084,14 +234805,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136455] = 3, + [136416] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1715), 2, + ACTIONS(1811), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1713), 25, + ACTIONS(1809), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -234117,14 +234838,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136491] = 3, + [136452] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1719), 2, + ACTIONS(2175), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1717), 25, + ACTIONS(2173), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -234150,14 +234871,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136527] = 3, + [136488] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2287), 2, + ACTIONS(2179), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2285), 25, + ACTIONS(2177), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -234183,14 +234904,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136563] = 3, + [136524] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1843), 2, + ACTIONS(2183), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1841), 25, + ACTIONS(2181), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -234216,14 +234937,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136599] = 3, + [136560] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1847), 2, + ACTIONS(1735), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1845), 25, + ACTIONS(1733), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -234249,14 +234970,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136635] = 3, + [136596] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1851), 2, + ACTIONS(1815), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1849), 25, + ACTIONS(1813), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -234282,14 +235003,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136671] = 3, + [136632] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1855), 2, + ACTIONS(2195), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1853), 25, + ACTIONS(2193), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -234315,14 +235036,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136707] = 3, + [136668] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1859), 2, + ACTIONS(2199), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1857), 25, + ACTIONS(2197), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -234348,14 +235069,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136743] = 3, + [136704] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1863), 2, + ACTIONS(1819), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1861), 25, + ACTIONS(1817), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -234381,14 +235102,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136779] = 3, + [136740] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1867), 2, + ACTIONS(1823), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1865), 25, + ACTIONS(1821), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -234414,14 +235135,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136815] = 3, + [136776] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1871), 2, + ACTIONS(2355), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1869), 25, + ACTIONS(2353), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -234447,14 +235168,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136851] = 3, + [136812] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1799), 2, + ACTIONS(1827), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1797), 25, + ACTIONS(1825), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -234480,14 +235201,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136887] = 3, + [136848] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2319), 2, + ACTIONS(1831), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2317), 25, + ACTIONS(1829), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -234513,14 +235234,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136923] = 3, + [136884] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2007), 2, + ACTIONS(2071), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2005), 25, + ACTIONS(2069), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -234546,14 +235267,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136959] = 3, + [136920] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2015), 2, + ACTIONS(2075), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2013), 25, + ACTIONS(2073), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -234579,14 +235300,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136995] = 3, + [136956] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2267), 2, + ACTIONS(2079), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2265), 25, + ACTIONS(2077), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -234612,14 +235333,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137031] = 3, + [136992] = 16, + ACTIONS(3934), 1, + sym_identifier, + ACTIONS(3936), 1, + anon_sym_LPAREN, + ACTIONS(3948), 1, + anon_sym_long, + ACTIONS(5287), 1, + sym__dedent, + STATE(3198), 1, + sym__signedness, + STATE(3409), 1, + sym__longness, + STATE(3482), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2275), 2, + ACTIONS(3944), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(3946), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(3950), 2, + anon_sym_const, + anon_sym_volatile, + STATE(2990), 2, + sym_cvar_decl, + aux_sym_struct_suite_repeat1, + STATE(3087), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(3668), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(3942), 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, + [137054] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1739), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2273), 25, + ACTIONS(1737), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -234645,14 +235412,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137067] = 3, + [137090] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1627), 2, + ACTIONS(1835), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1625), 25, + ACTIONS(1833), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -234678,60 +235445,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137103] = 16, - ACTIONS(4004), 1, - sym_identifier, - ACTIONS(4006), 1, - anon_sym_LPAREN, - ACTIONS(4018), 1, - anon_sym_long, - ACTIONS(5283), 1, - sym__dedent, - STATE(3188), 1, - sym__signedness, - STATE(3410), 1, - sym__longness, - STATE(3472), 1, - sym_c_type, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4014), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(4016), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4020), 2, - anon_sym_const, - anon_sym_volatile, - STATE(2978), 2, - sym_cvar_decl, - aux_sym_struct_suite_repeat1, - STATE(3079), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3669), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4012), 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, - [137165] = 3, + [137126] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1639), 2, + ACTIONS(2003), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1637), 25, + ACTIONS(2001), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -234757,14 +235478,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137201] = 3, + [137162] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2095), 2, + ACTIONS(1839), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2093), 25, + ACTIONS(1837), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -234790,62 +235511,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137237] = 18, - ACTIONS(1235), 1, - anon_sym_None, - ACTIONS(1247), 1, - sym_string_start, - ACTIONS(4864), 1, - anon_sym_LPAREN, - ACTIONS(4874), 1, - anon_sym_LBRACK, - ACTIONS(4876), 1, - anon_sym_DASH, - ACTIONS(4880), 1, - anon_sym_LBRACE, - ACTIONS(4882), 1, - sym_integer, - ACTIONS(4884), 1, - sym_float, - ACTIONS(5169), 1, - anon_sym_STAR, - ACTIONS(5171), 1, - anon_sym_STAR_STAR, - ACTIONS(5215), 1, - sym_identifier, - STATE(3959), 1, - sym_string, - STATE(4213), 1, - sym_dotted_name, - STATE(4495), 1, - sym_splat_pattern, - STATE(5380), 1, - sym__key_value_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5217), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4927), 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, - [137303] = 3, + [137198] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2103), 2, + ACTIONS(2007), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2101), 25, + ACTIONS(2005), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -234871,14 +235544,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137339] = 3, + [137234] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2057), 2, + ACTIONS(1843), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2055), 25, + ACTIONS(1841), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -234904,14 +235577,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137375] = 3, + [137270] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1891), 2, + ACTIONS(2203), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1889), 25, + ACTIONS(2201), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -234937,14 +235610,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137411] = 3, + [137306] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1895), 2, + ACTIONS(2011), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1893), 25, + ACTIONS(2009), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -234970,14 +235643,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137447] = 3, + [137342] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2023), 2, + ACTIONS(2015), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2021), 25, + ACTIONS(2013), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235003,14 +235676,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137483] = 3, + [137378] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1899), 2, + ACTIONS(1847), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1897), 25, + ACTIONS(1845), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235036,14 +235709,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137519] = 3, + [137414] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1903), 2, + ACTIONS(1743), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1901), 25, + ACTIONS(1741), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235069,14 +235742,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137555] = 3, + [137450] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1935), 2, + ACTIONS(2207), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1933), 25, + ACTIONS(2205), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235102,14 +235775,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137591] = 3, + [137486] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1939), 2, + ACTIONS(2211), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1937), 25, + ACTIONS(2209), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235135,14 +235808,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137627] = 3, + [137522] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1947), 2, + ACTIONS(2215), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1945), 25, + ACTIONS(2213), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235168,14 +235841,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137663] = 3, + [137558] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1951), 2, + ACTIONS(2219), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1949), 25, + ACTIONS(2217), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235201,15 +235874,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137699] = 4, - ACTIONS(2083), 1, - sym__dedent, - ACTIONS(5285), 1, - anon_sym_SEMI, + [137594] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2079), 25, + ACTIONS(2223), 2, + sym__dedent, + anon_sym_SEMI, + ACTIONS(2221), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235235,14 +235907,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137737] = 3, + [137630] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1963), 2, + ACTIONS(1563), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1961), 25, + ACTIONS(1561), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235268,14 +235940,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137773] = 3, + [137666] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1967), 2, + ACTIONS(1747), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1965), 25, + ACTIONS(1745), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235301,60 +235973,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137809] = 16, - ACTIONS(5287), 1, - sym_identifier, - ACTIONS(5290), 1, - anon_sym_LPAREN, - ACTIONS(5305), 1, - anon_sym_long, - ACTIONS(5311), 1, - sym__dedent, - STATE(3188), 1, - sym__signedness, - STATE(3410), 1, - sym__longness, - STATE(3472), 1, - sym_c_type, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5299), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(5302), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(5308), 2, - anon_sym_const, - anon_sym_volatile, - STATE(2978), 2, - sym_cvar_decl, - aux_sym_struct_suite_repeat1, - STATE(3079), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3669), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(5296), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - ACTIONS(5293), 5, - anon_sym_api, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - [137871] = 3, + [137702] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2061), 2, + ACTIONS(2235), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2059), 25, + ACTIONS(2233), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235380,14 +236006,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137907] = 3, + [137738] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2123), 2, + ACTIONS(2019), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2121), 25, + ACTIONS(2017), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235413,14 +236039,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137943] = 3, + [137774] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 2, + ACTIONS(2023), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1641), 25, + ACTIONS(2021), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235446,14 +236072,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137979] = 3, + [137810] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2135), 2, + ACTIONS(1751), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2133), 25, + ACTIONS(1749), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235479,14 +236105,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138015] = 3, + [137846] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1647), 2, + ACTIONS(1755), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1645), 25, + ACTIONS(1753), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235512,14 +236138,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138051] = 3, + [137882] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1771), 2, + ACTIONS(2027), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1769), 25, + ACTIONS(2025), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235545,103 +236171,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138087] = 16, - ACTIONS(4004), 1, + [137918] = 16, + ACTIONS(5289), 1, sym_identifier, - ACTIONS(4006), 1, + ACTIONS(5292), 1, anon_sym_LPAREN, - ACTIONS(4018), 1, + ACTIONS(5307), 1, anon_sym_long, ACTIONS(5313), 1, sym__dedent, - STATE(3188), 1, + STATE(3198), 1, sym__signedness, - STATE(3410), 1, + STATE(3409), 1, sym__longness, - STATE(3472), 1, + STATE(3482), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4014), 2, + ACTIONS(5301), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4016), 2, + ACTIONS(5304), 2, anon_sym_char, anon_sym_short, - ACTIONS(4020), 2, + ACTIONS(5310), 2, anon_sym_const, anon_sym_volatile, - STATE(2978), 2, + STATE(2990), 2, sym_cvar_decl, aux_sym_struct_suite_repeat1, - STATE(3079), 2, + STATE(3087), 2, sym_storageclass, aux_sym_class_definition_repeat1, - STATE(3669), 2, + STATE(3668), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4012), 3, + ACTIONS(5298), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - ACTIONS(103), 5, + ACTIONS(5295), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138149] = 9, - ACTIONS(4255), 1, - anon_sym_EQ, - ACTIONS(4260), 1, - anon_sym_not, - ACTIONS(4263), 1, - anon_sym_is, - STATE(2986), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4266), 2, - anon_sym_LT, - anon_sym_GT, - STATE(1990), 2, - sym__not_in, - sym__is_not, - ACTIONS(4257), 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(4253), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, + [137980] = 3, + ACTIONS(3701), 1, anon_sym_COLON, - anon_sym_with, - anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_nogil, - [138197] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1787), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(1785), 25, + ACTIONS(5207), 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_extern, anon_sym_int, anon_sym_double, anon_sym_complex, @@ -235653,57 +236243,115 @@ 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, - [138233] = 3, + [138016] = 18, + ACTIONS(1235), 1, + anon_sym_None, + ACTIONS(1247), 1, + sym_string_start, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4867), 1, + anon_sym_LBRACK, + ACTIONS(4869), 1, + anon_sym_DASH, + ACTIONS(4873), 1, + anon_sym_LBRACE, + ACTIONS(4875), 1, + sym_integer, + ACTIONS(4877), 1, + sym_float, + ACTIONS(5159), 1, + anon_sym_STAR, + ACTIONS(5161), 1, + anon_sym_STAR_STAR, + ACTIONS(5213), 1, + sym_identifier, + STATE(3941), 1, + sym_string, + STATE(4165), 1, + sym_dotted_name, + STATE(4587), 1, + sym_splat_pattern, + STATE(5232), 1, + sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1839), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(1837), 25, - anon_sym_class, + ACTIONS(5215), 3, + anon_sym__, + sym_true, + sym_false, + STATE(5132), 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, + [138082] = 16, + ACTIONS(3934), 1, sym_identifier, - anon_sym_api, - anon_sym_extern, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - anon_sym_operator, + ACTIONS(3936), 1, + anon_sym_LPAREN, + ACTIONS(3948), 1, + anon_sym_long, + ACTIONS(5315), 1, + sym__dedent, + STATE(3198), 1, + sym__signedness, + STATE(3409), 1, + sym__longness, + STATE(3482), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3944), 2, anon_sym_signed, anon_sym_unsigned, + ACTIONS(3946), 2, anon_sym_char, anon_sym_short, - anon_sym_long, + ACTIONS(3950), 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(2990), 2, + sym_cvar_decl, + aux_sym_struct_suite_repeat1, + STATE(3087), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(3668), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(3942), 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, - [138269] = 3, + [138144] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1879), 2, + ACTIONS(2239), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1877), 25, + ACTIONS(2237), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235729,14 +236377,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138305] = 3, + [138180] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1655), 2, + ACTIONS(2243), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1653), 25, + ACTIONS(2241), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235762,14 +236410,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138341] = 3, + [138216] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1887), 2, + ACTIONS(2247), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1885), 25, + ACTIONS(2245), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235795,14 +236443,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138377] = 3, + [138252] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1943), 2, + ACTIONS(1655), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1941), 25, + ACTIONS(1653), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235828,14 +236476,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138413] = 3, + [138288] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1971), 2, + ACTIONS(1659), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1969), 25, + ACTIONS(1657), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235861,14 +236509,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138449] = 3, + [138324] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1991), 2, + ACTIONS(1663), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1989), 25, + ACTIONS(1661), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235894,14 +236542,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138485] = 3, + [138360] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2053), 2, + ACTIONS(2083), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2051), 25, + ACTIONS(2081), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235927,14 +236575,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138521] = 3, + [138396] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2127), 2, + ACTIONS(2087), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2125), 25, + ACTIONS(2085), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235960,14 +236608,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138557] = 3, + [138432] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2175), 2, + ACTIONS(2051), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2173), 25, + ACTIONS(2049), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235993,14 +236641,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138593] = 3, + [138468] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2179), 2, + ACTIONS(2139), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2177), 25, + ACTIONS(2137), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -236026,14 +236674,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138629] = 3, + [138504] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2143), 2, + ACTIONS(1559), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2141), 25, + ACTIONS(1557), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -236059,15 +236707,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138665] = 4, - ACTIONS(2033), 1, - sym__dedent, - ACTIONS(5315), 1, - anon_sym_SEMI, + [138540] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2029), 25, + ACTIONS(2091), 2, + sym__dedent, + anon_sym_SEMI, + ACTIONS(2089), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -236093,14 +236740,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138703] = 3, + [138576] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1779), 2, + ACTIONS(2059), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1777), 25, + ACTIONS(2057), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -236126,14 +236773,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138739] = 3, + [138612] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2147), 2, + ACTIONS(2095), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2145), 25, + ACTIONS(2093), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -236159,14 +236806,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138775] = 3, + [138648] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2167), 2, + ACTIONS(2067), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2165), 25, + ACTIONS(2065), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -236192,14 +236839,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138811] = 3, + [138684] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2171), 2, + ACTIONS(1639), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2169), 25, + ACTIONS(1637), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -236225,60 +236872,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138847] = 16, - ACTIONS(4004), 1, - sym_identifier, - ACTIONS(4006), 1, - anon_sym_LPAREN, - ACTIONS(4018), 1, - anon_sym_long, - ACTIONS(5317), 1, - sym__dedent, - STATE(3188), 1, - sym__signedness, - STATE(3410), 1, - sym__longness, - STATE(3472), 1, - sym_c_type, + [138720] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4014), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(4016), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4020), 2, - anon_sym_const, - anon_sym_volatile, - STATE(2978), 2, - sym_cvar_decl, - aux_sym_struct_suite_repeat1, - STATE(3079), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3669), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4012), 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, - [138909] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1807), 2, + ACTIONS(2099), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1805), 25, + ACTIONS(2097), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -236304,14 +236905,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138945] = 3, + [138756] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1811), 2, + ACTIONS(1567), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1809), 25, + ACTIONS(1565), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -236337,14 +236938,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138981] = 3, + [138792] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1815), 2, + ACTIONS(1571), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1813), 25, + ACTIONS(1569), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -236370,14 +236971,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139017] = 3, + [138828] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1755), 2, + ACTIONS(2259), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1753), 25, + ACTIONS(2257), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -236403,18 +237004,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139053] = 3, + [138864] = 3, + ACTIONS(3701), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2077), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(2075), 25, + ACTIONS(5207), 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_extern, anon_sym_int, anon_sym_double, anon_sym_complex, @@ -236426,24 +237030,21 @@ 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, - [139089] = 3, + [138900] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1819), 2, + ACTIONS(2103), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1817), 25, + ACTIONS(2101), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -236469,14 +237070,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139125] = 3, + [138936] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1823), 2, + ACTIONS(2107), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1821), 25, + ACTIONS(2105), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -236502,14 +237103,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139161] = 3, + [138972] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1827), 2, + ACTIONS(2263), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1825), 25, + ACTIONS(2261), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -236535,14 +237136,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139197] = 3, + [139008] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1831), 2, + ACTIONS(2267), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1829), 25, + ACTIONS(2265), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -236568,14 +237169,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139233] = 3, + [139044] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2183), 2, + ACTIONS(2271), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2181), 25, + ACTIONS(2269), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -236601,14 +237202,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139269] = 3, + [139080] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2311), 2, + ACTIONS(1667), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2309), 25, + ACTIONS(1665), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -236634,14 +237235,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139305] = 3, + [139116] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2323), 2, + ACTIONS(1671), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2321), 25, + ACTIONS(1669), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -236667,14 +237268,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139341] = 3, + [139152] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2331), 2, + ACTIONS(1675), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2329), 25, + ACTIONS(1673), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -236700,14 +237301,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139377] = 3, + [139188] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2191), 2, + ACTIONS(1643), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2189), 25, + ACTIONS(1641), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -236733,14 +237334,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139413] = 3, + [139224] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2335), 2, + ACTIONS(1647), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2333), 25, + ACTIONS(1645), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -236766,14 +237367,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139449] = 3, + [139260] = 16, + ACTIONS(3934), 1, + sym_identifier, + ACTIONS(3936), 1, + anon_sym_LPAREN, + ACTIONS(3948), 1, + anon_sym_long, + ACTIONS(5317), 1, + sym__dedent, + STATE(3198), 1, + sym__signedness, + STATE(3409), 1, + sym__longness, + STATE(3482), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2339), 2, + ACTIONS(3944), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(3946), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(3950), 2, + anon_sym_const, + anon_sym_volatile, + STATE(2990), 2, + sym_cvar_decl, + aux_sym_struct_suite_repeat1, + STATE(3087), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(3668), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(3942), 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, + [139322] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1587), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2337), 25, + ACTIONS(1585), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -236799,14 +237446,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139485] = 3, + [139358] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2343), 2, + ACTIONS(2283), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2341), 25, + ACTIONS(2281), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -236832,14 +237479,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139521] = 3, + [139394] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2347), 2, + ACTIONS(2287), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2345), 25, + ACTIONS(2285), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -236865,14 +237512,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139557] = 3, + [139430] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2351), 2, + ACTIONS(1711), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2349), 25, + ACTIONS(1709), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -236898,14 +237545,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139593] = 3, + [139466] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2355), 2, + ACTIONS(1591), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2353), 25, + ACTIONS(1589), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -236931,14 +237578,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139629] = 3, + [139502] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1563), 2, + ACTIONS(2295), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1561), 25, + ACTIONS(2293), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -236964,14 +237611,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139665] = 3, + [139538] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1567), 2, + ACTIONS(2299), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1565), 25, + ACTIONS(2297), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -236997,14 +237644,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139701] = 3, + [139574] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1571), 2, + ACTIONS(1651), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1569), 25, + ACTIONS(1649), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -237030,14 +237677,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139737] = 3, + [139610] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1975), 2, + ACTIONS(2303), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1973), 25, + ACTIONS(2301), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -237063,14 +237710,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139773] = 3, + [139646] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1979), 2, + ACTIONS(2307), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1977), 25, + ACTIONS(2305), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -237096,14 +237743,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139809] = 3, + [139682] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2041), 2, + ACTIONS(2311), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2039), 25, + ACTIONS(2309), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -237129,14 +237776,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139845] = 3, + [139718] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1983), 2, + ACTIONS(2315), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1981), 25, + ACTIONS(2313), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -237162,14 +237809,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139881] = 3, + [139754] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1987), 2, + ACTIONS(1715), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1985), 25, + ACTIONS(1713), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -237195,14 +237842,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139917] = 3, + [139790] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1995), 2, + ACTIONS(1719), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1993), 25, + ACTIONS(1717), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -237228,14 +237875,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139953] = 3, + [139826] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1999), 2, + ACTIONS(1723), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1997), 25, + ACTIONS(1721), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -237261,14 +237908,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139989] = 3, + [139862] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2195), 2, + ACTIONS(1727), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2193), 25, + ACTIONS(1725), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -237294,14 +237941,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140025] = 3, + [139898] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2199), 2, + ACTIONS(1595), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2197), 25, + ACTIONS(1593), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -237327,32 +237974,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140061] = 9, - ACTIONS(4225), 1, + [139934] = 9, + ACTIONS(4229), 1, anon_sym_not, - ACTIONS(4231), 1, + ACTIONS(4235), 1, anon_sym_is, - ACTIONS(4237), 1, + ACTIONS(4271), 1, anon_sym_EQ, - STATE(2986), 1, + STATE(3048), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4233), 2, + ACTIONS(4237), 2, anon_sym_LT, anon_sym_GT, - STATE(1990), 2, + STATE(2012), 2, sym__not_in, sym__is_not, - ACTIONS(4211), 6, + ACTIONS(4215), 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(4235), 13, + ACTIONS(4269), 13, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -237366,14 +238013,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_nogil, - [140109] = 3, + [139982] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2099), 2, + ACTIONS(1899), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2097), 25, + ACTIONS(1897), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -237399,14 +238046,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140145] = 3, + [140018] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2107), 2, + ACTIONS(2115), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2105), 25, + ACTIONS(2113), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -237432,14 +238079,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140181] = 3, + [140054] = 4, + ACTIONS(2321), 1, + sym__dedent, + ACTIONS(5319), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2203), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(2201), 25, + ACTIONS(2317), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -237465,14 +238113,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140217] = 3, + [140092] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2011), 2, + ACTIONS(1599), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2009), 25, + ACTIONS(1597), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -237498,21 +238146,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140253] = 3, - ACTIONS(3697), 1, + [140128] = 9, + ACTIONS(4241), 1, + anon_sym_EQ, + ACTIONS(4246), 1, + anon_sym_not, + ACTIONS(4249), 1, + anon_sym_is, + STATE(3048), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4252), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2012), 2, + sym__not_in, + sym__is_not, + ACTIONS(4243), 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(4239), 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, + [140176] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5147), 26, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, + ACTIONS(2119), 2, + sym__dedent, + anon_sym_SEMI, + ACTIONS(2117), 25, anon_sym_class, sym_identifier, - anon_sym_await, anon_sym_api, + anon_sym_extern, anon_sym_int, anon_sym_double, anon_sym_complex, @@ -237524,21 +238208,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, - [140289] = 3, + [140212] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1723), 2, + ACTIONS(1603), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1721), 25, + ACTIONS(1601), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -237564,14 +238251,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140325] = 3, + [140248] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2045), 2, + ACTIONS(2325), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2043), 25, + ACTIONS(2323), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -237597,14 +238284,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140361] = 3, + [140284] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2207), 2, + ACTIONS(2123), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2205), 25, + ACTIONS(2121), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -237630,14 +238317,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140397] = 3, + [140320] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2151), 2, + ACTIONS(2127), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2149), 25, + ACTIONS(2125), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -237663,14 +238350,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140433] = 3, + [140356] = 4, + ACTIONS(2335), 1, + sym__dedent, + ACTIONS(5321), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2211), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(2209), 25, + ACTIONS(2331), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -237696,14 +238384,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140469] = 3, + [140394] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1727), 2, + ACTIONS(2339), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1725), 25, + ACTIONS(2337), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -237729,14 +238417,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140505] = 3, + [140430] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1759), 2, + ACTIONS(2343), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1757), 25, + ACTIONS(2341), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -237762,14 +238450,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140541] = 3, + [140466] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1763), 2, + ACTIONS(2131), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1761), 25, + ACTIONS(2129), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -237795,14 +238483,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140577] = 3, + [140502] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1767), 2, + ACTIONS(1607), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1765), 25, + ACTIONS(1605), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -237828,14 +238516,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140613] = 3, + [140538] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1651), 2, + ACTIONS(1611), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1649), 25, + ACTIONS(1609), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -237861,58 +238549,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140649] = 16, - ACTIONS(1396), 1, - anon_sym_None, - ACTIONS(1408), 1, - sym_string_start, - ACTIONS(4995), 1, - anon_sym_LPAREN, - ACTIONS(4999), 1, - anon_sym_STAR, - ACTIONS(5001), 1, - anon_sym_STAR_STAR, - ACTIONS(5003), 1, - anon_sym_LBRACK, - ACTIONS(5005), 1, - anon_sym_DASH, - ACTIONS(5009), 1, - anon_sym_LBRACE, - ACTIONS(5011), 1, - sym_integer, - ACTIONS(5013), 1, - sym_float, - ACTIONS(5319), 1, - sym_identifier, - STATE(4084), 1, - sym_string, - STATE(4428), 1, - sym_dotted_name, + [140574] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5321), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4462), 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, - [140710] = 3, - ACTIONS(2375), 1, + ACTIONS(2359), 2, sym__dedent, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2373), 25, + anon_sym_SEMI, + ACTIONS(2357), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -237938,13 +238582,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140745] = 3, - ACTIONS(2383), 1, - sym__dedent, + [140610] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2381), 25, + ACTIONS(1615), 2, + sym__dedent, + anon_sym_SEMI, + ACTIONS(1613), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -237969,59 +238614,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_packed, anon_sym_inline, - anon_sym_readonly, - [140780] = 16, - ACTIONS(1396), 1, - anon_sym_None, - ACTIONS(1408), 1, - sym_string_start, - ACTIONS(4995), 1, - anon_sym_LPAREN, - ACTIONS(4999), 1, - anon_sym_STAR, - ACTIONS(5001), 1, - anon_sym_STAR_STAR, - ACTIONS(5003), 1, - anon_sym_LBRACK, - ACTIONS(5005), 1, - anon_sym_DASH, - ACTIONS(5009), 1, - anon_sym_LBRACE, - ACTIONS(5011), 1, - sym_integer, - ACTIONS(5013), 1, - sym_float, - ACTIONS(5319), 1, - sym_identifier, - STATE(4084), 1, - sym_string, - STATE(4428), 1, - sym_dotted_name, + anon_sym_readonly, + [140646] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5323), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4284), 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, - [140841] = 3, - ACTIONS(2391), 1, + ACTIONS(2135), 2, sym__dedent, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2389), 25, + anon_sym_SEMI, + ACTIONS(2133), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -238047,13 +238648,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140876] = 3, - ACTIONS(2395), 1, - sym__dedent, + [140682] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2393), 25, + ACTIONS(2055), 2, + sym__dedent, + anon_sym_SEMI, + ACTIONS(2053), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -238079,13 +238681,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140911] = 3, - ACTIONS(2387), 1, + [140718] = 3, + ACTIONS(2375), 1, sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2385), 25, + ACTIONS(2373), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -238111,41 +238713,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140946] = 16, - ACTIONS(1923), 1, + [140753] = 16, + ACTIONS(1235), 1, anon_sym_None, - ACTIONS(1931), 1, + ACTIONS(1247), 1, sym_string_start, - ACTIONS(5167), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(4859), 1, anon_sym_STAR, - ACTIONS(5171), 1, + ACTIONS(4865), 1, anon_sym_STAR_STAR, - ACTIONS(5173), 1, + ACTIONS(4867), 1, anon_sym_LBRACK, - ACTIONS(5175), 1, + ACTIONS(4869), 1, anon_sym_DASH, - ACTIONS(5179), 1, + ACTIONS(4873), 1, anon_sym_LBRACE, - ACTIONS(5181), 1, + ACTIONS(4875), 1, sym_integer, - ACTIONS(5183), 1, + ACTIONS(4877), 1, sym_float, - ACTIONS(5325), 1, + ACTIONS(5213), 1, sym_identifier, - STATE(4002), 1, + STATE(3941), 1, sym_string, - STATE(4361), 1, + STATE(4165), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5327), 3, + ACTIONS(5323), 3, anon_sym__, sym_true, sym_false, - STATE(4371), 10, + STATE(4215), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -238156,41 +238758,41 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [141007] = 16, + [140814] = 16, ACTIONS(1235), 1, anon_sym_None, ACTIONS(1247), 1, sym_string_start, - ACTIONS(4864), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4866), 1, + ACTIONS(4859), 1, anon_sym_STAR, - ACTIONS(4872), 1, + ACTIONS(4865), 1, anon_sym_STAR_STAR, - ACTIONS(4874), 1, + ACTIONS(4867), 1, anon_sym_LBRACK, - ACTIONS(4876), 1, + ACTIONS(4869), 1, anon_sym_DASH, - ACTIONS(4880), 1, + ACTIONS(4873), 1, anon_sym_LBRACE, - ACTIONS(4882), 1, + ACTIONS(4875), 1, sym_integer, - ACTIONS(4884), 1, + ACTIONS(4877), 1, sym_float, - ACTIONS(5215), 1, + ACTIONS(5213), 1, sym_identifier, - STATE(3959), 1, + STATE(3941), 1, sym_string, - STATE(4213), 1, + STATE(4165), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5329), 3, + ACTIONS(5325), 3, anon_sym__, sym_true, sym_false, - STATE(4209), 10, + STATE(4264), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -238201,73 +238803,86 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [141068] = 3, - ACTIONS(2371), 1, - sym__dedent, + [140875] = 16, + ACTIONS(2477), 1, + anon_sym_None, + ACTIONS(2485), 1, + sym_string_start, + ACTIONS(4999), 1, + anon_sym_LPAREN, + ACTIONS(5001), 1, + anon_sym_STAR, + ACTIONS(5003), 1, + anon_sym_STAR_STAR, + ACTIONS(5005), 1, + anon_sym_LBRACK, + ACTIONS(5009), 1, + anon_sym_DASH, + ACTIONS(5013), 1, + anon_sym_LBRACE, + ACTIONS(5015), 1, + sym_integer, + ACTIONS(5017), 1, + sym_float, + ACTIONS(5327), 1, + sym_identifier, + STATE(4015), 1, + sym_string, + STATE(4330), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2369), 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, - [141103] = 16, - ACTIONS(2467), 1, + ACTIONS(5329), 3, + anon_sym__, + sym_true, + sym_false, + STATE(4435), 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, + [140936] = 16, + ACTIONS(2477), 1, anon_sym_None, - ACTIONS(2475), 1, + ACTIONS(2485), 1, sym_string_start, - ACTIONS(5017), 1, + ACTIONS(4999), 1, anon_sym_LPAREN, - ACTIONS(5019), 1, + ACTIONS(5001), 1, anon_sym_STAR, - ACTIONS(5021), 1, + ACTIONS(5003), 1, anon_sym_STAR_STAR, - ACTIONS(5023), 1, + ACTIONS(5005), 1, anon_sym_LBRACK, - ACTIONS(5027), 1, + ACTIONS(5009), 1, anon_sym_DASH, - ACTIONS(5031), 1, + ACTIONS(5013), 1, anon_sym_LBRACE, - ACTIONS(5033), 1, + ACTIONS(5015), 1, sym_integer, - ACTIONS(5035), 1, + ACTIONS(5017), 1, sym_float, - ACTIONS(5331), 1, + ACTIONS(5327), 1, sym_identifier, - STATE(4066), 1, + STATE(4015), 1, sym_string, - STATE(4397), 1, + STATE(4330), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5333), 3, + ACTIONS(5331), 3, anon_sym__, sym_true, sym_false, - STATE(4289), 10, + STATE(4430), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -238278,32 +238893,64 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [141164] = 16, - ACTIONS(1923), 1, + [140997] = 3, + ACTIONS(2441), 1, + sym__dedent, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2439), 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, + [141032] = 16, + ACTIONS(1959), 1, anon_sym_None, - ACTIONS(1931), 1, + ACTIONS(1967), 1, sym_string_start, - ACTIONS(5167), 1, + ACTIONS(5157), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(5159), 1, anon_sym_STAR, - ACTIONS(5171), 1, + ACTIONS(5161), 1, anon_sym_STAR_STAR, - ACTIONS(5173), 1, + ACTIONS(5163), 1, anon_sym_LBRACK, - ACTIONS(5175), 1, + ACTIONS(5165), 1, anon_sym_DASH, - ACTIONS(5179), 1, + ACTIONS(5169), 1, anon_sym_LBRACE, - ACTIONS(5181), 1, + ACTIONS(5171), 1, sym_integer, - ACTIONS(5183), 1, + ACTIONS(5173), 1, sym_float, - ACTIONS(5325), 1, + ACTIONS(5333), 1, sym_identifier, - STATE(4002), 1, + STATE(4087), 1, sym_string, - STATE(4361), 1, + STATE(4349), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, @@ -238312,7 +238959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, sym_true, sym_false, - STATE(4372), 10, + STATE(4345), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -238323,32 +238970,64 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [141225] = 16, - ACTIONS(2467), 1, + [141093] = 3, + ACTIONS(2363), 1, + sym__dedent, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2361), 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, + [141128] = 16, + ACTIONS(1959), 1, anon_sym_None, - ACTIONS(2475), 1, + ACTIONS(1967), 1, sym_string_start, - ACTIONS(5017), 1, + ACTIONS(5157), 1, anon_sym_LPAREN, - ACTIONS(5019), 1, + ACTIONS(5159), 1, anon_sym_STAR, - ACTIONS(5021), 1, + ACTIONS(5161), 1, anon_sym_STAR_STAR, - ACTIONS(5023), 1, + ACTIONS(5163), 1, anon_sym_LBRACK, - ACTIONS(5027), 1, + ACTIONS(5165), 1, anon_sym_DASH, - ACTIONS(5031), 1, + ACTIONS(5169), 1, anon_sym_LBRACE, - ACTIONS(5033), 1, + ACTIONS(5171), 1, sym_integer, - ACTIONS(5035), 1, + ACTIONS(5173), 1, sym_float, - ACTIONS(5331), 1, + ACTIONS(5333), 1, sym_identifier, - STATE(4066), 1, + STATE(4087), 1, sym_string, - STATE(4397), 1, + STATE(4349), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, @@ -238357,7 +239036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, sym_true, sym_false, - STATE(4288), 10, + STATE(4380), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -238368,13 +239047,13 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [141286] = 3, - ACTIONS(2363), 1, + [141189] = 3, + ACTIONS(2371), 1, sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2361), 25, + ACTIONS(2369), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -238400,41 +239079,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [141321] = 16, - ACTIONS(1235), 1, + [141224] = 3, + ACTIONS(2367), 1, + sym__dedent, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2365), 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, + [141259] = 16, + ACTIONS(1396), 1, anon_sym_None, - ACTIONS(1247), 1, + ACTIONS(1408), 1, sym_string_start, - ACTIONS(4864), 1, + ACTIONS(5021), 1, anon_sym_LPAREN, - ACTIONS(4866), 1, + ACTIONS(5025), 1, anon_sym_STAR, - ACTIONS(4872), 1, + ACTIONS(5027), 1, anon_sym_STAR_STAR, - ACTIONS(4874), 1, + ACTIONS(5029), 1, anon_sym_LBRACK, - ACTIONS(4876), 1, + ACTIONS(5031), 1, anon_sym_DASH, - ACTIONS(4880), 1, + ACTIONS(5035), 1, anon_sym_LBRACE, - ACTIONS(4882), 1, + ACTIONS(5037), 1, sym_integer, - ACTIONS(4884), 1, + ACTIONS(5039), 1, sym_float, - ACTIONS(5215), 1, + ACTIONS(5339), 1, sym_identifier, - STATE(3959), 1, + STATE(4123), 1, + sym_string, + STATE(4373), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5341), 3, + anon_sym__, + sym_true, + sym_false, + STATE(4376), 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, + [141320] = 16, + ACTIONS(1396), 1, + anon_sym_None, + ACTIONS(1408), 1, + sym_string_start, + ACTIONS(5021), 1, + anon_sym_LPAREN, + ACTIONS(5025), 1, + anon_sym_STAR, + ACTIONS(5027), 1, + anon_sym_STAR_STAR, + ACTIONS(5029), 1, + anon_sym_LBRACK, + ACTIONS(5031), 1, + anon_sym_DASH, + ACTIONS(5035), 1, + anon_sym_LBRACE, + ACTIONS(5037), 1, + sym_integer, + ACTIONS(5039), 1, + sym_float, + ACTIONS(5339), 1, + sym_identifier, + STATE(4123), 1, sym_string, - STATE(4213), 1, + STATE(4373), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5339), 3, + ACTIONS(5343), 3, anon_sym__, sym_true, sym_false, - STATE(4162), 10, + STATE(4370), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -238445,13 +239201,13 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [141382] = 3, - ACTIONS(2083), 1, + [141381] = 3, + ACTIONS(2445), 1, sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2079), 25, + ACTIONS(2443), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -238477,13 +239233,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [141417] = 3, - ACTIONS(2379), 1, + [141416] = 3, + ACTIONS(2409), 1, sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2377), 25, + ACTIONS(2407), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -238509,13 +239265,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [141452] = 3, - ACTIONS(2367), 1, + [141451] = 3, + ACTIONS(2391), 1, sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2365), 25, + ACTIONS(2389), 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, + [141486] = 3, + ACTIONS(2405), 1, + sym__dedent, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2403), 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, + [141521] = 3, + ACTIONS(2335), 1, + sym__dedent, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2331), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -238541,24 +239361,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [141487] = 16, + [141556] = 16, ACTIONS(371), 1, anon_sym_long, - ACTIONS(4094), 1, + ACTIONS(3978), 1, anon_sym_operator, - ACTIONS(4165), 1, + ACTIONS(4122), 1, sym_identifier, - ACTIONS(5149), 1, + ACTIONS(4808), 1, anon_sym_class, - STATE(3130), 1, + STATE(3140), 1, sym__signedness, - STATE(3228), 1, + STATE(3191), 1, sym_int_type, - STATE(3321), 1, + STATE(3368), 1, sym__longness, - STATE(3597), 1, + STATE(3562), 1, sym_operator_name, - STATE(3813), 1, + STATE(3790), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -238569,10 +239389,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(4096), 2, + ACTIONS(3980), 2, anon_sym_const, anon_sym_volatile, - STATE(2727), 2, + STATE(2735), 2, sym_storageclass, aux_sym_class_definition_repeat1, ACTIONS(365), 3, @@ -238585,24 +239405,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [141547] = 16, + [141616] = 16, ACTIONS(371), 1, anon_sym_long, - ACTIONS(4094), 1, + ACTIONS(3978), 1, anon_sym_operator, - ACTIONS(4165), 1, + ACTIONS(4122), 1, sym_identifier, - ACTIONS(4818), 1, + ACTIONS(5195), 1, anon_sym_class, - STATE(3130), 1, + STATE(3140), 1, sym__signedness, - STATE(3228), 1, + STATE(3191), 1, sym_int_type, - STATE(3321), 1, + STATE(3368), 1, sym__longness, - STATE(3597), 1, + STATE(3562), 1, sym_operator_name, - STATE(3792), 1, + STATE(3814), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -238613,10 +239433,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(4096), 2, + ACTIONS(3980), 2, anon_sym_const, anon_sym_volatile, - STATE(2727), 2, + STATE(2735), 2, sym_storageclass, aux_sym_class_definition_repeat1, ACTIONS(365), 3, @@ -238629,24 +239449,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [141607] = 16, + [141676] = 16, ACTIONS(371), 1, anon_sym_long, - ACTIONS(4094), 1, + ACTIONS(3978), 1, anon_sym_operator, - ACTIONS(4165), 1, + ACTIONS(4122), 1, sym_identifier, - ACTIONS(5151), 1, - anon_sym_ctypedef, - STATE(3130), 1, + ACTIONS(4792), 1, + anon_sym_class, + STATE(3140), 1, sym__signedness, - STATE(3228), 1, + STATE(3191), 1, sym_int_type, - STATE(3321), 1, + STATE(3368), 1, sym__longness, - STATE(3597), 1, + STATE(3562), 1, sym_operator_name, - STATE(3813), 1, + STATE(3820), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -238657,10 +239477,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(4096), 2, + ACTIONS(3980), 2, anon_sym_const, anon_sym_volatile, - STATE(2727), 2, + STATE(2735), 2, sym_storageclass, aux_sym_class_definition_repeat1, ACTIONS(365), 3, @@ -238673,24 +239493,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [141667] = 16, + [141736] = 16, ACTIONS(371), 1, anon_sym_long, - ACTIONS(4094), 1, + ACTIONS(3978), 1, anon_sym_operator, - ACTIONS(4165), 1, + ACTIONS(4122), 1, sym_identifier, - ACTIONS(4782), 1, - anon_sym_class, - STATE(3130), 1, + ACTIONS(5197), 1, + anon_sym_ctypedef, + STATE(3140), 1, sym__signedness, - STATE(3228), 1, + STATE(3191), 1, sym_int_type, - STATE(3321), 1, + STATE(3368), 1, sym__longness, - STATE(3597), 1, + STATE(3562), 1, sym_operator_name, - STATE(3832), 1, + STATE(3814), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -238701,10 +239521,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(4096), 2, + ACTIONS(3980), 2, anon_sym_const, anon_sym_volatile, - STATE(2727), 2, + STATE(2735), 2, sym_storageclass, aux_sym_class_definition_repeat1, ACTIONS(365), 3, @@ -238717,128 +239537,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [141727] = 3, + [141796] = 13, + ACTIONS(3714), 1, + anon_sym_SLASH, + ACTIONS(3724), 1, + anon_sym_COMMA, + ACTIONS(4255), 1, + anon_sym_DOT, + ACTIONS(4257), 1, + anon_sym_STAR, + ACTIONS(4261), 1, + anon_sym_LBRACK, + ACTIONS(4263), 1, + anon_sym_complex, + STATE(3392), 1, + aux_sym_class_definition_repeat2, + STATE(3414), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4556), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4554), 22, - anon_sym_DOT, + ACTIONS(3707), 2, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_RPAREN, + STATE(3568), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4259), 3, anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(3703), 9, + anon_sym_GT_GT, 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, - [141760] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5341), 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(5343), 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, - [141793] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4394), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_GT, - ACTIONS(4396), 20, - anon_sym_class, - sym_identifier, - anon_sym_api, - anon_sym_namespace, - anon_sym_nogil, - 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_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - [141826] = 14, - ACTIONS(4004), 1, + [141849] = 14, + ACTIONS(3934), 1, sym_identifier, - ACTIONS(4006), 1, + ACTIONS(3936), 1, anon_sym_LPAREN, - ACTIONS(4018), 1, + ACTIONS(3948), 1, anon_sym_long, - STATE(3188), 1, + STATE(3198), 1, sym__signedness, - STATE(3410), 1, + STATE(3409), 1, sym__longness, - STATE(3503), 1, + STATE(3485), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4014), 2, + ACTIONS(3944), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4016), 2, + ACTIONS(3946), 2, anon_sym_char, anon_sym_short, - ACTIONS(4020), 2, + ACTIONS(3950), 2, anon_sym_const, anon_sym_volatile, - STATE(2727), 2, + STATE(2735), 2, sym_storageclass, aux_sym_class_definition_repeat1, - STATE(3669), 2, + STATE(3668), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4012), 3, + ACTIONS(3942), 3, anon_sym_int, anon_sym_double, anon_sym_complex, @@ -238848,14 +239618,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [141881] = 3, + [141904] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4552), 2, + ACTIONS(4219), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4550), 22, + ACTIONS(4205), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -238878,14 +239648,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [141914] = 3, + [141937] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4215), 2, + ACTIONS(4572), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4201), 22, + ACTIONS(4570), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -238908,7 +239678,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [141947] = 3, + [141970] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4398), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_GT, + ACTIONS(4400), 20, + anon_sym_class, + sym_identifier, + anon_sym_api, + anon_sym_namespace, + anon_sym_nogil, + 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_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [142003] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -238938,16 +239738,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - [141980] = 3, + [142036] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5349), 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(5351), 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, + [142069] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4454), 4, + ACTIONS(4402), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_GT, - ACTIONS(4456), 20, + ACTIONS(4404), 20, anon_sym_class, sym_identifier, anon_sym_api, @@ -238968,14 +239798,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [142013] = 3, + [142102] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4519), 2, + ACTIONS(4588), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4517), 22, + ACTIONS(4586), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -238998,72 +239828,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [142046] = 13, - ACTIONS(3710), 1, - anon_sym_SLASH, - ACTIONS(3720), 1, - anon_sym_COMMA, - ACTIONS(4239), 1, - anon_sym_DOT, - ACTIONS(4241), 1, - anon_sym_STAR, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(4247), 1, - anon_sym_complex, - STATE(3376), 1, - aux_sym_class_definition_repeat2, - STATE(3422), 1, - sym_type_index, + [142135] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3703), 2, + ACTIONS(4607), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4605), 22, + anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - STATE(3544), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4243), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(3699), 9, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_STAR_STAR, + anon_sym_EQ, + 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, - [142099] = 9, - ACTIONS(4255), 1, + [142168] = 9, + ACTIONS(4241), 1, anon_sym_EQ, - ACTIONS(4260), 1, + ACTIONS(4246), 1, anon_sym_not, - ACTIONS(4667), 1, + ACTIONS(4702), 1, anon_sym_is, - STATE(3086), 1, + STATE(3096), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4670), 2, + ACTIONS(4705), 2, anon_sym_LT, anon_sym_GT, - STATE(1899), 2, + STATE(1936), 2, sym__not_in, sym__is_not, - ACTIONS(4664), 6, + ACTIONS(4699), 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(4253), 9, + ACTIONS(4239), 9, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -239073,32 +239893,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [142143] = 9, - ACTIONS(4225), 1, + [142212] = 9, + ACTIONS(4229), 1, anon_sym_not, - ACTIONS(4237), 1, + ACTIONS(4271), 1, anon_sym_EQ, - ACTIONS(4390), 1, + ACTIONS(4458), 1, anon_sym_is, - STATE(3086), 1, + STATE(3096), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4392), 2, + ACTIONS(4460), 2, anon_sym_LT, anon_sym_GT, - STATE(1899), 2, + STATE(1936), 2, sym__not_in, sym__is_not, - ACTIONS(4374), 6, + ACTIONS(4442), 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(4235), 9, + ACTIONS(4269), 9, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -239108,291 +239928,332 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [142187] = 17, - ACTIONS(5349), 1, - sym_identifier, - ACTIONS(5351), 1, - anon_sym_LPAREN, - ACTIONS(5353), 1, - anon_sym_COLON, - ACTIONS(5355), 1, - anon_sym_RBRACK, - ACTIONS(5357), 1, - sym_integer, - ACTIONS(5365), 1, - anon_sym_long, - STATE(3343), 1, - sym__signedness, - STATE(3543), 1, - sym__longness, - STATE(4299), 1, - sym_c_type, - STATE(4734), 1, - sym_memory_view_index, - STATE(4896), 1, - sym_template_param, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5361), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(5363), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(5367), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3500), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(5359), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [142246] = 9, - ACTIONS(4255), 1, - anon_sym_as, - ACTIONS(4260), 1, + [142256] = 8, + ACTIONS(4229), 1, anon_sym_not, - ACTIONS(4540), 1, + ACTIONS(4531), 1, anon_sym_is, - STATE(3089), 1, + STATE(3099), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4543), 2, + ACTIONS(4533), 2, anon_sym_LT, anon_sym_GT, - STATE(1935), 2, + STATE(1907), 2, sym__not_in, sym__is_not, - ACTIONS(4537), 6, + ACTIONS(4515), 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(4253), 8, + ACTIONS(4269), 9, + anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PIPE, anon_sym_and, anon_sym_or, - [142289] = 9, - ACTIONS(4225), 1, + [142297] = 8, + ACTIONS(4246), 1, anon_sym_not, - ACTIONS(4237), 1, - anon_sym_as, - ACTIONS(4300), 1, + ACTIONS(4720), 1, anon_sym_is, - STATE(3089), 1, + STATE(3099), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4302), 2, + ACTIONS(4723), 2, anon_sym_LT, anon_sym_GT, - STATE(1935), 2, + STATE(1907), 2, sym__not_in, sym__is_not, - ACTIONS(4284), 6, + ACTIONS(4717), 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(4235), 8, + ACTIONS(4239), 9, + anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PIPE, anon_sym_and, anon_sym_or, - [142332] = 9, - ACTIONS(4255), 1, - anon_sym_EQ, - ACTIONS(4260), 1, + [142338] = 9, + ACTIONS(4241), 1, + anon_sym_as, + ACTIONS(4246), 1, anon_sym_not, - ACTIONS(4635), 1, + ACTIONS(4640), 1, anon_sym_is, - STATE(3091), 1, + STATE(3100), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4638), 2, + ACTIONS(4643), 2, anon_sym_LT, anon_sym_GT, - STATE(1958), 2, + STATE(1928), 2, sym__not_in, sym__is_not, - ACTIONS(4632), 6, + ACTIONS(4637), 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(4253), 8, + ACTIONS(4239), 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, - [142375] = 8, - ACTIONS(4260), 1, + [142381] = 17, + ACTIONS(5353), 1, + sym_identifier, + ACTIONS(5355), 1, + anon_sym_LPAREN, + ACTIONS(5357), 1, + anon_sym_COLON, + ACTIONS(5359), 1, + anon_sym_RBRACK, + ACTIONS(5361), 1, + sym_integer, + ACTIONS(5369), 1, + anon_sym_long, + STATE(3349), 1, + sym__signedness, + STATE(3519), 1, + sym__longness, + STATE(4444), 1, + sym_c_type, + STATE(4922), 1, + sym_memory_view_index, + STATE(5100), 1, + sym_template_param, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5365), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(5367), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5371), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3508), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(5363), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [142440] = 9, + ACTIONS(4229), 1, anon_sym_not, - ACTIONS(4716), 1, + ACTIONS(4271), 1, + anon_sym_EQ, + ACTIONS(4336), 1, anon_sym_is, - STATE(3092), 1, + STATE(3103), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4719), 2, + ACTIONS(4338), 2, anon_sym_LT, anon_sym_GT, - STATE(1997), 2, + STATE(1973), 2, sym__not_in, sym__is_not, - ACTIONS(4713), 6, + ACTIONS(4320), 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(4253), 9, - anon_sym_DOT, + ACTIONS(4269), 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, - [142416] = 8, - ACTIONS(4225), 1, + sym_type_conversion, + [142483] = 9, + ACTIONS(4241), 1, + anon_sym_EQ, + ACTIONS(4246), 1, anon_sym_not, - ACTIONS(4501), 1, + ACTIONS(4497), 1, anon_sym_is, - STATE(3092), 1, + STATE(3103), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4503), 2, + ACTIONS(4500), 2, anon_sym_LT, anon_sym_GT, - STATE(1997), 2, + STATE(1973), 2, sym__not_in, sym__is_not, - ACTIONS(4485), 6, + ACTIONS(4494), 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(4235), 9, - anon_sym_DOT, + ACTIONS(4239), 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, - [142457] = 9, - ACTIONS(4225), 1, + sym_type_conversion, + [142526] = 9, + ACTIONS(4229), 1, anon_sym_not, - ACTIONS(4237), 1, - anon_sym_EQ, - ACTIONS(4338), 1, + ACTIONS(4271), 1, + anon_sym_as, + ACTIONS(4308), 1, anon_sym_is, - STATE(3091), 1, + STATE(3100), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4340), 2, + ACTIONS(4310), 2, anon_sym_LT, anon_sym_GT, - STATE(1958), 2, + STATE(1928), 2, sym__not_in, sym__is_not, - ACTIONS(4322), 6, + ACTIONS(4292), 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(4235), 8, + ACTIONS(4269), 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, - [142500] = 3, + [142569] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3903), 2, + ACTIONS(1005), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3901), 19, + ACTIONS(1039), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(1003), 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, - [142530] = 4, + [142601] = 16, + ACTIONS(5355), 1, + anon_sym_LPAREN, + ACTIONS(5357), 1, + anon_sym_COLON, + ACTIONS(5359), 1, + anon_sym_RBRACK, + ACTIONS(5361), 1, + sym_integer, + ACTIONS(5369), 1, + anon_sym_long, + ACTIONS(5373), 1, + sym_identifier, + STATE(3349), 1, + sym__signedness, + STATE(3519), 1, + sym__longness, + STATE(4444), 1, + sym_c_type, + STATE(4922), 1, + sym_memory_view_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5365), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(5367), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5371), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3508), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(5363), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [142657] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(581), 2, + ACTIONS(3918), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3347), 5, - anon_sym_RPAREN, + ACTIONS(3724), 5, anon_sym_COMMA, anon_sym_COLON, - anon_sym_not, - anon_sym_or, - ACTIONS(579), 14, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(3913), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -239407,53 +240268,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [142562] = 9, - ACTIONS(4225), 1, - anon_sym_not, - ACTIONS(4237), 1, - anon_sym_as, - ACTIONS(4450), 1, - anon_sym_is, - STATE(3106), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4452), 2, - anon_sym_LT, - anon_sym_GT, - STATE(1906), 2, - sym__not_in, - sym__is_not, - ACTIONS(4434), 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(4235), 7, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_and, - anon_sym_or, - [142604] = 4, + [142689] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3895), 2, + ACTIONS(3714), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3899), 5, + ACTIONS(3724), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - ACTIONS(3890), 14, + ACTIONS(3703), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -239468,20 +240296,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [142636] = 4, + [142721] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3710), 2, + ACTIONS(3883), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5369), 5, - anon_sym_RPAREN, + ACTIONS(3885), 5, anon_sym_COMMA, anon_sym_COLON, - anon_sym_not, - anon_sym_or, - ACTIONS(3699), 14, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(3878), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -239496,152 +240324,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [142668] = 16, - ACTIONS(5351), 1, - anon_sym_LPAREN, - ACTIONS(5353), 1, - anon_sym_COLON, - ACTIONS(5365), 1, - anon_sym_long, - ACTIONS(5371), 1, - sym_identifier, - ACTIONS(5373), 1, - anon_sym_RBRACK, - ACTIONS(5375), 1, - sym_integer, - STATE(3343), 1, - sym__signedness, - STATE(3543), 1, - sym__longness, - STATE(4355), 1, - sym_c_type, - STATE(4746), 1, - sym_memory_view_index, + [142753] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5361), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(5363), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(5367), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3500), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(5359), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [142724] = 16, - ACTIONS(5351), 1, - anon_sym_LPAREN, - ACTIONS(5353), 1, + ACTIONS(3868), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3872), 5, + anon_sym_COMMA, anon_sym_COLON, - ACTIONS(5365), 1, - anon_sym_long, - ACTIONS(5371), 1, - sym_identifier, - ACTIONS(5377), 1, - anon_sym_RBRACK, - ACTIONS(5379), 1, - sym_integer, - STATE(3343), 1, - sym__signedness, - STATE(3543), 1, - sym__longness, - STATE(4311), 1, - sym_c_type, - STATE(4823), 1, - sym_memory_view_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5361), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(5363), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(5367), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3500), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(5359), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [142780] = 16, - ACTIONS(5351), 1, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(3863), 14, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(5353), 1, - anon_sym_COLON, - ACTIONS(5365), 1, - anon_sym_long, - ACTIONS(5371), 1, - sym_identifier, - ACTIONS(5381), 1, - anon_sym_RBRACK, - ACTIONS(5383), 1, - sym_integer, - STATE(3343), 1, - sym__signedness, - STATE(3543), 1, - sym__longness, - STATE(4340), 1, - sym_c_type, - STATE(4670), 1, - sym_memory_view_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5361), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(5363), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(5367), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3500), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(5359), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [142836] = 9, - ACTIONS(4225), 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, + [142785] = 9, + ACTIONS(4229), 1, anon_sym_not, - ACTIONS(4237), 1, + ACTIONS(4271), 1, anon_sym_as, - ACTIONS(4422), 1, + ACTIONS(4390), 1, anon_sym_is, - STATE(3118), 1, + STATE(3130), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4424), 2, + ACTIONS(4392), 2, anon_sym_LT, anon_sym_GT, - STATE(1922), 2, + STATE(1991), 2, sym__not_in, sym__is_not, - ACTIONS(4406), 6, + ACTIONS(4374), 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(4235), 7, + ACTIONS(4269), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -239649,42 +240385,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_and, anon_sym_or, - [142878] = 4, + [142827] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3710), 2, + ACTIONS(3911), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3865), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_not, - anon_sym_or, - ACTIONS(3699), 14, + ACTIONS(3909), 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, - [142910] = 3, + sym_type_conversion, + [142857] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3922), 2, + ACTIONS(3907), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3920), 19, + ACTIONS(3905), 19, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -239704,75 +240439,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, sym_type_conversion, - [142940] = 9, - ACTIONS(4255), 1, - anon_sym_as, - ACTIONS(4260), 1, - anon_sym_not, - ACTIONS(4707), 1, - anon_sym_is, - STATE(3106), 1, - aux_sym_comparison_operator_repeat1, + [142887] = 16, + ACTIONS(5355), 1, + anon_sym_LPAREN, + ACTIONS(5357), 1, + anon_sym_COLON, + ACTIONS(5369), 1, + anon_sym_long, + ACTIONS(5373), 1, + sym_identifier, + ACTIONS(5375), 1, + anon_sym_RBRACK, + ACTIONS(5377), 1, + sym_integer, + STATE(3349), 1, + sym__signedness, + STATE(3519), 1, + sym__longness, + STATE(4461), 1, + sym_c_type, + STATE(4771), 1, + sym_memory_view_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4710), 2, - anon_sym_LT, - anon_sym_GT, - STATE(1906), 2, - sym__not_in, - sym__is_not, - ACTIONS(4704), 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(4253), 7, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_and, - anon_sym_or, - [142982] = 4, + ACTIONS(5365), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(5367), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5371), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3508), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(5363), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [142943] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3884), 2, + ACTIONS(3926), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3720), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - ACTIONS(3879), 14, + ACTIONS(3924), 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, - [143014] = 3, + sym_type_conversion, + [142973] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3863), 2, + ACTIONS(3876), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3861), 19, + ACTIONS(3874), 19, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -239792,14 +240533,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, sym_type_conversion, - [143044] = 3, + [143003] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3888), 2, + ACTIONS(3876), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3886), 19, + ACTIONS(3874), 19, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -239819,14 +240560,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, sym_type_conversion, - [143074] = 3, + [143033] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3863), 2, + ACTIONS(3903), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3861), 19, + ACTIONS(3901), 19, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -239846,7 +240587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, sym_type_conversion, - [143104] = 3, + [143063] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -239873,20 +240614,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, sym_type_conversion, - [143134] = 4, + [143093] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1297), 2, + ACTIONS(1005), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(1295), 5, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - ACTIONS(1498), 14, + anon_sym_not, + anon_sym_or, + ACTIONS(1003), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -239901,20 +240642,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [143166] = 4, + [143125] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3914), 2, + ACTIONS(1297), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3918), 5, + ACTIONS(1295), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - ACTIONS(3909), 14, + ACTIONS(1498), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -239929,75 +240670,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [143198] = 4, - ACTIONS(5385), 1, - anon_sym_STAR, + [143157] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4360), 6, + ACTIONS(3714), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3891), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_not, + anon_sym_or, + ACTIONS(3703), 14, + anon_sym_DOT, anon_sym_LPAREN, + anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_complex, - anon_sym___stdcall, - ACTIONS(4350), 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_with, - anon_sym_EQ, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_nogil, - [143230] = 3, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [143189] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3907), 2, + ACTIONS(3896), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3905), 19, + ACTIONS(3891), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(3893), 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, - [143260] = 4, + [143221] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(581), 2, + ACTIONS(1005), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(612), 5, + ACTIONS(3295), 5, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - ACTIONS(579), 14, + anon_sym_not, + anon_sym_or, + ACTIONS(1003), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -240012,20 +240754,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [143292] = 4, + [143253] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3710), 2, + ACTIONS(3714), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3720), 5, + ACTIONS(5379), 5, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - ACTIONS(3699), 14, + anon_sym_not, + anon_sym_or, + ACTIONS(3703), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -240040,236 +240782,339 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [143324] = 9, - ACTIONS(4255), 1, - anon_sym_as, - ACTIONS(4260), 1, + [143285] = 9, + ACTIONS(4229), 1, anon_sym_not, - ACTIONS(4658), 1, + ACTIONS(4271), 1, + anon_sym_as, + ACTIONS(4430), 1, anon_sym_is, - STATE(3118), 1, + STATE(3131), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4661), 2, + ACTIONS(4432), 2, anon_sym_LT, anon_sym_GT, - STATE(1922), 2, + STATE(2001), 2, sym__not_in, sym__is_not, - ACTIONS(4655), 6, + ACTIONS(4414), 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(4253), 7, - anon_sym_RPAREN, + ACTIONS(4269), 7, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, + anon_sym_RBRACK, anon_sym_and, anon_sym_or, - [143366] = 16, - ACTIONS(5351), 1, - anon_sym_LPAREN, - ACTIONS(5353), 1, - anon_sym_COLON, + [143327] = 16, ACTIONS(5355), 1, - anon_sym_RBRACK, + anon_sym_LPAREN, ACTIONS(5357), 1, - sym_integer, - ACTIONS(5365), 1, + anon_sym_COLON, + ACTIONS(5369), 1, anon_sym_long, - ACTIONS(5371), 1, + ACTIONS(5373), 1, sym_identifier, - STATE(3343), 1, + ACTIONS(5381), 1, + anon_sym_RBRACK, + ACTIONS(5383), 1, + sym_integer, + STATE(3349), 1, sym__signedness, - STATE(3543), 1, + STATE(3519), 1, sym__longness, - STATE(4299), 1, + STATE(4372), 1, sym_c_type, - STATE(4734), 1, + STATE(5111), 1, sym_memory_view_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5361), 2, + ACTIONS(5365), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(5363), 2, + ACTIONS(5367), 2, anon_sym_char, anon_sym_short, - ACTIONS(5367), 2, + ACTIONS(5371), 2, anon_sym_const, anon_sym_volatile, - STATE(3500), 2, + STATE(3508), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(5359), 3, + ACTIONS(5363), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [143422] = 4, + [143383] = 4, + ACTIONS(5385), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(581), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1295), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_not, - anon_sym_or, - ACTIONS(579), 14, - anon_sym_DOT, + ACTIONS(4360), 6, 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, - [143454] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3870), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3865), 5, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(4350), 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_with, anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - ACTIONS(3867), 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, - [143486] = 7, + anon_sym_and, + anon_sym_or, + anon_sym_nogil, + [143415] = 16, + ACTIONS(5355), 1, + anon_sym_LPAREN, + ACTIONS(5357), 1, + anon_sym_COLON, + ACTIONS(5369), 1, + anon_sym_long, + ACTIONS(5373), 1, + sym_identifier, ACTIONS(5387), 1, - anon_sym_as, + anon_sym_RBRACK, ACTIONS(5389), 1, + sym_integer, + STATE(3349), 1, + sym__signedness, + STATE(3519), 1, + sym__longness, + STATE(4404), 1, + sym_c_type, + STATE(4904), 1, + sym_memory_view_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5365), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(5367), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5371), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3508), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(5363), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [143471] = 9, + ACTIONS(4241), 1, + anon_sym_as, + ACTIONS(4246), 1, + anon_sym_not, + ACTIONS(4683), 1, + anon_sym_is, + STATE(3130), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4686), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1991), 2, + sym__not_in, + sym__is_not, + ACTIONS(4680), 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(4239), 7, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_if, - ACTIONS(5391), 1, + anon_sym_async, + anon_sym_for, anon_sym_and, - ACTIONS(5393), 1, anon_sym_or, + [143513] = 9, + ACTIONS(4241), 1, + anon_sym_as, + ACTIONS(4246), 1, + anon_sym_not, + ACTIONS(4711), 1, + anon_sym_is, + STATE(3131), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4603), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4601), 14, + ACTIONS(4714), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2001), 2, + sym__not_in, + sym__is_not, + ACTIONS(4708), 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(4239), 7, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [143555] = 14, + ACTIONS(4255), 1, anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, + ACTIONS(4261), 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, - [143523] = 5, + ACTIONS(5113), 1, + anon_sym_operator, ACTIONS(5391), 1, - anon_sym_and, + sym_identifier, ACTIONS(5393), 1, - anon_sym_or, + anon_sym_LPAREN, + ACTIONS(5397), 1, + anon_sym_complex, + STATE(3330), 1, + aux_sym_class_definition_repeat2, + STATE(3414), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4579), 2, + ACTIONS(4257), 2, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4577), 16, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, + anon_sym___stdcall, + ACTIONS(4259), 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, - [143556] = 7, - ACTIONS(1356), 1, - anon_sym_long, - STATE(3345), 1, - sym__longness, + STATE(3289), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3549), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5395), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [143606] = 15, + ACTIONS(4255), 1, + anon_sym_DOT, + ACTIONS(4261), 1, + anon_sym_LBRACK, + ACTIONS(5113), 1, + anon_sym_operator, + ACTIONS(5399), 1, + sym_identifier, + ACTIONS(5401), 1, + anon_sym_LPAREN, + ACTIONS(5409), 1, + anon_sym_complex, + STATE(3145), 1, + aux_sym_class_definition_repeat2, + STATE(3414), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5399), 2, - anon_sym_int, - anon_sym_double, - ACTIONS(5401), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(5395), 5, + ACTIONS(4257), 2, anon_sym_STAR, - sym_identifier, - anon_sym_complex, - anon_sym_operator, anon_sym___stdcall, - ACTIONS(5397), 9, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4259), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + ACTIONS(5404), 2, anon_sym_RPAREN, anon_sym_COMMA, + ACTIONS(5406), 2, anon_sym_COLON, - anon_sym_STAR_STAR, anon_sym_EQ, + STATE(3268), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3532), 2, + sym_operator_name, + sym_c_function_pointer_name, + [143659] = 15, + ACTIONS(4255), 1, + anon_sym_DOT, + ACTIONS(4261), 1, anon_sym_LBRACK, + ACTIONS(5113), 1, + anon_sym_operator, + ACTIONS(5399), 1, + sym_identifier, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5418), 1, + anon_sym_complex, + STATE(3132), 1, + aux_sym_class_definition_repeat2, + STATE(3414), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4257), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4259), 2, + anon_sym_STAR_STAR, anon_sym_AMP, - [143593] = 4, + ACTIONS(5414), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5416), 2, + anon_sym_COLON, + anon_sym_EQ, + STATE(3270), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3532), 2, + sym_operator_name, + sym_c_function_pointer_name, + [143712] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(581), 2, + ACTIONS(1005), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3347), 4, + ACTIONS(3295), 4, anon_sym_COMMA, anon_sym_COLON, anon_sym_not, anon_sym_or, - ACTIONS(579), 14, + ACTIONS(1003), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -240284,19 +241129,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [143624] = 4, + [143743] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3710), 2, + ACTIONS(3714), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5369), 4, + ACTIONS(5379), 4, anon_sym_COMMA, anon_sym_COLON, anon_sym_not, anon_sym_or, - ACTIONS(3699), 14, + ACTIONS(3703), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -240311,22 +241156,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [143655] = 7, - ACTIONS(5387), 1, - anon_sym_as, - ACTIONS(5389), 1, - anon_sym_if, - ACTIONS(5391), 1, - anon_sym_and, - ACTIONS(5393), 1, - anon_sym_or, + [143774] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4535), 2, + ACTIONS(3714), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4533), 14, + ACTIONS(3891), 4, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_not, + anon_sym_or, + ACTIONS(3703), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -240341,84 +241183,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [143692] = 4, - ACTIONS(5391), 1, - anon_sym_and, + [143805] = 14, + ACTIONS(4255), 1, + anon_sym_DOT, + ACTIONS(4261), 1, + anon_sym_LBRACK, + ACTIONS(5113), 1, + anon_sym_operator, + ACTIONS(5393), 1, + anon_sym_LPAREN, + ACTIONS(5420), 1, + sym_identifier, + ACTIONS(5424), 1, + anon_sym_complex, + STATE(3330), 1, + aux_sym_class_definition_repeat2, + STATE(3414), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4556), 2, + ACTIONS(4257), 2, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4554), 17, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, + anon_sym___stdcall, + ACTIONS(4259), 2, 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, - [143723] = 7, - ACTIONS(5387), 1, - anon_sym_as, - ACTIONS(5389), 1, - anon_sym_if, - ACTIONS(5391), 1, - anon_sym_and, + STATE(3327), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3531), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5422), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [143856] = 14, + ACTIONS(4255), 1, + anon_sym_DOT, + ACTIONS(4261), 1, + anon_sym_LBRACK, + ACTIONS(5113), 1, + anon_sym_operator, ACTIONS(5393), 1, - anon_sym_or, + anon_sym_LPAREN, + ACTIONS(5426), 1, + sym_identifier, + ACTIONS(5431), 1, + anon_sym_complex, + STATE(3138), 1, + aux_sym_class_definition_repeat2, + STATE(3414), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4469), 2, + ACTIONS(4257), 2, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4465), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, + anon_sym___stdcall, + ACTIONS(4259), 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, - [143760] = 7, + STATE(3260), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3594), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5428), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [143907] = 7, ACTIONS(371), 1, anon_sym_long, - STATE(3346), 1, + STATE(3361), 1, sym__longness, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5403), 2, + ACTIONS(5437), 2, anon_sym_int, anon_sym_double, - ACTIONS(5405), 2, + ACTIONS(5439), 2, anon_sym_char, anon_sym_short, - ACTIONS(5395), 5, + ACTIONS(5433), 5, anon_sym_STAR, sym_identifier, anon_sym_complex, anon_sym_operator, anon_sym___stdcall, - ACTIONS(5397), 9, + ACTIONS(5435), 9, sym__newline, anon_sym_DOT, anon_sym_LPAREN, @@ -240428,28 +241287,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [143797] = 16, + [143944] = 14, + ACTIONS(4255), 1, + anon_sym_DOT, + ACTIONS(4261), 1, + anon_sym_LBRACK, + ACTIONS(5113), 1, + anon_sym_operator, + ACTIONS(5393), 1, + anon_sym_LPAREN, + ACTIONS(5399), 1, + sym_identifier, + ACTIONS(5441), 1, + anon_sym_complex, + STATE(3132), 1, + aux_sym_class_definition_repeat2, + STATE(3414), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4257), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4259), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3243), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3532), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5406), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [143995] = 14, + ACTIONS(4255), 1, + anon_sym_DOT, + ACTIONS(4261), 1, + anon_sym_LBRACK, + ACTIONS(5113), 1, + anon_sym_operator, + ACTIONS(5393), 1, + anon_sym_LPAREN, + ACTIONS(5399), 1, + sym_identifier, + ACTIONS(5441), 1, + anon_sym_complex, + STATE(3132), 1, + aux_sym_class_definition_repeat2, + STATE(3414), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4257), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4259), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3244), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3532), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5416), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [144046] = 16, ACTIONS(1356), 1, anon_sym_long, - ACTIONS(5119), 1, + ACTIONS(5111), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5121), 1, + ACTIONS(5113), 1, anon_sym_operator, - ACTIONS(5407), 1, + ACTIONS(5443), 1, sym_identifier, - ACTIONS(5409), 1, + ACTIONS(5445), 1, anon_sym_RPAREN, - STATE(3124), 1, + STATE(3148), 1, sym__signedness, - STATE(3212), 1, + STATE(3153), 1, sym_int_type, - STATE(3338), 1, + STATE(3367), 1, sym__longness, - STATE(3527), 1, + STATE(3513), 1, sym_operator_name, - STATE(4385), 1, + STATE(4360), 1, sym_maybe_typed_name, - STATE(5644), 1, + STATE(5521), 1, sym__typedargslist, ACTIONS(3), 2, sym_comment, @@ -240460,26 +241393,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1354), 2, anon_sym_char, anon_sym_short, - ACTIONS(5411), 2, + ACTIONS(5447), 2, anon_sym_const, anon_sym_volatile, ACTIONS(1348), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [143852] = 4, + [144101] = 7, + ACTIONS(5449), 1, + anon_sym_as, + ACTIONS(5451), 1, + anon_sym_if, + ACTIONS(5453), 1, + anon_sym_and, + ACTIONS(5455), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(581), 2, + ACTIONS(4578), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1295), 4, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_not, - anon_sym_or, - ACTIONS(579), 14, + ACTIONS(4574), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -240494,24 +241430,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [143883] = 6, + [144138] = 15, + ACTIONS(4255), 1, + anon_sym_DOT, + ACTIONS(4261), 1, + anon_sym_LBRACK, + ACTIONS(5113), 1, + anon_sym_operator, ACTIONS(5391), 1, + sym_identifier, + ACTIONS(5457), 1, + anon_sym_LPAREN, + ACTIONS(5462), 1, + anon_sym_complex, + STATE(3330), 1, + aux_sym_class_definition_repeat2, + STATE(3414), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4257), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4259), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + ACTIONS(5395), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(5460), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3249), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3549), 2, + sym_operator_name, + sym_c_function_pointer_name, + [144191] = 7, + ACTIONS(5449), 1, + anon_sym_as, + ACTIONS(5451), 1, + anon_sym_if, + ACTIONS(5453), 1, anon_sym_and, - ACTIONS(5393), 1, + ACTIONS(5455), 1, anon_sym_or, - ACTIONS(5413), 1, - anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4622), 2, + ACTIONS(4537), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4617), 15, + ACTIONS(4535), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, - anon_sym_if, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -240523,25 +241498,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [143918] = 7, - ACTIONS(5387), 1, - anon_sym_as, - ACTIONS(5389), 1, - anon_sym_if, - ACTIONS(5391), 1, + [144228] = 6, + ACTIONS(5453), 1, anon_sym_and, - ACTIONS(5393), 1, + ACTIONS(5455), 1, anon_sym_or, + ACTIONS(5464), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4571), 2, + ACTIONS(4595), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4569), 14, + ACTIONS(4590), 15, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, + anon_sym_if, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -240553,22 +241527,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [143955] = 4, + [144263] = 7, + ACTIONS(1356), 1, + anon_sym_long, + STATE(3355), 1, + sym__longness, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3710), 2, + ACTIONS(5467), 2, + anon_sym_int, + anon_sym_double, + ACTIONS(5469), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5433), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3865), 4, + sym_identifier, + anon_sym_complex, + anon_sym_operator, + anon_sym___stdcall, + ACTIONS(5435), 9, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - anon_sym_not, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_AMP, + [144300] = 5, + ACTIONS(5453), 1, + anon_sym_and, + ACTIONS(5455), 1, anon_sym_or, - ACTIONS(3699), 14, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4599), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4597), 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, @@ -240580,48 +241585,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [143986] = 7, - ACTIONS(5387), 1, - anon_sym_as, - ACTIONS(5389), 1, - anon_sym_if, - ACTIONS(5391), 1, + [144333] = 4, + ACTIONS(5453), 1, anon_sym_and, - ACTIONS(5393), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(4607), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4605), 14, + ACTIONS(4605), 17, 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, - [144023] = 4, + [144364] = 7, + ACTIONS(5449), 1, + anon_sym_as, + ACTIONS(5451), 1, + anon_sym_if, + ACTIONS(5453), 1, + anon_sym_and, + ACTIONS(5455), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3884), 2, + ACTIONS(4615), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3720), 3, - anon_sym_from, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(3879), 14, + ACTIONS(4613), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -240636,550 +241642,603 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [144053] = 14, - ACTIONS(371), 1, - anon_sym_long, - ACTIONS(5416), 1, + [144401] = 15, + ACTIONS(3705), 1, + anon_sym_DOT, + ACTIONS(3978), 1, + anon_sym_operator, + ACTIONS(5471), 1, sym_identifier, - ACTIONS(5418), 1, + ACTIONS(5473), 1, anon_sym_LPAREN, - ACTIONS(5420), 1, - sym__dedent, - STATE(3130), 1, - sym__signedness, - STATE(3139), 1, - aux_sym_fused_repeat1, - STATE(3321), 1, - sym__longness, - STATE(5288), 1, - sym_c_type, + ACTIONS(5477), 1, + anon_sym_COLON, + ACTIONS(5479), 1, + anon_sym_LBRACK, + ACTIONS(5483), 1, + anon_sym_complex, + STATE(3174), 1, + aux_sym_class_definition_repeat2, + STATE(3444), 1, + sym_type_index, 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(373), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3542), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(365), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [144103] = 14, - ACTIONS(5422), 1, - sym_identifier, - ACTIONS(5425), 1, + ACTIONS(3712), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(3728), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3369), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3555), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5428), 3, + sym__newline, + anon_sym_COMMA, + anon_sym_EQ, + [144454] = 14, + ACTIONS(4255), 1, + anon_sym_DOT, + ACTIONS(4261), 1, + anon_sym_LBRACK, + ACTIONS(5113), 1, + anon_sym_operator, + ACTIONS(5393), 1, anon_sym_LPAREN, - ACTIONS(5437), 1, - anon_sym_long, - ACTIONS(5443), 1, - sym__dedent, - STATE(3130), 1, - sym__signedness, - STATE(3139), 1, - aux_sym_fused_repeat1, - STATE(3321), 1, - sym__longness, - STATE(5288), 1, - sym_c_type, + ACTIONS(5426), 1, + sym_identifier, + ACTIONS(5431), 1, + anon_sym_complex, + STATE(3138), 1, + aux_sym_class_definition_repeat2, + STATE(3414), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5431), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(5434), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(5440), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3542), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(5428), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [144153] = 14, - ACTIONS(4239), 1, + ACTIONS(4257), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4259), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3263), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3594), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5485), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [144505] = 14, + ACTIONS(4255), 1, anon_sym_DOT, - ACTIONS(4245), 1, + ACTIONS(4261), 1, anon_sym_LBRACK, - ACTIONS(5121), 1, + ACTIONS(5113), 1, anon_sym_operator, - ACTIONS(5445), 1, + ACTIONS(5420), 1, sym_identifier, - ACTIONS(5451), 1, + ACTIONS(5489), 1, anon_sym_complex, - STATE(3311), 1, + STATE(3330), 1, aux_sym_class_definition_repeat2, - STATE(3422), 1, + STATE(3414), 1, sym_type_index, - STATE(3561), 1, - sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4241), 2, + ACTIONS(4257), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4243), 2, + ACTIONS(4259), 2, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(5449), 2, + ACTIONS(5422), 2, anon_sym_COLON, anon_sym_EQ, - STATE(3323), 2, + STATE(3265), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5447), 3, + STATE(3531), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5487), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - [144203] = 15, - ACTIONS(1356), 1, - anon_sym_long, - ACTIONS(5121), 1, - anon_sym_operator, + [144556] = 7, + ACTIONS(5449), 1, + anon_sym_as, + ACTIONS(5451), 1, + anon_sym_if, ACTIONS(5453), 1, - sym_identifier, + anon_sym_and, ACTIONS(5455), 1, - anon_sym_LPAREN, - STATE(3124), 1, - sym__signedness, - STATE(3152), 1, - sym_int_type, - STATE(3338), 1, - sym__longness, - STATE(3488), 1, - sym_function_pointer_type, - STATE(3538), 1, - sym_operator_name, - STATE(5726), 1, - sym_c_type, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1352), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(1354), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(5457), 2, - anon_sym_const, - anon_sym_volatile, - ACTIONS(1348), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [144255] = 14, - ACTIONS(4239), 1, + ACTIONS(4623), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4621), 14, anon_sym_DOT, - ACTIONS(4245), 1, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, anon_sym_LBRACK, - ACTIONS(5121), 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, + [144593] = 15, + ACTIONS(3705), 1, + anon_sym_DOT, + ACTIONS(3978), 1, anon_sym_operator, - ACTIONS(5459), 1, + ACTIONS(5471), 1, sym_identifier, - ACTIONS(5465), 1, + ACTIONS(5473), 1, + anon_sym_LPAREN, + ACTIONS(5479), 1, + anon_sym_LBRACK, + ACTIONS(5483), 1, anon_sym_complex, - STATE(3217), 1, + ACTIONS(5491), 1, + anon_sym_COLON, + STATE(3174), 1, aux_sym_class_definition_repeat2, - STATE(3422), 1, + STATE(3444), 1, sym_type_index, - STATE(3535), 1, - sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4241), 2, + ACTIONS(3712), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4243), 2, + ACTIONS(3728), 2, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(5463), 2, - anon_sym_COLON, - anon_sym_EQ, - STATE(3329), 2, + STATE(3369), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5461), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, + STATE(3555), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5428), 3, + sym__newline, anon_sym_COMMA, - [144305] = 15, - ACTIONS(4239), 1, + anon_sym_EQ, + [144646] = 15, + ACTIONS(3705), 1, anon_sym_DOT, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(5121), 1, + ACTIONS(3978), 1, anon_sym_operator, - ACTIONS(5467), 1, + ACTIONS(4806), 1, + anon_sym_COLON, + ACTIONS(5471), 1, sym_identifier, - ACTIONS(5469), 1, + ACTIONS(5473), 1, anon_sym_LPAREN, - ACTIONS(5477), 1, + ACTIONS(5479), 1, + anon_sym_LBRACK, + ACTIONS(5483), 1, anon_sym_complex, - STATE(3162), 1, + STATE(3174), 1, aux_sym_class_definition_repeat2, - STATE(3422), 1, + STATE(3444), 1, sym_type_index, - STATE(3567), 1, - sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4241), 2, + ACTIONS(3712), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4243), 2, + ACTIONS(3728), 2, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(5472), 2, - anon_sym_RPAREN, + STATE(3369), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3555), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5428), 3, + sym__newline, + anon_sym_COMMA, + anon_sym_EQ, + [144699] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1005), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1295), 4, anon_sym_COMMA, - ACTIONS(5474), 2, + anon_sym_COLON, + anon_sym_not, + anon_sym_or, + ACTIONS(1003), 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, + [144730] = 14, + ACTIONS(4255), 1, + anon_sym_DOT, + ACTIONS(4261), 1, + anon_sym_LBRACK, + ACTIONS(5113), 1, + anon_sym_operator, + ACTIONS(5426), 1, + sym_identifier, + ACTIONS(5493), 1, + anon_sym_complex, + STATE(3154), 1, + aux_sym_class_definition_repeat2, + STATE(3414), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4257), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4259), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + ACTIONS(5428), 2, anon_sym_COLON, anon_sym_EQ, - STATE(3347), 2, + STATE(3314), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [144357] = 14, - ACTIONS(371), 1, - anon_sym_long, - ACTIONS(5416), 1, + STATE(3594), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(3707), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + [144781] = 7, + ACTIONS(5449), 1, + anon_sym_as, + ACTIONS(5451), 1, + anon_sym_if, + ACTIONS(5453), 1, + anon_sym_and, + ACTIONS(5455), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4480), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4478), 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, + [144818] = 15, + ACTIONS(3705), 1, + anon_sym_DOT, + ACTIONS(3978), 1, + anon_sym_operator, + ACTIONS(4790), 1, + anon_sym_COLON, + ACTIONS(5471), 1, sym_identifier, - ACTIONS(5418), 1, + ACTIONS(5473), 1, anon_sym_LPAREN, ACTIONS(5479), 1, - sym__dedent, - STATE(3130), 1, - sym__signedness, - STATE(3138), 1, - aux_sym_fused_repeat1, - STATE(3321), 1, - sym__longness, - STATE(5288), 1, - sym_c_type, + anon_sym_LBRACK, + ACTIONS(5483), 1, + anon_sym_complex, + STATE(3174), 1, + aux_sym_class_definition_repeat2, + STATE(3444), 1, + sym_type_index, 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(373), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3542), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(365), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [144407] = 14, - ACTIONS(4239), 1, + ACTIONS(3712), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(3728), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3369), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3555), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5428), 3, + sym__newline, + anon_sym_COMMA, + anon_sym_EQ, + [144871] = 14, + ACTIONS(4255), 1, anon_sym_DOT, - ACTIONS(4245), 1, + ACTIONS(4261), 1, anon_sym_LBRACK, - ACTIONS(5121), 1, + ACTIONS(5113), 1, anon_sym_operator, - ACTIONS(5459), 1, + ACTIONS(5426), 1, sym_identifier, - ACTIONS(5484), 1, + ACTIONS(5497), 1, anon_sym_complex, - STATE(3140), 1, + STATE(3138), 1, aux_sym_class_definition_repeat2, - STATE(3422), 1, + STATE(3414), 1, sym_type_index, - STATE(3535), 1, - sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4241), 2, + ACTIONS(4257), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4243), 2, + ACTIONS(4259), 2, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(5481), 2, + ACTIONS(5485), 2, anon_sym_COLON, anon_sym_EQ, - STATE(3318), 2, + STATE(3250), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3703), 3, + STATE(3594), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5495), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - [144457] = 15, - ACTIONS(1356), 1, + [144922] = 14, + ACTIONS(371), 1, anon_sym_long, - ACTIONS(3820), 1, - anon_sym_RPAREN, - ACTIONS(5121), 1, - anon_sym_operator, - ACTIONS(5407), 1, + ACTIONS(5499), 1, sym_identifier, - ACTIONS(5486), 1, - anon_sym_DOT_DOT_DOT, - STATE(3124), 1, + ACTIONS(5501), 1, + anon_sym_LPAREN, + ACTIONS(5503), 1, + sym__dedent, + STATE(3140), 1, sym__signedness, - STATE(3212), 1, - sym_int_type, - STATE(3338), 1, + STATE(3180), 1, + aux_sym_fused_repeat1, + STATE(3368), 1, sym__longness, - STATE(3527), 1, - sym_operator_name, - STATE(4486), 1, - sym_maybe_typed_name, + STATE(5377), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1352), 2, + ACTIONS(367), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1354), 2, + ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(5411), 2, + ACTIONS(373), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(1348), 3, + STATE(3518), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [144509] = 4, - ACTIONS(5490), 1, - anon_sym_COMMA, - STATE(3147), 1, - aux_sym__patterns_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5488), 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, - [144539] = 5, - ACTIONS(5495), 1, - anon_sym_DOT, - STATE(3148), 1, - aux_sym_class_definition_repeat2, + [144972] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5493), 8, - anon_sym_import, - anon_sym_cimport, - anon_sym_as, + ACTIONS(3918), 2, anon_sym_STAR, - anon_sym_if, - sym_identifier, - anon_sym_complex, - anon_sym___stdcall, - ACTIONS(5498), 9, - anon_sym_LPAREN, + anon_sym_SLASH, + ACTIONS(3724), 3, + anon_sym_from, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_in, + ACTIONS(3913), 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_GT, - anon_sym_QMARK, - [144571] = 8, - ACTIONS(4225), 1, + anon_sym_CARET, + anon_sym_LT_LT, + [145002] = 8, + ACTIONS(4246), 1, anon_sym_not, - ACTIONS(4700), 1, + ACTIONS(4739), 1, anon_sym_is, - STATE(3170), 1, + STATE(3165), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4702), 2, + ACTIONS(4742), 2, anon_sym_LT, anon_sym_GT, - STATE(1982), 2, + STATE(1916), 2, sym__not_in, sym__is_not, - ACTIONS(4235), 6, + ACTIONS(4239), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_and, anon_sym_or, - ACTIONS(4684), 6, + ACTIONS(4736), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [144609] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3895), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3899), 3, - anon_sym_from, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(3890), 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, - [144639] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3914), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3918), 3, - anon_sym_from, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(3909), 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, - [144669] = 15, - ACTIONS(4239), 1, - anon_sym_DOT, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(5121), 1, - anon_sym_operator, - ACTIONS(5467), 1, + [145040] = 14, + ACTIONS(371), 1, + anon_sym_long, + ACTIONS(5499), 1, sym_identifier, - ACTIONS(5500), 1, + ACTIONS(5501), 1, anon_sym_LPAREN, - ACTIONS(5507), 1, - anon_sym_complex, - STATE(3191), 1, - aux_sym_class_definition_repeat2, - STATE(3422), 1, - sym_type_index, - STATE(3567), 1, - sym_operator_name, + ACTIONS(5505), 1, + sym__dedent, + STATE(3140), 1, + sym__signedness, + STATE(3189), 1, + aux_sym_fused_repeat1, + STATE(3368), 1, + sym__longness, + STATE(5377), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4241), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4243), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - ACTIONS(5503), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(5505), 2, - anon_sym_COLON, - anon_sym_EQ, - STATE(3320), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [144721] = 14, - ACTIONS(3701), 1, + 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(3518), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(365), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [145090] = 14, + ACTIONS(3705), 1, anon_sym_DOT, - ACTIONS(4094), 1, + ACTIONS(3978), 1, anon_sym_operator, - ACTIONS(5509), 1, + ACTIONS(5507), 1, sym_identifier, - ACTIONS(5511), 1, - anon_sym_COLON, - ACTIONS(5513), 1, + ACTIONS(5509), 1, + anon_sym_LPAREN, + ACTIONS(5512), 1, anon_sym_LBRACK, - ACTIONS(5517), 1, + ACTIONS(5515), 1, anon_sym_complex, - STATE(3193), 1, + STATE(3291), 1, aux_sym_class_definition_repeat2, - STATE(3409), 1, + STATE(3444), 1, sym_type_index, - STATE(3610), 1, - sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3708), 2, + ACTIONS(3712), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(3724), 2, + ACTIONS(3728), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3387), 2, + STATE(3366), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5481), 4, + STATE(3517), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5395), 3, sym__newline, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [144771] = 4, + [145140] = 15, + ACTIONS(1356), 1, + anon_sym_long, + ACTIONS(5113), 1, + anon_sym_operator, + ACTIONS(5443), 1, + sym_identifier, + ACTIONS(5517), 1, + anon_sym_RPAREN, ACTIONS(5519), 1, + anon_sym_DOT_DOT_DOT, + STATE(3148), 1, + sym__signedness, + STATE(3153), 1, + sym_int_type, + STATE(3367), 1, + sym__longness, + STATE(3513), 1, + sym_operator_name, + STATE(4566), 1, + sym_maybe_typed_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1352), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(1354), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5447), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(1348), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [145192] = 4, + ACTIONS(5523), 1, anon_sym_COMMA, - STATE(3147), 1, + STATE(3169), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2747), 17, + ACTIONS(5521), 17, sym__newline, anon_sym_SEMI, anon_sym_COLON, @@ -241197,26 +242256,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [144801] = 15, + [145222] = 8, + ACTIONS(4229), 1, + anon_sym_not, + ACTIONS(4676), 1, + anon_sym_is, + STATE(3165), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4678), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1916), 2, + sym__not_in, + sym__is_not, + ACTIONS(4269), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(4662), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [145260] = 15, ACTIONS(1356), 1, anon_sym_long, - ACTIONS(5121), 1, + ACTIONS(3836), 1, + anon_sym_RPAREN, + ACTIONS(5113), 1, anon_sym_operator, - ACTIONS(5407), 1, + ACTIONS(5443), 1, sym_identifier, - ACTIONS(5521), 1, - anon_sym_RPAREN, - ACTIONS(5523), 1, + ACTIONS(5526), 1, anon_sym_DOT_DOT_DOT, - STATE(3124), 1, + STATE(3148), 1, sym__signedness, - STATE(3212), 1, + STATE(3153), 1, sym_int_type, - STATE(3338), 1, + STATE(3367), 1, sym__longness, - STATE(3527), 1, + STATE(3513), 1, sym_operator_name, - STATE(4486), 1, + STATE(4566), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -241227,163 +242316,164 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1354), 2, anon_sym_char, anon_sym_short, - ACTIONS(5411), 2, + ACTIONS(5447), 2, anon_sym_const, anon_sym_volatile, ACTIONS(1348), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [144853] = 14, - ACTIONS(371), 1, - anon_sym_long, - ACTIONS(5416), 1, - sym_identifier, - ACTIONS(5418), 1, - anon_sym_LPAREN, - ACTIONS(5525), 1, - sym__dedent, - STATE(3130), 1, - sym__signedness, - STATE(3139), 1, - aux_sym_fused_repeat1, - STATE(3321), 1, - sym__longness, - STATE(5288), 1, - sym_c_type, + [145312] = 4, + ACTIONS(5528), 1, + anon_sym_COMMA, + STATE(3169), 1, + aux_sym__patterns_repeat1, 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(373), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3542), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(365), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [144903] = 14, - ACTIONS(371), 1, + ACTIONS(2715), 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, + [145342] = 15, + ACTIONS(1356), 1, anon_sym_long, - ACTIONS(5416), 1, + ACTIONS(5113), 1, + anon_sym_operator, + ACTIONS(5443), 1, sym_identifier, - ACTIONS(5418), 1, - anon_sym_LPAREN, - ACTIONS(5527), 1, - sym__dedent, - STATE(3130), 1, + ACTIONS(5530), 1, + anon_sym_RPAREN, + ACTIONS(5532), 1, + anon_sym_DOT_DOT_DOT, + STATE(3148), 1, sym__signedness, - STATE(3160), 1, - aux_sym_fused_repeat1, - STATE(3321), 1, + STATE(3153), 1, + sym_int_type, + STATE(3367), 1, sym__longness, - STATE(5288), 1, - sym_c_type, + STATE(3513), 1, + sym_operator_name, + STATE(4566), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(367), 2, + ACTIONS(1352), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(369), 2, + ACTIONS(1354), 2, anon_sym_char, anon_sym_short, - ACTIONS(373), 2, + ACTIONS(5447), 2, anon_sym_const, anon_sym_volatile, - STATE(3542), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(365), 3, + ACTIONS(1348), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [144953] = 4, + [145394] = 14, + ACTIONS(3705), 1, + anon_sym_DOT, + ACTIONS(3978), 1, + anon_sym_operator, + ACTIONS(5534), 1, + sym_identifier, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5539), 1, + anon_sym_LBRACK, + ACTIONS(5542), 1, + anon_sym_complex, + STATE(3291), 1, + aux_sym_class_definition_repeat2, + STATE(3444), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3710), 2, + ACTIONS(3712), 2, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3720), 3, - anon_sym_from, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(3699), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, + anon_sym___stdcall, + ACTIONS(3728), 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, - [144983] = 14, - ACTIONS(3701), 1, + STATE(3346), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3590), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5422), 3, + sym__newline, + anon_sym_COMMA, + anon_sym_EQ, + [145444] = 14, + ACTIONS(3705), 1, anon_sym_DOT, - ACTIONS(4094), 1, + ACTIONS(3978), 1, anon_sym_operator, - ACTIONS(4780), 1, - anon_sym_COLON, - ACTIONS(5509), 1, + ACTIONS(5544), 1, sym_identifier, - ACTIONS(5513), 1, + ACTIONS(5546), 1, + anon_sym_LPAREN, + ACTIONS(5550), 1, anon_sym_LBRACK, - ACTIONS(5517), 1, + ACTIONS(5554), 1, anon_sym_complex, - STATE(3193), 1, + STATE(3167), 1, aux_sym_class_definition_repeat2, - STATE(3409), 1, + STATE(3444), 1, sym_type_index, - STATE(3610), 1, - sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3708), 2, + ACTIONS(3712), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(3724), 2, + ACTIONS(3728), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3387), 2, + STATE(3358), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5481), 4, + STATE(3602), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5406), 3, sym__newline, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [145033] = 14, + [145494] = 14, ACTIONS(371), 1, anon_sym_long, - ACTIONS(5416), 1, + ACTIONS(5499), 1, sym_identifier, - ACTIONS(5418), 1, + ACTIONS(5501), 1, anon_sym_LPAREN, - ACTIONS(5529), 1, + ACTIONS(5556), 1, sym__dedent, - STATE(3130), 1, + STATE(3140), 1, sym__signedness, - STATE(3139), 1, + STATE(3189), 1, aux_sym_fused_repeat1, - STATE(3321), 1, + STATE(3368), 1, sym__longness, - STATE(5288), 1, + STATE(5377), 1, sym_c_type, ACTIONS(3), 2, sym_comment, @@ -241397,102 +242487,128 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(373), 2, anon_sym_const, anon_sym_volatile, - STATE(3542), 2, + STATE(3518), 2, sym_int_type, sym_function_pointer_type, ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [145083] = 14, - ACTIONS(3701), 1, + [145544] = 15, + ACTIONS(1356), 1, + anon_sym_long, + ACTIONS(3826), 1, + anon_sym_RPAREN, + ACTIONS(5113), 1, + anon_sym_operator, + ACTIONS(5443), 1, + sym_identifier, + ACTIONS(5558), 1, + anon_sym_DOT_DOT_DOT, + STATE(3148), 1, + sym__signedness, + STATE(3153), 1, + sym_int_type, + STATE(3367), 1, + sym__longness, + STATE(3513), 1, + sym_operator_name, + STATE(4566), 1, + sym_maybe_typed_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1352), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(1354), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5447), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(1348), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [145596] = 14, + ACTIONS(3705), 1, anon_sym_DOT, - ACTIONS(4094), 1, + ACTIONS(3978), 1, anon_sym_operator, - ACTIONS(4816), 1, - anon_sym_COLON, - ACTIONS(5509), 1, + ACTIONS(5544), 1, sym_identifier, - ACTIONS(5513), 1, - anon_sym_LBRACK, - ACTIONS(5517), 1, + ACTIONS(5554), 1, anon_sym_complex, - STATE(3193), 1, + ACTIONS(5560), 1, + anon_sym_LPAREN, + ACTIONS(5563), 1, + anon_sym_LBRACK, + STATE(3167), 1, aux_sym_class_definition_repeat2, - STATE(3409), 1, + STATE(3444), 1, sym_type_index, - STATE(3610), 1, - sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3708), 2, + ACTIONS(3712), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(3724), 2, + ACTIONS(3728), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3387), 2, + STATE(3364), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5481), 4, + STATE(3602), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5416), 3, sym__newline, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [145133] = 15, - ACTIONS(4239), 1, - anon_sym_DOT, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(5121), 1, - anon_sym_operator, - ACTIONS(5531), 1, - sym_identifier, - ACTIONS(5533), 1, - anon_sym_LPAREN, - ACTIONS(5540), 1, - anon_sym_complex, - STATE(3311), 1, - aux_sym_class_definition_repeat2, - STATE(3422), 1, - sym_type_index, - STATE(3582), 1, - sym_operator_name, + [145646] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4241), 2, + ACTIONS(1005), 2, anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4243), 2, + anon_sym_SLASH, + ACTIONS(1039), 3, + anon_sym_from, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(1003), 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, - ACTIONS(5536), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(5538), 2, - anon_sym_COLON, - anon_sym_EQ, - STATE(3334), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [145185] = 14, + anon_sym_CARET, + anon_sym_LT_LT, + [145676] = 14, ACTIONS(371), 1, anon_sym_long, - ACTIONS(5416), 1, + ACTIONS(5499), 1, sym_identifier, - ACTIONS(5418), 1, + ACTIONS(5501), 1, anon_sym_LPAREN, - ACTIONS(5542), 1, + ACTIONS(5566), 1, sym__dedent, - STATE(3130), 1, + STATE(3140), 1, sym__signedness, - STATE(3156), 1, + STATE(3189), 1, aux_sym_fused_repeat1, - STATE(3321), 1, + STATE(3368), 1, sym__longness, - STATE(5288), 1, + STATE(5377), 1, sym_c_type, ACTIONS(3), 2, sym_comment, @@ -241506,33 +242622,33 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(373), 2, anon_sym_const, anon_sym_volatile, - STATE(3542), 2, + STATE(3518), 2, sym_int_type, sym_function_pointer_type, ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [145235] = 15, + [145726] = 15, ACTIONS(1356), 1, anon_sym_long, - ACTIONS(5121), 1, + ACTIONS(5113), 1, anon_sym_operator, - ACTIONS(5407), 1, + ACTIONS(5443), 1, sym_identifier, - ACTIONS(5544), 1, + ACTIONS(5568), 1, anon_sym_RPAREN, - ACTIONS(5546), 1, + ACTIONS(5570), 1, anon_sym_DOT_DOT_DOT, - STATE(3124), 1, + STATE(3148), 1, sym__signedness, - STATE(3212), 1, + STATE(3153), 1, sym_int_type, - STATE(3338), 1, + STATE(3367), 1, sym__longness, - STATE(3527), 1, + STATE(3513), 1, sym_operator_name, - STATE(4486), 1, + STATE(4566), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -241543,107 +242659,195 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1354), 2, anon_sym_char, anon_sym_short, - ACTIONS(5411), 2, + ACTIONS(5447), 2, anon_sym_const, anon_sym_volatile, ACTIONS(1348), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [145287] = 15, - ACTIONS(1356), 1, + [145778] = 5, + ACTIONS(5574), 1, + anon_sym_DOT, + STATE(3182), 1, + aux_sym_class_definition_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5572), 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(5577), 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, + [145810] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3714), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3724), 3, + anon_sym_from, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(3703), 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, + [145840] = 14, + ACTIONS(371), 1, anon_sym_long, - ACTIONS(3830), 1, - anon_sym_RPAREN, - ACTIONS(5121), 1, - anon_sym_operator, - ACTIONS(5407), 1, + ACTIONS(5499), 1, sym_identifier, - ACTIONS(5548), 1, - anon_sym_DOT_DOT_DOT, - STATE(3124), 1, + ACTIONS(5501), 1, + anon_sym_LPAREN, + ACTIONS(5579), 1, + sym__dedent, + STATE(3140), 1, sym__signedness, - STATE(3212), 1, + STATE(3166), 1, + aux_sym_fused_repeat1, + STATE(3368), 1, + sym__longness, + STATE(5377), 1, + sym_c_type, + 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(373), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3518), 2, sym_int_type, - STATE(3338), 1, + sym_function_pointer_type, + ACTIONS(365), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [145890] = 14, + ACTIONS(371), 1, + anon_sym_long, + ACTIONS(5499), 1, + sym_identifier, + ACTIONS(5501), 1, + anon_sym_LPAREN, + ACTIONS(5581), 1, + sym__dedent, + STATE(3140), 1, + sym__signedness, + STATE(3176), 1, + aux_sym_fused_repeat1, + STATE(3368), 1, sym__longness, - STATE(3527), 1, - sym_operator_name, - STATE(4486), 1, - sym_maybe_typed_name, + STATE(5377), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1352), 2, + ACTIONS(367), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1354), 2, + ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(5411), 2, + ACTIONS(373), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(1348), 3, + STATE(3518), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [145339] = 14, - ACTIONS(3701), 1, + [145940] = 14, + ACTIONS(3705), 1, anon_sym_DOT, - ACTIONS(4094), 1, + ACTIONS(3978), 1, anon_sym_operator, - ACTIONS(5509), 1, + ACTIONS(5471), 1, sym_identifier, - ACTIONS(5513), 1, + ACTIONS(5473), 1, + anon_sym_LPAREN, + ACTIONS(5479), 1, anon_sym_LBRACK, - ACTIONS(5517), 1, + ACTIONS(5483), 1, anon_sym_complex, - ACTIONS(5550), 1, - anon_sym_COLON, - STATE(3193), 1, + STATE(3174), 1, aux_sym_class_definition_repeat2, - STATE(3409), 1, + STATE(3444), 1, sym_type_index, - STATE(3610), 1, - sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3708), 2, + ACTIONS(3712), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(3724), 2, + ACTIONS(3728), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3387), 2, + STATE(3369), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5481), 4, + STATE(3555), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5428), 3, sym__newline, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [145389] = 15, + [145990] = 15, ACTIONS(1356), 1, anon_sym_long, - ACTIONS(5121), 1, + ACTIONS(5113), 1, anon_sym_operator, - ACTIONS(5407), 1, + ACTIONS(5583), 1, sym_identifier, - ACTIONS(5552), 1, - anon_sym_RPAREN, - ACTIONS(5554), 1, - anon_sym_DOT_DOT_DOT, - STATE(3124), 1, - sym__signedness, - STATE(3212), 1, + ACTIONS(5585), 1, + anon_sym_LPAREN, + STATE(3134), 1, sym_int_type, - STATE(3338), 1, + STATE(3148), 1, + sym__signedness, + STATE(3367), 1, sym__longness, - STATE(3527), 1, + STATE(3459), 1, + sym_function_pointer_type, + STATE(3610), 1, sym_operator_name, - STATE(4486), 1, - sym_maybe_typed_name, + STATE(5597), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -241653,25 +242857,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1354), 2, anon_sym_char, anon_sym_short, - ACTIONS(5411), 2, + ACTIONS(5587), 2, anon_sym_const, anon_sym_volatile, ACTIONS(1348), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [145441] = 4, + [146042] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(581), 2, + ACTIONS(3883), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(612), 3, + ACTIONS(3885), 3, anon_sym_from, anon_sym_COMMA, anon_sym_in, - ACTIONS(579), 14, + ACTIONS(3878), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -241686,26 +242890,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [145471] = 15, + [146072] = 14, + ACTIONS(5589), 1, + sym_identifier, + ACTIONS(5592), 1, + anon_sym_LPAREN, + ACTIONS(5604), 1, + anon_sym_long, + ACTIONS(5610), 1, + sym__dedent, + STATE(3140), 1, + sym__signedness, + STATE(3189), 1, + aux_sym_fused_repeat1, + STATE(3368), 1, + sym__longness, + STATE(5377), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5598), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(5601), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5607), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3518), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(5595), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [146122] = 15, ACTIONS(1356), 1, anon_sym_long, - ACTIONS(5121), 1, + ACTIONS(5113), 1, anon_sym_operator, - ACTIONS(5407), 1, + ACTIONS(5443), 1, sym_identifier, - ACTIONS(5556), 1, + ACTIONS(5612), 1, anon_sym_RPAREN, - ACTIONS(5558), 1, + ACTIONS(5614), 1, anon_sym_DOT_DOT_DOT, - STATE(3124), 1, + STATE(3148), 1, sym__signedness, - STATE(3212), 1, + STATE(3153), 1, sym_int_type, - STATE(3338), 1, + STATE(3367), 1, sym__longness, - STATE(3527), 1, + STATE(3513), 1, sym_operator_name, - STATE(4486), 1, + STATE(4566), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -241716,147 +242956,154 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1354), 2, anon_sym_char, anon_sym_short, - ACTIONS(5411), 2, + ACTIONS(5447), 2, anon_sym_const, anon_sym_volatile, ACTIONS(1348), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [145523] = 8, - ACTIONS(4260), 1, - anon_sym_not, - ACTIONS(4752), 1, - anon_sym_is, - STATE(3170), 1, - aux_sym_comparison_operator_repeat1, + [146174] = 14, + ACTIONS(3705), 1, + anon_sym_DOT, + ACTIONS(3978), 1, + anon_sym_operator, + ACTIONS(5471), 1, + sym_identifier, + ACTIONS(5483), 1, + anon_sym_complex, + ACTIONS(5616), 1, + anon_sym_LPAREN, + ACTIONS(5619), 1, + anon_sym_LBRACK, + STATE(3174), 1, + aux_sym_class_definition_repeat2, + STATE(3444), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4755), 2, - anon_sym_LT, - anon_sym_GT, - STATE(1982), 2, - sym__not_in, - sym__is_not, - ACTIONS(4253), 6, - anon_sym_RPAREN, + ACTIONS(3712), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(3728), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3362), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3555), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5485), 3, + sym__newline, + anon_sym_COMMA, + anon_sym_EQ, + [146224] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3868), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3872), 3, + anon_sym_from, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(4749), 6, anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [145561] = 13, - ACTIONS(4276), 1, + ACTIONS(3863), 14, anon_sym_DOT, - ACTIONS(4288), 1, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, anon_sym_LBRACK, - ACTIONS(4368), 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, + [146254] = 13, + ACTIONS(4436), 1, anon_sym_LPAREN, - ACTIONS(5564), 1, + ACTIONS(5622), 1, + anon_sym_DOT, + ACTIONS(5628), 1, anon_sym_STAR_STAR, - ACTIONS(5570), 1, + ACTIONS(5630), 1, + anon_sym_LBRACK, + ACTIONS(5636), 1, anon_sym_PIPE, - ACTIONS(5572), 1, + ACTIONS(5638), 1, anon_sym_AMP, - ACTIONS(5574), 1, + ACTIONS(5640), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5560), 2, + ACTIONS(5624), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5562), 2, + ACTIONS(5626), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5568), 2, + ACTIONS(5634), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2439), 2, + STATE(2436), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5566), 3, + ACTIONS(5632), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [145608] = 13, - ACTIONS(4362), 1, + [146301] = 13, + ACTIONS(4394), 1, anon_sym_DOT, - ACTIONS(4364), 1, + ACTIONS(4396), 1, anon_sym_LBRACK, - ACTIONS(4368), 1, + ACTIONS(4436), 1, anon_sym_LPAREN, - ACTIONS(5564), 1, + ACTIONS(5628), 1, anon_sym_STAR_STAR, - ACTIONS(5570), 1, + ACTIONS(5636), 1, anon_sym_PIPE, - ACTIONS(5572), 1, + ACTIONS(5638), 1, anon_sym_AMP, - ACTIONS(5574), 1, + ACTIONS(5640), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5560), 2, + ACTIONS(5624), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5562), 2, + ACTIONS(5626), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5568), 2, + ACTIONS(5634), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2439), 2, + STATE(2436), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5566), 3, + ACTIONS(5632), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [145655] = 4, + [146348] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3710), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3720), 2, + ACTIONS(3724), 2, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3699), 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, - [145684] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(581), 2, + ACTIONS(3918), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(612), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(579), 14, + ACTIONS(3913), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -241871,40 +243118,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [145713] = 4, + [146377] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3895), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3899), 2, - anon_sym_RPAREN, + ACTIONS(5642), 18, + anon_sym_from, anon_sym_COMMA, - ACTIONS(3890), 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, - [145742] = 2, + 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, + [146402] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3720), 18, - anon_sym_from, + ACTIONS(3724), 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, @@ -241919,81 +243164,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [145767] = 10, + [146427] = 7, + ACTIONS(3948), 1, + anon_sym_long, + STATE(3432), 1, + sym__longness, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5644), 2, + anon_sym_int, + anon_sym_double, + ACTIONS(5646), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5433), 4, + anon_sym_STAR, + sym_identifier, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(5435), 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, + [146462] = 10, ACTIONS(63), 1, anon_sym_AT, - ACTIONS(5576), 1, + ACTIONS(5648), 1, anon_sym_async, - ACTIONS(5578), 1, + ACTIONS(5650), 1, anon_sym_def, - ACTIONS(5580), 1, + ACTIONS(5652), 1, anon_sym_class, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5584), 2, + ACTIONS(5656), 2, anon_sym_cdef, anon_sym_cpdef, - STATE(3475), 2, + STATE(3507), 2, sym_decorator, aux_sym_decorated_definition_repeat1, - STATE(3898), 2, + STATE(3936), 2, sym_storageclass, aux_sym_class_definition_repeat1, - STATE(1457), 3, + STATE(1617), 3, sym_function_definition, sym_class_definition, sym_cdef_statement, - ACTIONS(5582), 5, + ACTIONS(5654), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [145808] = 3, + [146503] = 13, + ACTIONS(1356), 1, + anon_sym_long, + ACTIONS(5101), 1, + anon_sym_LPAREN, + ACTIONS(5658), 1, + sym_identifier, + ACTIONS(5660), 1, + anon_sym_RPAREN, + STATE(3148), 1, + sym__signedness, + STATE(3367), 1, + sym__longness, + STATE(4529), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5493), 8, - anon_sym_import, - anon_sym_cimport, - anon_sym_as, - anon_sym_STAR, - anon_sym_if, - sym_identifier, + ACTIONS(1352), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(1354), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(1358), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3449), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(1348), 3, + anon_sym_int, + anon_sym_double, anon_sym_complex, - anon_sym___stdcall, - ACTIONS(5498), 10, - anon_sym_DOT, - 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, - [145835] = 8, - ACTIONS(4366), 1, - anon_sym_DOT, - ACTIONS(4368), 1, - anon_sym_LPAREN, - ACTIONS(4378), 1, - anon_sym_LBRACK, - ACTIONS(5564), 1, - anon_sym_STAR_STAR, + [146550] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4306), 2, + ACTIONS(3714), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(2439), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4304), 10, + ACTIONS(3724), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3703), 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, @@ -242003,81 +243282,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [145872] = 9, - ACTIONS(4366), 1, - anon_sym_DOT, - ACTIONS(4368), 1, - anon_sym_LPAREN, - ACTIONS(4378), 1, - anon_sym_LBRACK, - ACTIONS(5564), 1, - anon_sym_STAR_STAR, + [146579] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5560), 2, + ACTIONS(3883), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(2439), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5566), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4304), 7, + ACTIONS(3885), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3878), 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, - [145911] = 13, - ACTIONS(3701), 1, - anon_sym_DOT, - ACTIONS(4094), 1, - anon_sym_operator, - ACTIONS(5586), 1, - sym_identifier, - ACTIONS(5588), 1, - anon_sym_LBRACK, - ACTIONS(5591), 1, - anon_sym_complex, - STATE(3200), 1, - aux_sym_class_definition_repeat2, - STATE(3409), 1, - sym_type_index, - STATE(3568), 1, - sym_operator_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3708), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(3724), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3356), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5505), 4, - sym__newline, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [145958] = 4, + [146608] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3914), 2, + ACTIONS(3868), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3918), 2, + ACTIONS(3872), 2, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3909), 14, + ACTIONS(3863), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -242092,141 +243332,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [145987] = 13, - ACTIONS(4304), 1, - anon_sym_PIPE, - ACTIONS(4366), 1, - anon_sym_DOT, - ACTIONS(4368), 1, - anon_sym_LPAREN, - ACTIONS(4378), 1, - anon_sym_LBRACK, - ACTIONS(5564), 1, - anon_sym_STAR_STAR, - ACTIONS(5572), 1, - anon_sym_AMP, - ACTIONS(5574), 1, - anon_sym_CARET, + [146637] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5560), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5562), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5568), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2439), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5566), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - [146034] = 10, + ACTIONS(5521), 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, + [146662] = 10, ACTIONS(63), 1, anon_sym_AT, - ACTIONS(5593), 1, + ACTIONS(5662), 1, anon_sym_async, - ACTIONS(5595), 1, + ACTIONS(5664), 1, anon_sym_def, - ACTIONS(5597), 1, + ACTIONS(5666), 1, anon_sym_class, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5599), 2, + ACTIONS(5668), 2, anon_sym_cdef, anon_sym_cpdef, - STATE(3475), 2, + STATE(3507), 2, sym_decorator, aux_sym_decorated_definition_repeat1, - STATE(3937), 2, + STATE(3894), 2, sym_storageclass, aux_sym_class_definition_repeat1, - STATE(1633), 3, + STATE(1390), 3, sym_function_definition, sym_class_definition, sym_cdef_statement, - ACTIONS(5582), 5, + ACTIONS(5654), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [146075] = 12, - ACTIONS(4366), 1, - anon_sym_DOT, - ACTIONS(4368), 1, - anon_sym_LPAREN, - ACTIONS(4378), 1, - anon_sym_LBRACK, - ACTIONS(5564), 1, - anon_sym_STAR_STAR, - ACTIONS(5574), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4304), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5560), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5562), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5568), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2439), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5566), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - [146120] = 11, - ACTIONS(4366), 1, - anon_sym_DOT, - ACTIONS(4368), 1, - anon_sym_LPAREN, - ACTIONS(4378), 1, - anon_sym_LBRACK, - ACTIONS(5564), 1, - anon_sym_STAR_STAR, + [146703] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5560), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5562), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5568), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2439), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4304), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5566), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - [146163] = 2, + ACTIONS(5670), 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, + [146728] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5601), 18, + ACTIONS(3724), 18, anon_sym_from, anon_sym_COMMA, anon_sym_COLON, @@ -242245,76 +243432,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [146188] = 7, - ACTIONS(4018), 1, + [146753] = 13, + ACTIONS(1356), 1, anon_sym_long, - STATE(3423), 1, + ACTIONS(5101), 1, + anon_sym_LPAREN, + ACTIONS(5658), 1, + sym_identifier, + ACTIONS(5672), 1, + anon_sym_RPAREN, + STATE(3148), 1, + sym__signedness, + STATE(3367), 1, sym__longness, + STATE(4625), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5603), 2, - anon_sym_int, - anon_sym_double, - ACTIONS(5605), 2, + ACTIONS(1352), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(1354), 2, anon_sym_char, anon_sym_short, - ACTIONS(5395), 4, - anon_sym_STAR, - sym_identifier, + ACTIONS(1358), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3449), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(1348), 3, + anon_sym_int, + anon_sym_double, anon_sym_complex, - anon_sym___stdcall, - ACTIONS(5397), 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, - [146223] = 13, - ACTIONS(4366), 1, - anon_sym_DOT, - ACTIONS(4368), 1, + [146800] = 13, + ACTIONS(1356), 1, + anon_sym_long, + ACTIONS(5101), 1, anon_sym_LPAREN, - ACTIONS(4378), 1, - anon_sym_LBRACK, - ACTIONS(5564), 1, - anon_sym_STAR_STAR, - ACTIONS(5570), 1, - anon_sym_PIPE, - ACTIONS(5572), 1, - anon_sym_AMP, - ACTIONS(5574), 1, - anon_sym_CARET, + ACTIONS(5658), 1, + sym_identifier, + ACTIONS(5674), 1, + anon_sym_RPAREN, + STATE(3148), 1, + sym__signedness, + STATE(3367), 1, + sym__longness, + STATE(4481), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5560), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5562), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5568), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2439), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5566), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - [146270] = 8, - ACTIONS(4366), 1, + ACTIONS(1352), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(1354), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(1358), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3449), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(1348), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [146847] = 8, + ACTIONS(4434), 1, anon_sym_DOT, - ACTIONS(4368), 1, + ACTIONS(4436), 1, anon_sym_LPAREN, - ACTIONS(4378), 1, + ACTIONS(4446), 1, anon_sym_LBRACK, - ACTIONS(5564), 1, + ACTIONS(5628), 1, anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, @@ -242322,63 +243515,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4348), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(2439), 2, + STATE(2436), 2, sym_argument_list, sym_generator_expression, ACTIONS(4346), 10, 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_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [146307] = 13, - ACTIONS(4239), 1, - anon_sym_DOT, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(5121), 1, - anon_sym_operator, - ACTIONS(5531), 1, - sym_identifier, - ACTIONS(5607), 1, - anon_sym_complex, - STATE(3311), 1, - aux_sym_class_definition_repeat2, - STATE(3422), 1, - sym_type_index, - STATE(3582), 1, - sym_operator_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4241), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4243), 2, - anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, - STATE(3399), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5538), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [146354] = 2, + anon_sym_CARET, + anon_sym_LT_LT, + [146884] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5609), 18, - anon_sym_from, + ACTIONS(5642), 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, @@ -242393,51 +243552,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [146379] = 13, - ACTIONS(3701), 1, + [146909] = 13, + ACTIONS(4434), 1, anon_sym_DOT, - ACTIONS(4094), 1, - anon_sym_operator, - ACTIONS(5611), 1, - sym_identifier, - ACTIONS(5613), 1, + ACTIONS(4436), 1, + anon_sym_LPAREN, + ACTIONS(4446), 1, anon_sym_LBRACK, - ACTIONS(5616), 1, - anon_sym_complex, - STATE(3278), 1, - aux_sym_class_definition_repeat2, - STATE(3409), 1, - sym_type_index, - STATE(3552), 1, - sym_operator_name, + ACTIONS(5628), 1, + anon_sym_STAR_STAR, + ACTIONS(5636), 1, + anon_sym_PIPE, + ACTIONS(5638), 1, + anon_sym_AMP, + ACTIONS(5640), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3708), 2, + ACTIONS(5624), 2, anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(3724), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3403), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5449), 4, - sym__newline, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [146426] = 4, + anon_sym_SLASH, + ACTIONS(5626), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5634), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2436), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5632), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [146956] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3720), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3884), 2, + ACTIONS(3868), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3879), 14, + ACTIONS(3872), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(3863), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -242452,54 +243611,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [146455] = 13, - ACTIONS(3701), 1, - anon_sym_DOT, - ACTIONS(4094), 1, - anon_sym_operator, - ACTIONS(5509), 1, - sym_identifier, - ACTIONS(5513), 1, - anon_sym_LBRACK, - ACTIONS(5517), 1, - anon_sym_complex, - STATE(3193), 1, - aux_sym_class_definition_repeat2, - STATE(3409), 1, - sym_type_index, - STATE(3610), 1, - sym_operator_name, + [146985] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3708), 2, + ACTIONS(1005), 2, anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(3724), 2, + anon_sym_SLASH, + ACTIONS(1039), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1003), 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, - STATE(3387), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5481), 4, - sym__newline, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [146502] = 13, + anon_sym_CARET, + anon_sym_LT_LT, + [147014] = 13, ACTIONS(1356), 1, anon_sym_long, - ACTIONS(5109), 1, + ACTIONS(5101), 1, anon_sym_LPAREN, - ACTIONS(5618), 1, + ACTIONS(5658), 1, sym_identifier, - ACTIONS(5620), 1, + ACTIONS(5676), 1, anon_sym_RPAREN, - STATE(3124), 1, + STATE(3148), 1, sym__signedness, - STATE(3338), 1, + STATE(3367), 1, sym__longness, - STATE(4622), 1, + STATE(4508), 1, sym_c_type, ACTIONS(3), 2, sym_comment, @@ -242513,90 +243663,56 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1358), 2, anon_sym_const, anon_sym_volatile, - STATE(3507), 2, + STATE(3449), 2, sym_int_type, sym_function_pointer_type, ACTIONS(1348), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [146549] = 13, - ACTIONS(4203), 1, + [147061] = 13, + ACTIONS(4207), 1, anon_sym_DOT, - ACTIONS(4217), 1, + ACTIONS(4221), 1, anon_sym_LBRACK, - ACTIONS(4368), 1, + ACTIONS(4436), 1, anon_sym_LPAREN, - ACTIONS(5564), 1, + ACTIONS(5628), 1, anon_sym_STAR_STAR, - ACTIONS(5570), 1, + ACTIONS(5636), 1, anon_sym_PIPE, - ACTIONS(5572), 1, + ACTIONS(5638), 1, anon_sym_AMP, - ACTIONS(5574), 1, + ACTIONS(5640), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5560), 2, + ACTIONS(5624), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5562), 2, + ACTIONS(5626), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5568), 2, + ACTIONS(5634), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2439), 2, + STATE(2436), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5566), 3, + ACTIONS(5632), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [146596] = 13, - ACTIONS(1356), 1, - anon_sym_long, - ACTIONS(5109), 1, - anon_sym_LPAREN, - ACTIONS(5618), 1, - sym_identifier, - ACTIONS(5622), 1, - anon_sym_RPAREN, - STATE(3124), 1, - sym__signedness, - STATE(3338), 1, - sym__longness, - STATE(4564), 1, - sym_c_type, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1352), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(1354), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(1358), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3507), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(1348), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [146643] = 2, + [147108] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5488), 18, - anon_sym_from, + ACTIONS(5521), 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, @@ -242611,371 +243727,277 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [146668] = 13, - ACTIONS(3701), 1, - anon_sym_DOT, - ACTIONS(4094), 1, - anon_sym_operator, - ACTIONS(5624), 1, - sym_identifier, - ACTIONS(5626), 1, - anon_sym_LBRACK, - ACTIONS(5629), 1, - anon_sym_complex, - STATE(3278), 1, - aux_sym_class_definition_repeat2, - STATE(3409), 1, - sym_type_index, - STATE(3515), 1, - sym_operator_name, + [147133] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3708), 2, + ACTIONS(5572), 8, + anon_sym_import, + anon_sym_cimport, + anon_sym_as, anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(3724), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3358), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5538), 4, - sym__newline, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [146715] = 13, - ACTIONS(1356), 1, - anon_sym_long, - ACTIONS(5109), 1, - anon_sym_LPAREN, - ACTIONS(5618), 1, + anon_sym_if, sym_identifier, - ACTIONS(5631), 1, - anon_sym_RPAREN, - STATE(3124), 1, - sym__signedness, - STATE(3338), 1, - sym__longness, - STATE(4575), 1, - sym_c_type, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1352), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(1354), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(1358), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3507), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(1348), 3, - anon_sym_int, - anon_sym_double, anon_sym_complex, - [146762] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(581), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(612), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(579), 14, + anon_sym___stdcall, + ACTIONS(5577), 10, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_GT_GT, + anon_sym_COMMA, + anon_sym_COLON, 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, - [146791] = 13, - ACTIONS(4368), 1, - anon_sym_LPAREN, - ACTIONS(4398), 1, + anon_sym_GT, + anon_sym_QMARK, + [147160] = 13, + ACTIONS(4366), 1, anon_sym_DOT, - ACTIONS(4410), 1, + ACTIONS(4378), 1, anon_sym_LBRACK, - ACTIONS(5564), 1, + ACTIONS(4436), 1, + anon_sym_LPAREN, + ACTIONS(5628), 1, anon_sym_STAR_STAR, - ACTIONS(5570), 1, + ACTIONS(5636), 1, anon_sym_PIPE, - ACTIONS(5572), 1, + ACTIONS(5638), 1, anon_sym_AMP, - ACTIONS(5574), 1, + ACTIONS(5640), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5560), 2, + ACTIONS(5624), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5562), 2, + ACTIONS(5626), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5568), 2, + ACTIONS(5634), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2439), 2, + STATE(2436), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5566), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - [146838] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3914), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3918), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3909), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, + ACTIONS(5632), 3, 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, - [146867] = 13, - ACTIONS(4368), 1, + [147207] = 13, + ACTIONS(4436), 1, anon_sym_LPAREN, - ACTIONS(5564), 1, + ACTIONS(5628), 1, anon_sym_STAR_STAR, - ACTIONS(5570), 1, + ACTIONS(5636), 1, anon_sym_PIPE, - ACTIONS(5572), 1, + ACTIONS(5638), 1, anon_sym_AMP, - ACTIONS(5574), 1, + ACTIONS(5640), 1, anon_sym_CARET, - ACTIONS(5633), 1, + ACTIONS(5678), 1, anon_sym_DOT, - ACTIONS(5635), 1, + ACTIONS(5680), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5560), 2, + ACTIONS(5624), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5562), 2, + ACTIONS(5626), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5568), 2, + ACTIONS(5634), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2439), 2, + STATE(2436), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5566), 3, + ACTIONS(5632), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [146914] = 13, - ACTIONS(4314), 1, + [147254] = 13, + ACTIONS(4312), 1, anon_sym_DOT, - ACTIONS(4326), 1, + ACTIONS(4324), 1, anon_sym_LBRACK, - ACTIONS(4368), 1, + ACTIONS(4436), 1, anon_sym_LPAREN, - ACTIONS(5564), 1, + ACTIONS(5628), 1, anon_sym_STAR_STAR, - ACTIONS(5570), 1, + ACTIONS(5636), 1, anon_sym_PIPE, - ACTIONS(5572), 1, + ACTIONS(5638), 1, anon_sym_AMP, - ACTIONS(5574), 1, + ACTIONS(5640), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5560), 2, + ACTIONS(5624), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5562), 2, + ACTIONS(5626), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5568), 2, + ACTIONS(5634), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2439), 2, + STATE(2436), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5566), 3, + ACTIONS(5632), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [146961] = 13, - ACTIONS(4368), 1, + [147301] = 13, + ACTIONS(4436), 1, anon_sym_LPAREN, - ACTIONS(4676), 1, + ACTIONS(4692), 1, anon_sym_DOT, - ACTIONS(4688), 1, + ACTIONS(4694), 1, anon_sym_LBRACK, - ACTIONS(5564), 1, + ACTIONS(5628), 1, anon_sym_STAR_STAR, - ACTIONS(5570), 1, + ACTIONS(5636), 1, anon_sym_PIPE, - ACTIONS(5572), 1, + ACTIONS(5638), 1, anon_sym_AMP, - ACTIONS(5574), 1, + ACTIONS(5640), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5560), 2, + ACTIONS(5624), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5562), 2, + ACTIONS(5626), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5568), 2, + ACTIONS(5634), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2439), 2, + STATE(2436), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5566), 3, + ACTIONS(5632), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [147008] = 13, - ACTIONS(4368), 1, + [147348] = 13, + ACTIONS(4436), 1, anon_sym_LPAREN, - ACTIONS(4477), 1, + ACTIONS(4507), 1, anon_sym_DOT, - ACTIONS(4489), 1, + ACTIONS(4519), 1, anon_sym_LBRACK, - ACTIONS(5564), 1, + ACTIONS(5628), 1, anon_sym_STAR_STAR, - ACTIONS(5570), 1, + ACTIONS(5636), 1, anon_sym_PIPE, - ACTIONS(5572), 1, + ACTIONS(5638), 1, anon_sym_AMP, - ACTIONS(5574), 1, + ACTIONS(5640), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5560), 2, + ACTIONS(5624), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5562), 2, + ACTIONS(5626), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5568), 2, + ACTIONS(5634), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2439), 2, + STATE(2436), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5566), 3, + ACTIONS(5632), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [147055] = 13, - ACTIONS(4368), 1, - anon_sym_LPAREN, - ACTIONS(4426), 1, + [147395] = 13, + ACTIONS(4406), 1, anon_sym_DOT, - ACTIONS(4438), 1, + ACTIONS(4418), 1, anon_sym_LBRACK, - ACTIONS(5564), 1, + ACTIONS(4436), 1, + anon_sym_LPAREN, + ACTIONS(5628), 1, anon_sym_STAR_STAR, - ACTIONS(5570), 1, + ACTIONS(5636), 1, anon_sym_PIPE, - ACTIONS(5572), 1, + ACTIONS(5638), 1, anon_sym_AMP, - ACTIONS(5574), 1, + ACTIONS(5640), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5560), 2, + ACTIONS(5624), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5562), 2, + ACTIONS(5626), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5568), 2, + ACTIONS(5634), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2439), 2, + STATE(2436), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5566), 3, + ACTIONS(5632), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [147102] = 13, - ACTIONS(4368), 1, + [147442] = 13, + ACTIONS(4284), 1, + anon_sym_DOT, + ACTIONS(4296), 1, + anon_sym_LBRACK, + ACTIONS(4436), 1, anon_sym_LPAREN, - ACTIONS(5564), 1, + ACTIONS(5628), 1, anon_sym_STAR_STAR, - ACTIONS(5570), 1, + ACTIONS(5636), 1, anon_sym_PIPE, - ACTIONS(5572), 1, + ACTIONS(5638), 1, anon_sym_AMP, - ACTIONS(5574), 1, + ACTIONS(5640), 1, anon_sym_CARET, - ACTIONS(5637), 1, - anon_sym_DOT, - ACTIONS(5639), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5560), 2, + ACTIONS(5624), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5562), 2, + ACTIONS(5626), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5568), 2, + ACTIONS(5634), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2439), 2, + STATE(2436), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5566), 3, + ACTIONS(5632), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [147149] = 2, + [147489] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5609), 18, - sym__newline, - anon_sym_SEMI, + ACTIONS(5670), 18, + anon_sym_from, anon_sym_COMMA, anon_sym_COLON, + anon_sym_in, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -242990,119 +244012,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [147174] = 13, - ACTIONS(4239), 1, - anon_sym_DOT, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(5121), 1, - anon_sym_operator, - ACTIONS(5459), 1, - sym_identifier, - ACTIONS(5641), 1, - anon_sym_complex, - STATE(3217), 1, - aux_sym_class_definition_repeat2, - STATE(3422), 1, - sym_type_index, - STATE(3535), 1, - sym_operator_name, + [147514] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4241), 2, + ACTIONS(3724), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(3918), 2, anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4243), 2, + anon_sym_SLASH, + ACTIONS(3913), 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, - STATE(3402), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5463), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [147221] = 13, - ACTIONS(4368), 1, + anon_sym_CARET, + anon_sym_LT_LT, + [147543] = 13, + ACTIONS(4436), 1, anon_sym_LPAREN, - ACTIONS(5564), 1, + ACTIONS(5628), 1, anon_sym_STAR_STAR, - ACTIONS(5570), 1, + ACTIONS(5636), 1, anon_sym_PIPE, - ACTIONS(5572), 1, + ACTIONS(5638), 1, anon_sym_AMP, - ACTIONS(5574), 1, + ACTIONS(5640), 1, anon_sym_CARET, - ACTIONS(5643), 1, + ACTIONS(5682), 1, anon_sym_DOT, - ACTIONS(5645), 1, + ACTIONS(5684), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5560), 2, + ACTIONS(5624), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5562), 2, + ACTIONS(5626), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5568), 2, + ACTIONS(5634), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2439), 2, + STATE(2436), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5566), 3, + ACTIONS(5632), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [147268] = 13, - ACTIONS(3701), 1, - anon_sym_DOT, - ACTIONS(4094), 1, - anon_sym_operator, - ACTIONS(5586), 1, - sym_identifier, - ACTIONS(5591), 1, - anon_sym_complex, - ACTIONS(5647), 1, - anon_sym_LBRACK, - STATE(3200), 1, - aux_sym_class_definition_repeat2, - STATE(3409), 1, - sym_type_index, - STATE(3568), 1, - sym_operator_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3708), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(3724), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3355), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5474), 4, - sym__newline, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [147315] = 4, + [147590] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3895), 2, + ACTIONS(3714), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3899), 2, + ACTIONS(3724), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(3890), 14, + ACTIONS(3703), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -243117,262 +244096,265 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [147344] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5601), 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, - [147369] = 13, - ACTIONS(4239), 1, + [147619] = 8, + ACTIONS(4434), 1, anon_sym_DOT, - ACTIONS(4245), 1, + ACTIONS(4436), 1, + anon_sym_LPAREN, + ACTIONS(4446), 1, anon_sym_LBRACK, - ACTIONS(5121), 1, - anon_sym_operator, - ACTIONS(5445), 1, - sym_identifier, - ACTIONS(5651), 1, - anon_sym_complex, - STATE(3311), 1, - aux_sym_class_definition_repeat2, - STATE(3422), 1, - sym_type_index, - STATE(3561), 1, - sym_operator_name, + ACTIONS(5628), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4241), 2, + ACTIONS(4282), 2, anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4243), 2, - anon_sym_STAR_STAR, + anon_sym_SLASH, + STATE(2436), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4280), 10, + 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_AMP, - STATE(3366), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5449), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [147416] = 13, - ACTIONS(4239), 1, + anon_sym_CARET, + anon_sym_LT_LT, + [147656] = 10, + ACTIONS(4434), 1, anon_sym_DOT, - ACTIONS(4245), 1, + ACTIONS(4436), 1, + anon_sym_LPAREN, + ACTIONS(4446), 1, anon_sym_LBRACK, - ACTIONS(5121), 1, - anon_sym_operator, - ACTIONS(5459), 1, - sym_identifier, - ACTIONS(5641), 1, - anon_sym_complex, - STATE(3217), 1, - aux_sym_class_definition_repeat2, - STATE(3422), 1, - sym_type_index, - STATE(3535), 1, - sym_operator_name, + ACTIONS(5628), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4241), 2, + ACTIONS(5624), 2, anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4243), 2, - anon_sym_STAR_STAR, + anon_sym_SLASH, + ACTIONS(5634), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2436), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5632), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4280), 5, + anon_sym_GT_GT, + anon_sym_PIPE, anon_sym_AMP, - STATE(3392), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5481), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [147463] = 13, - ACTIONS(4239), 1, + anon_sym_CARET, + anon_sym_LT_LT, + [147697] = 8, + ACTIONS(4434), 1, anon_sym_DOT, - ACTIONS(4245), 1, + ACTIONS(4436), 1, + anon_sym_LPAREN, + ACTIONS(4446), 1, anon_sym_LBRACK, - ACTIONS(5121), 1, - anon_sym_operator, - ACTIONS(5467), 1, - sym_identifier, - ACTIONS(5653), 1, - anon_sym_complex, - STATE(3191), 1, - aux_sym_class_definition_repeat2, - STATE(3422), 1, - sym_type_index, - STATE(3567), 1, - sym_operator_name, + ACTIONS(5628), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4241), 2, + ACTIONS(4282), 2, anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4243), 2, - anon_sym_STAR_STAR, + anon_sym_SLASH, + STATE(2436), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4280), 10, + 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_AMP, - STATE(3375), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5474), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [147510] = 13, - ACTIONS(4239), 1, + anon_sym_CARET, + anon_sym_LT_LT, + [147734] = 9, + ACTIONS(4434), 1, anon_sym_DOT, - ACTIONS(4245), 1, + ACTIONS(4436), 1, + anon_sym_LPAREN, + ACTIONS(4446), 1, anon_sym_LBRACK, - ACTIONS(5121), 1, - anon_sym_operator, - ACTIONS(5467), 1, - sym_identifier, - ACTIONS(5653), 1, - anon_sym_complex, - STATE(3191), 1, - aux_sym_class_definition_repeat2, - STATE(3422), 1, - sym_type_index, - STATE(3567), 1, - sym_operator_name, + ACTIONS(5628), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4241), 2, + ACTIONS(5624), 2, anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4243), 2, + anon_sym_SLASH, + STATE(2436), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5632), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4280), 7, + anon_sym_GT_GT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [147773] = 13, + ACTIONS(4280), 1, + anon_sym_PIPE, + ACTIONS(4434), 1, + anon_sym_DOT, + ACTIONS(4436), 1, + anon_sym_LPAREN, + ACTIONS(4446), 1, + anon_sym_LBRACK, + ACTIONS(5628), 1, anon_sym_STAR_STAR, + ACTIONS(5638), 1, anon_sym_AMP, - STATE(3377), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5505), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [147557] = 2, + ACTIONS(5640), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3720), 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, - [147582] = 10, - ACTIONS(4366), 1, + ACTIONS(5624), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5626), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5634), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2436), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5632), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [147820] = 12, + ACTIONS(4434), 1, anon_sym_DOT, - ACTIONS(4368), 1, + ACTIONS(4436), 1, anon_sym_LPAREN, - ACTIONS(4378), 1, + ACTIONS(4446), 1, anon_sym_LBRACK, - ACTIONS(5564), 1, + ACTIONS(5628), 1, anon_sym_STAR_STAR, + ACTIONS(5640), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5560), 2, + ACTIONS(4280), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5624), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5568), 2, + ACTIONS(5626), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5634), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2439), 2, + STATE(2436), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5566), 3, + ACTIONS(5632), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4304), 5, + [147865] = 11, + ACTIONS(4434), 1, + anon_sym_DOT, + ACTIONS(4436), 1, + anon_sym_LPAREN, + ACTIONS(4446), 1, + anon_sym_LBRACK, + ACTIONS(5628), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5624), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5626), 2, anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5634), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2436), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4280), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, - [147623] = 2, + ACTIONS(5632), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [147908] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5488), 18, - sym__newline, - anon_sym_SEMI, + ACTIONS(3883), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3885), 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, - [147648] = 8, - ACTIONS(4366), 1, + anon_sym_RBRACK, + ACTIONS(3878), 14, anon_sym_DOT, - ACTIONS(4368), 1, anon_sym_LPAREN, - ACTIONS(4378), 1, - anon_sym_LBRACK, - ACTIONS(5564), 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, + [147937] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4306), 2, + ACTIONS(1005), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(2439), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4304), 10, + ACTIONS(1039), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1003), 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, @@ -243382,22 +244364,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [147685] = 4, + [147966] = 8, + ACTIONS(4434), 1, + anon_sym_DOT, + ACTIONS(4436), 1, + anon_sym_LPAREN, + ACTIONS(4446), 1, + anon_sym_LBRACK, + ACTIONS(5628), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3720), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3884), 2, + ACTIONS(4344), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3879), 14, - anon_sym_DOT, - anon_sym_LPAREN, + STATE(2436), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4342), 10, anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -243407,236 +244393,364 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [147714] = 13, - ACTIONS(1356), 1, + [148003] = 12, + ACTIONS(3948), 1, anon_sym_long, - ACTIONS(5109), 1, - anon_sym_LPAREN, - ACTIONS(5618), 1, + ACTIONS(5686), 1, sym_identifier, - ACTIONS(5655), 1, - anon_sym_RPAREN, - STATE(3124), 1, + ACTIONS(5688), 1, + anon_sym_LPAREN, + STATE(3198), 1, sym__signedness, - STATE(3338), 1, + STATE(3409), 1, sym__longness, - STATE(4532), 1, + STATE(5500), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1352), 2, + ACTIONS(3944), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1354), 2, + ACTIONS(3946), 2, anon_sym_char, anon_sym_short, - ACTIONS(1358), 2, + ACTIONS(5587), 2, anon_sym_const, anon_sym_volatile, - STATE(3507), 2, + STATE(3662), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1348), 3, + ACTIONS(3942), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [147761] = 4, + [148047] = 11, + ACTIONS(4261), 1, + anon_sym_LBRACK, + ACTIONS(5113), 1, + anon_sym_operator, + ACTIONS(5391), 1, + sym_identifier, + ACTIONS(5393), 1, + anon_sym_LPAREN, + STATE(3414), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3710), 2, + ACTIONS(4257), 2, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3720), 2, + anon_sym___stdcall, + ACTIONS(4259), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3289), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3549), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5395), 4, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3699), 14, - anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + [148089] = 11, + ACTIONS(4261), 1, + anon_sym_LBRACK, + ACTIONS(5113), 1, + anon_sym_operator, + ACTIONS(5393), 1, anon_sym_LPAREN, - anon_sym_GT_GT, + ACTIONS(5690), 1, + sym_identifier, + STATE(3414), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4257), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4259), 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, - [147790] = 13, - ACTIONS(3701), 1, - anon_sym_DOT, - ACTIONS(4094), 1, + STATE(3274), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3547), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5692), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [148131] = 11, + ACTIONS(4261), 1, + anon_sym_LBRACK, + ACTIONS(5113), 1, anon_sym_operator, - ACTIONS(5509), 1, + ACTIONS(5391), 1, sym_identifier, - ACTIONS(5517), 1, - anon_sym_complex, - ACTIONS(5657), 1, - anon_sym_LBRACK, - STATE(3193), 1, - aux_sym_class_definition_repeat2, - STATE(3409), 1, + ACTIONS(5393), 1, + anon_sym_LPAREN, + STATE(3414), 1, sym_type_index, - STATE(3610), 1, - sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3708), 2, + ACTIONS(4257), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(3724), 2, + ACTIONS(4259), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3393), 2, + STATE(3382), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5463), 4, - sym__newline, - anon_sym_LPAREN, + STATE(3549), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5694), 4, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, - [147837] = 8, - ACTIONS(4366), 1, - anon_sym_DOT, - ACTIONS(4368), 1, - anon_sym_LPAREN, - ACTIONS(4378), 1, + [148173] = 11, + ACTIONS(4261), 1, anon_sym_LBRACK, - ACTIONS(5564), 1, - anon_sym_STAR_STAR, + ACTIONS(5113), 1, + anon_sym_operator, + ACTIONS(5391), 1, + sym_identifier, + ACTIONS(5393), 1, + anon_sym_LPAREN, + STATE(3414), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4344), 2, + ACTIONS(4257), 2, anon_sym_STAR, - anon_sym_SLASH, - STATE(2439), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4342), 10, - 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___stdcall, + ACTIONS(4259), 2, + anon_sym_STAR_STAR, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [147874] = 12, - ACTIONS(4018), 1, + STATE(3382), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3549), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5395), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [148215] = 12, + ACTIONS(1356), 1, anon_sym_long, - ACTIONS(5660), 1, - sym_identifier, - ACTIONS(5662), 1, + ACTIONS(5101), 1, anon_sym_LPAREN, - STATE(3188), 1, + ACTIONS(5658), 1, + sym_identifier, + STATE(3148), 1, sym__signedness, - STATE(3410), 1, + STATE(3367), 1, sym__longness, - STATE(5326), 1, + STATE(4517), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4014), 2, + ACTIONS(1352), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4016), 2, + ACTIONS(1354), 2, anon_sym_char, anon_sym_short, - ACTIONS(5457), 2, + ACTIONS(1358), 2, anon_sym_const, anon_sym_volatile, - STATE(3441), 2, + STATE(3449), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4012), 3, + ACTIONS(1348), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [147918] = 12, - ACTIONS(4018), 1, + [148259] = 12, + ACTIONS(1356), 1, anon_sym_long, - ACTIONS(5664), 1, - sym_identifier, - ACTIONS(5666), 1, + ACTIONS(5101), 1, anon_sym_LPAREN, - STATE(3188), 1, + ACTIONS(5658), 1, + sym_identifier, + STATE(3148), 1, sym__signedness, - STATE(3410), 1, + STATE(3367), 1, sym__longness, - STATE(5587), 1, + STATE(4848), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4014), 2, + ACTIONS(1352), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4016), 2, + ACTIONS(1354), 2, anon_sym_char, anon_sym_short, - ACTIONS(5457), 2, + ACTIONS(1358), 2, anon_sym_const, anon_sym_volatile, - STATE(3430), 2, + STATE(3449), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4012), 3, + ACTIONS(1348), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [147962] = 12, - ACTIONS(4018), 1, + [148303] = 11, + ACTIONS(4261), 1, + anon_sym_LBRACK, + ACTIONS(5113), 1, + anon_sym_operator, + ACTIONS(5420), 1, + sym_identifier, + STATE(3414), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4257), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4259), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + ACTIONS(5422), 2, + anon_sym_COLON, + anon_sym_EQ, + STATE(3271), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3531), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5414), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + [148345] = 12, + ACTIONS(3948), 1, anon_sym_long, - ACTIONS(5660), 1, + ACTIONS(5697), 1, sym_identifier, - ACTIONS(5662), 1, + ACTIONS(5699), 1, anon_sym_LPAREN, - STATE(3188), 1, + STATE(3198), 1, sym__signedness, - STATE(3410), 1, + STATE(3409), 1, sym__longness, - STATE(5254), 1, + STATE(4751), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4014), 2, + ACTIONS(3944), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4016), 2, + ACTIONS(3946), 2, anon_sym_char, anon_sym_short, - ACTIONS(5457), 2, + ACTIONS(5587), 2, anon_sym_const, anon_sym_volatile, - STATE(3441), 2, + STATE(3437), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4012), 3, + ACTIONS(3942), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [148006] = 12, + [148389] = 12, + ACTIONS(4261), 1, + anon_sym_LBRACK, + ACTIONS(5113), 1, + anon_sym_operator, + ACTIONS(5701), 1, + sym_identifier, + ACTIONS(5703), 1, + anon_sym_LPAREN, + STATE(3414), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4257), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4259), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + ACTIONS(5706), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5708), 2, + anon_sym_COLON, + anon_sym_EQ, + STATE(3387), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3560), 2, + sym_operator_name, + sym_c_function_pointer_name, + [148433] = 11, + ACTIONS(4261), 1, + anon_sym_LBRACK, + ACTIONS(5113), 1, + anon_sym_operator, + ACTIONS(5420), 1, + sym_identifier, + STATE(3414), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4257), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4259), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + ACTIONS(5422), 2, + anon_sym_COLON, + anon_sym_EQ, + STATE(3379), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3531), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5414), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + [148475] = 12, ACTIONS(1356), 1, anon_sym_long, - ACTIONS(5109), 1, + ACTIONS(5101), 1, anon_sym_LPAREN, - ACTIONS(5618), 1, + ACTIONS(5658), 1, sym_identifier, - STATE(3124), 1, + STATE(3148), 1, sym__signedness, - STATE(3338), 1, + STATE(3367), 1, sym__longness, - STATE(4324), 1, + STATE(5221), 1, sym_c_type, ACTIONS(3), 2, sym_comment, @@ -243650,24 +244764,149 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1358), 2, anon_sym_const, anon_sym_volatile, - STATE(3507), 2, + STATE(3449), 2, sym_int_type, sym_function_pointer_type, ACTIONS(1348), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [148050] = 4, - ACTIONS(5668), 1, + [148519] = 12, + ACTIONS(4261), 1, + anon_sym_LBRACK, + ACTIONS(5113), 1, + anon_sym_operator, + ACTIONS(5701), 1, + sym_identifier, + ACTIONS(5703), 1, + anon_sym_LPAREN, + STATE(3414), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4257), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4259), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + ACTIONS(5706), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5708), 2, + anon_sym_COLON, + anon_sym_EQ, + STATE(3304), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3560), 2, + sym_operator_name, + sym_c_function_pointer_name, + [148563] = 12, + ACTIONS(4261), 1, + anon_sym_LBRACK, + ACTIONS(5113), 1, + anon_sym_operator, + ACTIONS(5701), 1, + sym_identifier, + ACTIONS(5710), 1, + anon_sym_LPAREN, + STATE(3414), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4257), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4259), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + ACTIONS(5708), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(5713), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3387), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3560), 2, + sym_operator_name, + sym_c_function_pointer_name, + [148607] = 14, + ACTIONS(3707), 1, + anon_sym_LPAREN, + ACTIONS(3718), 1, + sym_identifier, + ACTIONS(5109), 1, + anon_sym_LBRACK, + ACTIONS(5715), 1, + anon_sym_DOT, + ACTIONS(5719), 1, + anon_sym_COLON, + ACTIONS(5721), 1, + anon_sym_EQ, + ACTIONS(5723), 1, + anon_sym_complex, + STATE(3462), 1, + aux_sym_class_definition_repeat2, + STATE(3468), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5105), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(5107), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + ACTIONS(5717), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(3301), 1, + STATE(3751), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [148655] = 6, + ACTIONS(5725), 1, + anon_sym_COMMA, + ACTIONS(5727), 1, + anon_sym_COLON, + ACTIONS(5729), 1, + anon_sym_EQ, + STATE(3172), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2747), 15, + ACTIONS(5731), 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, + [148687] = 5, + ACTIONS(5727), 1, anon_sym_COLON, + ACTIONS(5729), 1, anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5733), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(5731), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -243681,19 +244920,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [148078] = 6, - ACTIONS(5670), 1, + [148717] = 12, + ACTIONS(1356), 1, + anon_sym_long, + ACTIONS(5101), 1, + anon_sym_LPAREN, + ACTIONS(5658), 1, + sym_identifier, + STATE(3148), 1, + sym__signedness, + STATE(3367), 1, + sym__longness, + STATE(4720), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1352), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(1354), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(1358), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3449), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(1348), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [148761] = 4, + ACTIONS(5735), 1, anon_sym_COMMA, - ACTIONS(5672), 1, - anon_sym_COLON, - ACTIONS(5674), 1, - anon_sym_EQ, - STATE(3154), 1, + STATE(3258), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5676), 13, + ACTIONS(5521), 15, + anon_sym_COLON, + anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -243707,114 +244976,175 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [148110] = 12, - ACTIONS(4018), 1, - anon_sym_long, - ACTIONS(5660), 1, + [148789] = 11, + ACTIONS(4261), 1, + anon_sym_LBRACK, + ACTIONS(5113), 1, + anon_sym_operator, + ACTIONS(5393), 1, + anon_sym_LPAREN, + ACTIONS(5420), 1, sym_identifier, - ACTIONS(5662), 1, + STATE(3414), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4257), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4259), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3327), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3531), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5422), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [148831] = 11, + ACTIONS(4261), 1, + anon_sym_LBRACK, + ACTIONS(5113), 1, + anon_sym_operator, + ACTIONS(5393), 1, + anon_sym_LPAREN, + ACTIONS(5420), 1, + sym_identifier, + STATE(3414), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4257), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4259), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3379), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3531), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5738), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [148873] = 12, + ACTIONS(1356), 1, + anon_sym_long, + ACTIONS(5101), 1, anon_sym_LPAREN, - STATE(3188), 1, + ACTIONS(5658), 1, + sym_identifier, + STATE(3148), 1, sym__signedness, - STATE(3410), 1, + STATE(3367), 1, sym__longness, - STATE(4682), 1, + STATE(5326), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4014), 2, + ACTIONS(1352), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4016), 2, + ACTIONS(1354), 2, anon_sym_char, anon_sym_short, - ACTIONS(5457), 2, + ACTIONS(1358), 2, anon_sym_const, anon_sym_volatile, - STATE(3441), 2, + STATE(3449), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4012), 3, + ACTIONS(1348), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [148154] = 12, - ACTIONS(4018), 1, + [148917] = 12, + ACTIONS(5369), 1, anon_sym_long, - ACTIONS(5660), 1, + ACTIONS(5741), 1, sym_identifier, - ACTIONS(5662), 1, + ACTIONS(5743), 1, anon_sym_LPAREN, - STATE(3188), 1, + STATE(3349), 1, sym__signedness, - STATE(3410), 1, + STATE(3519), 1, sym__longness, - STATE(5309), 1, + STATE(5456), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4014), 2, + ACTIONS(5365), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4016), 2, + ACTIONS(5367), 2, anon_sym_char, anon_sym_short, - ACTIONS(5457), 2, + ACTIONS(5587), 2, anon_sym_const, anon_sym_volatile, - STATE(3441), 2, + STATE(3509), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4012), 3, + ACTIONS(5363), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [148198] = 12, - ACTIONS(1356), 1, - anon_sym_long, - ACTIONS(5109), 1, + [148961] = 11, + ACTIONS(4261), 1, + anon_sym_LBRACK, + ACTIONS(5113), 1, + anon_sym_operator, + ACTIONS(5393), 1, anon_sym_LPAREN, - ACTIONS(5618), 1, + ACTIONS(5420), 1, sym_identifier, - STATE(3124), 1, - sym__signedness, - STATE(3338), 1, - sym__longness, - STATE(4504), 1, - sym_c_type, + STATE(3414), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1352), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(1354), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(1358), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3507), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(1348), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [148242] = 12, + ACTIONS(4257), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4259), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3379), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3531), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5422), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [149003] = 12, ACTIONS(1356), 1, anon_sym_long, - ACTIONS(5109), 1, + ACTIONS(5101), 1, anon_sym_LPAREN, - ACTIONS(5618), 1, + ACTIONS(5658), 1, sym_identifier, - STATE(3124), 1, + STATE(3148), 1, sym__signedness, - STATE(3338), 1, + STATE(3367), 1, sym__longness, - STATE(5282), 1, + STATE(5191), 1, sym_c_type, ACTIONS(3), 2, sym_comment, @@ -243828,218 +245158,460 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1358), 2, anon_sym_const, anon_sym_volatile, - STATE(3507), 2, + STATE(3449), 2, sym_int_type, sym_function_pointer_type, ACTIONS(1348), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [148286] = 12, - ACTIONS(4018), 1, + [149047] = 11, + ACTIONS(4261), 1, + anon_sym_LBRACK, + ACTIONS(5113), 1, + anon_sym_operator, + ACTIONS(5690), 1, + sym_identifier, + STATE(3414), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4257), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4259), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + ACTIONS(5692), 2, + anon_sym_COLON, + anon_sym_EQ, + STATE(3386), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3547), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5745), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + [149089] = 11, + ACTIONS(4261), 1, + anon_sym_LBRACK, + ACTIONS(5113), 1, + anon_sym_operator, + ACTIONS(5690), 1, + sym_identifier, + STATE(3414), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4257), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4259), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + ACTIONS(5692), 2, + anon_sym_COLON, + anon_sym_EQ, + STATE(3301), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3547), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5745), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + [149131] = 12, + ACTIONS(4261), 1, + anon_sym_LBRACK, + ACTIONS(5113), 1, + anon_sym_operator, + ACTIONS(5391), 1, + sym_identifier, + ACTIONS(5457), 1, + anon_sym_LPAREN, + STATE(3414), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4257), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4259), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + ACTIONS(5395), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(5460), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3249), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3549), 2, + sym_operator_name, + sym_c_function_pointer_name, + [149175] = 12, + ACTIONS(4261), 1, + anon_sym_LBRACK, + ACTIONS(5113), 1, + anon_sym_operator, + ACTIONS(5391), 1, + sym_identifier, + ACTIONS(5457), 1, + anon_sym_LPAREN, + STATE(3414), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4257), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4259), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + ACTIONS(5460), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5694), 2, + anon_sym_COLON, + anon_sym_EQ, + STATE(3382), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3549), 2, + sym_operator_name, + sym_c_function_pointer_name, + [149219] = 12, + ACTIONS(4261), 1, + anon_sym_LBRACK, + ACTIONS(5113), 1, + anon_sym_operator, + ACTIONS(5391), 1, + sym_identifier, + ACTIONS(5747), 1, + anon_sym_LPAREN, + STATE(3414), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4257), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4259), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + ACTIONS(5395), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(5750), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3253), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3549), 2, + sym_operator_name, + sym_c_function_pointer_name, + [149263] = 12, + ACTIONS(4261), 1, + anon_sym_LBRACK, + ACTIONS(5113), 1, + anon_sym_operator, + ACTIONS(5391), 1, + sym_identifier, + ACTIONS(5747), 1, + anon_sym_LPAREN, + STATE(3414), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4257), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4259), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + ACTIONS(5395), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(5750), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3382), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3549), 2, + sym_operator_name, + sym_c_function_pointer_name, + [149307] = 11, + ACTIONS(4261), 1, + anon_sym_LBRACK, + ACTIONS(5113), 1, + anon_sym_operator, + ACTIONS(5690), 1, + sym_identifier, + STATE(3414), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4257), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4259), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + ACTIONS(5692), 2, + anon_sym_COLON, + anon_sym_EQ, + STATE(3386), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3547), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5750), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + [149349] = 12, + ACTIONS(3948), 1, anon_sym_long, - ACTIONS(5678), 1, + ACTIONS(5697), 1, sym_identifier, - ACTIONS(5680), 1, + ACTIONS(5699), 1, anon_sym_LPAREN, - STATE(3188), 1, + STATE(3198), 1, sym__signedness, - STATE(3410), 1, + STATE(3409), 1, sym__longness, - STATE(5587), 1, + STATE(4865), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4014), 2, + ACTIONS(3944), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4016), 2, + ACTIONS(3946), 2, anon_sym_char, anon_sym_short, - ACTIONS(5457), 2, + ACTIONS(5587), 2, anon_sym_const, anon_sym_volatile, - STATE(3673), 2, + STATE(3437), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4012), 3, + ACTIONS(3942), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [148330] = 12, - ACTIONS(1356), 1, + [149393] = 12, + ACTIONS(3948), 1, anon_sym_long, - ACTIONS(5109), 1, - anon_sym_LPAREN, - ACTIONS(5618), 1, + ACTIONS(5697), 1, sym_identifier, - STATE(3124), 1, + ACTIONS(5699), 1, + anon_sym_LPAREN, + STATE(3198), 1, sym__signedness, - STATE(3338), 1, + STATE(3409), 1, sym__longness, - STATE(5188), 1, + STATE(5333), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1352), 2, + ACTIONS(3944), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1354), 2, + ACTIONS(3946), 2, anon_sym_char, anon_sym_short, - ACTIONS(1358), 2, + ACTIONS(5587), 2, anon_sym_const, anon_sym_volatile, - STATE(3507), 2, + STATE(3437), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1348), 3, + ACTIONS(3942), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [148374] = 12, - ACTIONS(1356), 1, - anon_sym_long, - ACTIONS(5109), 1, + [149437] = 11, + ACTIONS(4261), 1, + anon_sym_LBRACK, + ACTIONS(5113), 1, + anon_sym_operator, + ACTIONS(5393), 1, anon_sym_LPAREN, - ACTIONS(5618), 1, + ACTIONS(5752), 1, sym_identifier, - STATE(3124), 1, - sym__signedness, - STATE(3338), 1, - sym__longness, - STATE(5239), 1, - sym_c_type, + STATE(3414), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1352), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(1354), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(1358), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3507), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(1348), 3, + ACTIONS(4257), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4259), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3402), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3557), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5754), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [149479] = 4, + ACTIONS(5760), 1, + anon_sym_long, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5756), 7, + anon_sym_STAR, + sym_identifier, anon_sym_int, anon_sym_double, anon_sym_complex, - [148418] = 12, - ACTIONS(5351), 1, + anon_sym_operator, + anon_sym___stdcall, + ACTIONS(5758), 9, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(5365), 1, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_AMP, + [149507] = 12, + ACTIONS(1356), 1, anon_sym_long, - ACTIONS(5371), 1, + ACTIONS(5101), 1, + anon_sym_LPAREN, + ACTIONS(5658), 1, sym_identifier, - STATE(3343), 1, + STATE(3148), 1, sym__signedness, - STATE(3543), 1, + STATE(3367), 1, sym__longness, - STATE(4600), 1, + STATE(5199), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5361), 2, + ACTIONS(1352), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(5363), 2, + ACTIONS(1354), 2, anon_sym_char, anon_sym_short, - ACTIONS(5367), 2, + ACTIONS(1358), 2, anon_sym_const, anon_sym_volatile, - STATE(3500), 2, + STATE(3449), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(5359), 3, + ACTIONS(1348), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [148462] = 12, - ACTIONS(5365), 1, + [149551] = 12, + ACTIONS(371), 1, anon_sym_long, - ACTIONS(5682), 1, + ACTIONS(5762), 1, sym_identifier, - ACTIONS(5684), 1, + ACTIONS(5764), 1, anon_sym_LPAREN, - STATE(3343), 1, + STATE(3140), 1, sym__signedness, - STATE(3543), 1, + STATE(3368), 1, sym__longness, - STATE(5439), 1, + STATE(5524), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5361), 2, + ACTIONS(367), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(5363), 2, + ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(5457), 2, + ACTIONS(5587), 2, anon_sym_const, anon_sym_volatile, - STATE(3453), 2, + STATE(3578), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(5359), 3, + ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [148506] = 13, - ACTIONS(1356), 1, - anon_sym_long, - ACTIONS(5121), 1, + [149595] = 11, + ACTIONS(4261), 1, + anon_sym_LBRACK, + ACTIONS(5113), 1, anon_sym_operator, - ACTIONS(5407), 1, + ACTIONS(5393), 1, + anon_sym_LPAREN, + ACTIONS(5766), 1, sym_identifier, - STATE(3124), 1, - sym__signedness, - STATE(3212), 1, - sym_int_type, - STATE(3338), 1, - sym__longness, - STATE(3527), 1, - sym_operator_name, - STATE(4486), 1, - sym_maybe_typed_name, + STATE(3414), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1352), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(1354), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(5411), 2, - anon_sym_const, - anon_sym_volatile, - ACTIONS(1348), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [148552] = 12, + ACTIONS(4257), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4259), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3397), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3571), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5768), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [149637] = 12, ACTIONS(1356), 1, anon_sym_long, - ACTIONS(5109), 1, + ACTIONS(5101), 1, anon_sym_LPAREN, - ACTIONS(5618), 1, + ACTIONS(5658), 1, sym_identifier, - STATE(3124), 1, + STATE(3148), 1, sym__signedness, - STATE(3338), 1, + STATE(3367), 1, sym__longness, - STATE(5191), 1, + STATE(5342), 1, sym_c_type, ACTIONS(3), 2, sym_comment, @@ -244053,209 +245625,186 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1358), 2, anon_sym_const, anon_sym_volatile, - STATE(3507), 2, + STATE(3449), 2, sym_int_type, sym_function_pointer_type, ACTIONS(1348), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [148596] = 4, - ACTIONS(5385), 1, - anon_sym_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4360), 6, + [149681] = 12, + ACTIONS(5355), 1, anon_sym_LPAREN, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_complex, - anon_sym___stdcall, - ACTIONS(4350), 10, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [148624] = 12, - ACTIONS(1356), 1, + ACTIONS(5369), 1, anon_sym_long, - ACTIONS(5455), 1, - anon_sym_LPAREN, - ACTIONS(5686), 1, + ACTIONS(5373), 1, sym_identifier, - STATE(3124), 1, + STATE(3349), 1, sym__signedness, - STATE(3338), 1, + STATE(3519), 1, sym__longness, - STATE(5726), 1, + STATE(5126), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1352), 2, + ACTIONS(5365), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1354), 2, + ACTIONS(5367), 2, anon_sym_char, anon_sym_short, - ACTIONS(5457), 2, + ACTIONS(5371), 2, anon_sym_const, anon_sym_volatile, - STATE(3488), 2, + STATE(3508), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1348), 3, + ACTIONS(5363), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [148668] = 12, - ACTIONS(5351), 1, + [149725] = 12, + ACTIONS(5355), 1, anon_sym_LPAREN, - ACTIONS(5365), 1, + ACTIONS(5369), 1, anon_sym_long, - ACTIONS(5371), 1, + ACTIONS(5373), 1, sym_identifier, - STATE(3343), 1, + STATE(3349), 1, sym__signedness, - STATE(3543), 1, + STATE(3519), 1, sym__longness, - STATE(4631), 1, + STATE(4491), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5361), 2, + ACTIONS(5365), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(5363), 2, + ACTIONS(5367), 2, anon_sym_char, anon_sym_short, - ACTIONS(5367), 2, + ACTIONS(5371), 2, anon_sym_const, anon_sym_volatile, - STATE(3500), 2, + STATE(3508), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(5359), 3, + ACTIONS(5363), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [148712] = 12, - ACTIONS(4018), 1, + [149769] = 13, + ACTIONS(1356), 1, anon_sym_long, - ACTIONS(5660), 1, + ACTIONS(5113), 1, + anon_sym_operator, + ACTIONS(5443), 1, sym_identifier, - ACTIONS(5662), 1, - anon_sym_LPAREN, - STATE(3188), 1, + STATE(3148), 1, sym__signedness, - STATE(3410), 1, + STATE(3153), 1, + sym_int_type, + STATE(3367), 1, sym__longness, - STATE(4731), 1, - sym_c_type, + STATE(3513), 1, + sym_operator_name, + STATE(4566), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4014), 2, + ACTIONS(1352), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4016), 2, + ACTIONS(1354), 2, anon_sym_char, anon_sym_short, - ACTIONS(5457), 2, + ACTIONS(5447), 2, anon_sym_const, anon_sym_volatile, - STATE(3441), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4012), 3, + ACTIONS(1348), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [148756] = 12, - ACTIONS(4018), 1, + [149815] = 12, + ACTIONS(3948), 1, anon_sym_long, - ACTIONS(5660), 1, + ACTIONS(5697), 1, sym_identifier, - ACTIONS(5662), 1, + ACTIONS(5699), 1, anon_sym_LPAREN, - STATE(3188), 1, + STATE(3198), 1, sym__signedness, - STATE(3410), 1, + STATE(3409), 1, sym__longness, - STATE(5243), 1, + STATE(5123), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4014), 2, + ACTIONS(3944), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4016), 2, + ACTIONS(3946), 2, anon_sym_char, anon_sym_short, - ACTIONS(5457), 2, + ACTIONS(5587), 2, anon_sym_const, anon_sym_volatile, - STATE(3441), 2, + STATE(3437), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4012), 3, + ACTIONS(3942), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [148800] = 12, - ACTIONS(4018), 1, + [149859] = 12, + ACTIONS(3948), 1, anon_sym_long, - ACTIONS(5660), 1, + ACTIONS(5697), 1, sym_identifier, - ACTIONS(5662), 1, + ACTIONS(5699), 1, anon_sym_LPAREN, - STATE(3188), 1, + STATE(3198), 1, sym__signedness, - STATE(3410), 1, + STATE(3409), 1, sym__longness, - STATE(4882), 1, + STATE(5358), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4014), 2, + ACTIONS(3944), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4016), 2, + ACTIONS(3946), 2, anon_sym_char, anon_sym_short, - ACTIONS(5457), 2, + ACTIONS(5587), 2, anon_sym_const, anon_sym_volatile, - STATE(3441), 2, + STATE(3437), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4012), 3, + ACTIONS(3942), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [148844] = 12, + [149903] = 12, ACTIONS(1356), 1, anon_sym_long, - ACTIONS(5109), 1, + ACTIONS(5101), 1, anon_sym_LPAREN, - ACTIONS(5618), 1, + ACTIONS(5658), 1, sym_identifier, - STATE(3124), 1, + STATE(3148), 1, sym__signedness, - STATE(3338), 1, + STATE(3367), 1, sym__longness, - STATE(5238), 1, + STATE(5363), 1, sym_c_type, ACTIONS(3), 2, sym_comment, @@ -244269,89 +245818,89 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1358), 2, anon_sym_const, anon_sym_volatile, - STATE(3507), 2, + STATE(3449), 2, sym_int_type, sym_function_pointer_type, ACTIONS(1348), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [148888] = 12, - ACTIONS(1356), 1, + [149947] = 12, + ACTIONS(3948), 1, anon_sym_long, - ACTIONS(5109), 1, - anon_sym_LPAREN, - ACTIONS(5618), 1, + ACTIONS(5770), 1, sym_identifier, - STATE(3124), 1, + ACTIONS(5772), 1, + anon_sym_LPAREN, + STATE(3198), 1, sym__signedness, - STATE(3338), 1, + STATE(3409), 1, sym__longness, - STATE(5255), 1, + STATE(5500), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1352), 2, + ACTIONS(3944), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1354), 2, + ACTIONS(3946), 2, anon_sym_char, anon_sym_short, - ACTIONS(1358), 2, + ACTIONS(5587), 2, anon_sym_const, anon_sym_volatile, - STATE(3507), 2, + STATE(3623), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1348), 3, + ACTIONS(3942), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [148932] = 12, - ACTIONS(1356), 1, - anon_sym_long, - ACTIONS(5109), 1, + [149991] = 12, + ACTIONS(5355), 1, anon_sym_LPAREN, - ACTIONS(5618), 1, + ACTIONS(5369), 1, + anon_sym_long, + ACTIONS(5373), 1, sym_identifier, - STATE(3124), 1, + STATE(3349), 1, sym__signedness, - STATE(3338), 1, + STATE(3519), 1, sym__longness, - STATE(5252), 1, + STATE(4579), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1352), 2, + ACTIONS(5365), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1354), 2, + ACTIONS(5367), 2, anon_sym_char, anon_sym_short, - ACTIONS(1358), 2, + ACTIONS(5371), 2, anon_sym_const, anon_sym_volatile, - STATE(3507), 2, + STATE(3508), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1348), 3, + ACTIONS(5363), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [148976] = 12, + [150035] = 12, ACTIONS(1356), 1, anon_sym_long, - ACTIONS(5109), 1, + ACTIONS(5101), 1, anon_sym_LPAREN, - ACTIONS(5618), 1, + ACTIONS(5658), 1, sym_identifier, - STATE(3124), 1, + STATE(3148), 1, sym__signedness, - STATE(3338), 1, + STATE(3367), 1, sym__longness, - STATE(5279), 1, + STATE(5300), 1, sym_c_type, ACTIONS(3), 2, sym_comment, @@ -244365,217 +245914,272 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1358), 2, anon_sym_const, anon_sym_volatile, - STATE(3507), 2, + STATE(3449), 2, sym_int_type, sym_function_pointer_type, ACTIONS(1348), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [149020] = 12, - ACTIONS(5351), 1, + [150079] = 11, + ACTIONS(4261), 1, + anon_sym_LBRACK, + ACTIONS(5113), 1, + anon_sym_operator, + ACTIONS(5393), 1, anon_sym_LPAREN, - ACTIONS(5365), 1, - anon_sym_long, - ACTIONS(5371), 1, + ACTIONS(5701), 1, sym_identifier, - STATE(3343), 1, - sym__signedness, - STATE(3543), 1, - sym__longness, - STATE(4580), 1, - sym_c_type, + STATE(3414), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5361), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(5363), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(5367), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3500), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(5359), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [149064] = 12, - ACTIONS(4018), 1, + ACTIONS(4257), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4259), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3387), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3560), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5708), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [150121] = 12, + ACTIONS(5355), 1, + anon_sym_LPAREN, + ACTIONS(5369), 1, anon_sym_long, - ACTIONS(5660), 1, + ACTIONS(5373), 1, sym_identifier, - ACTIONS(5662), 1, - anon_sym_LPAREN, - STATE(3188), 1, + STATE(3349), 1, sym__signedness, - STATE(3410), 1, + STATE(3519), 1, sym__longness, - STATE(4789), 1, + STATE(4490), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4014), 2, + ACTIONS(5365), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4016), 2, + ACTIONS(5367), 2, anon_sym_char, anon_sym_short, - ACTIONS(5457), 2, + ACTIONS(5371), 2, anon_sym_const, anon_sym_volatile, - STATE(3441), 2, + STATE(3508), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4012), 3, + ACTIONS(5363), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [149108] = 12, - ACTIONS(4018), 1, + [150165] = 5, + ACTIONS(5774), 1, + anon_sym_DOT, + STATE(3291), 1, + aux_sym_class_definition_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5572), 6, + anon_sym_as, + anon_sym_STAR, + sym_identifier, + anon_sym_complex, + anon_sym_operator, + anon_sym___stdcall, + ACTIONS(5577), 9, + sym__newline, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_AMP, + [150195] = 12, + ACTIONS(3948), 1, anon_sym_long, - ACTIONS(5660), 1, + ACTIONS(5697), 1, sym_identifier, - ACTIONS(5662), 1, + ACTIONS(5699), 1, anon_sym_LPAREN, - STATE(3188), 1, + STATE(3198), 1, sym__signedness, - STATE(3410), 1, + STATE(3409), 1, sym__longness, - STATE(5206), 1, + STATE(5163), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4014), 2, + ACTIONS(3944), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4016), 2, + ACTIONS(3946), 2, anon_sym_char, anon_sym_short, - ACTIONS(5457), 2, + ACTIONS(5587), 2, anon_sym_const, anon_sym_volatile, - STATE(3441), 2, + STATE(3437), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4012), 3, + ACTIONS(3942), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [149152] = 12, - ACTIONS(1356), 1, - anon_sym_long, - ACTIONS(5109), 1, + [150239] = 11, + ACTIONS(4261), 1, + anon_sym_LBRACK, + ACTIONS(5113), 1, + anon_sym_operator, + ACTIONS(5393), 1, anon_sym_LPAREN, - ACTIONS(5618), 1, + ACTIONS(5701), 1, + sym_identifier, + STATE(3414), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4257), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4259), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3278), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3560), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5708), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [150281] = 12, + ACTIONS(3948), 1, + anon_sym_long, + ACTIONS(5697), 1, sym_identifier, - STATE(3124), 1, + ACTIONS(5699), 1, + anon_sym_LPAREN, + STATE(3198), 1, sym__signedness, - STATE(3338), 1, + STATE(3409), 1, sym__longness, - STATE(5179), 1, + STATE(4756), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1352), 2, + ACTIONS(3944), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1354), 2, + ACTIONS(3946), 2, anon_sym_char, anon_sym_short, - ACTIONS(1358), 2, + ACTIONS(5587), 2, anon_sym_const, anon_sym_volatile, - STATE(3507), 2, + STATE(3437), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1348), 3, + ACTIONS(3942), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [149196] = 12, - ACTIONS(4018), 1, + [150325] = 12, + ACTIONS(3948), 1, anon_sym_long, - ACTIONS(5660), 1, + ACTIONS(5697), 1, sym_identifier, - ACTIONS(5662), 1, + ACTIONS(5699), 1, anon_sym_LPAREN, - STATE(3188), 1, + STATE(3198), 1, sym__signedness, - STATE(3410), 1, + STATE(3409), 1, sym__longness, - STATE(4819), 1, + STATE(5258), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4014), 2, + ACTIONS(3944), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4016), 2, + ACTIONS(3946), 2, anon_sym_char, anon_sym_short, - ACTIONS(5457), 2, + ACTIONS(5587), 2, anon_sym_const, anon_sym_volatile, - STATE(3441), 2, + STATE(3437), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4012), 3, + ACTIONS(3942), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [149240] = 12, - ACTIONS(4018), 1, + [150369] = 12, + ACTIONS(1356), 1, anon_sym_long, - ACTIONS(5660), 1, - sym_identifier, - ACTIONS(5662), 1, + ACTIONS(5585), 1, anon_sym_LPAREN, - STATE(3188), 1, + ACTIONS(5777), 1, + sym_identifier, + STATE(3148), 1, sym__signedness, - STATE(3410), 1, + STATE(3367), 1, sym__longness, - STATE(5172), 1, + STATE(5597), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4014), 2, + ACTIONS(1352), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4016), 2, + ACTIONS(1354), 2, anon_sym_char, anon_sym_short, - ACTIONS(5457), 2, + ACTIONS(5587), 2, anon_sym_const, anon_sym_volatile, - STATE(3441), 2, + STATE(3459), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4012), 3, + ACTIONS(1348), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [149284] = 12, + [150413] = 12, ACTIONS(1356), 1, anon_sym_long, - ACTIONS(5109), 1, + ACTIONS(5101), 1, anon_sym_LPAREN, - ACTIONS(5618), 1, + ACTIONS(5658), 1, sym_identifier, - STATE(3124), 1, + STATE(3148), 1, sym__signedness, - STATE(3338), 1, + STATE(3367), 1, sym__longness, - STATE(4637), 1, + STATE(5225), 1, sym_c_type, ACTIONS(3), 2, sym_comment, @@ -244589,410 +246193,471 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1358), 2, anon_sym_const, anon_sym_volatile, - STATE(3507), 2, + STATE(3449), 2, sym_int_type, sym_function_pointer_type, ACTIONS(1348), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [149328] = 12, - ACTIONS(1356), 1, - anon_sym_long, - ACTIONS(5109), 1, + [150457] = 12, + ACTIONS(5355), 1, anon_sym_LPAREN, - ACTIONS(5618), 1, + ACTIONS(5369), 1, + anon_sym_long, + ACTIONS(5373), 1, sym_identifier, - STATE(3124), 1, + STATE(3349), 1, sym__signedness, - STATE(3338), 1, + STATE(3519), 1, sym__longness, - STATE(5234), 1, + STATE(4530), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1352), 2, + ACTIONS(5365), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1354), 2, + ACTIONS(5367), 2, anon_sym_char, anon_sym_short, - ACTIONS(1358), 2, + ACTIONS(5371), 2, anon_sym_const, anon_sym_volatile, - STATE(3507), 2, + STATE(3508), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1348), 3, + ACTIONS(5363), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [149372] = 12, - ACTIONS(1356), 1, + [150501] = 12, + ACTIONS(3948), 1, anon_sym_long, - ACTIONS(5109), 1, - anon_sym_LPAREN, - ACTIONS(5618), 1, + ACTIONS(5697), 1, sym_identifier, - STATE(3124), 1, + ACTIONS(5699), 1, + anon_sym_LPAREN, + STATE(3198), 1, sym__signedness, - STATE(3338), 1, + STATE(3409), 1, sym__longness, - STATE(5207), 1, + STATE(4811), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1352), 2, + ACTIONS(3944), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1354), 2, + ACTIONS(3946), 2, anon_sym_char, anon_sym_short, - ACTIONS(1358), 2, + ACTIONS(5587), 2, anon_sym_const, anon_sym_volatile, - STATE(3507), 2, + STATE(3437), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1348), 3, + ACTIONS(3942), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [149416] = 12, - ACTIONS(4018), 1, + [150545] = 12, + ACTIONS(3948), 1, anon_sym_long, - ACTIONS(5660), 1, + ACTIONS(5697), 1, sym_identifier, - ACTIONS(5662), 1, + ACTIONS(5699), 1, anon_sym_LPAREN, - STATE(3188), 1, + STATE(3198), 1, sym__signedness, - STATE(3410), 1, + STATE(3409), 1, sym__longness, - STATE(4852), 1, + STATE(5178), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4014), 2, + ACTIONS(3944), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4016), 2, + ACTIONS(3946), 2, anon_sym_char, anon_sym_short, - ACTIONS(5457), 2, + ACTIONS(5587), 2, anon_sym_const, anon_sym_volatile, - STATE(3441), 2, + STATE(3437), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4012), 3, + ACTIONS(3942), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [149460] = 12, - ACTIONS(4018), 1, + [150589] = 11, + ACTIONS(4261), 1, + anon_sym_LBRACK, + ACTIONS(5113), 1, + anon_sym_operator, + ACTIONS(5752), 1, + sym_identifier, + STATE(3414), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4257), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4259), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + ACTIONS(5754), 2, + anon_sym_COLON, + anon_sym_EQ, + STATE(3402), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3557), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5779), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + [150631] = 12, + ACTIONS(3948), 1, anon_sym_long, - ACTIONS(5660), 1, + ACTIONS(5697), 1, sym_identifier, - ACTIONS(5662), 1, + ACTIONS(5699), 1, anon_sym_LPAREN, - STATE(3188), 1, + STATE(3198), 1, sym__signedness, - STATE(3410), 1, + STATE(3409), 1, sym__longness, - STATE(5220), 1, + STATE(4846), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4014), 2, + ACTIONS(3944), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4016), 2, + ACTIONS(3946), 2, anon_sym_char, anon_sym_short, - ACTIONS(5457), 2, + ACTIONS(5587), 2, anon_sym_const, anon_sym_volatile, - STATE(3441), 2, + STATE(3437), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4012), 3, + ACTIONS(3942), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [149504] = 12, - ACTIONS(1356), 1, + [150675] = 12, + ACTIONS(3948), 1, anon_sym_long, - ACTIONS(5109), 1, - anon_sym_LPAREN, - ACTIONS(5618), 1, + ACTIONS(5697), 1, sym_identifier, - STATE(3124), 1, + ACTIONS(5699), 1, + anon_sym_LPAREN, + STATE(3198), 1, sym__signedness, - STATE(3338), 1, + STATE(3409), 1, sym__longness, - STATE(5303), 1, + STATE(5167), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1352), 2, + ACTIONS(3944), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1354), 2, + ACTIONS(3946), 2, anon_sym_char, anon_sym_short, - ACTIONS(1358), 2, + ACTIONS(5587), 2, anon_sym_const, anon_sym_volatile, - STATE(3507), 2, + STATE(3437), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1348), 3, + ACTIONS(3942), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [149548] = 12, - ACTIONS(5351), 1, + [150719] = 12, + ACTIONS(4261), 1, + anon_sym_LBRACK, + ACTIONS(5113), 1, + anon_sym_operator, + ACTIONS(5766), 1, + sym_identifier, + ACTIONS(5781), 1, anon_sym_LPAREN, - ACTIONS(5365), 1, + STATE(3414), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4257), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4259), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + ACTIONS(5768), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(5784), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3397), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3571), 2, + sym_operator_name, + sym_c_function_pointer_name, + [150763] = 12, + ACTIONS(3948), 1, anon_sym_long, - ACTIONS(5371), 1, + ACTIONS(5697), 1, sym_identifier, - STATE(3343), 1, + ACTIONS(5699), 1, + anon_sym_LPAREN, + STATE(3198), 1, sym__signedness, - STATE(3543), 1, + STATE(3409), 1, sym__longness, - STATE(5002), 1, + STATE(4881), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5361), 2, + ACTIONS(3944), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(5363), 2, + ACTIONS(3946), 2, anon_sym_char, anon_sym_short, - ACTIONS(5367), 2, + ACTIONS(5587), 2, anon_sym_const, anon_sym_volatile, - STATE(3500), 2, + STATE(3437), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(5359), 3, + ACTIONS(3942), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [149592] = 12, - ACTIONS(4018), 1, + [150807] = 12, + ACTIONS(3948), 1, anon_sym_long, - ACTIONS(5660), 1, + ACTIONS(5697), 1, sym_identifier, - ACTIONS(5662), 1, + ACTIONS(5699), 1, anon_sym_LPAREN, - STATE(3188), 1, + STATE(3198), 1, sym__signedness, - STATE(3410), 1, + STATE(3409), 1, sym__longness, - STATE(4878), 1, + STATE(5204), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4014), 2, + ACTIONS(3944), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4016), 2, + ACTIONS(3946), 2, anon_sym_char, anon_sym_short, - ACTIONS(5457), 2, + ACTIONS(5587), 2, anon_sym_const, anon_sym_volatile, - STATE(3441), 2, + STATE(3437), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4012), 3, + ACTIONS(3942), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [149636] = 12, - ACTIONS(4018), 1, + [150851] = 12, + ACTIONS(3948), 1, anon_sym_long, - ACTIONS(5660), 1, + ACTIONS(5697), 1, sym_identifier, - ACTIONS(5662), 1, + ACTIONS(5699), 1, anon_sym_LPAREN, - STATE(3188), 1, + STATE(3198), 1, sym__signedness, - STATE(3410), 1, + STATE(3409), 1, sym__longness, - STATE(5287), 1, + STATE(4908), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4014), 2, + ACTIONS(3944), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4016), 2, + ACTIONS(3946), 2, anon_sym_char, anon_sym_short, - ACTIONS(5457), 2, + ACTIONS(5587), 2, anon_sym_const, anon_sym_volatile, - STATE(3441), 2, + STATE(3437), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4012), 3, + ACTIONS(3942), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [149680] = 12, - ACTIONS(1356), 1, + [150895] = 12, + ACTIONS(3948), 1, anon_sym_long, - ACTIONS(5109), 1, - anon_sym_LPAREN, - ACTIONS(5618), 1, + ACTIONS(5697), 1, sym_identifier, - STATE(3124), 1, + ACTIONS(5699), 1, + anon_sym_LPAREN, + STATE(3198), 1, sym__signedness, - STATE(3338), 1, + STATE(3409), 1, sym__longness, - STATE(5354), 1, + STATE(5256), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1352), 2, + ACTIONS(3944), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1354), 2, + ACTIONS(3946), 2, anon_sym_char, anon_sym_short, - ACTIONS(1358), 2, + ACTIONS(5587), 2, anon_sym_const, anon_sym_volatile, - STATE(3507), 2, + STATE(3437), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1348), 3, + ACTIONS(3942), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [149724] = 12, - ACTIONS(1356), 1, + [150939] = 12, + ACTIONS(3948), 1, anon_sym_long, - ACTIONS(5109), 1, - anon_sym_LPAREN, - ACTIONS(5618), 1, + ACTIONS(5786), 1, sym_identifier, - STATE(3124), 1, + ACTIONS(5788), 1, + anon_sym_LPAREN, + STATE(3198), 1, sym__signedness, - STATE(3338), 1, + STATE(3409), 1, sym__longness, - STATE(5183), 1, + STATE(5500), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1352), 2, + ACTIONS(3944), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1354), 2, + ACTIONS(3946), 2, anon_sym_char, anon_sym_short, - ACTIONS(1358), 2, + ACTIONS(5587), 2, anon_sym_const, anon_sym_volatile, - STATE(3507), 2, + STATE(3425), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1348), 3, + ACTIONS(3942), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [149768] = 12, - ACTIONS(4018), 1, + [150983] = 12, + ACTIONS(3948), 1, anon_sym_long, - ACTIONS(5660), 1, + ACTIONS(5697), 1, sym_identifier, - ACTIONS(5662), 1, + ACTIONS(5699), 1, anon_sym_LPAREN, - STATE(3188), 1, + STATE(3198), 1, sym__signedness, - STATE(3410), 1, + STATE(3409), 1, sym__longness, - STATE(5347), 1, + STATE(4933), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4014), 2, + ACTIONS(3944), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4016), 2, + ACTIONS(3946), 2, anon_sym_char, anon_sym_short, - ACTIONS(5457), 2, + ACTIONS(5587), 2, anon_sym_const, anon_sym_volatile, - STATE(3441), 2, + STATE(3437), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4012), 3, + ACTIONS(3942), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [149812] = 12, - ACTIONS(1356), 1, + [151027] = 12, + ACTIONS(3948), 1, anon_sym_long, - ACTIONS(5109), 1, - anon_sym_LPAREN, - ACTIONS(5618), 1, + ACTIONS(5697), 1, sym_identifier, - STATE(3124), 1, + ACTIONS(5699), 1, + anon_sym_LPAREN, + STATE(3198), 1, sym__signedness, - STATE(3338), 1, + STATE(3409), 1, sym__longness, - STATE(5323), 1, + STATE(5354), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1352), 2, + ACTIONS(3944), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1354), 2, + ACTIONS(3946), 2, anon_sym_char, anon_sym_short, - ACTIONS(1358), 2, + ACTIONS(5587), 2, anon_sym_const, anon_sym_volatile, - STATE(3507), 2, + STATE(3437), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1348), 3, + ACTIONS(3942), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [149856] = 6, - ACTIONS(5672), 1, - anon_sym_COLON, - ACTIONS(5674), 1, - anon_sym_EQ, - ACTIONS(5688), 1, + [151071] = 4, + ACTIONS(5790), 1, anon_sym_COMMA, - STATE(3234), 1, + STATE(3258), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5676), 13, + ACTIONS(2715), 15, + anon_sym_COLON, + anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -245006,454 +246671,390 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [149888] = 12, - ACTIONS(4018), 1, + [151099] = 12, + ACTIONS(3948), 1, anon_sym_long, - ACTIONS(5660), 1, + ACTIONS(5697), 1, sym_identifier, - ACTIONS(5662), 1, + ACTIONS(5699), 1, anon_sym_LPAREN, - STATE(3188), 1, + STATE(3198), 1, sym__signedness, - STATE(3410), 1, + STATE(3409), 1, sym__longness, - STATE(5246), 1, + STATE(5261), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4014), 2, + ACTIONS(3944), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4016), 2, + ACTIONS(3946), 2, anon_sym_char, anon_sym_short, - ACTIONS(5457), 2, + ACTIONS(5587), 2, anon_sym_const, anon_sym_volatile, - STATE(3441), 2, + STATE(3437), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4012), 3, + ACTIONS(3942), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [149932] = 5, - ACTIONS(5690), 1, - anon_sym_DOT, - STATE(3278), 1, - aux_sym_class_definition_repeat2, + [151143] = 11, + ACTIONS(4261), 1, + anon_sym_LBRACK, + ACTIONS(5113), 1, + anon_sym_operator, + ACTIONS(5420), 1, + sym_identifier, + STATE(3414), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5493), 6, - anon_sym_as, + ACTIONS(4257), 2, anon_sym_STAR, - sym_identifier, - anon_sym_complex, - anon_sym_operator, anon_sym___stdcall, - ACTIONS(5498), 9, - sym__newline, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(4259), 2, anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, anon_sym_AMP, - [149962] = 12, - ACTIONS(4018), 1, - anon_sym_long, - ACTIONS(5660), 1, - sym_identifier, - ACTIONS(5662), 1, - anon_sym_LPAREN, - STATE(3188), 1, - sym__signedness, - STATE(3410), 1, - sym__longness, - STATE(5152), 1, - sym_c_type, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4014), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(4016), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(5457), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3441), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4012), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [150006] = 12, - ACTIONS(1356), 1, - anon_sym_long, - ACTIONS(5109), 1, + ACTIONS(5738), 2, + anon_sym_COLON, + anon_sym_EQ, + STATE(3379), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3531), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5487), 3, anon_sym_LPAREN, - ACTIONS(5618), 1, - sym_identifier, - STATE(3124), 1, - sym__signedness, - STATE(3338), 1, - sym__longness, - STATE(5253), 1, - sym_c_type, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1352), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(1354), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(1358), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3507), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(1348), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [150050] = 12, - ACTIONS(4018), 1, + anon_sym_RPAREN, + anon_sym_COMMA, + [151185] = 12, + ACTIONS(3948), 1, anon_sym_long, - ACTIONS(5660), 1, + ACTIONS(5697), 1, sym_identifier, - ACTIONS(5662), 1, + ACTIONS(5699), 1, anon_sym_LPAREN, - STATE(3188), 1, + STATE(3198), 1, sym__signedness, - STATE(3410), 1, + STATE(3409), 1, sym__longness, - STATE(4645), 1, + STATE(5165), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4014), 2, + ACTIONS(3944), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4016), 2, + ACTIONS(3946), 2, anon_sym_char, anon_sym_short, - ACTIONS(5457), 2, + ACTIONS(5587), 2, anon_sym_const, anon_sym_volatile, - STATE(3441), 2, + STATE(3437), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4012), 3, + ACTIONS(3942), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [150094] = 12, - ACTIONS(4018), 1, - anon_sym_long, - ACTIONS(5660), 1, - sym_identifier, - ACTIONS(5662), 1, - anon_sym_LPAREN, - STATE(3188), 1, - sym__signedness, - STATE(3410), 1, - sym__longness, - STATE(5242), 1, - sym_c_type, + [151229] = 6, + ACTIONS(5727), 1, + anon_sym_COLON, + ACTIONS(5729), 1, + anon_sym_EQ, + ACTIONS(5792), 1, + anon_sym_COMMA, + STATE(3312), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4014), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(4016), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(5457), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3441), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4012), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [150138] = 12, - ACTIONS(4018), 1, + ACTIONS(5731), 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, + [151261] = 12, + ACTIONS(3948), 1, anon_sym_long, - ACTIONS(5660), 1, + ACTIONS(5697), 1, sym_identifier, - ACTIONS(5662), 1, + ACTIONS(5699), 1, anon_sym_LPAREN, - STATE(3188), 1, + STATE(3198), 1, sym__signedness, - STATE(3410), 1, + STATE(3409), 1, sym__longness, - STATE(5286), 1, + STATE(5257), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4014), 2, + ACTIONS(3944), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4016), 2, + ACTIONS(3946), 2, anon_sym_char, anon_sym_short, - ACTIONS(5457), 2, + ACTIONS(5587), 2, anon_sym_const, anon_sym_volatile, - STATE(3441), 2, + STATE(3437), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4012), 3, + ACTIONS(3942), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [150182] = 12, - ACTIONS(4018), 1, + [151305] = 12, + ACTIONS(3948), 1, anon_sym_long, - ACTIONS(5660), 1, + ACTIONS(5697), 1, sym_identifier, - ACTIONS(5662), 1, + ACTIONS(5699), 1, anon_sym_LPAREN, - STATE(3188), 1, + STATE(3198), 1, sym__signedness, - STATE(3410), 1, + STATE(3409), 1, sym__longness, - STATE(5164), 1, + STATE(5302), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4014), 2, + ACTIONS(3944), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4016), 2, + ACTIONS(3946), 2, anon_sym_char, anon_sym_short, - ACTIONS(5457), 2, + ACTIONS(5587), 2, anon_sym_const, anon_sym_volatile, - STATE(3441), 2, + STATE(3437), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4012), 3, + ACTIONS(3942), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [150226] = 12, - ACTIONS(4018), 1, + [151349] = 12, + ACTIONS(3948), 1, anon_sym_long, - ACTIONS(5660), 1, + ACTIONS(5697), 1, sym_identifier, - ACTIONS(5662), 1, + ACTIONS(5699), 1, anon_sym_LPAREN, - STATE(3188), 1, + STATE(3198), 1, sym__signedness, - STATE(3410), 1, + STATE(3409), 1, sym__longness, - STATE(5244), 1, + STATE(5174), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4014), 2, + ACTIONS(3944), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4016), 2, + ACTIONS(3946), 2, anon_sym_char, anon_sym_short, - ACTIONS(5457), 2, + ACTIONS(5587), 2, anon_sym_const, anon_sym_volatile, - STATE(3441), 2, + STATE(3437), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4012), 3, + ACTIONS(3942), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [150270] = 12, - ACTIONS(4018), 1, + [151393] = 12, + ACTIONS(3948), 1, anon_sym_long, - ACTIONS(5660), 1, + ACTIONS(5697), 1, sym_identifier, - ACTIONS(5662), 1, + ACTIONS(5699), 1, anon_sym_LPAREN, - STATE(3188), 1, + STATE(3198), 1, sym__signedness, - STATE(3410), 1, + STATE(3409), 1, sym__longness, - STATE(5245), 1, + STATE(5259), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4014), 2, + ACTIONS(3944), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4016), 2, + ACTIONS(3946), 2, anon_sym_char, anon_sym_short, - ACTIONS(5457), 2, + ACTIONS(5587), 2, anon_sym_const, anon_sym_volatile, - STATE(3441), 2, + STATE(3437), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4012), 3, + ACTIONS(3942), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [150314] = 12, - ACTIONS(4018), 1, + [151437] = 12, + ACTIONS(3948), 1, anon_sym_long, - ACTIONS(5660), 1, + ACTIONS(5697), 1, sym_identifier, - ACTIONS(5662), 1, + ACTIONS(5699), 1, anon_sym_LPAREN, - STATE(3188), 1, + STATE(3198), 1, sym__signedness, - STATE(3410), 1, + STATE(3409), 1, sym__longness, - STATE(5175), 1, + STATE(5260), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4014), 2, + ACTIONS(3944), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4016), 2, + ACTIONS(3946), 2, anon_sym_char, anon_sym_short, - ACTIONS(5457), 2, + ACTIONS(5587), 2, anon_sym_const, anon_sym_volatile, - STATE(3441), 2, + STATE(3437), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4012), 3, + ACTIONS(3942), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [150358] = 12, - ACTIONS(4018), 1, + [151481] = 12, + ACTIONS(3948), 1, anon_sym_long, - ACTIONS(5660), 1, + ACTIONS(5697), 1, sym_identifier, - ACTIONS(5662), 1, + ACTIONS(5699), 1, anon_sym_LPAREN, - STATE(3188), 1, + STATE(3198), 1, sym__signedness, - STATE(3410), 1, + STATE(3409), 1, sym__longness, - STATE(5247), 1, + STATE(5183), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4014), 2, + ACTIONS(3944), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4016), 2, + ACTIONS(3946), 2, anon_sym_char, anon_sym_short, - ACTIONS(5457), 2, + ACTIONS(5587), 2, anon_sym_const, anon_sym_volatile, - STATE(3441), 2, + STATE(3437), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4012), 3, + ACTIONS(3942), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [150402] = 12, - ACTIONS(4018), 1, + [151525] = 12, + ACTIONS(3948), 1, anon_sym_long, - ACTIONS(5660), 1, + ACTIONS(5697), 1, sym_identifier, - ACTIONS(5662), 1, + ACTIONS(5699), 1, anon_sym_LPAREN, - STATE(3188), 1, + STATE(3198), 1, sym__signedness, - STATE(3410), 1, + STATE(3409), 1, sym__longness, - STATE(5248), 1, + STATE(5262), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4014), 2, + ACTIONS(3944), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4016), 2, + ACTIONS(3946), 2, anon_sym_char, anon_sym_short, - ACTIONS(5457), 2, + ACTIONS(5587), 2, anon_sym_const, anon_sym_volatile, - STATE(3441), 2, + STATE(3437), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4012), 3, + ACTIONS(3942), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [150446] = 12, - ACTIONS(4018), 1, + [151569] = 12, + ACTIONS(3948), 1, anon_sym_long, - ACTIONS(5660), 1, + ACTIONS(5697), 1, sym_identifier, - ACTIONS(5662), 1, + ACTIONS(5699), 1, anon_sym_LPAREN, - STATE(3188), 1, + STATE(3198), 1, sym__signedness, - STATE(3410), 1, + STATE(3409), 1, sym__longness, - STATE(5289), 1, + STATE(5263), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4014), 2, + ACTIONS(3944), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4016), 2, + ACTIONS(3946), 2, anon_sym_char, anon_sym_short, - ACTIONS(5457), 2, + ACTIONS(5587), 2, anon_sym_const, anon_sym_volatile, - STATE(3441), 2, + STATE(3437), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4012), 3, + ACTIONS(3942), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [150490] = 4, - ACTIONS(5697), 1, + [151613] = 4, + ACTIONS(5794), 1, anon_sym_long, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5693), 7, + ACTIONS(5756), 7, anon_sym_STAR, sym_identifier, anon_sym_int, @@ -245461,60 +247062,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_complex, anon_sym_operator, anon_sym___stdcall, - ACTIONS(5695), 9, + ACTIONS(5758), 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, - [150518] = 12, - ACTIONS(371), 1, - anon_sym_long, - ACTIONS(5699), 1, - sym_identifier, - ACTIONS(5701), 1, - anon_sym_LPAREN, - STATE(3130), 1, - sym__signedness, - STATE(3321), 1, - sym__longness, - STATE(5507), 1, - sym_c_type, - 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(5457), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3546), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(365), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [150562] = 12, + [151641] = 12, ACTIONS(1356), 1, anon_sym_long, - ACTIONS(5109), 1, + ACTIONS(5101), 1, anon_sym_LPAREN, - ACTIONS(5618), 1, + ACTIONS(5658), 1, sym_identifier, - STATE(3124), 1, + STATE(3148), 1, sym__signedness, - STATE(3338), 1, + STATE(3367), 1, sym__longness, - STATE(5258), 1, + STATE(5272), 1, sym_c_type, ACTIONS(3), 2, sym_comment, @@ -245528,89 +247097,88 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1358), 2, anon_sym_const, anon_sym_volatile, - STATE(3507), 2, + STATE(3449), 2, sym_int_type, sym_function_pointer_type, ACTIONS(1348), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [150606] = 12, - ACTIONS(5351), 1, + [151685] = 11, + ACTIONS(4261), 1, + anon_sym_LBRACK, + ACTIONS(5113), 1, + anon_sym_operator, + ACTIONS(5393), 1, anon_sym_LPAREN, - ACTIONS(5365), 1, - anon_sym_long, - ACTIONS(5371), 1, + ACTIONS(5690), 1, sym_identifier, - STATE(3343), 1, - sym__signedness, - STATE(3543), 1, - sym__longness, - STATE(4538), 1, - sym_c_type, + STATE(3414), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5361), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(5363), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(5367), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3500), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(5359), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [150650] = 12, - ACTIONS(1356), 1, - anon_sym_long, - ACTIONS(5109), 1, + ACTIONS(4257), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4259), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3386), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3547), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5692), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [151727] = 12, + ACTIONS(5355), 1, anon_sym_LPAREN, - ACTIONS(5618), 1, + ACTIONS(5369), 1, + anon_sym_long, + ACTIONS(5373), 1, sym_identifier, - STATE(3124), 1, + STATE(3349), 1, sym__signedness, - STATE(3338), 1, + STATE(3519), 1, sym__longness, - STATE(5216), 1, + STATE(4541), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1352), 2, + ACTIONS(5365), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1354), 2, + ACTIONS(5367), 2, anon_sym_char, anon_sym_short, - ACTIONS(1358), 2, + ACTIONS(5371), 2, anon_sym_const, anon_sym_volatile, - STATE(3507), 2, + STATE(3508), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1348), 3, + ACTIONS(5363), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [150694] = 12, + [151771] = 12, ACTIONS(1356), 1, anon_sym_long, - ACTIONS(5109), 1, + ACTIONS(5101), 1, anon_sym_LPAREN, - ACTIONS(5618), 1, + ACTIONS(5658), 1, sym_identifier, - STATE(3124), 1, + STATE(3148), 1, sym__signedness, - STATE(3338), 1, + STATE(3367), 1, sym__longness, - STATE(5224), 1, + STATE(5233), 1, sym_c_type, ACTIONS(3), 2, sym_comment, @@ -245624,25 +247192,50 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1358), 2, anon_sym_const, anon_sym_volatile, - STATE(3507), 2, + STATE(3449), 2, sym_int_type, sym_function_pointer_type, ACTIONS(1348), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [150738] = 12, + [151815] = 5, + ACTIONS(5796), 1, + anon_sym_DOT, + STATE(3330), 1, + aux_sym_class_definition_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5572), 6, + anon_sym_as, + anon_sym_STAR, + sym_identifier, + anon_sym_complex, + anon_sym_operator, + anon_sym___stdcall, + ACTIONS(5577), 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, + [151845] = 12, ACTIONS(1356), 1, anon_sym_long, - ACTIONS(5109), 1, + ACTIONS(5101), 1, anon_sym_LPAREN, - ACTIONS(5618), 1, + ACTIONS(5658), 1, sym_identifier, - STATE(3124), 1, + STATE(3148), 1, sym__signedness, - STATE(3338), 1, + STATE(3367), 1, sym__longness, - STATE(4712), 1, + STATE(5242), 1, sym_c_type, ACTIONS(3), 2, sym_comment, @@ -245656,25 +247249,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1358), 2, anon_sym_const, anon_sym_volatile, - STATE(3507), 2, + STATE(3449), 2, sym_int_type, sym_function_pointer_type, ACTIONS(1348), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [150782] = 12, + [151889] = 12, ACTIONS(1356), 1, anon_sym_long, - ACTIONS(5109), 1, + ACTIONS(5101), 1, anon_sym_LPAREN, - ACTIONS(5618), 1, + ACTIONS(5658), 1, sym_identifier, - STATE(3124), 1, + STATE(3148), 1, sym__signedness, - STATE(3338), 1, + STATE(3367), 1, sym__longness, - STATE(5230), 1, + STATE(5248), 1, sym_c_type, ACTIONS(3), 2, sym_comment, @@ -245688,50 +247281,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1358), 2, anon_sym_const, anon_sym_volatile, - STATE(3507), 2, + STATE(3449), 2, sym_int_type, sym_function_pointer_type, ACTIONS(1348), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [150826] = 5, - ACTIONS(5672), 1, - anon_sym_COLON, - ACTIONS(5674), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5703), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(5676), 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, - [150856] = 12, + [151933] = 12, ACTIONS(1356), 1, anon_sym_long, - ACTIONS(5109), 1, + ACTIONS(5101), 1, anon_sym_LPAREN, - ACTIONS(5618), 1, + ACTIONS(5658), 1, sym_identifier, - STATE(3124), 1, + STATE(3148), 1, sym__signedness, - STATE(3338), 1, + STATE(3367), 1, sym__longness, - STATE(5233), 1, + STATE(5252), 1, sym_c_type, ACTIONS(3), 2, sym_comment, @@ -245745,49 +247313,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1358), 2, anon_sym_const, anon_sym_volatile, - STATE(3507), 2, + STATE(3449), 2, sym_int_type, sym_function_pointer_type, ACTIONS(1348), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [150900] = 4, - ACTIONS(5705), 1, - anon_sym_COMMA, - STATE(3301), 1, - aux_sym__patterns_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5488), 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, - [150928] = 12, + [151977] = 12, ACTIONS(1356), 1, anon_sym_long, - ACTIONS(5109), 1, + ACTIONS(5101), 1, anon_sym_LPAREN, - ACTIONS(5618), 1, + ACTIONS(5658), 1, sym_identifier, - STATE(3124), 1, + STATE(3148), 1, sym__signedness, - STATE(3338), 1, + STATE(3367), 1, sym__longness, - STATE(5154), 1, + STATE(5311), 1, sym_c_type, ACTIONS(3), 2, sym_comment, @@ -245801,57 +247345,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1358), 2, anon_sym_const, anon_sym_volatile, - STATE(3507), 2, + STATE(3449), 2, sym_int_type, sym_function_pointer_type, ACTIONS(1348), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [150972] = 12, - ACTIONS(4018), 1, - anon_sym_long, - ACTIONS(5708), 1, - sym_identifier, - ACTIONS(5710), 1, - anon_sym_LPAREN, - STATE(3188), 1, - sym__signedness, - STATE(3410), 1, - sym__longness, - STATE(5587), 1, - sym_c_type, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4014), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(4016), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(5457), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3686), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4012), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [151016] = 12, + [152021] = 12, ACTIONS(1356), 1, anon_sym_long, - ACTIONS(5109), 1, + ACTIONS(5101), 1, anon_sym_LPAREN, - ACTIONS(5618), 1, + ACTIONS(5658), 1, sym_identifier, - STATE(3124), 1, + STATE(3148), 1, sym__signedness, - STATE(3338), 1, + STATE(3367), 1, sym__longness, - STATE(5265), 1, + STATE(5297), 1, sym_c_type, ACTIONS(3), 2, sym_comment, @@ -245865,25 +247377,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1358), 2, anon_sym_const, anon_sym_volatile, - STATE(3507), 2, + STATE(3449), 2, sym_int_type, sym_function_pointer_type, ACTIONS(1348), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [151060] = 12, + [152065] = 12, ACTIONS(1356), 1, anon_sym_long, - ACTIONS(5109), 1, + ACTIONS(5101), 1, anon_sym_LPAREN, - ACTIONS(5618), 1, + ACTIONS(5658), 1, sym_identifier, - STATE(3124), 1, + STATE(3148), 1, sym__signedness, - STATE(3338), 1, + STATE(3367), 1, sym__longness, - STATE(5273), 1, + STATE(5278), 1, sym_c_type, ACTIONS(3), 2, sym_comment, @@ -245897,25 +247409,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1358), 2, anon_sym_const, anon_sym_volatile, - STATE(3507), 2, + STATE(3449), 2, sym_int_type, sym_function_pointer_type, ACTIONS(1348), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [151104] = 12, + [152109] = 12, ACTIONS(1356), 1, anon_sym_long, - ACTIONS(5109), 1, + ACTIONS(5101), 1, anon_sym_LPAREN, - ACTIONS(5618), 1, + ACTIONS(5658), 1, sym_identifier, - STATE(3124), 1, + STATE(3148), 1, sym__signedness, - STATE(3338), 1, + STATE(3367), 1, sym__longness, - STATE(5276), 1, + STATE(4368), 1, sym_c_type, ACTIONS(3), 2, sym_comment, @@ -245929,25 +247441,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1358), 2, anon_sym_const, anon_sym_volatile, - STATE(3507), 2, + STATE(3449), 2, sym_int_type, sym_function_pointer_type, ACTIONS(1348), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [151148] = 12, + [152153] = 12, ACTIONS(1356), 1, anon_sym_long, - ACTIONS(5109), 1, + ACTIONS(5101), 1, anon_sym_LPAREN, - ACTIONS(5618), 1, + ACTIONS(5658), 1, sym_identifier, - STATE(3124), 1, + STATE(3148), 1, sym__signedness, - STATE(3338), 1, + STATE(3367), 1, sym__longness, - STATE(5280), 1, + STATE(5285), 1, sym_c_type, ACTIONS(3), 2, sym_comment, @@ -245961,25 +247473,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1358), 2, anon_sym_const, anon_sym_volatile, - STATE(3507), 2, + STATE(3449), 2, sym_int_type, sym_function_pointer_type, ACTIONS(1348), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [151192] = 12, + [152197] = 12, ACTIONS(1356), 1, anon_sym_long, - ACTIONS(5109), 1, + ACTIONS(5101), 1, anon_sym_LPAREN, - ACTIONS(5618), 1, + ACTIONS(5658), 1, sym_identifier, - STATE(3124), 1, + STATE(3148), 1, sym__signedness, - STATE(3338), 1, + STATE(3367), 1, sym__longness, - STATE(5308), 1, + STATE(5289), 1, sym_c_type, ACTIONS(3), 2, sym_comment, @@ -245993,25 +247505,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1358), 2, anon_sym_const, anon_sym_volatile, - STATE(3507), 2, + STATE(3449), 2, sym_int_type, sym_function_pointer_type, ACTIONS(1348), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [151236] = 12, + [152241] = 12, ACTIONS(1356), 1, anon_sym_long, - ACTIONS(5109), 1, + ACTIONS(5101), 1, anon_sym_LPAREN, - ACTIONS(5618), 1, + ACTIONS(5658), 1, sym_identifier, - STATE(3124), 1, + STATE(3148), 1, sym__signedness, - STATE(3338), 1, + STATE(3367), 1, sym__longness, - STATE(5327), 1, + STATE(5294), 1, sym_c_type, ACTIONS(3), 2, sym_comment, @@ -246025,1699 +247537,776 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1358), 2, anon_sym_const, anon_sym_volatile, - STATE(3507), 2, + STATE(3449), 2, sym_int_type, sym_function_pointer_type, ACTIONS(1348), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [151280] = 4, - ACTIONS(5712), 1, - anon_sym_long, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5693), 7, - anon_sym_STAR, - sym_identifier, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - anon_sym_operator, - anon_sym___stdcall, - ACTIONS(5695), 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, - [151308] = 5, - ACTIONS(5714), 1, - anon_sym_DOT, - STATE(3311), 1, - aux_sym_class_definition_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5493), 6, - anon_sym_as, - anon_sym_STAR, - sym_identifier, - anon_sym_complex, - anon_sym_operator, - anon_sym___stdcall, - ACTIONS(5498), 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, - [151338] = 14, - ACTIONS(3703), 1, - anon_sym_LPAREN, - ACTIONS(3714), 1, - sym_identifier, - ACTIONS(5117), 1, - anon_sym_LBRACK, - ACTIONS(5717), 1, - anon_sym_DOT, - ACTIONS(5721), 1, - anon_sym_COLON, - ACTIONS(5723), 1, - anon_sym_EQ, - ACTIONS(5725), 1, - anon_sym_complex, - STATE(3444), 1, - aux_sym_class_definition_repeat2, - STATE(3455), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5113), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(5115), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - ACTIONS(5719), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3716), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [151386] = 12, - ACTIONS(5351), 1, - anon_sym_LPAREN, - ACTIONS(5365), 1, - anon_sym_long, - ACTIONS(5371), 1, - sym_identifier, - STATE(3343), 1, - sym__signedness, - STATE(3543), 1, - sym__longness, - STATE(4577), 1, - sym_c_type, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5361), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(5363), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(5367), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3500), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(5359), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [151430] = 12, - ACTIONS(4018), 1, + [152285] = 12, + ACTIONS(3948), 1, anon_sym_long, - ACTIONS(5660), 1, + ACTIONS(5697), 1, sym_identifier, - ACTIONS(5662), 1, + ACTIONS(5699), 1, anon_sym_LPAREN, - STATE(3188), 1, + STATE(3198), 1, sym__signedness, - STATE(3410), 1, + STATE(3409), 1, sym__longness, - STATE(4897), 1, + STATE(5341), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4014), 2, + ACTIONS(3944), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4016), 2, + ACTIONS(3946), 2, anon_sym_char, anon_sym_short, - ACTIONS(5457), 2, + ACTIONS(5587), 2, anon_sym_const, anon_sym_volatile, - STATE(3441), 2, + STATE(3437), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4012), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [151474] = 11, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(5121), 1, - anon_sym_operator, - ACTIONS(5727), 1, - sym_identifier, - STATE(3422), 1, - sym_type_index, - STATE(3580), 1, - sym_operator_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4241), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4243), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - ACTIONS(5731), 2, - anon_sym_COLON, - anon_sym_EQ, - STATE(3396), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5729), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - [151515] = 11, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(5121), 1, - anon_sym_operator, - ACTIONS(5733), 1, - sym_identifier, - STATE(3422), 1, - sym_type_index, - STATE(3601), 1, - sym_operator_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4241), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4243), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - ACTIONS(5737), 2, - anon_sym_COLON, - anon_sym_EQ, - STATE(3365), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5735), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - [151556] = 12, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(5121), 1, - anon_sym_operator, - ACTIONS(5739), 1, - sym_identifier, - ACTIONS(5741), 1, - anon_sym_LPAREN, - STATE(3422), 1, - sym_type_index, - STATE(3603), 1, - sym_operator_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4241), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4243), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - ACTIONS(5744), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(5746), 2, - anon_sym_COLON, - anon_sym_EQ, - STATE(3369), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [151599] = 11, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(5121), 1, - anon_sym_operator, - ACTIONS(5445), 1, - sym_identifier, - STATE(3422), 1, - sym_type_index, - STATE(3561), 1, - sym_operator_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4241), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4243), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - ACTIONS(5748), 2, - anon_sym_COLON, - anon_sym_EQ, - STATE(3368), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5447), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - [151640] = 12, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(5121), 1, - anon_sym_operator, - ACTIONS(5531), 1, - sym_identifier, - ACTIONS(5751), 1, - anon_sym_LPAREN, - STATE(3422), 1, - sym_type_index, - STATE(3582), 1, - sym_operator_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4241), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4243), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - ACTIONS(5538), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(5729), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3317), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [151683] = 12, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(5121), 1, - anon_sym_operator, - ACTIONS(5531), 1, - sym_identifier, - ACTIONS(5751), 1, - anon_sym_LPAREN, - STATE(3422), 1, - sym_type_index, - STATE(3582), 1, - sym_operator_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4241), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4243), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - ACTIONS(5538), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(5729), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3400), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [151726] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5403), 2, - anon_sym_int, - anon_sym_double, - ACTIONS(5395), 5, - anon_sym_STAR, - sym_identifier, - anon_sym_complex, - anon_sym_operator, - anon_sym___stdcall, - ACTIONS(5397), 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, - [151753] = 14, - ACTIONS(3703), 1, - anon_sym_LPAREN, - ACTIONS(3714), 1, - sym_identifier, - ACTIONS(5117), 1, - anon_sym_LBRACK, - ACTIONS(5717), 1, - anon_sym_DOT, - ACTIONS(5719), 1, - anon_sym_COMMA, - ACTIONS(5725), 1, - anon_sym_complex, - ACTIONS(5754), 1, - anon_sym_COLON, - ACTIONS(5756), 1, - anon_sym_EQ, - STATE(3444), 1, - aux_sym_class_definition_repeat2, - STATE(3455), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5113), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(5115), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3716), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [151800] = 11, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(5121), 1, - anon_sym_operator, - ACTIONS(5727), 1, - sym_identifier, - STATE(3422), 1, - sym_type_index, - STATE(3580), 1, - sym_operator_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4241), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4243), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - ACTIONS(5731), 2, - anon_sym_COLON, - anon_sym_EQ, - STATE(3396), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5758), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - [151841] = 12, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(5121), 1, - anon_sym_operator, - ACTIONS(5760), 1, - sym_identifier, - ACTIONS(5762), 1, - anon_sym_LPAREN, - STATE(3422), 1, - sym_type_index, - STATE(3615), 1, - sym_operator_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4241), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4243), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - ACTIONS(5765), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(5767), 2, - anon_sym_COLON, - anon_sym_EQ, - STATE(3384), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [151884] = 4, - ACTIONS(5385), 1, - anon_sym_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4360), 6, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_complex, - anon_sym___stdcall, - ACTIONS(4350), 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, - [151911] = 10, - ACTIONS(5113), 1, - anon_sym_STAR, - ACTIONS(5117), 1, - anon_sym_LBRACK, - ACTIONS(5717), 1, - anon_sym_DOT, - ACTIONS(5769), 1, - anon_sym_complex, - STATE(3148), 1, - aux_sym_class_definition_repeat2, - STATE(3455), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3479), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5115), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5447), 5, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [151950] = 11, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(5121), 1, - anon_sym_operator, - ACTIONS(5445), 1, - sym_identifier, - STATE(3422), 1, - sym_type_index, - STATE(3561), 1, - sym_operator_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4241), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4243), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - ACTIONS(5449), 2, - anon_sym_COLON, - anon_sym_EQ, - STATE(3315), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5503), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - [151991] = 11, - ACTIONS(5771), 1, - anon_sym_DOT, - ACTIONS(5773), 1, - anon_sym_STAR, - ACTIONS(5777), 1, - anon_sym_LBRACK, - ACTIONS(5779), 1, - anon_sym_complex, - STATE(3352), 1, - aux_sym_class_definition_repeat2, - STATE(3619), 1, - sym_type_index, - STATE(5325), 1, - sym_template_default, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3577), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5775), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(3703), 4, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - [152032] = 11, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(5121), 1, - anon_sym_operator, - ACTIONS(5445), 1, - sym_identifier, - STATE(3422), 1, - sym_type_index, - STATE(3561), 1, - sym_operator_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4241), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4243), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - ACTIONS(5449), 2, - anon_sym_COLON, - anon_sym_EQ, - STATE(3368), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5503), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - [152073] = 11, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(5121), 1, - anon_sym_operator, - ACTIONS(5727), 1, - sym_identifier, - STATE(3422), 1, - sym_type_index, - STATE(3580), 1, - sym_operator_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4241), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4243), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - ACTIONS(5731), 2, - anon_sym_COLON, - anon_sym_EQ, - STATE(3316), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5758), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - [152114] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5493), 6, - anon_sym_as, - anon_sym_STAR, - sym_identifier, - anon_sym_complex, - anon_sym_operator, - anon_sym___stdcall, - ACTIONS(5498), 10, - sym__newline, - anon_sym_SEMI, - 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, - [152139] = 11, - ACTIONS(5113), 1, - anon_sym_STAR, - ACTIONS(5117), 1, - anon_sym_LBRACK, - ACTIONS(5469), 1, - anon_sym_LPAREN, - ACTIONS(5717), 1, - anon_sym_DOT, - ACTIONS(5781), 1, - anon_sym_complex, - STATE(3344), 1, - aux_sym_class_definition_repeat2, - STATE(3455), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3495), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5115), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5472), 4, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [152180] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5783), 7, - anon_sym_STAR, - sym_identifier, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - anon_sym_operator, - anon_sym___stdcall, - ACTIONS(5785), 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, - [152205] = 12, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(5121), 1, - anon_sym_operator, - ACTIONS(5739), 1, - sym_identifier, - ACTIONS(5787), 1, - anon_sym_LPAREN, - STATE(3422), 1, - sym_type_index, - STATE(3603), 1, - sym_operator_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4241), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4243), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - ACTIONS(5746), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(5790), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3369), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [152248] = 12, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(5121), 1, - anon_sym_operator, - ACTIONS(5531), 1, - sym_identifier, - ACTIONS(5533), 1, - anon_sym_LPAREN, - STATE(3422), 1, - sym_type_index, - STATE(3582), 1, - sym_operator_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4241), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4243), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - ACTIONS(5536), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(5538), 2, - anon_sym_COLON, - anon_sym_EQ, - STATE(3334), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [152291] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5783), 7, - anon_sym_STAR, - sym_identifier, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - anon_sym_operator, - anon_sym___stdcall, - ACTIONS(5785), 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, - [152316] = 11, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(5121), 1, - anon_sym_operator, - ACTIONS(5445), 1, - sym_identifier, - STATE(3422), 1, - sym_type_index, - STATE(3561), 1, - sym_operator_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4241), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4243), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - ACTIONS(5449), 2, - anon_sym_COLON, - anon_sym_EQ, - STATE(3323), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5447), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - [152357] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5399), 2, - anon_sym_int, - anon_sym_double, - ACTIONS(5395), 5, - anon_sym_STAR, - sym_identifier, - anon_sym_complex, - anon_sym_operator, - anon_sym___stdcall, - ACTIONS(5397), 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, - [152384] = 13, - ACTIONS(3703), 1, - anon_sym_LPAREN, - ACTIONS(3714), 1, - sym_identifier, - ACTIONS(5117), 1, - anon_sym_LBRACK, - ACTIONS(5717), 1, - anon_sym_DOT, - ACTIONS(5725), 1, - anon_sym_complex, - ACTIONS(5756), 1, - anon_sym_EQ, - STATE(3444), 1, - aux_sym_class_definition_repeat2, - STATE(3455), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5113), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(5115), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - ACTIONS(5719), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(3716), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [152429] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5493), 6, - anon_sym_as, - anon_sym_STAR, - sym_identifier, - anon_sym_complex, - anon_sym_operator, - anon_sym___stdcall, - ACTIONS(5498), 10, - 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_PIPE, - anon_sym_AMP, - [152454] = 5, - ACTIONS(4358), 1, - anon_sym_as, - ACTIONS(5385), 1, - anon_sym_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4360), 6, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_complex, - anon_sym___stdcall, - ACTIONS(4350), 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, - [152483] = 4, - ACTIONS(5385), 1, - anon_sym_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4360), 6, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_complex, - anon_sym___stdcall, - ACTIONS(4350), 9, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [152510] = 7, - ACTIONS(5395), 1, - anon_sym_STAR, - ACTIONS(5796), 1, - anon_sym_long, - STATE(3548), 1, - sym__longness, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5792), 2, + ACTIONS(3942), 3, anon_sym_int, anon_sym_double, - ACTIONS(5794), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(5397), 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, - [152543] = 11, - ACTIONS(5113), 1, - anon_sym_STAR, - ACTIONS(5117), 1, + [152329] = 11, + ACTIONS(4261), 1, anon_sym_LBRACK, - ACTIONS(5533), 1, - anon_sym_LPAREN, - ACTIONS(5717), 1, - anon_sym_DOT, - ACTIONS(5798), 1, - anon_sym_complex, - STATE(3148), 1, - aux_sym_class_definition_repeat2, - STATE(3455), 1, + ACTIONS(5113), 1, + anon_sym_operator, + ACTIONS(5420), 1, + sym_identifier, + STATE(3414), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3487), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5115), 3, + ACTIONS(4257), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4259), 2, anon_sym_STAR_STAR, anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5536), 4, - anon_sym_COMMA, + ACTIONS(5422), 2, anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [152584] = 4, + anon_sym_EQ, + STATE(3265), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3531), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5487), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + [152371] = 4, + ACTIONS(5385), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5804), 2, - anon_sym_int, - anon_sym_double, - ACTIONS(5800), 5, - anon_sym_STAR, - sym_identifier, + ACTIONS(4360), 6, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, anon_sym_complex, - anon_sym_operator, anon_sym___stdcall, - ACTIONS(5802), 9, + ACTIONS(4350), 10, anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_STAR_STAR, + anon_sym_else, anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_AMP, - [152611] = 4, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + [152399] = 12, + ACTIONS(1356), 1, + anon_sym_long, + ACTIONS(5101), 1, + anon_sym_LPAREN, + ACTIONS(5658), 1, + sym_identifier, + STATE(3148), 1, + sym__signedness, + STATE(3367), 1, + sym__longness, + STATE(5186), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5806), 2, + ACTIONS(1352), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(1354), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(1358), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3449), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(1348), 3, anon_sym_int, anon_sym_double, - ACTIONS(5800), 5, + anon_sym_complex, + [152443] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5572), 6, + anon_sym_as, anon_sym_STAR, sym_identifier, anon_sym_complex, anon_sym_operator, anon_sym___stdcall, - ACTIONS(5802), 9, - sym__newline, + ACTIONS(5577), 10, 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_PIPE, anon_sym_AMP, - [152638] = 12, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(5121), 1, + [152468] = 11, + ACTIONS(3978), 1, anon_sym_operator, - ACTIONS(5531), 1, + ACTIONS(5799), 1, sym_identifier, - ACTIONS(5533), 1, + ACTIONS(5801), 1, anon_sym_LPAREN, - STATE(3422), 1, + ACTIONS(5804), 1, + anon_sym_LBRACK, + STATE(3444), 1, sym_type_index, - STATE(3582), 1, - sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4241), 2, + ACTIONS(3712), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4243), 2, + ACTIONS(3728), 2, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(5536), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(5808), 2, - anon_sym_COLON, - anon_sym_EQ, - STATE(3400), 2, + STATE(3412), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [152681] = 12, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(5121), 1, + STATE(3515), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5692), 3, + sym__newline, + anon_sym_COMMA, + anon_sym_EQ, + [152509] = 11, + ACTIONS(3978), 1, anon_sym_operator, - ACTIONS(5739), 1, + ACTIONS(5799), 1, sym_identifier, - ACTIONS(5787), 1, + ACTIONS(5801), 1, anon_sym_LPAREN, - STATE(3422), 1, + ACTIONS(5804), 1, + anon_sym_LBRACK, + STATE(3444), 1, sym_type_index, - STATE(3603), 1, - sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4241), 2, + ACTIONS(3712), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4243), 2, + ACTIONS(3728), 2, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(5746), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(5790), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3324), 2, + STATE(3359), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [152724] = 10, - ACTIONS(5113), 1, + STATE(3515), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5692), 3, + sym__newline, + anon_sym_COMMA, + anon_sym_EQ, + [152550] = 11, + ACTIONS(5105), 1, anon_sym_STAR, - ACTIONS(5117), 1, + ACTIONS(5109), 1, anon_sym_LBRACK, - ACTIONS(5717), 1, + ACTIONS(5457), 1, + anon_sym_LPAREN, + ACTIONS(5715), 1, anon_sym_DOT, - ACTIONS(5811), 1, + ACTIONS(5807), 1, anon_sym_complex, - STATE(3326), 1, + STATE(3182), 1, aux_sym_class_definition_repeat2, - STATE(3455), 1, + STATE(3468), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3464), 2, + STATE(3456), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5115), 3, + ACTIONS(5107), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(3703), 5, - anon_sym_LPAREN, + ACTIONS(5460), 4, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [152763] = 10, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(5121), 1, - anon_sym_operator, - ACTIONS(5739), 1, - sym_identifier, - STATE(3422), 1, - sym_type_index, - STATE(3603), 1, - sym_operator_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4241), 2, + [152591] = 7, + ACTIONS(5433), 1, anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4243), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3373), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5746), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [152801] = 4, ACTIONS(5813), 1, anon_sym_long, + STATE(3598), 1, + sym__longness, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5693), 6, - anon_sym_STAR, - sym_identifier, + ACTIONS(5809), 2, anon_sym_int, anon_sym_double, - anon_sym_complex, - anon_sym___stdcall, - ACTIONS(5695), 8, + ACTIONS(5811), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5435), 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, - anon_sym_GT, - anon_sym_QMARK, - [152827] = 10, - ACTIONS(5771), 1, - anon_sym_DOT, - ACTIONS(5773), 1, - anon_sym_STAR, - ACTIONS(5777), 1, - anon_sym_LBRACK, - ACTIONS(5815), 1, anon_sym_complex, - STATE(3404), 1, - aux_sym_class_definition_repeat2, - STATE(3619), 1, - sym_type_index, + anon_sym___stdcall, + [152624] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3584), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5775), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, + ACTIONS(5572), 6, + anon_sym_as, + anon_sym_STAR, + sym_identifier, + anon_sym_complex, + anon_sym_operator, anon_sym___stdcall, - ACTIONS(5447), 4, + ACTIONS(5577), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_STAR_STAR, anon_sym_EQ, - anon_sym_RBRACK, - [152865] = 3, + anon_sym_LBRACK, + anon_sym_AMP, + [152649] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5817), 5, + ACTIONS(5815), 7, anon_sym_STAR, - anon_sym_not, - anon_sym_or, sym_identifier, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + anon_sym_operator, anon_sym___stdcall, - ACTIONS(5819), 10, + ACTIONS(5817), 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, - anon_sym_GT, - anon_sym_QMARK, - [152889] = 10, - ACTIONS(5771), 1, - anon_sym_DOT, - ACTIONS(5773), 1, + [152674] = 10, + ACTIONS(5105), 1, anon_sym_STAR, - ACTIONS(5777), 1, + ACTIONS(5109), 1, anon_sym_LBRACK, - ACTIONS(5779), 1, + ACTIONS(5715), 1, + anon_sym_DOT, + ACTIONS(5819), 1, anon_sym_complex, - STATE(3352), 1, + STATE(3365), 1, aux_sym_class_definition_repeat2, - STATE(3619), 1, + STATE(3468), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3577), 2, + STATE(3469), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5775), 3, + ACTIONS(5107), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(3703), 4, + ACTIONS(3707), 5, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - [152927] = 10, - ACTIONS(4094), 1, - anon_sym_operator, - ACTIONS(5624), 1, - sym_identifier, - ACTIONS(5821), 1, - anon_sym_LBRACK, - STATE(3409), 1, - sym_type_index, - STATE(3515), 1, - sym_operator_name, + anon_sym_COLON, + anon_sym_GT, + anon_sym_QMARK, + [152713] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3708), 2, + ACTIONS(5815), 7, anon_sym_STAR, + sym_identifier, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + anon_sym_operator, anon_sym___stdcall, - ACTIONS(3724), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3406), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5808), 4, + ACTIONS(5817), 9, sym__newline, + anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_STAR_STAR, anon_sym_EQ, - [152965] = 10, - ACTIONS(4094), 1, + anon_sym_LBRACK, + anon_sym_AMP, + [152738] = 11, + ACTIONS(3978), 1, anon_sym_operator, - ACTIONS(5624), 1, + ACTIONS(5534), 1, sym_identifier, - ACTIONS(5626), 1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5539), 1, anon_sym_LBRACK, - STATE(3409), 1, + STATE(3444), 1, sym_type_index, - STATE(3515), 1, - sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3708), 2, + ACTIONS(3712), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(3724), 2, + ACTIONS(3728), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3406), 2, + STATE(3346), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5538), 4, + STATE(3590), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5422), 3, sym__newline, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [153003] = 8, - ACTIONS(5835), 1, - anon_sym_LBRACK, - STATE(3409), 1, - sym_type_index, + [152779] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(5825), 2, + anon_sym_int, + anon_sym_double, + ACTIONS(5821), 5, + anon_sym_STAR, sym_identifier, + anon_sym_complex, anon_sym_operator, - ACTIONS(5829), 2, - anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5832), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3357), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5827), 5, - sym__newline, + ACTIONS(5823), 9, + anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, + anon_sym_STAR_STAR, anon_sym_EQ, - [153037] = 10, - ACTIONS(4094), 1, - anon_sym_operator, - ACTIONS(5838), 1, + anon_sym_LBRACK, + anon_sym_AMP, + [152806] = 14, + ACTIONS(3707), 1, + anon_sym_LPAREN, + ACTIONS(3718), 1, sym_identifier, - ACTIONS(5840), 1, + ACTIONS(5109), 1, anon_sym_LBRACK, - STATE(3409), 1, + ACTIONS(5715), 1, + anon_sym_DOT, + ACTIONS(5717), 1, + anon_sym_COMMA, + ACTIONS(5723), 1, + anon_sym_complex, + ACTIONS(5827), 1, + anon_sym_COLON, + ACTIONS(5829), 1, + anon_sym_EQ, + STATE(3462), 1, + aux_sym_class_definition_repeat2, + STATE(3468), 1, sym_type_index, - STATE(3537), 1, - sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3708), 2, + ACTIONS(5105), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(3724), 2, + ACTIONS(5107), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3437), 2, + STATE(3751), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5746), 4, - sym__newline, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [153075] = 10, - ACTIONS(4094), 1, + [152853] = 11, + ACTIONS(3978), 1, anon_sym_operator, - ACTIONS(5838), 1, + ACTIONS(5507), 1, sym_identifier, - ACTIONS(5840), 1, + ACTIONS(5509), 1, + anon_sym_LPAREN, + ACTIONS(5512), 1, anon_sym_LBRACK, - STATE(3409), 1, + STATE(3444), 1, sym_type_index, - STATE(3537), 1, - sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3708), 2, + ACTIONS(3712), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(3724), 2, + ACTIONS(3728), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3361), 2, + STATE(3366), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5746), 4, + STATE(3517), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5395), 3, sym__newline, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [153113] = 3, + [152894] = 11, + ACTIONS(3978), 1, + anon_sym_operator, + ACTIONS(5507), 1, + sym_identifier, + ACTIONS(5831), 1, + anon_sym_LPAREN, + ACTIONS(5835), 1, + anon_sym_LBRACK, + STATE(3444), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5843), 5, + ACTIONS(3712), 2, anon_sym_STAR, - anon_sym_not, - anon_sym_or, - sym_identifier, anon_sym___stdcall, - ACTIONS(5845), 10, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(3728), 2, anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, anon_sym_AMP, - anon_sym_GT, - anon_sym_QMARK, - [153137] = 10, - ACTIONS(4094), 1, + STATE(3434), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3517), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5694), 3, + sym__newline, + anon_sym_COMMA, + anon_sym_EQ, + [152935] = 11, + ACTIONS(3978), 1, anon_sym_operator, - ACTIONS(5847), 1, + ACTIONS(5839), 1, sym_identifier, - ACTIONS(5849), 1, + ACTIONS(5841), 1, + anon_sym_LPAREN, + ACTIONS(5844), 1, anon_sym_LBRACK, - STATE(3409), 1, + STATE(3444), 1, sym_type_index, - STATE(3607), 1, - sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3708), 2, + ACTIONS(3712), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(3724), 2, + ACTIONS(3728), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3418), 2, + STATE(3441), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5767), 4, + STATE(3588), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5754), 3, sym__newline, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [153175] = 11, - ACTIONS(4239), 1, - anon_sym_DOT, - ACTIONS(4241), 1, + [152976] = 4, + ACTIONS(5385), 1, anon_sym_STAR, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(5533), 1, - anon_sym_LPAREN, - ACTIONS(5852), 1, - anon_sym_complex, - STATE(3311), 1, - aux_sym_class_definition_repeat2, - STATE(3422), 1, - sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3617), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4243), 3, + ACTIONS(4360), 6, + anon_sym_LPAREN, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AMP, + anon_sym_complex, anon_sym___stdcall, - ACTIONS(5536), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [153215] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5854), 5, - anon_sym_STAR, - anon_sym_not, - anon_sym_or, - sym_identifier, - anon_sym___stdcall, - ACTIONS(5856), 10, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4350), 9, 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_GT, - anon_sym_QMARK, - [153239] = 3, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + sym_type_conversion, + [153003] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5858), 6, + ACTIONS(5847), 2, + anon_sym_int, + anon_sym_double, + ACTIONS(5821), 5, anon_sym_STAR, - anon_sym_not, - anon_sym_or, sym_identifier, + anon_sym_complex, anon_sym_operator, anon_sym___stdcall, - ACTIONS(5860), 9, + ACTIONS(5823), 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, - [153263] = 9, - ACTIONS(5827), 1, + [153030] = 11, + ACTIONS(3978), 1, + anon_sym_operator, + ACTIONS(5534), 1, + sym_identifier, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5871), 1, + ACTIONS(5539), 1, anon_sym_LBRACK, - STATE(3422), 1, + STATE(3444), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5825), 2, - sym_identifier, - anon_sym_operator, - ACTIONS(5865), 2, + ACTIONS(3712), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5868), 2, + ACTIONS(3728), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3398), 2, + STATE(3410), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5862), 4, - anon_sym_RPAREN, + STATE(3590), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5422), 3, + sym__newline, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [153299] = 10, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(5121), 1, - anon_sym_operator, - ACTIONS(5727), 1, + [153071] = 13, + ACTIONS(3707), 1, + anon_sym_LPAREN, + ACTIONS(3718), 1, sym_identifier, - STATE(3422), 1, + ACTIONS(5109), 1, + anon_sym_LBRACK, + ACTIONS(5715), 1, + anon_sym_DOT, + ACTIONS(5723), 1, + anon_sym_complex, + ACTIONS(5829), 1, + anon_sym_EQ, + STATE(3462), 1, + aux_sym_class_definition_repeat2, + STATE(3468), 1, sym_type_index, - STATE(3580), 1, - sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4241), 2, + ACTIONS(5105), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4243), 2, + ACTIONS(5107), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3396), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5731), 4, - anon_sym_RPAREN, + ACTIONS(5717), 2, anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, - [153337] = 10, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(5121), 1, + STATE(3751), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [153116] = 11, + ACTIONS(3978), 1, anon_sym_operator, - ACTIONS(5727), 1, + ACTIONS(5507), 1, sym_identifier, - STATE(3422), 1, + ACTIONS(5509), 1, + anon_sym_LPAREN, + ACTIONS(5512), 1, + anon_sym_LBRACK, + STATE(3444), 1, sym_type_index, - STATE(3580), 1, - sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4241), 2, + ACTIONS(3712), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4243), 2, + ACTIONS(3728), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3397), 2, + STATE(3434), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5731), 4, - anon_sym_RPAREN, + STATE(3517), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5395), 3, + sym__newline, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [153375] = 9, - ACTIONS(5827), 1, - anon_sym_LPAREN, - ACTIONS(5871), 1, + [153157] = 10, + ACTIONS(5105), 1, + anon_sym_STAR, + ACTIONS(5109), 1, anon_sym_LBRACK, - STATE(3422), 1, + ACTIONS(5715), 1, + anon_sym_DOT, + ACTIONS(5849), 1, + anon_sym_complex, + STATE(3182), 1, + aux_sym_class_definition_repeat2, + STATE(3468), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5825), 2, - sym_identifier, - anon_sym_operator, - ACTIONS(5865), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(5868), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3398), 2, + STATE(3487), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5874), 4, - anon_sym_RPAREN, + ACTIONS(5107), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(5487), 5, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, - [153411] = 9, - ACTIONS(5827), 1, + anon_sym_GT, + anon_sym_QMARK, + [153196] = 11, + ACTIONS(3978), 1, + anon_sym_operator, + ACTIONS(5851), 1, + sym_identifier, + ACTIONS(5853), 1, anon_sym_LPAREN, - ACTIONS(5871), 1, + ACTIONS(5856), 1, anon_sym_LBRACK, - STATE(3422), 1, + STATE(3444), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5825), 2, - sym_identifier, - anon_sym_operator, - ACTIONS(5865), 2, + ACTIONS(3712), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5868), 2, + ACTIONS(3728), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3398), 2, + STATE(3431), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5877), 4, - anon_sym_RPAREN, + STATE(3592), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5708), 3, + sym__newline, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [153447] = 11, - ACTIONS(5469), 1, - anon_sym_LPAREN, - ACTIONS(5771), 1, - anon_sym_DOT, - ACTIONS(5773), 1, - anon_sym_STAR, - ACTIONS(5777), 1, - anon_sym_LBRACK, - ACTIONS(5880), 1, - anon_sym_complex, - STATE(3401), 1, - aux_sym_class_definition_repeat2, - STATE(3619), 1, - sym_type_index, + [153237] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3585), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5472), 3, + ACTIONS(5467), 2, + anon_sym_int, + anon_sym_double, + ACTIONS(5433), 5, + anon_sym_STAR, + sym_identifier, + anon_sym_complex, + anon_sym_operator, + anon_sym___stdcall, + ACTIONS(5435), 9, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - ACTIONS(5775), 3, + anon_sym_COLON, anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, anon_sym_AMP, - anon_sym___stdcall, - [153487] = 3, + [153264] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5882), 5, + ACTIONS(5437), 2, + anon_sym_int, + anon_sym_double, + ACTIONS(5433), 5, anon_sym_STAR, - anon_sym_not, - anon_sym_or, sym_identifier, + anon_sym_complex, + anon_sym_operator, anon_sym___stdcall, - ACTIONS(5884), 10, + ACTIONS(5435), 9, + sym__newline, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -247726,233 +248315,236 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - anon_sym_GT, - anon_sym_QMARK, - [153511] = 10, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(5121), 1, + [153291] = 11, + ACTIONS(3978), 1, anon_sym_operator, - ACTIONS(5531), 1, + ACTIONS(5534), 1, sym_identifier, - STATE(3422), 1, + ACTIONS(5859), 1, + anon_sym_LPAREN, + ACTIONS(5863), 1, + anon_sym_LBRACK, + STATE(3444), 1, sym_type_index, - STATE(3582), 1, - sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4241), 2, + ACTIONS(3712), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4243), 2, + ACTIONS(3728), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3399), 2, + STATE(3410), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5538), 4, - anon_sym_RPAREN, + STATE(3590), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5738), 3, + sym__newline, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [153549] = 10, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(5121), 1, + [153332] = 11, + ACTIONS(3978), 1, anon_sym_operator, - ACTIONS(5760), 1, + ACTIONS(5851), 1, sym_identifier, - STATE(3422), 1, + ACTIONS(5853), 1, + anon_sym_LPAREN, + ACTIONS(5856), 1, + anon_sym_LBRACK, + STATE(3444), 1, sym_type_index, - STATE(3615), 1, - sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4241), 2, + ACTIONS(3712), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4243), 2, + ACTIONS(3728), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3384), 2, + STATE(3373), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5767), 4, - anon_sym_RPAREN, + STATE(3592), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5708), 3, + sym__newline, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [153587] = 3, + [153373] = 4, + ACTIONS(5385), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5843), 6, - anon_sym_STAR, - anon_sym_not, - anon_sym_or, - sym_identifier, - anon_sym_operator, + ACTIONS(4360), 6, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_complex, anon_sym___stdcall, - ACTIONS(5845), 9, + ACTIONS(4350), 9, anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + [153400] = 5, + ACTIONS(4358), 1, + anon_sym_as, + ACTIONS(5385), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4360), 6, + anon_sym_LPAREN, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [153611] = 10, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(5121), 1, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(4350), 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, + [153429] = 11, + ACTIONS(3978), 1, anon_sym_operator, - ACTIONS(5531), 1, + ACTIONS(5867), 1, sym_identifier, - STATE(3422), 1, + ACTIONS(5869), 1, + anon_sym_LPAREN, + ACTIONS(5872), 1, + anon_sym_LBRACK, + STATE(3444), 1, sym_type_index, - STATE(3582), 1, - sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4241), 2, + ACTIONS(3712), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4243), 2, + ACTIONS(3728), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3400), 2, + STATE(3430), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5808), 4, - anon_sym_RPAREN, + STATE(3579), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5768), 3, + sym__newline, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [153649] = 10, - ACTIONS(4239), 1, - anon_sym_DOT, - ACTIONS(4241), 1, + [153470] = 11, + ACTIONS(5105), 1, anon_sym_STAR, - ACTIONS(4245), 1, + ACTIONS(5109), 1, anon_sym_LBRACK, - ACTIONS(5886), 1, + ACTIONS(5401), 1, + anon_sym_LPAREN, + ACTIONS(5715), 1, + anon_sym_DOT, + ACTIONS(5875), 1, anon_sym_complex, - STATE(3311), 1, + STATE(3348), 1, aux_sym_class_definition_repeat2, - STATE(3422), 1, + STATE(3468), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3555), 2, + STATE(3491), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4243), 3, + ACTIONS(5107), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5447), 4, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [153687] = 10, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(5121), 1, - anon_sym_operator, - ACTIONS(5531), 1, - sym_identifier, - STATE(3422), 1, - sym_type_index, - STATE(3582), 1, - sym_operator_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4241), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4243), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3400), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5538), 4, - anon_sym_RPAREN, + ACTIONS(5404), 4, anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, - [153725] = 11, - ACTIONS(4239), 1, + anon_sym_GT, + anon_sym_QMARK, + [153511] = 11, + ACTIONS(5877), 1, anon_sym_DOT, - ACTIONS(4241), 1, + ACTIONS(5879), 1, anon_sym_STAR, - ACTIONS(4245), 1, + ACTIONS(5883), 1, anon_sym_LBRACK, - ACTIONS(5469), 1, - anon_sym_LPAREN, - ACTIONS(5888), 1, + ACTIONS(5885), 1, anon_sym_complex, - STATE(3362), 1, + STATE(3385), 1, aux_sym_class_definition_repeat2, - STATE(3422), 1, + STATE(3635), 1, sym_type_index, + STATE(5205), 1, + sym_template_default, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3557), 2, + STATE(3573), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4243), 3, + ACTIONS(5881), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5472), 3, - anon_sym_RPAREN, + ACTIONS(3707), 4, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [153765] = 5, - ACTIONS(4358), 1, - anon_sym_as, - ACTIONS(5385), 1, - anon_sym_STAR, + anon_sym_RBRACK, + [153552] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4360), 6, + ACTIONS(5887), 5, + anon_sym_STAR, + anon_sym_not, + anon_sym_or, + sym_identifier, + anon_sym___stdcall, + ACTIONS(5889), 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_complex, - anon_sym___stdcall, - ACTIONS(4350), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_and, - anon_sym_or, - [153793] = 3, + anon_sym_GT, + anon_sym_QMARK, + [153576] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5817), 6, + ACTIONS(5891), 6, anon_sym_STAR, anon_sym_not, anon_sym_or, sym_identifier, anon_sym_operator, anon_sym___stdcall, - ACTIONS(5819), 9, + ACTIONS(5893), 9, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -247962,74 +248554,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [153817] = 10, - ACTIONS(4094), 1, - anon_sym_operator, - ACTIONS(5890), 1, - sym_identifier, - ACTIONS(5892), 1, - anon_sym_LBRACK, - STATE(3409), 1, - sym_type_index, - STATE(3513), 1, - sym_operator_name, + [153600] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3708), 2, + ACTIONS(5891), 5, anon_sym_STAR, + anon_sym_not, + anon_sym_or, + sym_identifier, anon_sym___stdcall, - ACTIONS(3724), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3390), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5731), 4, - sym__newline, + ACTIONS(5893), 10, + anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_STAR_STAR, anon_sym_EQ, - [153855] = 10, - ACTIONS(4094), 1, - anon_sym_operator, - ACTIONS(5624), 1, - sym_identifier, - ACTIONS(5626), 1, anon_sym_LBRACK, - STATE(3409), 1, + anon_sym_AMP, + anon_sym_GT, + anon_sym_QMARK, + [153624] = 9, + ACTIONS(5897), 1, + anon_sym_LPAREN, + ACTIONS(5908), 1, + anon_sym_LBRACK, + STATE(3414), 1, sym_type_index, - STATE(3515), 1, - sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3708), 2, + ACTIONS(5895), 2, + sym_identifier, + anon_sym_operator, + ACTIONS(5902), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(3724), 2, + ACTIONS(5905), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3358), 2, + STATE(3399), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5538), 4, - sym__newline, - anon_sym_LPAREN, + ACTIONS(5899), 4, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, - [153893] = 3, + [153660] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5882), 6, + ACTIONS(5911), 6, anon_sym_STAR, anon_sym_not, anon_sym_or, sym_identifier, anon_sym_operator, anon_sym___stdcall, - ACTIONS(5884), 9, + ACTIONS(5913), 9, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -248039,156 +248623,197 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [153917] = 9, - ACTIONS(5827), 1, + [153684] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5911), 5, + anon_sym_STAR, + anon_sym_not, + anon_sym_or, + sym_identifier, + anon_sym___stdcall, + ACTIONS(5913), 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, + [153708] = 9, + ACTIONS(5897), 1, anon_sym_LPAREN, - ACTIONS(5871), 1, + ACTIONS(5908), 1, anon_sym_LBRACK, - STATE(3422), 1, + STATE(3414), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5825), 2, + ACTIONS(5895), 2, sym_identifier, anon_sym_operator, - ACTIONS(5865), 2, + ACTIONS(5902), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5868), 2, + ACTIONS(5905), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3398), 2, + STATE(3399), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5895), 4, + ACTIONS(5915), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [153744] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5918), 6, + anon_sym_STAR, + anon_sym_not, + anon_sym_or, + sym_identifier, + anon_sym_operator, + anon_sym___stdcall, + ACTIONS(5920), 9, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, + anon_sym_STAR_STAR, anon_sym_EQ, - [153953] = 10, - ACTIONS(4239), 1, + anon_sym_LBRACK, + anon_sym_AMP, + [153768] = 11, + ACTIONS(4255), 1, anon_sym_DOT, - ACTIONS(4241), 1, + ACTIONS(4257), 1, anon_sym_STAR, - ACTIONS(4245), 1, + ACTIONS(4261), 1, anon_sym_LBRACK, - ACTIONS(4247), 1, + ACTIONS(5457), 1, + anon_sym_LPAREN, + ACTIONS(5922), 1, anon_sym_complex, - STATE(3376), 1, + STATE(3330), 1, aux_sym_class_definition_repeat2, - STATE(3422), 1, + STATE(3414), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3544), 2, + STATE(3537), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4243), 3, + ACTIONS(4259), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(3703), 4, - anon_sym_LPAREN, + ACTIONS(5460), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [153991] = 10, - ACTIONS(4094), 1, - anon_sym_operator, - ACTIONS(5611), 1, - sym_identifier, - ACTIONS(5613), 1, + [153808] = 10, + ACTIONS(5877), 1, + anon_sym_DOT, + ACTIONS(5879), 1, + anon_sym_STAR, + ACTIONS(5883), 1, anon_sym_LBRACK, - STATE(3409), 1, + ACTIONS(5924), 1, + anon_sym_complex, + STATE(3428), 1, + aux_sym_class_definition_repeat2, + STATE(3635), 1, sym_type_index, - STATE(3552), 1, - sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3708), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(3724), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3403), 2, + STATE(3582), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5449), 4, - sym__newline, + ACTIONS(5881), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(5487), 4, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [154029] = 10, - ACTIONS(4094), 1, - anon_sym_operator, - ACTIONS(5611), 1, - sym_identifier, - ACTIONS(5898), 1, + anon_sym_RBRACK, + [153846] = 9, + ACTIONS(5897), 1, + anon_sym_LPAREN, + ACTIONS(5908), 1, anon_sym_LBRACK, - STATE(3409), 1, + STATE(3414), 1, sym_type_index, - STATE(3552), 1, - sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3708), 2, + ACTIONS(5895), 2, + sym_identifier, + anon_sym_operator, + ACTIONS(5902), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(3724), 2, + ACTIONS(5905), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3433), 2, + STATE(3399), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5748), 4, - sym__newline, - anon_sym_LPAREN, + ACTIONS(5926), 4, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, - [154067] = 10, - ACTIONS(4245), 1, + [153882] = 9, + ACTIONS(5897), 1, + anon_sym_LPAREN, + ACTIONS(5908), 1, anon_sym_LBRACK, - ACTIONS(5121), 1, - anon_sym_operator, - ACTIONS(5445), 1, - sym_identifier, - STATE(3422), 1, + STATE(3414), 1, sym_type_index, - STATE(3561), 1, - sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4241), 2, + ACTIONS(5895), 2, + sym_identifier, + anon_sym_operator, + ACTIONS(5902), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4243), 2, + ACTIONS(5905), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3366), 2, + STATE(3399), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5449), 4, + ACTIONS(5929), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [154105] = 3, + [153918] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5858), 5, + ACTIONS(5932), 5, anon_sym_STAR, anon_sym_not, anon_sym_or, sym_identifier, anon_sym___stdcall, - ACTIONS(5860), 10, + ACTIONS(5934), 10, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -248199,43 +248824,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_QMARK, - [154129] = 10, - ACTIONS(4094), 1, - anon_sym_operator, - ACTIONS(5902), 1, - sym_identifier, - ACTIONS(5904), 1, + [153942] = 10, + ACTIONS(5877), 1, + anon_sym_DOT, + ACTIONS(5879), 1, + anon_sym_STAR, + ACTIONS(5883), 1, anon_sym_LBRACK, - STATE(3409), 1, + ACTIONS(5885), 1, + anon_sym_complex, + STATE(3385), 1, + aux_sym_class_definition_repeat2, + STATE(3635), 1, sym_type_index, - STATE(3534), 1, - sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3708), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(3724), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3436), 2, + STATE(3573), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5737), 4, - sym__newline, + ACTIONS(5881), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(3707), 4, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [154167] = 4, - ACTIONS(5672), 1, + anon_sym_RBRACK, + [153980] = 4, + ACTIONS(5727), 1, anon_sym_COLON, - ACTIONS(5674), 1, + ACTIONS(5729), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5676), 13, + ACTIONS(5731), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -248249,74 +248874,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [154193] = 10, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(5121), 1, - anon_sym_operator, - ACTIONS(5445), 1, - sym_identifier, - STATE(3422), 1, - sym_type_index, - STATE(3561), 1, - sym_operator_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4241), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4243), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3368), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5748), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [154231] = 10, - ACTIONS(4094), 1, - anon_sym_operator, - ACTIONS(5611), 1, - sym_identifier, - ACTIONS(5613), 1, - anon_sym_LBRACK, - STATE(3409), 1, - sym_type_index, - STATE(3552), 1, - sym_operator_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3708), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(3724), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3433), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5449), 4, - sym__newline, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [154269] = 3, + [154006] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5854), 6, + ACTIONS(5887), 6, anon_sym_STAR, anon_sym_not, anon_sym_or, sym_identifier, anon_sym_operator, anon_sym___stdcall, - ACTIONS(5856), 9, + ACTIONS(5889), 9, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -248326,283 +248895,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [154293] = 5, - ACTIONS(4358), 1, - anon_sym_as, - ACTIONS(5385), 1, + [154030] = 10, + ACTIONS(4255), 1, + anon_sym_DOT, + ACTIONS(4257), 1, anon_sym_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4360), 6, - anon_sym_LPAREN, - anon_sym_STAR_STAR, + ACTIONS(4261), 1, anon_sym_LBRACK, - anon_sym_AMP, + ACTIONS(5936), 1, anon_sym_complex, - anon_sym___stdcall, - ACTIONS(4350), 7, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_and, - anon_sym_or, - [154321] = 9, - ACTIONS(5827), 1, - anon_sym_LPAREN, - ACTIONS(5871), 1, - anon_sym_LBRACK, - STATE(3422), 1, + STATE(3330), 1, + aux_sym_class_definition_repeat2, + STATE(3414), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5825), 2, - sym_identifier, - anon_sym_operator, - ACTIONS(5865), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(5868), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3398), 2, + STATE(3522), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5907), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [154357] = 10, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(5121), 1, - anon_sym_operator, - ACTIONS(5733), 1, - sym_identifier, - STATE(3422), 1, - sym_type_index, - STATE(3601), 1, - sym_operator_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4241), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4243), 2, + ACTIONS(4259), 3, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3365), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5737), 4, + anon_sym___stdcall, + ACTIONS(5487), 4, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [154395] = 8, - ACTIONS(5871), 1, + [154068] = 8, + ACTIONS(5944), 1, anon_sym_LBRACK, - STATE(3422), 1, + STATE(3444), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5825), 2, + ACTIONS(5895), 2, sym_identifier, anon_sym_operator, - ACTIONS(5865), 2, + ACTIONS(5938), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5868), 2, + ACTIONS(5941), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3398), 2, + STATE(3393), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5827), 5, + ACTIONS(5897), 5, + sym__newline, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [154429] = 10, - ACTIONS(4245), 1, + [154102] = 10, + ACTIONS(4255), 1, + anon_sym_DOT, + ACTIONS(4257), 1, + anon_sym_STAR, + ACTIONS(4261), 1, anon_sym_LBRACK, - ACTIONS(5121), 1, - anon_sym_operator, - ACTIONS(5739), 1, - sym_identifier, - STATE(3422), 1, + ACTIONS(4263), 1, + anon_sym_complex, + STATE(3392), 1, + aux_sym_class_definition_repeat2, + STATE(3414), 1, sym_type_index, - STATE(3603), 1, - sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4241), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4243), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3369), 2, + STATE(3568), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5746), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [154467] = 9, - ACTIONS(5827), 1, - anon_sym_LPAREN, - ACTIONS(5871), 1, - anon_sym_LBRACK, - STATE(3422), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5825), 2, - sym_identifier, - anon_sym_operator, - ACTIONS(5865), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(5868), 2, + ACTIONS(4259), 3, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3398), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5910), 4, + anon_sym___stdcall, + ACTIONS(3707), 4, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [154503] = 11, - ACTIONS(5533), 1, + [154140] = 11, + ACTIONS(5401), 1, anon_sym_LPAREN, - ACTIONS(5771), 1, + ACTIONS(5877), 1, anon_sym_DOT, - ACTIONS(5773), 1, + ACTIONS(5879), 1, anon_sym_STAR, - ACTIONS(5777), 1, + ACTIONS(5883), 1, anon_sym_LBRACK, - ACTIONS(5913), 1, + ACTIONS(5947), 1, anon_sym_complex, - STATE(3404), 1, + STATE(3400), 1, aux_sym_class_definition_repeat2, - STATE(3619), 1, + STATE(3635), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3590), 2, + STATE(3583), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5536), 3, + ACTIONS(5404), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_RBRACK, - ACTIONS(5775), 3, + ACTIONS(5881), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [154543] = 10, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(5121), 1, - anon_sym_operator, - ACTIONS(5445), 1, - sym_identifier, - STATE(3422), 1, - sym_type_index, - STATE(3561), 1, - sym_operator_name, + [154180] = 5, + ACTIONS(4358), 1, + anon_sym_as, + ACTIONS(5385), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4241), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4243), 2, + ACTIONS(4360), 6, + anon_sym_LPAREN, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AMP, - STATE(3368), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5449), 4, - anon_sym_RPAREN, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(4350), 7, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [154581] = 10, - ACTIONS(4094), 1, - anon_sym_operator, - ACTIONS(5890), 1, - sym_identifier, - ACTIONS(5892), 1, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [154208] = 9, + ACTIONS(5897), 1, + anon_sym_LPAREN, + ACTIONS(5908), 1, anon_sym_LBRACK, - STATE(3409), 1, + STATE(3414), 1, sym_type_index, - STATE(3513), 1, - sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3708), 2, + ACTIONS(5895), 2, + sym_identifier, + anon_sym_operator, + ACTIONS(5902), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(3724), 2, + ACTIONS(5905), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3425), 2, + STATE(3399), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5731), 4, - sym__newline, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [154619] = 5, - ACTIONS(5493), 1, - anon_sym_STAR, - ACTIONS(5915), 1, - anon_sym_DOT, - STATE(3404), 1, - aux_sym_class_definition_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5498), 11, - anon_sym_LPAREN, + ACTIONS(5949), 4, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_STAR_STAR, + anon_sym_COLON, anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_complex, - anon_sym___stdcall, - [154646] = 3, + [154244] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5395), 5, + ACTIONS(5932), 6, anon_sym_STAR, + anon_sym_not, + anon_sym_or, sym_identifier, - anon_sym_complex, anon_sym_operator, anon_sym___stdcall, - ACTIONS(5397), 9, + ACTIONS(5934), 9, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -248612,46 +249077,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [154669] = 8, - ACTIONS(5918), 1, + [154268] = 8, + ACTIONS(5908), 1, anon_sym_LBRACK, - STATE(3409), 1, + STATE(3414), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5825), 2, + ACTIONS(5895), 2, sym_identifier, anon_sym_operator, - ACTIONS(5829), 2, + ACTIONS(5902), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5832), 2, + ACTIONS(5905), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3357), 2, + STATE(3399), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(5897), 5, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [154302] = 11, + ACTIONS(5457), 1, + anon_sym_LPAREN, + ACTIONS(5877), 1, + anon_sym_DOT, + ACTIONS(5879), 1, + anon_sym_STAR, + ACTIONS(5883), 1, + anon_sym_LBRACK, + ACTIONS(5952), 1, + anon_sym_complex, + STATE(3428), 1, + aux_sym_class_definition_repeat2, + STATE(3635), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3596), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5910), 4, - sym__newline, - anon_sym_LPAREN, + ACTIONS(5460), 3, anon_sym_COMMA, anon_sym_EQ, - [154702] = 5, - ACTIONS(5924), 1, - anon_sym_DOT, - STATE(3428), 1, - aux_sym_type_qualifier_repeat1, + anon_sym_RBRACK, + ACTIONS(5881), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + [154342] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5922), 4, + ACTIONS(5918), 5, anon_sym_STAR, + anon_sym_not, + anon_sym_or, sym_identifier, - anon_sym_operator, anon_sym___stdcall, - ACTIONS(5926), 8, - sym__newline, + ACTIONS(5920), 10, + anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -248659,66 +249151,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [154729] = 8, - ACTIONS(5825), 1, - sym_identifier, - ACTIONS(5934), 1, + anon_sym_GT, + anon_sym_QMARK, + [154366] = 9, + ACTIONS(5897), 1, + anon_sym_LPAREN, + ACTIONS(5908), 1, anon_sym_LBRACK, - STATE(3455), 1, + STATE(3414), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5928), 2, + ACTIONS(5895), 2, + sym_identifier, + anon_sym_operator, + ACTIONS(5902), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5931), 2, + ACTIONS(5905), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3408), 2, + STATE(3399), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5827), 5, - anon_sym_LPAREN, + ACTIONS(5954), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [154762] = 5, - ACTIONS(5924), 1, + anon_sym_EQ, + [154402] = 11, + ACTIONS(4255), 1, anon_sym_DOT, - STATE(3407), 1, - aux_sym_type_qualifier_repeat1, + ACTIONS(4257), 1, + anon_sym_STAR, + ACTIONS(4261), 1, + anon_sym_LBRACK, + ACTIONS(5401), 1, + anon_sym_LPAREN, + ACTIONS(5957), 1, + anon_sym_complex, + STATE(3384), 1, + aux_sym_class_definition_repeat2, + STATE(3414), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5937), 4, - anon_sym_STAR, - sym_identifier, - anon_sym_operator, + STATE(3527), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4259), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5939), 8, - sym__newline, - anon_sym_LPAREN, + ACTIONS(5404), 3, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_STAR_STAR, anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_AMP, - [154789] = 4, + [154442] = 4, + ACTIONS(5959), 1, + anon_sym_long, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5603), 2, - anon_sym_int, - anon_sym_double, - ACTIONS(5395), 4, + ACTIONS(5756), 6, anon_sym_STAR, sym_identifier, + anon_sym_int, + anon_sym_double, anon_sym_complex, anon_sym___stdcall, - ACTIONS(5397), 8, + ACTIONS(5758), 8, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -248727,113 +249231,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_QMARK, - [154814] = 11, - ACTIONS(371), 1, - anon_sym_long, - ACTIONS(4094), 1, - anon_sym_operator, - ACTIONS(5941), 1, - sym_identifier, - STATE(3130), 1, - sym__signedness, - STATE(3181), 1, - sym_int_type, - STATE(3321), 1, - sym__longness, - STATE(3509), 1, - sym_operator_name, + [154468] = 5, + ACTIONS(4358), 1, + anon_sym_as, + ACTIONS(5385), 1, + anon_sym_STAR, 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, + ACTIONS(4360), 6, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, anon_sym_complex, - [154853] = 3, + anon_sym___stdcall, + ACTIONS(4350), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_and, + anon_sym_or, + [154496] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5800), 5, + ACTIONS(5961), 2, + sym__newline, + anon_sym_COLON, + ACTIONS(4360), 4, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + ACTIONS(5385), 4, anon_sym_STAR, sym_identifier, anon_sym_complex, - anon_sym_operator, anon_sym___stdcall, - ACTIONS(5802), 9, - sym__newline, - anon_sym_DOT, + ACTIONS(5963), 4, + anon_sym_except, + anon_sym_with, + anon_sym_nogil, + anon_sym_noexcept, + [154523] = 8, + ACTIONS(5895), 1, + sym_identifier, + ACTIONS(5971), 1, + anon_sym_LBRACK, + STATE(3468), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5965), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(5968), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3407), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(5897), 5, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_AMP, - [154876] = 11, - ACTIONS(1356), 1, + anon_sym_GT, + anon_sym_QMARK, + [154556] = 11, + ACTIONS(371), 1, anon_sym_long, - ACTIONS(5121), 1, + ACTIONS(3978), 1, anon_sym_operator, - ACTIONS(5943), 1, + ACTIONS(5974), 1, sym_identifier, - STATE(3124), 1, + STATE(3140), 1, sym__signedness, - STATE(3220), 1, + STATE(3178), 1, sym_int_type, - STATE(3338), 1, + STATE(3368), 1, sym__longness, - STATE(3538), 1, + STATE(3619), 1, sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1352), 2, + ACTIONS(367), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1354), 2, + ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(1348), 3, + ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [154915] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4550), 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_with, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_nogil, - [154936] = 3, + [154595] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5783), 6, - anon_sym_STAR, - sym_identifier, + ACTIONS(5644), 2, anon_sym_int, anon_sym_double, + ACTIONS(5433), 4, + anon_sym_STAR, + sym_identifier, anon_sym_complex, anon_sym___stdcall, - ACTIONS(5785), 8, + ACTIONS(5435), 8, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -248842,80 +249350,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_QMARK, - [154959] = 2, + [154620] = 8, + ACTIONS(5976), 1, + anon_sym_LBRACK, + STATE(3444), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4554), 14, + ACTIONS(5895), 2, + sym_identifier, + anon_sym_operator, + ACTIONS(5938), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(5941), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3393), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(5899), 4, sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, + anon_sym_LPAREN, 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, - [154980] = 2, + [154653] = 8, + ACTIONS(5105), 1, + anon_sym_STAR, + ACTIONS(5109), 1, + anon_sym_LBRACK, + ACTIONS(5980), 1, + anon_sym_complex, + STATE(3468), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4517), 14, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, + STATE(3452), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(5107), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(5750), 5, + anon_sym_LPAREN, 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, - [155001] = 8, - ACTIONS(5945), 1, + anon_sym_GT, + anon_sym_QMARK, + [154686] = 8, + ACTIONS(5982), 1, anon_sym_LBRACK, - STATE(3409), 1, + STATE(3444), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5825), 2, + ACTIONS(5895), 2, sym_identifier, anon_sym_operator, - ACTIONS(5829), 2, + ACTIONS(5938), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5832), 2, + ACTIONS(5941), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3357), 2, + STATE(3393), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5895), 4, + ACTIONS(5926), 4, sym__newline, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [155034] = 3, + [154719] = 5, + ACTIONS(5990), 1, + anon_sym_LBRACK, + STATE(3510), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5949), 5, + ACTIONS(5986), 4, anon_sym_STAR, sym_identifier, - anon_sym_complex, anon_sym_operator, anon_sym___stdcall, - ACTIONS(5951), 9, + ACTIONS(5988), 8, sym__newline, anon_sym_DOT, anon_sym_LPAREN, @@ -248923,66 +249446,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_STAR_STAR, anon_sym_EQ, - anon_sym_LBRACK, anon_sym_AMP, - [155057] = 5, - ACTIONS(5957), 1, - anon_sym_LBRACK, - STATE(3506), 1, - sym_type_index, + [154746] = 5, + ACTIONS(5995), 1, + anon_sym_DOT, + STATE(3424), 1, + aux_sym_type_qualifier_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5953), 4, + ACTIONS(5993), 4, anon_sym_STAR, sym_identifier, anon_sym_operator, anon_sym___stdcall, - ACTIONS(5955), 8, - anon_sym_DOT, + ACTIONS(5997), 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, - [155084] = 5, + [154773] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5960), 2, + ACTIONS(5821), 5, + anon_sym_STAR, + sym_identifier, + anon_sym_complex, + anon_sym_operator, + anon_sym___stdcall, + ACTIONS(5823), 9, sym__newline, - anon_sym_COLON, - ACTIONS(4360), 4, + 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, - ACTIONS(5385), 4, + [154796] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5433), 5, anon_sym_STAR, sym_identifier, anon_sym_complex, + anon_sym_operator, anon_sym___stdcall, - ACTIONS(5962), 4, - anon_sym_except, - anon_sym_with, - anon_sym_nogil, - anon_sym_noexcept, - [155111] = 5, - ACTIONS(5964), 1, + ACTIONS(5435), 9, + sym__newline, anon_sym_DOT, - STATE(3435), 1, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_AMP, + [154819] = 5, + ACTIONS(5999), 1, + anon_sym_DOT, + STATE(3417), 1, aux_sym_type_qualifier_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5937), 4, + ACTIONS(5986), 4, anon_sym_STAR, sym_identifier, anon_sym_operator, anon_sym___stdcall, - ACTIONS(5939), 8, + ACTIONS(5988), 8, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -248991,306 +249531,269 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [155138] = 4, + [154846] = 11, + ACTIONS(1356), 1, + anon_sym_long, + ACTIONS(5113), 1, + anon_sym_operator, + ACTIONS(6002), 1, + sym_identifier, + STATE(3142), 1, + sym_int_type, + STATE(3148), 1, + sym__signedness, + STATE(3367), 1, + sym__longness, + STATE(3610), 1, + sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5966), 2, + ACTIONS(1352), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(1354), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(1348), 3, anon_sym_int, anon_sym_double, - ACTIONS(5800), 4, + anon_sym_complex, + [154885] = 5, + ACTIONS(6004), 1, + anon_sym_DOT, + STATE(3419), 1, + aux_sym_type_qualifier_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5986), 4, anon_sym_STAR, sym_identifier, - anon_sym_complex, + anon_sym_operator, anon_sym___stdcall, - ACTIONS(5802), 8, + ACTIONS(5988), 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, - anon_sym_GT, - anon_sym_QMARK, - [155163] = 3, + [154912] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5800), 5, + ACTIONS(5815), 6, anon_sym_STAR, sym_identifier, + anon_sym_int, + anon_sym_double, anon_sym_complex, - anon_sym_operator, anon_sym___stdcall, - ACTIONS(5802), 9, - anon_sym_DOT, + ACTIONS(5817), 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, - [155186] = 8, - ACTIONS(5968), 1, - anon_sym_LBRACK, - STATE(3409), 1, - sym_type_index, + anon_sym_GT, + anon_sym_QMARK, + [154935] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5825), 2, + ACTIONS(6007), 5, + anon_sym_STAR, sym_identifier, + anon_sym_complex, anon_sym_operator, - ACTIONS(5829), 2, - anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5832), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3357), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5907), 4, + ACTIONS(6009), 9, sym__newline, + anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_STAR_STAR, anon_sym_EQ, - [155219] = 11, - ACTIONS(3701), 1, + anon_sym_LBRACK, + anon_sym_AMP, + [154958] = 11, + ACTIONS(3705), 1, anon_sym_DOT, - ACTIONS(3708), 1, + ACTIONS(3712), 1, anon_sym_STAR, - ACTIONS(3718), 1, + ACTIONS(3722), 1, anon_sym_LBRACK, - ACTIONS(5533), 1, + ACTIONS(5401), 1, anon_sym_LPAREN, - ACTIONS(5972), 1, + ACTIONS(6011), 1, anon_sym_complex, - STATE(3278), 1, + STATE(3433), 1, aux_sym_class_definition_repeat2, - STATE(3409), 1, + STATE(3444), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5536), 2, + ACTIONS(5404), 2, sym__newline, anon_sym_COLON, - STATE(3700), 2, + STATE(3698), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(3728), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [155258] = 5, - ACTIONS(5974), 1, - anon_sym_LBRACK, - STATE(3462), 1, - sym_type_index, + [154997] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5953), 4, - anon_sym_STAR, - sym_identifier, - anon_sym_operator, - anon_sym___stdcall, - ACTIONS(5955), 8, + ACTIONS(4570), 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, - [155285] = 5, - ACTIONS(5977), 1, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_nogil, + [155018] = 5, + ACTIONS(5995), 1, anon_sym_DOT, - STATE(3428), 1, + STATE(3417), 1, aux_sym_type_qualifier_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5953), 4, + ACTIONS(6013), 4, anon_sym_STAR, sym_identifier, anon_sym_operator, anon_sym___stdcall, - ACTIONS(5955), 8, - sym__newline, + ACTIONS(6015), 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, - [155312] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4201), 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_with, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_nogil, - [155333] = 9, - ACTIONS(5113), 1, + [155045] = 9, + ACTIONS(5105), 1, anon_sym_STAR, - ACTIONS(5117), 1, + ACTIONS(5109), 1, anon_sym_LBRACK, - ACTIONS(5500), 1, + ACTIONS(5411), 1, anon_sym_LPAREN, - ACTIONS(5980), 1, + ACTIONS(6017), 1, anon_sym_complex, - STATE(3455), 1, + STATE(3468), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3473), 2, + STATE(3493), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5115), 3, + ACTIONS(5107), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5503), 4, + ACTIONS(5414), 4, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [155368] = 8, - ACTIONS(5113), 1, - anon_sym_STAR, - ACTIONS(5117), 1, + [155080] = 5, + ACTIONS(6019), 1, anon_sym_LBRACK, - ACTIONS(5982), 1, - anon_sym_complex, - STATE(3455), 1, + STATE(3466), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3490), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5115), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, + ACTIONS(5986), 4, + anon_sym_STAR, + sym_identifier, + anon_sym_operator, anon_sym___stdcall, - ACTIONS(5729), 5, + ACTIONS(5988), 8, + anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [155401] = 9, - ACTIONS(5113), 1, - anon_sym_STAR, - ACTIONS(5117), 1, - anon_sym_LBRACK, - ACTIONS(5741), 1, - anon_sym_LPAREN, - ACTIONS(5984), 1, - anon_sym_complex, - STATE(3455), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3456), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5115), 3, anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5744), 4, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [155436] = 8, - ACTIONS(5986), 1, - anon_sym_LBRACK, - STATE(3409), 1, - sym_type_index, + [155107] = 5, + ACTIONS(6022), 1, + anon_sym_DOT, + STATE(3419), 1, + aux_sym_type_qualifier_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5825), 2, + ACTIONS(6013), 4, + anon_sym_STAR, sym_identifier, anon_sym_operator, - ACTIONS(5829), 2, - anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5832), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3357), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5874), 4, + ACTIONS(6015), 8, sym__newline, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_STAR_STAR, anon_sym_EQ, - [155469] = 10, - ACTIONS(3701), 1, - anon_sym_DOT, - ACTIONS(3708), 1, - anon_sym_STAR, - ACTIONS(3718), 1, anon_sym_LBRACK, - ACTIONS(5990), 1, - anon_sym_complex, - STATE(3278), 1, + anon_sym_AMP, + [155134] = 5, + ACTIONS(5572), 1, + anon_sym_STAR, + ACTIONS(6024), 1, + anon_sym_DOT, + STATE(3428), 1, aux_sym_class_definition_repeat2, - STATE(3409), 1, - sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3689), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(5577), 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, - ACTIONS(5447), 3, - sym__newline, - anon_sym_LPAREN, - anon_sym_COLON, - [155506] = 5, - ACTIONS(5964), 1, - anon_sym_DOT, - STATE(3442), 1, - aux_sym_type_qualifier_repeat1, + [155161] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5922), 4, + ACTIONS(6007), 5, anon_sym_STAR, sym_identifier, + anon_sym_complex, anon_sym_operator, anon_sym___stdcall, - ACTIONS(5926), 8, + ACTIONS(6009), 9, + anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -249299,115 +249802,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [155533] = 8, - ACTIONS(5992), 1, + [155184] = 8, + ACTIONS(6027), 1, anon_sym_LBRACK, - STATE(3409), 1, + STATE(3444), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5825), 2, + ACTIONS(5895), 2, sym_identifier, anon_sym_operator, - ACTIONS(5829), 2, + ACTIONS(5938), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5832), 2, + ACTIONS(5941), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3357), 2, + STATE(3393), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5862), 4, + ACTIONS(5949), 4, sym__newline, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [155566] = 8, - ACTIONS(5996), 1, + [155217] = 8, + ACTIONS(6031), 1, anon_sym_LBRACK, - STATE(3409), 1, + STATE(3444), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5825), 2, + ACTIONS(5895), 2, sym_identifier, anon_sym_operator, - ACTIONS(5829), 2, + ACTIONS(5938), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5832), 2, + ACTIONS(5941), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3357), 2, + STATE(3393), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5877), 4, + ACTIONS(5929), 4, sym__newline, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [155599] = 3, + [155250] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5395), 5, + ACTIONS(6035), 2, + anon_sym_int, + anon_sym_double, + ACTIONS(5821), 4, anon_sym_STAR, sym_identifier, anon_sym_complex, - anon_sym_operator, anon_sym___stdcall, - ACTIONS(5397), 9, - sym__newline, - anon_sym_DOT, + ACTIONS(5823), 8, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [155622] = 11, - ACTIONS(3701), 1, + anon_sym_GT, + anon_sym_QMARK, + [155275] = 11, + ACTIONS(3705), 1, anon_sym_DOT, - ACTIONS(3708), 1, + ACTIONS(3712), 1, anon_sym_STAR, - ACTIONS(3718), 1, + ACTIONS(3722), 1, anon_sym_LBRACK, - ACTIONS(5469), 1, + ACTIONS(5457), 1, anon_sym_LPAREN, - ACTIONS(6000), 1, + ACTIONS(6037), 1, anon_sym_complex, - STATE(3409), 1, - sym_type_index, - STATE(3426), 1, + STATE(3291), 1, aux_sym_class_definition_repeat2, + STATE(3444), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5472), 2, + ACTIONS(5460), 2, sym__newline, anon_sym_COLON, - STATE(3690), 2, + STATE(3703), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(3728), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + [155314] = 8, + ACTIONS(6039), 1, + anon_sym_LBRACK, + STATE(3444), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5895), 2, + sym_identifier, + anon_sym_operator, + ACTIONS(5938), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(5941), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3393), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(5915), 4, + sym__newline, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [155347] = 10, + ACTIONS(3705), 1, + anon_sym_DOT, + ACTIONS(3712), 1, + anon_sym_STAR, + ACTIONS(3722), 1, + anon_sym_LBRACK, + ACTIONS(6043), 1, + anon_sym_complex, + STATE(3291), 1, + aux_sym_class_definition_repeat2, + STATE(3444), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3697), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(3728), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [155661] = 3, + ACTIONS(5487), 3, + sym__newline, + anon_sym_LPAREN, + anon_sym_COLON, + [155384] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5949), 5, + ACTIONS(5821), 5, anon_sym_STAR, sym_identifier, anon_sym_complex, anon_sym_operator, anon_sym___stdcall, - ACTIONS(5951), 9, + ACTIONS(5823), 9, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -249417,45 +249973,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [155684] = 8, - ACTIONS(5113), 1, + [155407] = 8, + ACTIONS(5105), 1, anon_sym_STAR, - ACTIONS(5117), 1, + ACTIONS(5109), 1, anon_sym_LBRACK, - ACTIONS(6002), 1, + ACTIONS(6045), 1, anon_sym_complex, - STATE(3455), 1, + STATE(3468), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3452), 2, + STATE(3475), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5115), 3, + ACTIONS(5107), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5461), 5, + ACTIONS(5495), 5, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [155717] = 5, - ACTIONS(6004), 1, - anon_sym_DOT, - STATE(3442), 1, - aux_sym_type_qualifier_repeat1, + [155440] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5953), 4, + ACTIONS(5433), 5, anon_sym_STAR, sym_identifier, + anon_sym_complex, anon_sym_operator, anon_sym___stdcall, - ACTIONS(5955), 8, + ACTIONS(5435), 9, + anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -249464,310 +250018,355 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [155744] = 5, - ACTIONS(6007), 1, - anon_sym_DOT, - STATE(3460), 1, - aux_sym_type_qualifier_repeat1, + [155463] = 9, + ACTIONS(5105), 1, + anon_sym_STAR, + ACTIONS(5109), 1, + anon_sym_LBRACK, + ACTIONS(5710), 1, + anon_sym_LPAREN, + ACTIONS(6047), 1, + anon_sym_complex, + STATE(3468), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5922), 3, - anon_sym_STAR, - sym_identifier, + STATE(3502), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(5107), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5926), 8, - anon_sym_LPAREN, + ACTIONS(5713), 4, anon_sym_COMMA, anon_sym_COLON, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, anon_sym_GT, anon_sym_QMARK, - [155770] = 11, - ACTIONS(5117), 1, - anon_sym_LBRACK, - ACTIONS(5447), 1, - anon_sym_LPAREN, - ACTIONS(5717), 1, + [155498] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4586), 14, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(6009), 1, - sym_identifier, - ACTIONS(6011), 1, - anon_sym_complex, - STATE(3148), 1, - aux_sym_class_definition_repeat2, - STATE(3455), 1, + anon_sym_from, + 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, + [155519] = 8, + ACTIONS(6049), 1, + anon_sym_LBRACK, + STATE(3444), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5113), 2, + ACTIONS(5895), 2, + sym_identifier, + anon_sym_operator, + ACTIONS(5938), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5115), 2, + ACTIONS(5941), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3753), 2, + STATE(3393), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [155808] = 11, - ACTIONS(5117), 1, - anon_sym_LBRACK, - ACTIONS(5533), 1, + ACTIONS(5954), 4, + sym__newline, anon_sym_LPAREN, - ACTIONS(5717), 1, + anon_sym_COMMA, + anon_sym_EQ, + [155552] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4205), 14, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(6013), 1, - sym_identifier, - ACTIONS(6015), 1, - anon_sym_complex, - STATE(3148), 1, - aux_sym_class_definition_repeat2, - STATE(3455), 1, - sym_type_index, + anon_sym_from, + 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, + [155573] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5113), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(5115), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3768), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [155846] = 11, - ACTIONS(3703), 1, - anon_sym_LPAREN, - ACTIONS(3714), 1, - sym_identifier, - ACTIONS(5117), 1, - anon_sym_LBRACK, - ACTIONS(5717), 1, + ACTIONS(4605), 14, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(6017), 1, - anon_sym_complex, - STATE(3455), 1, - sym_type_index, - STATE(3485), 1, - aux_sym_class_definition_repeat2, + anon_sym_from, + 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, + [155594] = 5, + ACTIONS(6022), 1, + anon_sym_DOT, + STATE(3427), 1, + aux_sym_type_qualifier_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5113), 2, + ACTIONS(5993), 4, anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(5115), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3713), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [155884] = 12, - ACTIONS(6019), 1, sym_identifier, - ACTIONS(6021), 1, + anon_sym_operator, + anon_sym___stdcall, + ACTIONS(5997), 8, + sym__newline, anon_sym_LPAREN, - ACTIONS(6023), 1, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_LBRACK, - STATE(623), 1, - sym_c_function_definition, - STATE(3891), 1, - sym_c_name, - STATE(3918), 1, - sym_c_parameters, - STATE(4976), 1, - sym_type_index, - STATE(5261), 1, - sym_template_params, - STATE(5575), 1, - sym_type_qualifier, + anon_sym_AMP, + [155621] = 4, + ACTIONS(5756), 1, + anon_sym_STAR, + ACTIONS(6053), 1, + anon_sym_long, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5113), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(5115), 2, + ACTIONS(5758), 11, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AMP, - [155924] = 7, - ACTIONS(5113), 1, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + anon_sym___stdcall, + [155645] = 8, + ACTIONS(5105), 1, anon_sym_STAR, - ACTIONS(5117), 1, + ACTIONS(5109), 1, anon_sym_LBRACK, - STATE(3455), 1, + ACTIONS(6055), 1, + anon_sym_LPAREN, + STATE(3468), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3408), 2, + STATE(3407), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5115), 3, + ACTIONS(5107), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5729), 5, - anon_sym_LPAREN, + ACTIONS(6058), 4, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [155954] = 9, - ACTIONS(5741), 1, + [155677] = 4, + ACTIONS(5385), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4350), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(4360), 6, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_complex, + anon_sym___stdcall, + [155701] = 9, + ACTIONS(5710), 1, anon_sym_LPAREN, - ACTIONS(5773), 1, + ACTIONS(5879), 1, anon_sym_STAR, - ACTIONS(5777), 1, + ACTIONS(5883), 1, anon_sym_LBRACK, - ACTIONS(6025), 1, + ACTIONS(6060), 1, anon_sym_complex, - STATE(3619), 1, + STATE(3635), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3594), 2, + STATE(3600), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5744), 3, + ACTIONS(5713), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_RBRACK, - ACTIONS(5775), 3, + ACTIONS(5881), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [155988] = 8, - ACTIONS(5773), 1, + [155735] = 8, + ACTIONS(4257), 1, anon_sym_STAR, - ACTIONS(5777), 1, + ACTIONS(4261), 1, anon_sym_LBRACK, - ACTIONS(6027), 1, + ACTIONS(6062), 1, anon_sym_complex, - STATE(3619), 1, + STATE(3414), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3588), 2, + STATE(3584), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5775), 3, + ACTIONS(4259), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5729), 4, + ACTIONS(5495), 4, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - anon_sym_RBRACK, - [156020] = 6, - ACTIONS(6029), 1, - anon_sym_as, - ACTIONS(6031), 1, - anon_sym_if, - ACTIONS(6033), 1, - anon_sym_and, - ACTIONS(6035), 1, - anon_sym_or, + [155767] = 10, + ACTIONS(3705), 1, + anon_sym_DOT, + ACTIONS(3712), 1, + anon_sym_STAR, + ACTIONS(3722), 1, + anon_sym_LBRACK, + ACTIONS(3726), 1, + anon_sym_complex, + STATE(3435), 1, + aux_sym_class_definition_repeat2, + STATE(3444), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4465), 9, + ACTIONS(3707), 2, sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_with, - anon_sym_PIPE, - anon_sym_nogil, - [156048] = 7, - ACTIONS(5113), 1, + anon_sym_LPAREN, + STATE(3687), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(3728), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + [155803] = 7, + ACTIONS(5105), 1, anon_sym_STAR, - ACTIONS(5117), 1, + ACTIONS(5109), 1, anon_sym_LBRACK, - STATE(3455), 1, + STATE(3468), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3408), 2, + STATE(3500), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5115), 3, + ACTIONS(5107), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5503), 5, + ACTIONS(5713), 5, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [156078] = 9, - ACTIONS(5500), 1, - anon_sym_LPAREN, - ACTIONS(5773), 1, + [155833] = 7, + ACTIONS(5105), 1, anon_sym_STAR, - ACTIONS(5777), 1, + ACTIONS(5109), 1, anon_sym_LBRACK, - ACTIONS(6037), 1, - anon_sym_complex, - STATE(3619), 1, + STATE(3468), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3586), 2, + STATE(3407), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5503), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - ACTIONS(5775), 3, + ACTIONS(5107), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [156112] = 3, - ACTIONS(6033), 1, - anon_sym_and, + ACTIONS(5713), 5, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_GT, + anon_sym_QMARK, + [155863] = 5, + ACTIONS(6064), 1, + anon_sym_LBRACK, + STATE(3581), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4554), 12, - sym__newline, - anon_sym_SEMI, + ACTIONS(5986), 3, + anon_sym_STAR, + sym_identifier, + anon_sym___stdcall, + ACTIONS(5988), 8, anon_sym_DOT, - anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, - anon_sym_with, - anon_sym_PIPE, - anon_sym_or, - anon_sym_nogil, - [156134] = 5, - ACTIONS(6007), 1, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym_GT, + anon_sym_QMARK, + [155889] = 5, + ACTIONS(6067), 1, anon_sym_DOT, - STATE(3443), 1, + STATE(3454), 1, aux_sym_type_qualifier_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5937), 3, + ACTIONS(5986), 3, anon_sym_STAR, sym_identifier, anon_sym___stdcall, - ACTIONS(5939), 8, + ACTIONS(5988), 8, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -249776,593 +250375,610 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_QMARK, - [156160] = 8, - ACTIONS(5113), 1, + [155915] = 7, + ACTIONS(5105), 1, anon_sym_STAR, - ACTIONS(5117), 1, + ACTIONS(5109), 1, anon_sym_LBRACK, - ACTIONS(6039), 1, - anon_sym_LPAREN, - STATE(3455), 1, + STATE(3468), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3408), 2, + STATE(3407), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5115), 3, + ACTIONS(5107), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6042), 4, + ACTIONS(5779), 5, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [156192] = 12, - ACTIONS(6021), 1, - anon_sym_LPAREN, - ACTIONS(6023), 1, + [155945] = 8, + ACTIONS(5105), 1, + anon_sym_STAR, + ACTIONS(5109), 1, anon_sym_LBRACK, - ACTIONS(6044), 1, - sym_identifier, - STATE(1258), 1, - sym_c_function_definition, - STATE(3899), 1, - sym_c_parameters, - STATE(3944), 1, - sym_c_name, - STATE(4976), 1, + ACTIONS(5703), 1, + anon_sym_LPAREN, + STATE(3468), 1, sym_type_index, - STATE(5300), 1, - sym_template_params, - STATE(5575), 1, - sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5113), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(5115), 2, + STATE(3407), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(5107), 3, anon_sym_STAR_STAR, anon_sym_AMP, - [156232] = 5, - ACTIONS(6046), 1, + anon_sym___stdcall, + ACTIONS(5706), 4, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_GT, + anon_sym_QMARK, + [155977] = 8, + ACTIONS(5105), 1, + anon_sym_STAR, + ACTIONS(5109), 1, anon_sym_LBRACK, - STATE(3530), 1, + ACTIONS(5703), 1, + anon_sym_LPAREN, + STATE(3468), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5953), 3, - anon_sym_STAR, - sym_identifier, + STATE(3503), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(5107), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5955), 8, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(5706), 4, anon_sym_COMMA, anon_sym_COLON, - anon_sym_STAR_STAR, - anon_sym_AMP, anon_sym_GT, anon_sym_QMARK, - [156258] = 3, + [156009] = 8, + ACTIONS(5105), 1, + anon_sym_STAR, + ACTIONS(5109), 1, + anon_sym_LBRACK, + ACTIONS(5710), 1, + anon_sym_LPAREN, + STATE(3468), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5843), 4, - anon_sym_STAR, - sym_identifier, - anon_sym_operator, + STATE(3407), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(5107), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5845), 9, - sym__newline, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(5713), 4, anon_sym_COMMA, anon_sym_COLON, + anon_sym_GT, + anon_sym_QMARK, + [156041] = 9, + ACTIONS(4257), 1, + anon_sym_STAR, + ACTIONS(4261), 1, + anon_sym_LBRACK, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(6070), 1, + anon_sym_complex, + STATE(3414), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3528), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4259), 3, anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(5414), 3, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_EQ, + [156075] = 11, + ACTIONS(3707), 1, + anon_sym_LPAREN, + ACTIONS(3718), 1, + sym_identifier, + ACTIONS(5109), 1, anon_sym_LBRACK, - anon_sym_AMP, - [156280] = 5, - ACTIONS(6049), 1, + ACTIONS(5715), 1, anon_sym_DOT, - STATE(3460), 1, - aux_sym_type_qualifier_repeat1, + ACTIONS(6072), 1, + anon_sym_complex, + STATE(3468), 1, + sym_type_index, + STATE(3483), 1, + aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5953), 3, + ACTIONS(5105), 2, anon_sym_STAR, - sym_identifier, anon_sym___stdcall, - ACTIONS(5955), 8, + ACTIONS(5107), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3748), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [156113] = 12, + ACTIONS(6074), 1, + sym_identifier, + ACTIONS(6076), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(6078), 1, + anon_sym_LBRACK, + STATE(699), 1, + sym_c_function_definition, + STATE(3935), 1, + sym_c_name, + STATE(3939), 1, + sym_c_parameters, + STATE(5024), 1, + sym_type_index, + STATE(5274), 1, + sym_template_params, + STATE(5648), 1, + sym_type_qualifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5105), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(5107), 2, anon_sym_STAR_STAR, + anon_sym_AMP, + [156153] = 11, + ACTIONS(5109), 1, anon_sym_LBRACK, + ACTIONS(5487), 1, + anon_sym_LPAREN, + ACTIONS(5715), 1, + anon_sym_DOT, + ACTIONS(6080), 1, + sym_identifier, + ACTIONS(6082), 1, + anon_sym_complex, + STATE(3182), 1, + aux_sym_class_definition_repeat2, + STATE(3468), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5105), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(5107), 2, + anon_sym_STAR_STAR, anon_sym_AMP, - anon_sym_GT, - anon_sym_QMARK, - [156306] = 3, + STATE(3723), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [156191] = 11, + ACTIONS(5109), 1, + anon_sym_LBRACK, + ACTIONS(5401), 1, + anon_sym_LPAREN, + ACTIONS(5715), 1, + anon_sym_DOT, + ACTIONS(6084), 1, + sym_identifier, + ACTIONS(6086), 1, + anon_sym_complex, + STATE(3465), 1, + aux_sym_class_definition_repeat2, + STATE(3468), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5817), 4, + ACTIONS(5105), 2, anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(5107), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3752), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [156229] = 12, + ACTIONS(6076), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6088), 1, sym_identifier, - anon_sym_operator, + STATE(703), 1, + sym_c_function_definition, + STATE(3939), 1, + sym_c_parameters, + STATE(3963), 1, + sym_c_name, + STATE(5024), 1, + sym_type_index, + STATE(5274), 1, + sym_template_params, + STATE(5648), 1, + sym_type_qualifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5105), 2, + anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5819), 9, - sym__newline, - anon_sym_DOT, + ACTIONS(5107), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + [156269] = 11, + ACTIONS(5109), 1, + anon_sym_LBRACK, + ACTIONS(5457), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(5715), 1, + anon_sym_DOT, + ACTIONS(6090), 1, + sym_identifier, + ACTIONS(6092), 1, + anon_sym_complex, + STATE(3182), 1, + aux_sym_class_definition_repeat2, + STATE(3468), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5105), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(5107), 2, anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, anon_sym_AMP, - [156328] = 3, + STATE(3766), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [156307] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6052), 4, + ACTIONS(6094), 4, anon_sym_STAR, sym_identifier, anon_sym_operator, anon_sym___stdcall, - ACTIONS(6054), 9, - sym__newline, + ACTIONS(6096), 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, - [156350] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5443), 2, - sym__dedent, - anon_sym_LPAREN, - ACTIONS(6056), 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, - [156372] = 7, - ACTIONS(5113), 1, + [156329] = 7, + ACTIONS(5105), 1, anon_sym_STAR, - ACTIONS(5117), 1, + ACTIONS(5109), 1, anon_sym_LBRACK, - STATE(3455), 1, + STATE(3468), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3408), 2, + STATE(3487), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5115), 3, + ACTIONS(5107), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5447), 5, + ACTIONS(5487), 5, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [156402] = 7, - ACTIONS(5113), 1, + [156359] = 5, + ACTIONS(6098), 1, + anon_sym_DOT, + STATE(3488), 1, + aux_sym_type_qualifier_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5993), 3, anon_sym_STAR, - ACTIONS(5117), 1, + sym_identifier, + anon_sym___stdcall, + ACTIONS(5997), 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, + [156385] = 7, + ACTIONS(5105), 1, + anon_sym_STAR, + ACTIONS(5109), 1, anon_sym_LBRACK, - STATE(3455), 1, + STATE(3468), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3448), 2, + STATE(3407), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5115), 3, + ACTIONS(5107), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5503), 5, + ACTIONS(5487), 5, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [156432] = 9, - ACTIONS(4241), 1, + [156415] = 3, + ACTIONS(5572), 1, anon_sym_STAR, - ACTIONS(4245), 1, - anon_sym_LBRACK, - ACTIONS(5741), 1, - anon_sym_LPAREN, - ACTIONS(6058), 1, - anon_sym_complex, - STATE(3422), 1, - sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3570), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4243), 3, + ACTIONS(5577), 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, + anon_sym_complex, anon_sym___stdcall, - ACTIONS(5744), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [156466] = 8, - ACTIONS(5113), 1, + [156437] = 8, + ACTIONS(4257), 1, anon_sym_STAR, - ACTIONS(5117), 1, + ACTIONS(4261), 1, anon_sym_LBRACK, - ACTIONS(5741), 1, - anon_sym_LPAREN, - STATE(3455), 1, + ACTIONS(6100), 1, + anon_sym_complex, + STATE(3414), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3408), 2, + STATE(3534), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5115), 3, + ACTIONS(4259), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5744), 4, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [156498] = 6, - ACTIONS(6029), 1, - anon_sym_as, - ACTIONS(6031), 1, - anon_sym_if, - ACTIONS(6033), 1, - anon_sym_and, - ACTIONS(6035), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4605), 9, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, + ACTIONS(5750), 4, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_with, - anon_sym_PIPE, - anon_sym_nogil, - [156526] = 6, - ACTIONS(6029), 1, - anon_sym_as, - ACTIONS(6031), 1, - anon_sym_if, - ACTIONS(6033), 1, - anon_sym_and, - ACTIONS(6035), 1, - anon_sym_or, + anon_sym_EQ, + [156469] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4569), 9, + ACTIONS(5932), 4, + anon_sym_STAR, + sym_identifier, + anon_sym_operator, + anon_sym___stdcall, + ACTIONS(5934), 9, sym__newline, - anon_sym_SEMI, anon_sym_DOT, - anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, - anon_sym_with, - anon_sym_PIPE, - anon_sym_nogil, - [156554] = 7, - ACTIONS(5113), 1, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_AMP, + [156491] = 7, + ACTIONS(5105), 1, anon_sym_STAR, - ACTIONS(5117), 1, + ACTIONS(5109), 1, anon_sym_LBRACK, - STATE(3455), 1, + STATE(3468), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3408), 2, + STATE(3494), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5115), 3, + ACTIONS(5107), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5735), 5, + ACTIONS(5414), 5, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [156584] = 10, - ACTIONS(3701), 1, - anon_sym_DOT, - ACTIONS(3708), 1, - anon_sym_STAR, - ACTIONS(3718), 1, - anon_sym_LBRACK, - ACTIONS(3722), 1, - anon_sym_complex, - STATE(3409), 1, - sym_type_index, - STATE(3434), 1, - aux_sym_class_definition_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3703), 2, - sym__newline, - anon_sym_LPAREN, - STATE(3683), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3724), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - [156620] = 12, - ACTIONS(6021), 1, + [156521] = 12, + ACTIONS(6076), 1, anon_sym_LPAREN, - ACTIONS(6023), 1, + ACTIONS(6078), 1, anon_sym_LBRACK, - ACTIONS(6060), 1, + ACTIONS(6102), 1, sym_identifier, - STATE(2845), 1, + STATE(1215), 1, sym_c_function_definition, - STATE(3869), 1, + STATE(3933), 1, sym_c_name, - STATE(3890), 1, + STATE(3968), 1, sym_c_parameters, - STATE(4976), 1, + STATE(5024), 1, sym_type_index, - STATE(5210), 1, + STATE(5202), 1, sym_template_params, - STATE(5575), 1, + STATE(5648), 1, sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5113), 2, + ACTIONS(5105), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5115), 2, + ACTIONS(5107), 2, anon_sym_STAR_STAR, anon_sym_AMP, - [156660] = 8, - ACTIONS(5113), 1, + [156561] = 7, + ACTIONS(5105), 1, anon_sym_STAR, - ACTIONS(5117), 1, + ACTIONS(5109), 1, anon_sym_LBRACK, - ACTIONS(5751), 1, - anon_sym_LPAREN, - STATE(3455), 1, + STATE(3468), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3408), 2, + STATE(3407), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5115), 3, + ACTIONS(5107), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5729), 4, + ACTIONS(5414), 5, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [156692] = 8, - ACTIONS(5113), 1, - anon_sym_STAR, - ACTIONS(5117), 1, - anon_sym_LBRACK, - ACTIONS(6039), 1, - anon_sym_LPAREN, - STATE(3455), 1, - sym_type_index, + [156591] = 6, + ACTIONS(6104), 1, + anon_sym_as, + ACTIONS(6106), 1, + anon_sym_if, + ACTIONS(6108), 1, + anon_sym_and, + ACTIONS(6110), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3496), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5115), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(6042), 4, + ACTIONS(4574), 9, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, anon_sym_COMMA, anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [156724] = 4, - ACTIONS(6064), 1, - anon_sym_AT, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3475), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - ACTIONS(6062), 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, - [156748] = 12, - ACTIONS(6021), 1, - anon_sym_LPAREN, - ACTIONS(6023), 1, - anon_sym_LBRACK, - ACTIONS(6067), 1, - sym_identifier, - STATE(633), 1, - sym_c_function_definition, - STATE(3910), 1, - sym_c_name, - STATE(3918), 1, - sym_c_parameters, - STATE(4976), 1, - sym_type_index, - STATE(5261), 1, - sym_template_params, - STATE(5575), 1, - sym_type_qualifier, + anon_sym_with, + anon_sym_PIPE, + anon_sym_nogil, + [156619] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5113), 2, + ACTIONS(5887), 4, anon_sym_STAR, + sym_identifier, + anon_sym_operator, anon_sym___stdcall, - ACTIONS(5115), 2, + ACTIONS(5889), 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, - [156788] = 8, - ACTIONS(4241), 1, + [156641] = 9, + ACTIONS(4257), 1, anon_sym_STAR, - ACTIONS(4245), 1, + ACTIONS(4261), 1, anon_sym_LBRACK, - ACTIONS(6069), 1, + ACTIONS(5710), 1, + anon_sym_LPAREN, + ACTIONS(6112), 1, anon_sym_complex, - STATE(3422), 1, + STATE(3414), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3562), 2, + STATE(3544), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4243), 3, + ACTIONS(4259), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5729), 4, - anon_sym_LPAREN, + ACTIONS(5713), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [156820] = 5, - ACTIONS(6033), 1, + [156675] = 6, + ACTIONS(6104), 1, + anon_sym_as, + ACTIONS(6106), 1, + anon_sym_if, + ACTIONS(6108), 1, anon_sym_and, - ACTIONS(6035), 1, + ACTIONS(6110), 1, anon_sym_or, - ACTIONS(6071), 1, - anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4617), 10, + ACTIONS(4621), 9, 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, - [156846] = 7, - ACTIONS(5113), 1, - anon_sym_STAR, - ACTIONS(5117), 1, - anon_sym_LBRACK, - STATE(3455), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3408), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5115), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5758), 5, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [156876] = 11, - ACTIONS(5117), 1, - anon_sym_LBRACK, - ACTIONS(5533), 1, - anon_sym_LPAREN, - ACTIONS(5717), 1, - anon_sym_DOT, - ACTIONS(6013), 1, - sym_identifier, - ACTIONS(6074), 1, - anon_sym_complex, - STATE(3148), 1, - aux_sym_class_definition_repeat2, - STATE(3455), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5113), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(5115), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3767), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [156914] = 3, + [156703] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5882), 4, + ACTIONS(5891), 4, anon_sym_STAR, sym_identifier, anon_sym_operator, anon_sym___stdcall, - ACTIONS(5884), 9, + ACTIONS(5893), 9, sym__newline, anon_sym_DOT, anon_sym_LPAREN, @@ -250372,1331 +250988,1343 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [156936] = 7, - ACTIONS(5113), 1, + [156725] = 8, + ACTIONS(5879), 1, anon_sym_STAR, - ACTIONS(5117), 1, + ACTIONS(5883), 1, anon_sym_LBRACK, - STATE(3455), 1, + ACTIONS(6114), 1, + anon_sym_complex, + STATE(3635), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3470), 2, + STATE(3593), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5115), 3, + ACTIONS(5881), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5758), 5, + ACTIONS(5750), 4, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [156966] = 4, - ACTIONS(5693), 1, - anon_sym_STAR, + anon_sym_EQ, + anon_sym_RBRACK, + [156757] = 12, ACTIONS(6076), 1, - anon_sym_long, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5695), 11, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_STAR_STAR, - anon_sym_EQ, + ACTIONS(6078), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - anon_sym___stdcall, - [156990] = 3, + ACTIONS(6116), 1, + sym_identifier, + STATE(2927), 1, + sym_c_function_definition, + STATE(3928), 1, + sym_c_parameters, + STATE(3956), 1, + sym_c_name, + STATE(5024), 1, + sym_type_index, + STATE(5224), 1, + sym_template_params, + STATE(5648), 1, + sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5858), 4, + ACTIONS(5105), 2, anon_sym_STAR, - sym_identifier, - anon_sym_operator, anon_sym___stdcall, - ACTIONS(5860), 9, - sym__newline, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(5107), 2, anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, anon_sym_AMP, - [157012] = 11, - ACTIONS(5117), 1, + [156797] = 11, + ACTIONS(5109), 1, anon_sym_LBRACK, - ACTIONS(5447), 1, + ACTIONS(5487), 1, anon_sym_LPAREN, - ACTIONS(5717), 1, + ACTIONS(5715), 1, anon_sym_DOT, - ACTIONS(6009), 1, + ACTIONS(6080), 1, sym_identifier, - ACTIONS(6078), 1, + ACTIONS(6118), 1, anon_sym_complex, - STATE(3148), 1, + STATE(3182), 1, aux_sym_class_definition_repeat2, - STATE(3455), 1, + STATE(3468), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5113), 2, + ACTIONS(5105), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5115), 2, + ACTIONS(5107), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3777), 2, + STATE(3773), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [157050] = 3, + [156835] = 11, + ACTIONS(5109), 1, + anon_sym_LBRACK, + ACTIONS(5401), 1, + anon_sym_LPAREN, + ACTIONS(5715), 1, + anon_sym_DOT, + ACTIONS(6084), 1, + sym_identifier, + ACTIONS(6120), 1, + anon_sym_complex, + STATE(3468), 1, + sym_type_index, + STATE(3486), 1, + aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5854), 4, + ACTIONS(5105), 2, anon_sym_STAR, - sym_identifier, - anon_sym_operator, anon_sym___stdcall, - ACTIONS(5856), 9, - sym__newline, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(5107), 2, anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, anon_sym_AMP, - [157072] = 8, - ACTIONS(5113), 1, - anon_sym_STAR, - ACTIONS(5117), 1, - anon_sym_LBRACK, - ACTIONS(5787), 1, + STATE(3777), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [156873] = 12, + ACTIONS(6076), 1, anon_sym_LPAREN, - STATE(3455), 1, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6122), 1, + sym_identifier, + STATE(2929), 1, + sym_c_function_definition, + STATE(3901), 1, + sym_c_name, + STATE(3928), 1, + sym_c_parameters, + STATE(5024), 1, sym_type_index, + STATE(5224), 1, + sym_template_params, + STATE(5648), 1, + sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3408), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5115), 3, + ACTIONS(5105), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(5107), 2, anon_sym_STAR_STAR, anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5790), 4, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [157104] = 9, - ACTIONS(4241), 1, - anon_sym_STAR, - ACTIONS(4245), 1, + [156913] = 11, + ACTIONS(5109), 1, anon_sym_LBRACK, - ACTIONS(5500), 1, + ACTIONS(5457), 1, anon_sym_LPAREN, - ACTIONS(6080), 1, + ACTIONS(5715), 1, + anon_sym_DOT, + ACTIONS(6090), 1, + sym_identifier, + ACTIONS(6124), 1, anon_sym_complex, - STATE(3422), 1, + STATE(3182), 1, + aux_sym_class_definition_repeat2, + STATE(3468), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3558), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4243), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5503), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [157138] = 3, - ACTIONS(5493), 1, + ACTIONS(5105), 2, anon_sym_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5498), 12, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, + anon_sym___stdcall, + ACTIONS(5107), 2, 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, - [157160] = 7, - ACTIONS(5113), 1, + STATE(3747), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [156951] = 7, + ACTIONS(5105), 1, anon_sym_STAR, - ACTIONS(5117), 1, + ACTIONS(5109), 1, anon_sym_LBRACK, - STATE(3455), 1, + STATE(3468), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3408), 2, + STATE(3407), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5115), 3, + ACTIONS(5107), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5744), 5, + ACTIONS(5745), 5, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [157190] = 11, - ACTIONS(5117), 1, - anon_sym_LBRACK, - ACTIONS(5469), 1, - anon_sym_LPAREN, - ACTIONS(5717), 1, + [156981] = 5, + ACTIONS(6098), 1, anon_sym_DOT, - ACTIONS(6082), 1, - sym_identifier, - ACTIONS(6084), 1, - anon_sym_complex, - STATE(3455), 1, - sym_type_index, - STATE(3480), 1, - aux_sym_class_definition_repeat2, + STATE(3454), 1, + aux_sym_type_qualifier_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5113), 2, + ACTIONS(6013), 3, anon_sym_STAR, + sym_identifier, anon_sym___stdcall, - ACTIONS(5115), 2, + ACTIONS(6015), 8, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AMP, - STATE(3738), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [157228] = 8, - ACTIONS(5113), 1, + anon_sym_GT, + anon_sym_QMARK, + [157007] = 7, + ACTIONS(5105), 1, anon_sym_STAR, - ACTIONS(5117), 1, + ACTIONS(5109), 1, anon_sym_LBRACK, - ACTIONS(5762), 1, - anon_sym_LPAREN, - STATE(3455), 1, + STATE(3468), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3408), 2, + STATE(3455), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5115), 3, + ACTIONS(5107), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5765), 4, + ACTIONS(5745), 5, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [157260] = 7, - ACTIONS(5113), 1, + [157037] = 8, + ACTIONS(5105), 1, anon_sym_STAR, - ACTIONS(5117), 1, + ACTIONS(5109), 1, anon_sym_LBRACK, - STATE(3455), 1, + ACTIONS(5457), 1, + anon_sym_LPAREN, + STATE(3468), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3479), 2, + STATE(3456), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5115), 3, + ACTIONS(5107), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5447), 5, - anon_sym_LPAREN, + ACTIONS(5460), 4, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [157290] = 11, - ACTIONS(5117), 1, - anon_sym_LBRACK, - ACTIONS(5469), 1, - anon_sym_LPAREN, - ACTIONS(5717), 1, - anon_sym_DOT, - ACTIONS(6082), 1, - sym_identifier, - ACTIONS(6086), 1, - anon_sym_complex, - STATE(3445), 1, - aux_sym_class_definition_repeat2, - STATE(3455), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5113), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(5115), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3772), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [157328] = 8, - ACTIONS(5113), 1, + [157069] = 8, + ACTIONS(5105), 1, anon_sym_STAR, - ACTIONS(5117), 1, + ACTIONS(5109), 1, anon_sym_LBRACK, - ACTIONS(5533), 1, + ACTIONS(5457), 1, anon_sym_LPAREN, - STATE(3455), 1, + STATE(3468), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3408), 2, + STATE(3407), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5115), 3, + ACTIONS(5107), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5536), 4, + ACTIONS(5460), 4, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [157360] = 8, - ACTIONS(5113), 1, + [157101] = 8, + ACTIONS(5105), 1, anon_sym_STAR, - ACTIONS(5117), 1, + ACTIONS(5109), 1, anon_sym_LBRACK, - ACTIONS(6088), 1, + ACTIONS(5747), 1, anon_sym_LPAREN, - STATE(3455), 1, + STATE(3468), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3408), 2, + STATE(3458), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5115), 3, + ACTIONS(5107), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6091), 4, + ACTIONS(5750), 4, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [157392] = 8, - ACTIONS(5113), 1, + [157133] = 8, + ACTIONS(5105), 1, anon_sym_STAR, - ACTIONS(5117), 1, + ACTIONS(5109), 1, anon_sym_LBRACK, - ACTIONS(5751), 1, + ACTIONS(5747), 1, anon_sym_LPAREN, - STATE(3455), 1, + STATE(3468), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3467), 2, + STATE(3407), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5115), 3, + ACTIONS(5107), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5729), 4, + ACTIONS(5750), 4, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [157424] = 7, - ACTIONS(5113), 1, + [157165] = 7, + ACTIONS(5105), 1, anon_sym_STAR, - ACTIONS(5117), 1, + ACTIONS(5109), 1, anon_sym_LBRACK, - STATE(3455), 1, + STATE(3468), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3408), 2, + STATE(3407), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5115), 3, + ACTIONS(5107), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6042), 5, + ACTIONS(5750), 5, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [157454] = 4, - ACTIONS(5385), 1, - anon_sym_STAR, + [157195] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4350), 6, - anon_sym_RPAREN, + ACTIONS(5610), 2, + sym__dedent, + anon_sym_LPAREN, + ACTIONS(6126), 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, + [157217] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5918), 4, + anon_sym_STAR, + sym_identifier, + anon_sym_operator, + anon_sym___stdcall, + ACTIONS(5920), 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, + [157239] = 6, + ACTIONS(6104), 1, anon_sym_as, + ACTIONS(6106), 1, anon_sym_if, + ACTIONS(6108), 1, anon_sym_and, + ACTIONS(6110), 1, anon_sym_or, - ACTIONS(4360), 6, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4613), 9, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_with, + anon_sym_PIPE, + anon_sym_nogil, + [157267] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5911), 4, + anon_sym_STAR, + sym_identifier, + anon_sym_operator, + anon_sym___stdcall, + ACTIONS(5913), 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_complex, + [157289] = 12, + ACTIONS(6076), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6128), 1, + sym_identifier, + STATE(1170), 1, + sym_c_function_definition, + STATE(3923), 1, + sym_c_name, + STATE(3968), 1, + sym_c_parameters, + STATE(5024), 1, + sym_type_index, + STATE(5202), 1, + sym_template_params, + STATE(5648), 1, + sym_type_qualifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5105), 2, + anon_sym_STAR, anon_sym___stdcall, - [157478] = 8, - ACTIONS(5773), 1, + ACTIONS(5107), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + [157329] = 7, + ACTIONS(5105), 1, anon_sym_STAR, - ACTIONS(5777), 1, + ACTIONS(5109), 1, anon_sym_LBRACK, - ACTIONS(6093), 1, - anon_sym_complex, - STATE(3619), 1, + STATE(3468), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3578), 2, + STATE(3407), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5775), 3, + ACTIONS(5107), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5461), 4, + ACTIONS(6130), 5, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - [157510] = 8, - ACTIONS(5113), 1, + anon_sym_COLON, + anon_sym_GT, + anon_sym_QMARK, + [157359] = 8, + ACTIONS(5105), 1, anon_sym_STAR, - ACTIONS(5117), 1, + ACTIONS(5109), 1, anon_sym_LBRACK, - ACTIONS(5787), 1, + ACTIONS(6132), 1, anon_sym_LPAREN, - STATE(3455), 1, + STATE(3468), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3492), 2, + STATE(3446), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5115), 3, + ACTIONS(5107), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5790), 4, + ACTIONS(6130), 4, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [157542] = 7, - ACTIONS(5113), 1, + [157391] = 8, + ACTIONS(5105), 1, anon_sym_STAR, - ACTIONS(5117), 1, + ACTIONS(5109), 1, anon_sym_LBRACK, - STATE(3455), 1, + ACTIONS(6132), 1, + anon_sym_LPAREN, + STATE(3468), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3498), 2, + STATE(3407), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5115), 3, + ACTIONS(5107), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5744), 5, - anon_sym_LPAREN, + ACTIONS(6130), 4, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [157572] = 12, - ACTIONS(6021), 1, - anon_sym_LPAREN, - ACTIONS(6023), 1, + [157423] = 8, + ACTIONS(5105), 1, + anon_sym_STAR, + ACTIONS(5109), 1, anon_sym_LBRACK, - ACTIONS(6095), 1, - sym_identifier, - STATE(2809), 1, - sym_c_function_definition, - STATE(3890), 1, - sym_c_parameters, - STATE(3956), 1, - sym_c_name, - STATE(4976), 1, + ACTIONS(5781), 1, + anon_sym_LPAREN, + STATE(3468), 1, sym_type_index, - STATE(5210), 1, - sym_template_params, - STATE(5575), 1, - sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5113), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(5115), 2, + STATE(3407), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(5107), 3, anon_sym_STAR_STAR, anon_sym_AMP, - [157612] = 4, - ACTIONS(6033), 1, + anon_sym___stdcall, + ACTIONS(5784), 4, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_GT, + anon_sym_QMARK, + [157455] = 5, + ACTIONS(6108), 1, anon_sym_and, - ACTIONS(6035), 1, + ACTIONS(6110), 1, anon_sym_or, + ACTIONS(6135), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4577), 11, + ACTIONS(4590), 10, 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, - [157636] = 12, - ACTIONS(6021), 1, - anon_sym_LPAREN, - ACTIONS(6023), 1, - anon_sym_LBRACK, - ACTIONS(6097), 1, - sym_identifier, - STATE(1210), 1, - sym_c_function_definition, - STATE(3899), 1, - sym_c_parameters, - STATE(3940), 1, - sym_c_name, - STATE(4976), 1, - sym_type_index, - STATE(5300), 1, - sym_template_params, - STATE(5575), 1, - sym_type_qualifier, + [157481] = 4, + ACTIONS(6108), 1, + anon_sym_and, + ACTIONS(6110), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5113), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(5115), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - [157676] = 3, + ACTIONS(4597), 11, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_with, + anon_sym_PIPE, + anon_sym_nogil, + [157505] = 3, + ACTIONS(6108), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6052), 4, - anon_sym_STAR, - sym_identifier, - anon_sym_operator, - anon_sym___stdcall, - ACTIONS(6054), 9, + ACTIONS(4605), 12, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + 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, - [157698] = 8, - ACTIONS(4241), 1, + anon_sym_with, + anon_sym_PIPE, + anon_sym_or, + anon_sym_nogil, + [157527] = 4, + ACTIONS(6140), 1, + anon_sym_AT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3507), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + ACTIONS(6138), 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, + [157551] = 8, + ACTIONS(5879), 1, anon_sym_STAR, - ACTIONS(4245), 1, + ACTIONS(5883), 1, anon_sym_LBRACK, - ACTIONS(6099), 1, + ACTIONS(6143), 1, anon_sym_complex, - STATE(3422), 1, + STATE(3635), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, + STATE(3574), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4243), 3, + ACTIONS(5881), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5461), 4, + ACTIONS(5495), 4, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [157730] = 8, - ACTIONS(5113), 1, + anon_sym_RBRACK, + [157583] = 9, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(5879), 1, anon_sym_STAR, - ACTIONS(5117), 1, + ACTIONS(5883), 1, anon_sym_LBRACK, - ACTIONS(5533), 1, - anon_sym_LPAREN, - STATE(3455), 1, + ACTIONS(6145), 1, + anon_sym_complex, + STATE(3635), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3487), 2, + STATE(3586), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5115), 3, + ACTIONS(5414), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RBRACK, + ACTIONS(5881), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5536), 4, + [157617] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6094), 4, + anon_sym_STAR, + sym_identifier, + anon_sym_operator, + anon_sym___stdcall, + ACTIONS(6096), 9, + sym__newline, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [157762] = 7, - ACTIONS(3708), 1, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_AMP, + [157639] = 13, + ACTIONS(6147), 1, + anon_sym_COMMA, + ACTIONS(6149), 1, + anon_sym_as, + ACTIONS(6151), 1, + anon_sym_if, + ACTIONS(6153), 1, + anon_sym_COLON, + ACTIONS(6155), 1, + anon_sym_async, + ACTIONS(6157), 1, + anon_sym_for, + ACTIONS(6159), 1, + anon_sym_RBRACE, + ACTIONS(6161), 1, + anon_sym_and, + ACTIONS(6163), 1, + anon_sym_or, + STATE(4115), 1, + sym_for_in_clause, + STATE(5061), 1, + aux_sym__collection_elements_repeat1, + STATE(5664), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [157680] = 7, + ACTIONS(3712), 1, anon_sym_STAR, - ACTIONS(6103), 1, + ACTIONS(6167), 1, anon_sym_LBRACK, - STATE(3409), 1, + STATE(3444), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3574), 2, + STATE(3393), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(3728), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6101), 4, + ACTIONS(6165), 4, sym__newline, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [157791] = 7, - ACTIONS(3708), 1, + [157709] = 7, + ACTIONS(4257), 1, anon_sym_STAR, - ACTIONS(6108), 1, + ACTIONS(4261), 1, anon_sym_LBRACK, - STATE(3409), 1, + STATE(3414), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3357), 2, + STATE(3616), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(4259), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6106), 4, - sym__newline, - anon_sym_LPAREN, + ACTIONS(6170), 4, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, - [157820] = 3, + [157738] = 7, + ACTIONS(3712), 1, + anon_sym_STAR, + ACTIONS(6174), 1, + anon_sym_LBRACK, + STATE(3444), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6111), 4, - anon_sym_STAR, - sym_identifier, - anon_sym_complex, + STATE(3393), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(3728), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6113), 8, + ACTIONS(6172), 4, + sym__newline, 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, - [157841] = 7, - ACTIONS(3708), 1, + anon_sym_EQ, + [157767] = 7, + ACTIONS(3712), 1, anon_sym_STAR, - ACTIONS(6117), 1, + ACTIONS(6179), 1, anon_sym_LBRACK, - STATE(3409), 1, + STATE(3444), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3357), 2, + STATE(3587), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(3728), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6115), 4, + ACTIONS(6177), 4, sym__newline, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [157870] = 7, - ACTIONS(3708), 1, + [157796] = 7, + ACTIONS(3712), 1, anon_sym_STAR, - ACTIONS(6122), 1, + ACTIONS(6184), 1, anon_sym_LBRACK, - STATE(3409), 1, + STATE(3444), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3533), 2, + STATE(3393), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(3728), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6120), 4, + ACTIONS(6182), 4, sym__newline, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [157899] = 7, - ACTIONS(3708), 1, + [157825] = 7, + ACTIONS(3712), 1, anon_sym_STAR, - ACTIONS(6127), 1, + ACTIONS(6189), 1, anon_sym_LBRACK, - STATE(3409), 1, + STATE(3444), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3357), 2, + STATE(3591), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(3728), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6125), 4, + ACTIONS(6187), 4, sym__newline, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [157928] = 7, - ACTIONS(3708), 1, + [157854] = 8, + ACTIONS(3712), 1, anon_sym_STAR, - ACTIONS(6132), 1, + ACTIONS(3722), 1, anon_sym_LBRACK, - STATE(3409), 1, + ACTIONS(6192), 1, + anon_sym_complex, + STATE(3444), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3536), 2, + STATE(3688), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(3728), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6130), 4, + ACTIONS(5495), 3, sym__newline, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [157957] = 3, + anon_sym_COLON, + [157885] = 4, + ACTIONS(5433), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5937), 4, - anon_sym_STAR, - sym_identifier, - anon_sym_operator, - anon_sym___stdcall, - ACTIONS(5939), 8, + ACTIONS(5809), 2, + anon_sym_int, + anon_sym_double, + ACTIONS(5435), 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_RBRACK, anon_sym_AMP, - [157978] = 7, - ACTIONS(5773), 1, + anon_sym_complex, + anon_sym___stdcall, + [157908] = 8, + ACTIONS(5879), 1, anon_sym_STAR, - ACTIONS(5777), 1, + ACTIONS(5883), 1, anon_sym_LBRACK, - STATE(3619), 1, + ACTIONS(6132), 1, + anon_sym_LPAREN, + STATE(3635), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3584), 2, + STATE(3603), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5775), 3, + ACTIONS(5881), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5447), 4, - anon_sym_LPAREN, + ACTIONS(6130), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_RBRACK, - [158007] = 7, - ACTIONS(5773), 1, + [157939] = 8, + ACTIONS(3712), 1, anon_sym_STAR, - ACTIONS(5777), 1, + ACTIONS(3722), 1, anon_sym_LBRACK, - STATE(3619), 1, + ACTIONS(6194), 1, + anon_sym_complex, + STATE(3444), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3587), 2, + STATE(3701), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5775), 3, + ACTIONS(3728), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5503), 4, + ACTIONS(5750), 3, + sym__newline, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - [158036] = 7, - ACTIONS(5773), 1, + anon_sym_COLON, + [157970] = 7, + ACTIONS(4257), 1, anon_sym_STAR, - ACTIONS(5777), 1, + ACTIONS(4261), 1, anon_sym_LBRACK, - STATE(3619), 1, + STATE(3414), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3589), 2, + STATE(3399), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5775), 3, + ACTIONS(4259), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5758), 4, + ACTIONS(5745), 4, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - anon_sym_RBRACK, - [158065] = 8, - ACTIONS(5533), 1, - anon_sym_LPAREN, - ACTIONS(5773), 1, + [157999] = 7, + ACTIONS(4257), 1, anon_sym_STAR, - ACTIONS(5777), 1, + ACTIONS(4261), 1, anon_sym_LBRACK, - STATE(3619), 1, + STATE(3414), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3590), 2, + STATE(3535), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5536), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - ACTIONS(5775), 3, + ACTIONS(4259), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [158096] = 8, - ACTIONS(5751), 1, + ACTIONS(5745), 4, anon_sym_LPAREN, - ACTIONS(5773), 1, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [158028] = 8, + ACTIONS(4257), 1, anon_sym_STAR, - ACTIONS(5777), 1, + ACTIONS(4261), 1, anon_sym_LBRACK, - STATE(3619), 1, + ACTIONS(5457), 1, + anon_sym_LPAREN, + STATE(3414), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3591), 2, + STATE(3537), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5729), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - ACTIONS(5775), 3, + ACTIONS(4259), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [158127] = 7, - ACTIONS(5773), 1, + ACTIONS(5460), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [158059] = 7, + ACTIONS(6196), 1, anon_sym_STAR, - ACTIONS(5777), 1, + ACTIONS(6202), 1, anon_sym_LBRACK, - STATE(3619), 1, + STATE(3635), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3593), 2, + STATE(3525), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5775), 3, + ACTIONS(6199), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5744), 4, + ACTIONS(5897), 4, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, anon_sym_RBRACK, - [158156] = 8, - ACTIONS(5773), 1, + [158088] = 8, + ACTIONS(4257), 1, anon_sym_STAR, - ACTIONS(5777), 1, + ACTIONS(4261), 1, anon_sym_LBRACK, - ACTIONS(5787), 1, + ACTIONS(5747), 1, anon_sym_LPAREN, - STATE(3619), 1, + STATE(3414), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3595), 2, + STATE(3540), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5775), 3, + ACTIONS(4259), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5790), 3, + ACTIONS(5750), 3, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - anon_sym_RBRACK, - [158187] = 8, - ACTIONS(5773), 1, + [158119] = 8, + ACTIONS(4257), 1, anon_sym_STAR, - ACTIONS(5777), 1, + ACTIONS(4261), 1, anon_sym_LBRACK, - ACTIONS(6039), 1, + ACTIONS(5457), 1, anon_sym_LPAREN, - STATE(3619), 1, + STATE(3414), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3596), 2, + STATE(3399), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5775), 3, + ACTIONS(4259), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6042), 3, + ACTIONS(5460), 3, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - anon_sym_RBRACK, - [158218] = 13, - ACTIONS(6135), 1, - anon_sym_COMMA, - ACTIONS(6137), 1, - anon_sym_as, - ACTIONS(6139), 1, - anon_sym_if, - ACTIONS(6141), 1, - anon_sym_COLON, - ACTIONS(6143), 1, - anon_sym_async, - ACTIONS(6145), 1, - anon_sym_for, - ACTIONS(6147), 1, - anon_sym_RBRACE, - ACTIONS(6149), 1, - anon_sym_and, - ACTIONS(6151), 1, - anon_sym_or, - STATE(3999), 1, - sym_for_in_clause, - STATE(5019), 1, - aux_sym__collection_elements_repeat1, - STATE(5717), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [158259] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5395), 4, - anon_sym_STAR, - sym_identifier, - anon_sym_complex, - anon_sym___stdcall, - ACTIONS(5397), 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, - [158280] = 7, - ACTIONS(4241), 1, + [158150] = 8, + ACTIONS(4257), 1, anon_sym_STAR, - ACTIONS(4245), 1, + ACTIONS(4261), 1, anon_sym_LBRACK, - STATE(3422), 1, + ACTIONS(5747), 1, + anon_sym_LPAREN, + STATE(3414), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3539), 2, + STATE(3399), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4243), 3, + ACTIONS(4259), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6153), 4, + ACTIONS(5750), 3, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [158309] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5937), 4, - anon_sym_STAR, - sym_identifier, - anon_sym_operator, - anon_sym___stdcall, - ACTIONS(5939), 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, - [158330] = 7, - ACTIONS(4241), 1, + [158181] = 7, + ACTIONS(4257), 1, anon_sym_STAR, - ACTIONS(4245), 1, + ACTIONS(4261), 1, anon_sym_LBRACK, - STATE(3422), 1, + STATE(3414), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3555), 2, + STATE(3399), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4243), 3, + ACTIONS(4259), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5447), 4, + ACTIONS(5750), 4, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [158359] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6052), 3, + [158210] = 7, + ACTIONS(4257), 1, anon_sym_STAR, - sym_identifier, - anon_sym___stdcall, - ACTIONS(6054), 9, - anon_sym_DOT, - 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, - [158380] = 7, - ACTIONS(4241), 1, - anon_sym_STAR, - ACTIONS(4245), 1, + ACTIONS(4261), 1, anon_sym_LBRACK, - STATE(3422), 1, + STATE(3414), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3559), 2, + STATE(3399), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4243), 3, + ACTIONS(4259), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5503), 4, - anon_sym_LPAREN, + ACTIONS(6205), 4, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_EQ, - [158409] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6155), 4, - anon_sym_STAR, - sym_identifier, - anon_sym_complex, - anon_sym___stdcall, - ACTIONS(6157), 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, - [158430] = 7, - ACTIONS(3708), 1, + anon_sym_EQ, + [158239] = 7, + ACTIONS(4257), 1, anon_sym_STAR, - ACTIONS(6161), 1, + ACTIONS(4261), 1, anon_sym_LBRACK, - STATE(3409), 1, + STATE(3414), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3357), 2, + STATE(3546), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(4259), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6159), 4, - sym__newline, - anon_sym_LPAREN, + ACTIONS(6207), 4, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, - [158459] = 7, - ACTIONS(3708), 1, + [158268] = 7, + ACTIONS(4257), 1, anon_sym_STAR, - ACTIONS(6166), 1, + ACTIONS(4261), 1, anon_sym_LBRACK, - STATE(3409), 1, + STATE(3414), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3604), 2, + STATE(3548), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(4259), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6164), 4, - sym__newline, - anon_sym_LPAREN, + ACTIONS(6209), 4, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, - [158488] = 7, - ACTIONS(4241), 1, + [158297] = 7, + ACTIONS(4257), 1, anon_sym_STAR, - ACTIONS(4245), 1, + ACTIONS(4261), 1, anon_sym_LBRACK, - STATE(3422), 1, + STATE(3414), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3560), 2, + STATE(3399), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4243), 3, + ACTIONS(4259), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6169), 4, + ACTIONS(6211), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [158517] = 7, - ACTIONS(3708), 1, + [158326] = 7, + ACTIONS(4257), 1, anon_sym_STAR, - ACTIONS(6173), 1, + ACTIONS(4261), 1, anon_sym_LBRACK, - STATE(3409), 1, + STATE(3414), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3357), 2, + STATE(3399), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(4259), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6171), 4, - sym__newline, + ACTIONS(5713), 4, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [158546] = 7, - ACTIONS(3708), 1, + [158355] = 7, + ACTIONS(4257), 1, anon_sym_STAR, - ACTIONS(6178), 1, + ACTIONS(4261), 1, anon_sym_LBRACK, - STATE(3409), 1, + STATE(3414), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3606), 2, + STATE(3399), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(4259), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6176), 4, - sym__newline, + ACTIONS(5779), 4, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [158575] = 7, - ACTIONS(4241), 1, + [158384] = 9, + ACTIONS(3712), 1, anon_sym_STAR, - ACTIONS(4245), 1, + ACTIONS(3722), 1, anon_sym_LBRACK, - STATE(3422), 1, + ACTIONS(5710), 1, + anon_sym_LPAREN, + ACTIONS(6213), 1, + anon_sym_complex, + STATE(3444), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3572), 2, + ACTIONS(5713), 2, + sym__newline, + anon_sym_COLON, + STATE(3706), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4243), 3, + ACTIONS(3728), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6101), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [158604] = 7, - ACTIONS(4241), 1, + [158417] = 8, + ACTIONS(4257), 1, anon_sym_STAR, - ACTIONS(4245), 1, + ACTIONS(4261), 1, anon_sym_LBRACK, - STATE(3422), 1, + ACTIONS(5703), 1, + anon_sym_LPAREN, + STATE(3414), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3398), 2, + STATE(3399), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4243), 3, + ACTIONS(4259), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6181), 4, + ACTIONS(5706), 3, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [158633] = 3, + [158448] = 8, + ACTIONS(5703), 1, + anon_sym_LPAREN, + ACTIONS(5879), 1, + anon_sym_STAR, + ACTIONS(5883), 1, + anon_sym_LBRACK, + STATE(3635), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5949), 4, - anon_sym_STAR, - sym_identifier, - anon_sym_complex, - anon_sym___stdcall, - ACTIONS(5951), 8, - anon_sym_LPAREN, + STATE(3601), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(5706), 3, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACK, + ACTIONS(5881), 3, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AMP, - anon_sym_GT, - anon_sym_QMARK, - [158654] = 3, + anon_sym___stdcall, + [158479] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5385), 4, + ACTIONS(5821), 4, anon_sym_STAR, sym_identifier, anon_sym_complex, anon_sym___stdcall, - ACTIONS(4360), 8, + ACTIONS(5823), 8, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -251705,923 +252333,909 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_QMARK, - [158675] = 8, - ACTIONS(3708), 1, + [158500] = 8, + ACTIONS(4257), 1, anon_sym_STAR, - ACTIONS(3718), 1, + ACTIONS(4261), 1, anon_sym_LBRACK, - ACTIONS(6183), 1, - anon_sym_complex, - STATE(3409), 1, + ACTIONS(5710), 1, + anon_sym_LPAREN, + STATE(3414), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3684), 2, + STATE(3399), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(4259), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5461), 3, - sym__newline, - anon_sym_LPAREN, - anon_sym_COLON, - [158706] = 4, - ACTIONS(5395), 1, - anon_sym_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5792), 2, - anon_sym_int, - anon_sym_double, - ACTIONS(5397), 9, - anon_sym_LPAREN, + ACTIONS(5713), 3, + 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, - [158729] = 7, - ACTIONS(4241), 1, + [158531] = 7, + ACTIONS(4257), 1, anon_sym_STAR, - ACTIONS(4245), 1, + ACTIONS(4261), 1, anon_sym_LBRACK, - STATE(3422), 1, + STATE(3414), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3398), 2, + STATE(3542), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4243), 3, + ACTIONS(4259), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5447), 4, + ACTIONS(5713), 4, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [158758] = 3, - ACTIONS(5783), 1, - anon_sym_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5785), 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, - [158779] = 9, - ACTIONS(3708), 1, + [158560] = 7, + ACTIONS(4257), 1, anon_sym_STAR, - ACTIONS(3718), 1, + ACTIONS(4261), 1, anon_sym_LBRACK, - ACTIONS(5500), 1, - anon_sym_LPAREN, - ACTIONS(6185), 1, - anon_sym_complex, - STATE(3409), 1, + STATE(3414), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5503), 2, - sym__newline, - anon_sym_COLON, - STATE(3693), 2, + STATE(3399), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(4259), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [158812] = 7, - ACTIONS(4241), 1, + ACTIONS(6130), 4, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [158589] = 8, + ACTIONS(4257), 1, anon_sym_STAR, - ACTIONS(4245), 1, + ACTIONS(4261), 1, anon_sym_LBRACK, - STATE(3422), 1, + ACTIONS(5703), 1, + anon_sym_LPAREN, + STATE(3414), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3398), 2, + STATE(3545), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4243), 3, + ACTIONS(4259), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5503), 4, - anon_sym_LPAREN, + ACTIONS(5706), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [158841] = 4, - ACTIONS(5800), 1, - anon_sym_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6187), 2, - anon_sym_int, - anon_sym_double, - ACTIONS(5802), 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, - [158864] = 7, - ACTIONS(4241), 1, + [158620] = 8, + ACTIONS(4257), 1, anon_sym_STAR, - ACTIONS(4245), 1, + ACTIONS(4261), 1, anon_sym_LBRACK, - STATE(3422), 1, + ACTIONS(6132), 1, + anon_sym_LPAREN, + STATE(3414), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3563), 2, + STATE(3399), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4243), 3, + ACTIONS(4259), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5758), 4, - anon_sym_LPAREN, + ACTIONS(6130), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [158893] = 7, - ACTIONS(3708), 1, + [158651] = 8, + ACTIONS(4257), 1, anon_sym_STAR, - ACTIONS(6191), 1, + ACTIONS(4261), 1, anon_sym_LBRACK, - STATE(3409), 1, + ACTIONS(5781), 1, + anon_sym_LPAREN, + STATE(3414), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3357), 2, + STATE(3399), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(4259), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6189), 4, - sym__newline, - anon_sym_LPAREN, + ACTIONS(5784), 3, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [158922] = 8, - ACTIONS(4241), 1, + [158682] = 7, + ACTIONS(4257), 1, anon_sym_STAR, - ACTIONS(4245), 1, + ACTIONS(4261), 1, anon_sym_LBRACK, - ACTIONS(5533), 1, - anon_sym_LPAREN, - STATE(3422), 1, + STATE(3414), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3617), 2, + STATE(3399), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4243), 3, + ACTIONS(4259), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5536), 3, + ACTIONS(6172), 4, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, - [158953] = 7, - ACTIONS(3708), 1, + [158711] = 7, + ACTIONS(4257), 1, anon_sym_STAR, - ACTIONS(6196), 1, + ACTIONS(4261), 1, anon_sym_LBRACK, - STATE(3409), 1, + STATE(3414), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3512), 2, + STATE(3556), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(4259), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6194), 4, - sym__newline, - anon_sym_LPAREN, + ACTIONS(6177), 4, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, - [158982] = 8, - ACTIONS(4241), 1, + [158740] = 7, + ACTIONS(4257), 1, anon_sym_STAR, - ACTIONS(4245), 1, + ACTIONS(4261), 1, anon_sym_LBRACK, - ACTIONS(5751), 1, - anon_sym_LPAREN, - STATE(3422), 1, + STATE(3414), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3566), 2, + STATE(3399), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4243), 3, + ACTIONS(4259), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5729), 3, + ACTIONS(6182), 4, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, - [159013] = 8, - ACTIONS(3708), 1, + [158769] = 7, + ACTIONS(4257), 1, anon_sym_STAR, - ACTIONS(3718), 1, + ACTIONS(4261), 1, anon_sym_LBRACK, - ACTIONS(6199), 1, - anon_sym_complex, - STATE(3409), 1, + STATE(3414), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3698), 2, + STATE(3559), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(4259), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5729), 3, - sym__newline, - anon_sym_LPAREN, + ACTIONS(6187), 4, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_COLON, - [159044] = 7, - ACTIONS(4241), 1, + anon_sym_EQ, + [158798] = 8, + ACTIONS(4257), 1, anon_sym_STAR, - ACTIONS(4245), 1, + ACTIONS(4261), 1, anon_sym_LBRACK, - STATE(3422), 1, + ACTIONS(6055), 1, + anon_sym_LPAREN, + STATE(3414), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3398), 2, + STATE(3399), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4243), 3, + ACTIONS(4259), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5758), 4, - anon_sym_LPAREN, + ACTIONS(6058), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [159073] = 7, - ACTIONS(6201), 1, - anon_sym_STAR, - ACTIONS(6207), 1, - anon_sym_LBRACK, - STATE(3619), 1, - sym_type_index, + [158829] = 13, + ACTIONS(6147), 1, + anon_sym_COMMA, + ACTIONS(6149), 1, + anon_sym_as, + ACTIONS(6151), 1, + anon_sym_if, + ACTIONS(6153), 1, + anon_sym_COLON, + ACTIONS(6155), 1, + anon_sym_async, + ACTIONS(6157), 1, + anon_sym_for, + ACTIONS(6159), 1, + anon_sym_RBRACE, + ACTIONS(6161), 1, + anon_sym_and, + ACTIONS(6163), 1, + anon_sym_or, + STATE(4115), 1, + sym_for_in_clause, + STATE(5061), 1, + aux_sym__collection_elements_repeat1, + STATE(5712), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3556), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(6204), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, + [158870] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5433), 4, + anon_sym_STAR, + sym_identifier, + anon_sym_complex, anon_sym___stdcall, - ACTIONS(5827), 4, + ACTIONS(5435), 8, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - [159102] = 8, - ACTIONS(4241), 1, + anon_sym_COLON, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_GT, + anon_sym_QMARK, + [158891] = 7, + ACTIONS(3712), 1, anon_sym_STAR, - ACTIONS(4245), 1, + ACTIONS(6217), 1, anon_sym_LBRACK, - ACTIONS(5533), 1, - anon_sym_LPAREN, - STATE(3422), 1, + STATE(3444), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3398), 2, + STATE(3393), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4243), 3, + ACTIONS(3728), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5536), 3, - anon_sym_RPAREN, + ACTIONS(6215), 4, + sym__newline, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [159133] = 8, - ACTIONS(4241), 1, + [158920] = 8, + ACTIONS(4257), 1, anon_sym_STAR, - ACTIONS(4245), 1, + ACTIONS(4261), 1, anon_sym_LBRACK, - ACTIONS(5751), 1, + ACTIONS(6132), 1, anon_sym_LPAREN, - STATE(3422), 1, + STATE(3414), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3398), 2, + STATE(3550), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4243), 3, + ACTIONS(4259), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5729), 3, + ACTIONS(6130), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [159164] = 7, - ACTIONS(4241), 1, + [158951] = 7, + ACTIONS(3712), 1, anon_sym_STAR, - ACTIONS(4245), 1, + ACTIONS(6222), 1, anon_sym_LBRACK, - STATE(3422), 1, + STATE(3444), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3398), 2, + STATE(3580), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4243), 3, + ACTIONS(3728), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5729), 4, + ACTIONS(6220), 4, + sym__newline, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [159193] = 7, - ACTIONS(4241), 1, + [158980] = 7, + ACTIONS(4257), 1, anon_sym_STAR, - ACTIONS(4245), 1, + ACTIONS(4261), 1, anon_sym_LBRACK, - STATE(3422), 1, + STATE(3414), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3398), 2, + STATE(3399), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4243), 3, + ACTIONS(4259), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6189), 4, + ACTIONS(6225), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [159222] = 7, - ACTIONS(4241), 1, + [159009] = 7, + ACTIONS(4257), 1, anon_sym_STAR, - ACTIONS(4245), 1, + ACTIONS(4261), 1, anon_sym_LBRACK, - STATE(3422), 1, + STATE(3414), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3579), 2, + STATE(3569), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4243), 3, + ACTIONS(4259), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6194), 4, + ACTIONS(6227), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [159251] = 7, - ACTIONS(4241), 1, + [159038] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6229), 4, + anon_sym_STAR, + sym_identifier, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(6231), 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, + [159059] = 7, + ACTIONS(4257), 1, anon_sym_STAR, - ACTIONS(4245), 1, + ACTIONS(4261), 1, anon_sym_LBRACK, - STATE(3422), 1, + STATE(3414), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3398), 2, + STATE(3399), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4243), 3, + ACTIONS(4259), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5744), 4, - anon_sym_LPAREN, + ACTIONS(6233), 4, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, - [159280] = 7, - ACTIONS(4241), 1, + [159088] = 7, + ACTIONS(4257), 1, anon_sym_STAR, - ACTIONS(4245), 1, + ACTIONS(4261), 1, anon_sym_LBRACK, - STATE(3422), 1, + STATE(3414), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3398), 2, + STATE(3570), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4243), 3, + ACTIONS(4259), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5735), 4, - anon_sym_LPAREN, + ACTIONS(6235), 4, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, - [159309] = 9, - ACTIONS(3708), 1, - anon_sym_STAR, - ACTIONS(3718), 1, - anon_sym_LBRACK, - ACTIONS(5741), 1, - anon_sym_LPAREN, - ACTIONS(6210), 1, - anon_sym_complex, - STATE(3409), 1, - sym_type_index, + [159117] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5744), 2, + ACTIONS(5993), 4, + anon_sym_STAR, + sym_identifier, + anon_sym_operator, + anon_sym___stdcall, + ACTIONS(5997), 8, sym__newline, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_COLON, - STATE(3703), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3724), 3, anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, anon_sym_AMP, - anon_sym___stdcall, - [159342] = 7, - ACTIONS(4241), 1, + [159138] = 7, + ACTIONS(3712), 1, anon_sym_STAR, - ACTIONS(4245), 1, + ACTIONS(6237), 1, anon_sym_LBRACK, - STATE(3422), 1, + STATE(3444), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3398), 2, + STATE(3575), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4243), 3, + ACTIONS(3728), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6106), 4, - anon_sym_RPAREN, + ACTIONS(6170), 4, + sym__newline, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [159371] = 8, - ACTIONS(4241), 1, + [159167] = 7, + ACTIONS(4257), 1, anon_sym_STAR, - ACTIONS(4245), 1, + ACTIONS(4261), 1, anon_sym_LBRACK, - ACTIONS(5741), 1, - anon_sym_LPAREN, - STATE(3422), 1, + STATE(3414), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3398), 2, + STATE(3522), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4243), 3, + ACTIONS(4259), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5744), 3, + ACTIONS(5487), 4, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [159402] = 7, - ACTIONS(4241), 1, + [159196] = 7, + ACTIONS(4257), 1, anon_sym_STAR, - ACTIONS(4245), 1, + ACTIONS(4261), 1, anon_sym_LBRACK, - STATE(3422), 1, + STATE(3414), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3581), 2, + STATE(3529), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4243), 3, + ACTIONS(4259), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6212), 4, + ACTIONS(5414), 4, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [159431] = 7, - ACTIONS(3708), 1, - anon_sym_STAR, - ACTIONS(6214), 1, - anon_sym_LBRACK, - STATE(3409), 1, - sym_type_index, + [159225] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3514), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(6007), 4, + anon_sym_STAR, + sym_identifier, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(6009), 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, + [159246] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5385), 4, + anon_sym_STAR, + sym_identifier, + anon_sym_complex, anon_sym___stdcall, - ACTIONS(6212), 4, - sym__newline, + ACTIONS(4360), 8, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_EQ, - [159460] = 7, - ACTIONS(4241), 1, + anon_sym_COLON, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_GT, + anon_sym_QMARK, + [159267] = 8, + ACTIONS(5747), 1, + anon_sym_LPAREN, + ACTIONS(5879), 1, anon_sym_STAR, - ACTIONS(4245), 1, + ACTIONS(5883), 1, anon_sym_LBRACK, - STATE(3422), 1, + STATE(3635), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3398), 2, + STATE(3597), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4243), 3, + ACTIONS(5750), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RBRACK, + ACTIONS(5881), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6042), 4, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [159489] = 8, - ACTIONS(4241), 1, + [159298] = 7, + ACTIONS(4257), 1, anon_sym_STAR, - ACTIONS(4245), 1, + ACTIONS(4261), 1, anon_sym_LBRACK, - ACTIONS(6039), 1, - anon_sym_LPAREN, - STATE(3422), 1, + STATE(3414), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3398), 2, + STATE(3399), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4243), 3, + ACTIONS(4259), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6042), 3, + ACTIONS(5487), 4, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [159520] = 8, - ACTIONS(4241), 1, + [159327] = 7, + ACTIONS(4257), 1, anon_sym_STAR, - ACTIONS(4245), 1, + ACTIONS(4261), 1, anon_sym_LBRACK, - ACTIONS(5762), 1, - anon_sym_LPAREN, - STATE(3422), 1, + STATE(3414), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3398), 2, + STATE(3399), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4243), 3, + ACTIONS(4259), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5765), 3, + ACTIONS(6165), 4, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, - [159551] = 7, - ACTIONS(4241), 1, + [159356] = 7, + ACTIONS(4257), 1, anon_sym_STAR, - ACTIONS(4245), 1, + ACTIONS(4261), 1, anon_sym_LBRACK, - STATE(3422), 1, + STATE(3414), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3398), 2, + STATE(3399), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4243), 3, + ACTIONS(4259), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6217), 4, + ACTIONS(6215), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [159580] = 8, - ACTIONS(4241), 1, + [159385] = 7, + ACTIONS(4257), 1, anon_sym_STAR, - ACTIONS(4245), 1, + ACTIONS(4261), 1, anon_sym_LBRACK, - ACTIONS(6088), 1, - anon_sym_LPAREN, - STATE(3422), 1, + STATE(3414), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3398), 2, + STATE(3577), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4243), 3, + ACTIONS(4259), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6091), 3, + ACTIONS(6240), 4, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, - [159611] = 7, - ACTIONS(3708), 1, + [159414] = 7, + ACTIONS(3712), 1, anon_sym_STAR, - ACTIONS(6219), 1, + ACTIONS(6244), 1, anon_sym_LBRACK, - STATE(3409), 1, + STATE(3444), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3357), 2, + STATE(3393), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(3728), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6217), 4, + ACTIONS(6242), 4, sym__newline, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [159640] = 7, - ACTIONS(4241), 1, + [159443] = 7, + ACTIONS(5879), 1, anon_sym_STAR, - ACTIONS(4245), 1, + ACTIONS(5883), 1, anon_sym_LBRACK, - STATE(3422), 1, + STATE(3635), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3569), 2, + STATE(3525), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4243), 3, + ACTIONS(5881), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5744), 4, + ACTIONS(5487), 4, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [159669] = 8, - ACTIONS(4241), 1, + anon_sym_RBRACK, + [159472] = 7, + ACTIONS(5879), 1, anon_sym_STAR, - ACTIONS(4245), 1, + ACTIONS(5883), 1, anon_sym_LBRACK, - ACTIONS(5787), 1, - anon_sym_LPAREN, - STATE(3422), 1, + STATE(3635), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3571), 2, + STATE(3525), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4243), 3, + ACTIONS(5881), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5790), 3, - anon_sym_RPAREN, + ACTIONS(5414), 4, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [159700] = 7, - ACTIONS(5773), 1, + anon_sym_RBRACK, + [159501] = 7, + ACTIONS(3712), 1, anon_sym_STAR, - ACTIONS(5777), 1, + ACTIONS(6249), 1, anon_sym_LBRACK, - STATE(3619), 1, + STATE(3444), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3556), 2, + STATE(3393), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5775), 3, + ACTIONS(3728), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5447), 4, + ACTIONS(6247), 4, + sym__newline, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - anon_sym_RBRACK, - [159729] = 7, - ACTIONS(5773), 1, + [159530] = 3, + ACTIONS(5815), 1, anon_sym_STAR, - ACTIONS(5777), 1, - anon_sym_LBRACK, - STATE(3619), 1, - sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3556), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5775), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5503), 4, + ACTIONS(5817), 11, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_STAR_STAR, anon_sym_EQ, + anon_sym_LBRACK, anon_sym_RBRACK, - [159758] = 7, - ACTIONS(4241), 1, + anon_sym_AMP, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + anon_sym___stdcall, + [159551] = 7, + ACTIONS(4257), 1, anon_sym_STAR, - ACTIONS(4245), 1, + ACTIONS(4261), 1, anon_sym_LBRACK, - STATE(3422), 1, + STATE(3414), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3398), 2, + STATE(3399), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4243), 3, + ACTIONS(4259), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6115), 4, + ACTIONS(6242), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [159787] = 7, - ACTIONS(4241), 1, + [159580] = 9, + ACTIONS(3712), 1, anon_sym_STAR, - ACTIONS(4245), 1, + ACTIONS(3722), 1, anon_sym_LBRACK, - STATE(3422), 1, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(6252), 1, + anon_sym_complex, + STATE(3444), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3600), 2, + ACTIONS(5414), 2, + sym__newline, + anon_sym_COLON, + STATE(3699), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4243), 3, + ACTIONS(3728), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6120), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [159816] = 7, - ACTIONS(4241), 1, + [159613] = 7, + ACTIONS(3712), 1, anon_sym_STAR, - ACTIONS(4245), 1, + ACTIONS(6254), 1, anon_sym_LBRACK, - STATE(3422), 1, + STATE(3444), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3398), 2, + STATE(3572), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4243), 3, + ACTIONS(3728), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6125), 4, - anon_sym_RPAREN, + ACTIONS(6240), 4, + sym__newline, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [159845] = 7, - ACTIONS(4241), 1, + [159642] = 7, + ACTIONS(3712), 1, anon_sym_STAR, - ACTIONS(4245), 1, + ACTIONS(6257), 1, anon_sym_LBRACK, - STATE(3422), 1, + STATE(3444), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3602), 2, + STATE(3393), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4243), 3, + ACTIONS(3728), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6130), 4, - anon_sym_RPAREN, + ACTIONS(6205), 4, + sym__newline, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [159874] = 3, + [159671] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5800), 4, + ACTIONS(6094), 3, anon_sym_STAR, sym_identifier, - anon_sym_complex, anon_sym___stdcall, - ACTIONS(5802), 8, + ACTIONS(6096), 9, + anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -252630,895 +253244,996 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_QMARK, - [159895] = 7, - ACTIONS(5773), 1, + [159692] = 7, + ACTIONS(5879), 1, anon_sym_STAR, - ACTIONS(5777), 1, + ACTIONS(5883), 1, anon_sym_LBRACK, - STATE(3619), 1, + STATE(3635), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3556), 2, + STATE(3525), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5775), 3, + ACTIONS(5881), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5758), 4, + ACTIONS(5745), 4, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, anon_sym_RBRACK, - [159924] = 8, - ACTIONS(5533), 1, + [159721] = 8, + ACTIONS(5457), 1, anon_sym_LPAREN, - ACTIONS(5773), 1, + ACTIONS(5879), 1, anon_sym_STAR, - ACTIONS(5777), 1, + ACTIONS(5883), 1, anon_sym_LBRACK, - STATE(3619), 1, + STATE(3635), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3556), 2, + STATE(3525), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5536), 3, + ACTIONS(5460), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_RBRACK, - ACTIONS(5775), 3, + ACTIONS(5881), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + [159752] = 7, + ACTIONS(4257), 1, + anon_sym_STAR, + ACTIONS(4261), 1, + anon_sym_LBRACK, + STATE(3414), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3399), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4259), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [159955] = 8, - ACTIONS(5751), 1, + ACTIONS(5414), 4, anon_sym_LPAREN, - ACTIONS(5773), 1, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [159781] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6260), 4, anon_sym_STAR, - ACTIONS(5777), 1, + sym_identifier, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(6262), 8, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_STAR_STAR, anon_sym_LBRACK, - STATE(3619), 1, + anon_sym_AMP, + anon_sym_GT, + anon_sym_QMARK, + [159802] = 8, + ACTIONS(5747), 1, + anon_sym_LPAREN, + ACTIONS(5879), 1, + anon_sym_STAR, + ACTIONS(5883), 1, + anon_sym_LBRACK, + STATE(3635), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3556), 2, + STATE(3525), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5729), 3, + ACTIONS(5750), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_RBRACK, - ACTIONS(5775), 3, + ACTIONS(5881), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [159986] = 7, - ACTIONS(5773), 1, + [159833] = 7, + ACTIONS(3712), 1, anon_sym_STAR, - ACTIONS(5777), 1, + ACTIONS(6264), 1, anon_sym_LBRACK, - STATE(3619), 1, + STATE(3444), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3556), 2, + STATE(3393), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5775), 3, + ACTIONS(3728), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5729), 4, + ACTIONS(6225), 4, + sym__newline, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - anon_sym_RBRACK, - [160015] = 7, - ACTIONS(5773), 1, + [159862] = 7, + ACTIONS(3712), 1, anon_sym_STAR, - ACTIONS(5777), 1, + ACTIONS(6267), 1, anon_sym_LBRACK, - STATE(3619), 1, + STATE(3444), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3556), 2, + STATE(3512), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5775), 3, + ACTIONS(3728), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5744), 4, + ACTIONS(6227), 4, + sym__newline, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - anon_sym_RBRACK, - [160044] = 7, - ACTIONS(5773), 1, + [159891] = 7, + ACTIONS(5879), 1, anon_sym_STAR, - ACTIONS(5777), 1, + ACTIONS(5883), 1, anon_sym_LBRACK, - STATE(3619), 1, + STATE(3635), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3556), 2, + STATE(3525), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5775), 3, + ACTIONS(5881), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5735), 4, + ACTIONS(5750), 4, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, anon_sym_RBRACK, - [160073] = 8, - ACTIONS(5773), 1, + [159920] = 7, + ACTIONS(3712), 1, anon_sym_STAR, - ACTIONS(5777), 1, + ACTIONS(6270), 1, anon_sym_LBRACK, - ACTIONS(5787), 1, - anon_sym_LPAREN, - STATE(3619), 1, + STATE(3444), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3556), 2, + STATE(3514), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5775), 3, + ACTIONS(3728), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5790), 3, + ACTIONS(6207), 4, + sym__newline, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - anon_sym_RBRACK, - [160104] = 8, - ACTIONS(5741), 1, - anon_sym_LPAREN, - ACTIONS(5773), 1, + [159949] = 7, + ACTIONS(3712), 1, anon_sym_STAR, - ACTIONS(5777), 1, + ACTIONS(6273), 1, anon_sym_LBRACK, - STATE(3619), 1, + STATE(3444), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3556), 2, + STATE(3393), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5744), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - ACTIONS(5775), 3, + ACTIONS(3728), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [160135] = 13, - ACTIONS(6135), 1, + ACTIONS(6233), 4, + sym__newline, + anon_sym_LPAREN, anon_sym_COMMA, - ACTIONS(6137), 1, - anon_sym_as, - ACTIONS(6139), 1, - anon_sym_if, - ACTIONS(6141), 1, - anon_sym_COLON, - ACTIONS(6143), 1, - anon_sym_async, - ACTIONS(6145), 1, - anon_sym_for, - ACTIONS(6147), 1, - anon_sym_RBRACE, - ACTIONS(6149), 1, - anon_sym_and, - ACTIONS(6151), 1, - anon_sym_or, - STATE(3999), 1, - sym_for_in_clause, - STATE(5019), 1, - aux_sym__collection_elements_repeat1, - STATE(5503), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [160176] = 7, - ACTIONS(5773), 1, + anon_sym_EQ, + [159978] = 7, + ACTIONS(3712), 1, anon_sym_STAR, - ACTIONS(5777), 1, + ACTIONS(6276), 1, anon_sym_LBRACK, - STATE(3619), 1, + STATE(3444), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3556), 2, + STATE(3553), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5775), 3, + ACTIONS(3728), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6042), 4, + ACTIONS(6235), 4, + sym__newline, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - anon_sym_RBRACK, - [160205] = 8, - ACTIONS(5773), 1, + [160007] = 7, + ACTIONS(5879), 1, anon_sym_STAR, - ACTIONS(5777), 1, + ACTIONS(5883), 1, anon_sym_LBRACK, - ACTIONS(6039), 1, - anon_sym_LPAREN, - STATE(3619), 1, + STATE(3635), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3556), 2, + STATE(3525), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5775), 3, + ACTIONS(5881), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6042), 3, + ACTIONS(5713), 4, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, anon_sym_RBRACK, - [160236] = 8, - ACTIONS(5762), 1, - anon_sym_LPAREN, - ACTIONS(5773), 1, + [160036] = 7, + ACTIONS(4257), 1, anon_sym_STAR, - ACTIONS(5777), 1, + ACTIONS(4261), 1, anon_sym_LBRACK, - STATE(3619), 1, + STATE(3414), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3556), 2, + STATE(3530), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5765), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - ACTIONS(5775), 3, + ACTIONS(4259), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [160267] = 8, - ACTIONS(5773), 1, + ACTIONS(6220), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [160065] = 7, + ACTIONS(5879), 1, anon_sym_STAR, - ACTIONS(5777), 1, + ACTIONS(5883), 1, anon_sym_LBRACK, - ACTIONS(6088), 1, - anon_sym_LPAREN, - STATE(3619), 1, + STATE(3635), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3556), 2, + STATE(3525), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5775), 3, + ACTIONS(5881), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6091), 3, + ACTIONS(5779), 4, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, anon_sym_RBRACK, - [160298] = 7, - ACTIONS(3708), 1, + [160094] = 8, + ACTIONS(5703), 1, + anon_sym_LPAREN, + ACTIONS(5879), 1, anon_sym_STAR, - ACTIONS(6222), 1, + ACTIONS(5883), 1, anon_sym_LBRACK, - STATE(3409), 1, + STATE(3635), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3616), 2, + STATE(3525), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(5706), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RBRACK, + ACTIONS(5881), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6153), 4, - sym__newline, + [160125] = 8, + ACTIONS(5710), 1, anon_sym_LPAREN, + ACTIONS(5879), 1, + anon_sym_STAR, + ACTIONS(5883), 1, + anon_sym_LBRACK, + STATE(3635), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3525), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(5713), 3, anon_sym_COMMA, anon_sym_EQ, - [160327] = 13, - ACTIONS(6135), 1, - anon_sym_COMMA, - ACTIONS(6137), 1, - anon_sym_as, - ACTIONS(6139), 1, - anon_sym_if, - ACTIONS(6141), 1, - anon_sym_COLON, - ACTIONS(6143), 1, - anon_sym_async, - ACTIONS(6145), 1, - anon_sym_for, - ACTIONS(6147), 1, - anon_sym_RBRACE, - ACTIONS(6149), 1, - anon_sym_and, - ACTIONS(6151), 1, - anon_sym_or, - STATE(3999), 1, - sym_for_in_clause, - STATE(5019), 1, - aux_sym__collection_elements_repeat1, - STATE(5432), 1, - sym__comprehension_clauses, + anon_sym_RBRACK, + ACTIONS(5881), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + [160156] = 4, + ACTIONS(5821), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160368] = 8, - ACTIONS(4241), 1, + ACTIONS(6279), 2, + anon_sym_int, + anon_sym_double, + ACTIONS(5823), 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, + [160179] = 7, + ACTIONS(5879), 1, anon_sym_STAR, - ACTIONS(4245), 1, + ACTIONS(5883), 1, anon_sym_LBRACK, - ACTIONS(6039), 1, - anon_sym_LPAREN, - STATE(3422), 1, + STATE(3635), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3573), 2, + STATE(3525), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4243), 3, + ACTIONS(5881), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6042), 3, - anon_sym_RPAREN, + ACTIONS(6130), 4, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [160399] = 7, - ACTIONS(4241), 1, + anon_sym_RBRACK, + [160208] = 8, + ACTIONS(5879), 1, anon_sym_STAR, - ACTIONS(4245), 1, + ACTIONS(5883), 1, anon_sym_LBRACK, - STATE(3422), 1, + ACTIONS(6132), 1, + anon_sym_LPAREN, + STATE(3635), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3398), 2, + STATE(3525), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4243), 3, + ACTIONS(5881), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6159), 4, - anon_sym_RPAREN, + ACTIONS(6130), 3, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [160428] = 7, - ACTIONS(4241), 1, + anon_sym_RBRACK, + [160239] = 8, + ACTIONS(5781), 1, + anon_sym_LPAREN, + ACTIONS(5879), 1, anon_sym_STAR, - ACTIONS(4245), 1, + ACTIONS(5883), 1, anon_sym_LBRACK, - STATE(3422), 1, + STATE(3635), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3613), 2, + STATE(3525), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4243), 3, + ACTIONS(5784), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RBRACK, + ACTIONS(5881), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6164), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [160457] = 7, - ACTIONS(4241), 1, + [160270] = 7, + ACTIONS(3712), 1, anon_sym_STAR, - ACTIONS(4245), 1, + ACTIONS(6281), 1, anon_sym_LBRACK, - STATE(3422), 1, + STATE(3444), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3398), 2, + STATE(3516), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4243), 3, + ACTIONS(3728), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6171), 4, - anon_sym_RPAREN, + ACTIONS(6209), 4, + sym__newline, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [160486] = 7, - ACTIONS(4241), 1, + [160299] = 8, + ACTIONS(5879), 1, anon_sym_STAR, - ACTIONS(4245), 1, + ACTIONS(5883), 1, anon_sym_LBRACK, - STATE(3422), 1, + ACTIONS(6055), 1, + anon_sym_LPAREN, + STATE(3635), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3614), 2, + STATE(3525), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4243), 3, + ACTIONS(5881), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6176), 4, - anon_sym_RPAREN, + ACTIONS(6058), 3, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [160515] = 7, - ACTIONS(3708), 1, + anon_sym_RBRACK, + [160330] = 7, + ACTIONS(3712), 1, anon_sym_STAR, - ACTIONS(6227), 1, + ACTIONS(6284), 1, anon_sym_LBRACK, - STATE(3409), 1, + STATE(3444), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3357), 2, + STATE(3393), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(3728), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6225), 4, + ACTIONS(6211), 4, sym__newline, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [160544] = 13, - ACTIONS(6135), 1, + [160359] = 13, + ACTIONS(6147), 1, anon_sym_COMMA, - ACTIONS(6137), 1, + ACTIONS(6149), 1, anon_sym_as, - ACTIONS(6139), 1, + ACTIONS(6151), 1, anon_sym_if, - ACTIONS(6141), 1, + ACTIONS(6153), 1, anon_sym_COLON, - ACTIONS(6143), 1, + ACTIONS(6155), 1, anon_sym_async, - ACTIONS(6145), 1, + ACTIONS(6157), 1, anon_sym_for, - ACTIONS(6147), 1, + ACTIONS(6159), 1, anon_sym_RBRACE, - ACTIONS(6149), 1, + ACTIONS(6161), 1, anon_sym_and, - ACTIONS(6151), 1, + ACTIONS(6163), 1, anon_sym_or, - STATE(3999), 1, + STATE(4115), 1, sym_for_in_clause, - STATE(5019), 1, + STATE(5061), 1, aux_sym__collection_elements_repeat1, - STATE(5400), 1, + STATE(5448), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160585] = 7, - ACTIONS(3708), 1, + [160400] = 7, + ACTIONS(5879), 1, anon_sym_STAR, - ACTIONS(6232), 1, + ACTIONS(5883), 1, anon_sym_LBRACK, - STATE(3409), 1, + STATE(3635), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3357), 2, + STATE(3599), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(5881), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6230), 4, - sym__newline, + ACTIONS(5713), 4, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [160614] = 7, - ACTIONS(3708), 1, + anon_sym_RBRACK, + [160429] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5993), 4, anon_sym_STAR, - ACTIONS(6237), 1, + sym_identifier, + anon_sym_operator, + anon_sym___stdcall, + ACTIONS(5997), 8, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_LBRACK, - STATE(3409), 1, + anon_sym_AMP, + [160450] = 7, + ACTIONS(5879), 1, + anon_sym_STAR, + ACTIONS(5883), 1, + anon_sym_LBRACK, + STATE(3635), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3510), 2, + STATE(3582), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(5881), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6235), 4, - sym__newline, + ACTIONS(5487), 4, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [160643] = 13, - ACTIONS(6135), 1, + anon_sym_RBRACK, + [160479] = 13, + ACTIONS(6147), 1, anon_sym_COMMA, - ACTIONS(6137), 1, + ACTIONS(6149), 1, anon_sym_as, - ACTIONS(6139), 1, + ACTIONS(6151), 1, anon_sym_if, - ACTIONS(6141), 1, + ACTIONS(6153), 1, anon_sym_COLON, - ACTIONS(6143), 1, + ACTIONS(6155), 1, anon_sym_async, - ACTIONS(6145), 1, + ACTIONS(6157), 1, anon_sym_for, - ACTIONS(6147), 1, + ACTIONS(6159), 1, anon_sym_RBRACE, - ACTIONS(6149), 1, + ACTIONS(6161), 1, anon_sym_and, - ACTIONS(6151), 1, + ACTIONS(6163), 1, anon_sym_or, - STATE(3999), 1, + STATE(4115), 1, sym_for_in_clause, - STATE(5019), 1, + STATE(5061), 1, aux_sym__collection_elements_repeat1, - STATE(5707), 1, + STATE(5720), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160684] = 13, - ACTIONS(6135), 1, + [160520] = 7, + ACTIONS(4257), 1, + anon_sym_STAR, + ACTIONS(4261), 1, + anon_sym_LBRACK, + STATE(3414), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3533), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4259), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(6287), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [160549] = 13, + ACTIONS(6147), 1, anon_sym_COMMA, - ACTIONS(6137), 1, + ACTIONS(6149), 1, anon_sym_as, - ACTIONS(6139), 1, + ACTIONS(6151), 1, anon_sym_if, - ACTIONS(6141), 1, + ACTIONS(6153), 1, anon_sym_COLON, - ACTIONS(6143), 1, + ACTIONS(6155), 1, anon_sym_async, - ACTIONS(6145), 1, + ACTIONS(6157), 1, anon_sym_for, - ACTIONS(6147), 1, + ACTIONS(6159), 1, anon_sym_RBRACE, - ACTIONS(6149), 1, + ACTIONS(6161), 1, anon_sym_and, - ACTIONS(6151), 1, + ACTIONS(6163), 1, anon_sym_or, - STATE(3999), 1, + STATE(4115), 1, sym_for_in_clause, - STATE(5019), 1, + STATE(5061), 1, aux_sym__collection_elements_repeat1, - STATE(5382), 1, + STATE(5737), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160725] = 7, - ACTIONS(3708), 1, + [160590] = 7, + ACTIONS(5879), 1, anon_sym_STAR, - ACTIONS(6240), 1, + ACTIONS(5883), 1, anon_sym_LBRACK, - STATE(3409), 1, + STATE(3635), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3550), 2, + STATE(3589), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(5881), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6169), 4, - sym__newline, + ACTIONS(5414), 4, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [160754] = 13, - ACTIONS(6135), 1, + anon_sym_RBRACK, + [160619] = 13, + ACTIONS(6147), 1, anon_sym_COMMA, - ACTIONS(6137), 1, + ACTIONS(6149), 1, anon_sym_as, - ACTIONS(6139), 1, + ACTIONS(6151), 1, anon_sym_if, - ACTIONS(6141), 1, + ACTIONS(6153), 1, anon_sym_COLON, - ACTIONS(6143), 1, + ACTIONS(6155), 1, anon_sym_async, - ACTIONS(6145), 1, + ACTIONS(6157), 1, anon_sym_for, - ACTIONS(6147), 1, + ACTIONS(6159), 1, anon_sym_RBRACE, - ACTIONS(6149), 1, + ACTIONS(6161), 1, anon_sym_and, - ACTIONS(6151), 1, + ACTIONS(6163), 1, anon_sym_or, - STATE(3999), 1, + STATE(4115), 1, sym_for_in_clause, - STATE(5019), 1, + STATE(5061), 1, aux_sym__collection_elements_repeat1, - STATE(5526), 1, + STATE(5523), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160795] = 13, - ACTIONS(6135), 1, + [160660] = 13, + ACTIONS(6147), 1, anon_sym_COMMA, - ACTIONS(6137), 1, + ACTIONS(6149), 1, anon_sym_as, - ACTIONS(6139), 1, + ACTIONS(6151), 1, anon_sym_if, - ACTIONS(6141), 1, + ACTIONS(6153), 1, anon_sym_COLON, - ACTIONS(6143), 1, + ACTIONS(6155), 1, anon_sym_async, - ACTIONS(6145), 1, + ACTIONS(6157), 1, anon_sym_for, - ACTIONS(6147), 1, + ACTIONS(6159), 1, anon_sym_RBRACE, - ACTIONS(6149), 1, + ACTIONS(6161), 1, anon_sym_and, + ACTIONS(6163), 1, + anon_sym_or, + STATE(4115), 1, + sym_for_in_clause, + STATE(5061), 1, + aux_sym__collection_elements_repeat1, + STATE(5455), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [160701] = 13, + ACTIONS(6147), 1, + anon_sym_COMMA, + ACTIONS(6149), 1, + anon_sym_as, ACTIONS(6151), 1, + anon_sym_if, + ACTIONS(6153), 1, + anon_sym_COLON, + ACTIONS(6155), 1, + anon_sym_async, + ACTIONS(6157), 1, + anon_sym_for, + ACTIONS(6159), 1, + anon_sym_RBRACE, + ACTIONS(6161), 1, + anon_sym_and, + ACTIONS(6163), 1, anon_sym_or, - STATE(3999), 1, + STATE(4115), 1, sym_for_in_clause, - STATE(5019), 1, + STATE(5061), 1, aux_sym__collection_elements_repeat1, - STATE(5649), 1, + STATE(5651), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160836] = 7, - ACTIONS(4241), 1, + [160742] = 7, + ACTIONS(4257), 1, anon_sym_STAR, - ACTIONS(4245), 1, + ACTIONS(4261), 1, anon_sym_LBRACK, - STATE(3422), 1, + STATE(3414), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3398), 2, + STATE(3399), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4243), 3, + ACTIONS(4259), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6225), 4, + ACTIONS(6247), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [160865] = 7, - ACTIONS(4241), 1, + [160771] = 7, + ACTIONS(5879), 1, anon_sym_STAR, - ACTIONS(4245), 1, + ACTIONS(5883), 1, anon_sym_LBRACK, - STATE(3422), 1, + STATE(3635), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3398), 2, + STATE(3595), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4243), 3, + ACTIONS(5881), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6230), 4, - anon_sym_RPAREN, + ACTIONS(5745), 4, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [160894] = 7, - ACTIONS(4241), 1, + anon_sym_RBRACK, + [160800] = 8, + ACTIONS(5457), 1, + anon_sym_LPAREN, + ACTIONS(5879), 1, anon_sym_STAR, - ACTIONS(4245), 1, + ACTIONS(5883), 1, anon_sym_LBRACK, - STATE(3422), 1, + STATE(3635), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3565), 2, + STATE(3596), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4243), 3, + ACTIONS(5460), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RBRACK, + ACTIONS(5881), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6235), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [160923] = 7, - ACTIONS(3708), 1, + [160831] = 7, + ACTIONS(3712), 1, anon_sym_STAR, - ACTIONS(6243), 1, + ACTIONS(6289), 1, anon_sym_LBRACK, - STATE(3409), 1, + STATE(3444), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3357), 2, + STATE(3604), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(3728), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6181), 4, + ACTIONS(6287), 4, sym__newline, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [160952] = 8, - ACTIONS(4241), 1, + [160860] = 7, + ACTIONS(3712), 1, anon_sym_STAR, - ACTIONS(4245), 1, + ACTIONS(3722), 1, anon_sym_LBRACK, - ACTIONS(5787), 1, - anon_sym_LPAREN, - STATE(3422), 1, + STATE(3444), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3398), 2, + STATE(3393), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4243), 3, + ACTIONS(3728), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5790), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [160983] = 8, - ACTIONS(3708), 1, - anon_sym_STAR, - ACTIONS(3718), 1, - anon_sym_LBRACK, - ACTIONS(6039), 1, - anon_sym_LPAREN, - STATE(3409), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6042), 2, + ACTIONS(5779), 3, sym__newline, + anon_sym_LPAREN, anon_sym_COLON, - STATE(3705), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3724), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - [161013] = 5, - ACTIONS(5937), 1, - anon_sym_STAR, - ACTIONS(6246), 1, - anon_sym_DOT, - STATE(3624), 1, - aux_sym_type_qualifier_repeat1, + [160888] = 12, + ACTIONS(6292), 1, + anon_sym_RPAREN, + ACTIONS(6294), 1, + anon_sym_COMMA, + ACTIONS(6297), 1, + anon_sym_as, + ACTIONS(6299), 1, + anon_sym_if, + ACTIONS(6301), 1, + anon_sym_async, + ACTIONS(6303), 1, + anon_sym_for, + ACTIONS(6305), 1, + anon_sym_and, + ACTIONS(6307), 1, + anon_sym_or, + STATE(4060), 1, + sym_for_in_clause, + STATE(4905), 1, + aux_sym__collection_elements_repeat1, + STATE(5657), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5939), 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, - [161037] = 7, - ACTIONS(3708), 1, + [160926] = 8, + ACTIONS(3712), 1, anon_sym_STAR, - ACTIONS(3718), 1, + ACTIONS(3722), 1, anon_sym_LBRACK, - STATE(3409), 1, + ACTIONS(5457), 1, + anon_sym_LPAREN, + STATE(3444), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3694), 2, + ACTIONS(5460), 2, + sym__newline, + anon_sym_COLON, + STATE(3703), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(3728), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5503), 3, - sym__newline, - anon_sym_LPAREN, - anon_sym_COLON, - [161065] = 9, - ACTIONS(5117), 1, + [160956] = 9, + ACTIONS(5109), 1, anon_sym_LBRACK, - ACTIONS(5729), 1, + ACTIONS(5411), 1, anon_sym_LPAREN, - ACTIONS(6248), 1, + ACTIONS(6309), 1, sym_identifier, - ACTIONS(6250), 1, + ACTIONS(6311), 1, anon_sym_complex, - STATE(3455), 1, + STATE(3468), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5113), 2, + ACTIONS(5105), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5115), 2, + ACTIONS(5107), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3764), 2, + STATE(3779), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [161097] = 2, + [160988] = 10, + ACTIONS(6315), 1, + anon_sym_COMMA, + ACTIONS(6317), 1, + anon_sym_EQ, + ACTIONS(6319), 1, + anon_sym_LBRACK, + ACTIONS(6322), 1, + sym__newline, + ACTIONS(6324), 1, + sym_string_start, + STATE(3984), 1, + sym_string, + STATE(4737), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6313), 2, + anon_sym_LPAREN, + sym_identifier, + STATE(3985), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [161022] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6252), 11, + ACTIONS(6327), 11, anon_sym_async, anon_sym_def, anon_sym_class, @@ -253530,2292 +254245,2339 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [161115] = 10, - ACTIONS(6256), 1, + [161040] = 12, + ACTIONS(6297), 1, + anon_sym_as, + ACTIONS(6299), 1, + anon_sym_if, + ACTIONS(6301), 1, + anon_sym_async, + ACTIONS(6303), 1, + anon_sym_for, + ACTIONS(6305), 1, + anon_sym_and, + ACTIONS(6307), 1, + anon_sym_or, + ACTIONS(6329), 1, + anon_sym_RPAREN, + ACTIONS(6331), 1, anon_sym_COMMA, - ACTIONS(6258), 1, - anon_sym_EQ, - ACTIONS(6260), 1, - anon_sym_LBRACK, - ACTIONS(6263), 1, - sym__newline, - ACTIONS(6265), 1, - sym_string_start, - STATE(4046), 1, - sym_string, - STATE(4843), 1, - aux_sym_cvar_decl_repeat2, + STATE(4060), 1, + sym_for_in_clause, + STATE(4772), 1, + aux_sym_argument_list_repeat1, + STATE(5657), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6254), 2, + [161078] = 9, + ACTIONS(5109), 1, + anon_sym_LBRACK, + ACTIONS(5750), 1, anon_sym_LPAREN, + ACTIONS(6333), 1, sym_identifier, - STATE(4047), 2, + ACTIONS(6335), 1, + anon_sym_complex, + STATE(3468), 1, sym_type_index, - aux_sym_cvar_decl_repeat1, - [161149] = 5, - ACTIONS(5922), 1, - anon_sym_STAR, - ACTIONS(6246), 1, - anon_sym_DOT, - STATE(3634), 1, - aux_sym_type_qualifier_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5926), 8, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(5105), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(5107), 2, anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AMP, - anon_sym___stdcall, - [161173] = 7, - ACTIONS(3708), 1, + STATE(3741), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [161110] = 8, + ACTIONS(3712), 1, anon_sym_STAR, - ACTIONS(3718), 1, + ACTIONS(3722), 1, anon_sym_LBRACK, - STATE(3409), 1, + ACTIONS(5747), 1, + anon_sym_LPAREN, + STATE(3444), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3699), 2, + ACTIONS(5750), 2, + sym__newline, + anon_sym_COLON, + STATE(3704), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(3728), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5758), 3, + [161140] = 10, + ACTIONS(6315), 1, + anon_sym_COMMA, + ACTIONS(6319), 1, + anon_sym_LBRACK, + ACTIONS(6324), 1, + sym_string_start, + ACTIONS(6337), 1, + anon_sym_EQ, + ACTIONS(6339), 1, sym__newline, + STATE(3991), 1, + sym_string, + STATE(5028), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6313), 2, anon_sym_LPAREN, - anon_sym_COLON, - [161201] = 9, - ACTIONS(5117), 1, + sym_identifier, + STATE(3992), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [161174] = 9, + ACTIONS(5109), 1, anon_sym_LBRACK, - ACTIONS(5741), 1, + ACTIONS(5710), 1, anon_sym_LPAREN, - ACTIONS(6268), 1, + ACTIONS(6341), 1, sym_identifier, - ACTIONS(6270), 1, + ACTIONS(6343), 1, anon_sym_complex, - STATE(3455), 1, + STATE(3468), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5113), 2, + ACTIONS(5105), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5115), 2, + ACTIONS(5107), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3739), 2, + STATE(3718), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [161233] = 8, - ACTIONS(3708), 1, - anon_sym_STAR, - ACTIONS(3718), 1, - anon_sym_LBRACK, - ACTIONS(5533), 1, - anon_sym_LPAREN, - STATE(3409), 1, - sym_type_index, + [161206] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5536), 2, - sym__newline, - anon_sym_COLON, - STATE(3700), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3724), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - [161263] = 8, - ACTIONS(3708), 1, + ACTIONS(5993), 3, anon_sym_STAR, - ACTIONS(3718), 1, - anon_sym_LBRACK, - ACTIONS(5751), 1, + sym_identifier, + anon_sym___stdcall, + ACTIONS(5997), 8, anon_sym_LPAREN, - STATE(3409), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5729), 2, - sym__newline, + anon_sym_COMMA, anon_sym_COLON, - STATE(3701), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3724), 3, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AMP, - anon_sym___stdcall, - [161293] = 8, + anon_sym_GT, + anon_sym_QMARK, + [161226] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6272), 1, + ACTIONS(6345), 1, anon_sym_LBRACE, - ACTIONS(6276), 1, + ACTIONS(6349), 1, anon_sym_BSLASH, - ACTIONS(6278), 1, + ACTIONS(6351), 1, sym_string_end, - STATE(3888), 2, + STATE(3876), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(6274), 3, + ACTIONS(6347), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(3630), 3, + STATE(3637), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [161323] = 8, - ACTIONS(3), 1, + [161256] = 10, + ACTIONS(6315), 1, + anon_sym_COMMA, + ACTIONS(6319), 1, + anon_sym_LBRACK, + ACTIONS(6324), 1, + sym_string_start, + ACTIONS(6353), 1, + anon_sym_EQ, + ACTIONS(6355), 1, + sym__newline, + STATE(3983), 1, + sym_string, + STATE(4648), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6272), 1, - anon_sym_LBRACE, - ACTIONS(6276), 1, - anon_sym_BSLASH, - ACTIONS(6280), 1, - sym_string_end, - STATE(3888), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(6274), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(3661), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [161353] = 12, - ACTIONS(6282), 1, - anon_sym_RPAREN, - ACTIONS(6284), 1, + ACTIONS(6313), 2, + anon_sym_LPAREN, + sym_identifier, + STATE(3986), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [161290] = 7, + ACTIONS(3712), 1, + anon_sym_STAR, + ACTIONS(3722), 1, + anon_sym_LBRACK, + STATE(3444), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3697), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(3728), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(5487), 3, + sym__newline, + anon_sym_LPAREN, + anon_sym_COLON, + [161318] = 5, + ACTIONS(5993), 1, + anon_sym_STAR, + ACTIONS(6357), 1, + anon_sym_DOT, + STATE(3677), 1, + aux_sym_type_qualifier_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5997), 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, + [161342] = 12, + ACTIONS(6159), 1, + anon_sym_RBRACK, + ACTIONS(6359), 1, anon_sym_COMMA, - ACTIONS(6286), 1, + ACTIONS(6361), 1, anon_sym_as, - ACTIONS(6288), 1, + ACTIONS(6363), 1, anon_sym_if, - ACTIONS(6290), 1, + ACTIONS(6365), 1, anon_sym_async, - ACTIONS(6292), 1, + ACTIONS(6367), 1, anon_sym_for, - ACTIONS(6294), 1, + ACTIONS(6369), 1, anon_sym_and, - ACTIONS(6296), 1, + ACTIONS(6371), 1, anon_sym_or, - STATE(4086), 1, + STATE(4140), 1, sym_for_in_clause, - STATE(4715), 1, + STATE(4657), 1, aux_sym__collection_elements_repeat1, - STATE(5691), 1, + STATE(5549), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161391] = 7, - ACTIONS(3708), 1, + [161380] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(6345), 1, + anon_sym_LBRACE, + ACTIONS(6349), 1, + anon_sym_BSLASH, + ACTIONS(6373), 1, + sym_string_end, + STATE(3876), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(6347), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(3683), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [161410] = 7, + ACTIONS(3712), 1, anon_sym_STAR, - ACTIONS(3718), 1, + ACTIONS(3722), 1, anon_sym_LBRACK, - STATE(3409), 1, + STATE(3444), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3702), 2, + STATE(3705), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(3728), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5744), 3, + ACTIONS(5713), 3, sym__newline, anon_sym_LPAREN, anon_sym_COLON, - [161419] = 12, - ACTIONS(6286), 1, + [161438] = 12, + ACTIONS(6297), 1, anon_sym_as, - ACTIONS(6288), 1, + ACTIONS(6299), 1, anon_sym_if, - ACTIONS(6290), 1, + ACTIONS(6301), 1, anon_sym_async, - ACTIONS(6292), 1, + ACTIONS(6303), 1, anon_sym_for, - ACTIONS(6294), 1, + ACTIONS(6305), 1, anon_sym_and, - ACTIONS(6296), 1, + ACTIONS(6307), 1, anon_sym_or, - ACTIONS(6298), 1, + ACTIONS(6375), 1, anon_sym_RPAREN, - ACTIONS(6300), 1, + ACTIONS(6377), 1, anon_sym_COMMA, - STATE(4086), 1, + STATE(4060), 1, sym_for_in_clause, - STATE(4747), 1, + STATE(5093), 1, aux_sym_argument_list_repeat1, - STATE(5691), 1, + STATE(5742), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161457] = 5, - ACTIONS(5953), 1, - anon_sym_STAR, - ACTIONS(6302), 1, - anon_sym_DOT, - STATE(3634), 1, - aux_sym_type_qualifier_repeat1, + [161476] = 12, + ACTIONS(6297), 1, + anon_sym_as, + ACTIONS(6299), 1, + anon_sym_if, + ACTIONS(6301), 1, + anon_sym_async, + ACTIONS(6303), 1, + anon_sym_for, + ACTIONS(6305), 1, + anon_sym_and, + ACTIONS(6307), 1, + anon_sym_or, + ACTIONS(6379), 1, + anon_sym_RPAREN, + ACTIONS(6381), 1, + anon_sym_COMMA, + STATE(4060), 1, + sym_for_in_clause, + STATE(4905), 1, + aux_sym__collection_elements_repeat1, + STATE(5742), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5955), 8, - anon_sym_LPAREN, + [161514] = 9, + ACTIONS(6104), 1, + anon_sym_as, + ACTIONS(6106), 1, + anon_sym_if, + ACTIONS(6108), 1, + anon_sym_and, + ACTIONS(6110), 1, + anon_sym_or, + ACTIONS(6387), 1, anon_sym_COMMA, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym___stdcall, - [161481] = 8, - ACTIONS(3708), 1, - anon_sym_STAR, - ACTIONS(3718), 1, - anon_sym_LBRACK, - ACTIONS(5787), 1, - anon_sym_LPAREN, - STATE(3409), 1, - sym_type_index, + STATE(4573), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5790), 2, + ACTIONS(6383), 2, sym__newline, + anon_sym_SEMI, + ACTIONS(6385), 3, + anon_sym_DOT, anon_sym_COLON, - STATE(3704), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3724), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - [161511] = 3, + anon_sym_PIPE, + [161546] = 5, + ACTIONS(5986), 1, + anon_sym_STAR, + ACTIONS(6389), 1, + anon_sym_DOT, + STATE(3642), 1, + aux_sym_type_qualifier_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5937), 3, - anon_sym_STAR, - sym_identifier, - anon_sym___stdcall, - ACTIONS(5939), 8, + ACTIONS(5988), 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_GT, - anon_sym_QMARK, - [161531] = 8, + anon_sym___stdcall, + [161570] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6272), 1, + ACTIONS(6345), 1, anon_sym_LBRACE, - ACTIONS(6276), 1, + ACTIONS(6349), 1, anon_sym_BSLASH, - ACTIONS(6305), 1, + ACTIONS(6392), 1, sym_string_end, - STATE(3888), 2, + STATE(3876), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(6274), 3, + ACTIONS(6347), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(3638), 3, + STATE(3644), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [161561] = 8, + [161600] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6272), 1, + ACTIONS(6345), 1, anon_sym_LBRACE, - ACTIONS(6276), 1, + ACTIONS(6349), 1, anon_sym_BSLASH, - ACTIONS(6307), 1, + ACTIONS(6394), 1, sym_string_end, - STATE(3888), 2, + STATE(3876), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(6274), 3, + ACTIONS(6347), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(3661), 3, + STATE(3683), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [161591] = 12, - ACTIONS(6284), 1, - anon_sym_COMMA, - ACTIONS(6286), 1, + [161630] = 12, + ACTIONS(6297), 1, anon_sym_as, - ACTIONS(6288), 1, + ACTIONS(6299), 1, anon_sym_if, - ACTIONS(6290), 1, + ACTIONS(6301), 1, anon_sym_async, - ACTIONS(6292), 1, + ACTIONS(6303), 1, anon_sym_for, - ACTIONS(6294), 1, + ACTIONS(6305), 1, anon_sym_and, - ACTIONS(6296), 1, + ACTIONS(6307), 1, anon_sym_or, - ACTIONS(6309), 1, + ACTIONS(6381), 1, + anon_sym_COMMA, + ACTIONS(6396), 1, anon_sym_RPAREN, - STATE(4086), 1, + STATE(4060), 1, sym_for_in_clause, - STATE(4715), 1, + STATE(4905), 1, aux_sym__collection_elements_repeat1, - STATE(5656), 1, + STATE(5617), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161629] = 12, - ACTIONS(6286), 1, + [161668] = 10, + ACTIONS(6315), 1, + anon_sym_COMMA, + ACTIONS(6319), 1, + anon_sym_LBRACK, + ACTIONS(6324), 1, + sym_string_start, + ACTIONS(6398), 1, + anon_sym_EQ, + ACTIONS(6400), 1, + sym__newline, + STATE(4145), 1, + sym_string, + STATE(4675), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6313), 2, + anon_sym_LPAREN, + sym_identifier, + STATE(4146), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [161702] = 12, + ACTIONS(6297), 1, anon_sym_as, - ACTIONS(6288), 1, + ACTIONS(6299), 1, anon_sym_if, - ACTIONS(6290), 1, + ACTIONS(6301), 1, anon_sym_async, - ACTIONS(6292), 1, + ACTIONS(6303), 1, anon_sym_for, - ACTIONS(6294), 1, + ACTIONS(6305), 1, anon_sym_and, - ACTIONS(6296), 1, + ACTIONS(6307), 1, anon_sym_or, - ACTIONS(6311), 1, + ACTIONS(6402), 1, anon_sym_RPAREN, - ACTIONS(6313), 1, + ACTIONS(6404), 1, anon_sym_COMMA, - STATE(4086), 1, + STATE(4060), 1, sym_for_in_clause, - STATE(4800), 1, + STATE(4774), 1, aux_sym_argument_list_repeat1, - STATE(5656), 1, + STATE(5617), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161667] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(6272), 1, - anon_sym_LBRACE, - ACTIONS(6276), 1, - anon_sym_BSLASH, - ACTIONS(6315), 1, - sym_string_end, - STATE(3888), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(6274), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(3642), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [161697] = 8, + [161740] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6272), 1, + ACTIONS(6345), 1, anon_sym_LBRACE, - ACTIONS(6276), 1, + ACTIONS(6349), 1, anon_sym_BSLASH, - ACTIONS(6317), 1, + ACTIONS(6406), 1, sym_string_end, - STATE(3888), 2, + STATE(3876), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(6274), 3, + ACTIONS(6347), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(3661), 3, + STATE(3650), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [161727] = 12, - ACTIONS(6284), 1, - anon_sym_COMMA, - ACTIONS(6286), 1, - anon_sym_as, - ACTIONS(6288), 1, - anon_sym_if, - ACTIONS(6290), 1, - anon_sym_async, - ACTIONS(6292), 1, - anon_sym_for, - ACTIONS(6294), 1, - anon_sym_and, - ACTIONS(6296), 1, - anon_sym_or, - ACTIONS(6319), 1, - anon_sym_RPAREN, - STATE(4086), 1, - sym_for_in_clause, - STATE(4715), 1, - aux_sym__collection_elements_repeat1, - STATE(5716), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [161765] = 12, - ACTIONS(6286), 1, - anon_sym_as, - ACTIONS(6288), 1, - anon_sym_if, - ACTIONS(6290), 1, - anon_sym_async, - ACTIONS(6292), 1, - anon_sym_for, - ACTIONS(6294), 1, - anon_sym_and, - ACTIONS(6296), 1, - anon_sym_or, - ACTIONS(6321), 1, - anon_sym_RPAREN, - ACTIONS(6323), 1, - anon_sym_COMMA, - STATE(4086), 1, - sym_for_in_clause, - STATE(4831), 1, - aux_sym_argument_list_repeat1, - STATE(5716), 1, - sym__comprehension_clauses, + [161770] = 9, + ACTIONS(5109), 1, + anon_sym_LBRACK, + ACTIONS(5710), 1, + anon_sym_LPAREN, + ACTIONS(6341), 1, + sym_identifier, + ACTIONS(6408), 1, + anon_sym_complex, + STATE(3468), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161803] = 8, + ACTIONS(5105), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(5107), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3757), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [161802] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6272), 1, + ACTIONS(6345), 1, anon_sym_LBRACE, - ACTIONS(6276), 1, + ACTIONS(6349), 1, anon_sym_BSLASH, - ACTIONS(6325), 1, + ACTIONS(6410), 1, sym_string_end, - STATE(3888), 2, + STATE(3876), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(6274), 3, + ACTIONS(6347), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(3646), 3, + STATE(3683), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [161833] = 8, + [161832] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6272), 1, + ACTIONS(6345), 1, anon_sym_LBRACE, - ACTIONS(6276), 1, + ACTIONS(6349), 1, anon_sym_BSLASH, - ACTIONS(6327), 1, + ACTIONS(6412), 1, sym_string_end, - STATE(3888), 2, + STATE(3876), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(6274), 3, + ACTIONS(6347), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(3661), 3, + STATE(3683), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [161863] = 12, - ACTIONS(6284), 1, - anon_sym_COMMA, - ACTIONS(6286), 1, + [161862] = 12, + ACTIONS(6297), 1, anon_sym_as, - ACTIONS(6288), 1, + ACTIONS(6299), 1, anon_sym_if, - ACTIONS(6290), 1, + ACTIONS(6301), 1, anon_sym_async, - ACTIONS(6292), 1, + ACTIONS(6303), 1, anon_sym_for, - ACTIONS(6294), 1, + ACTIONS(6305), 1, anon_sym_and, - ACTIONS(6296), 1, + ACTIONS(6307), 1, anon_sym_or, - ACTIONS(6329), 1, + ACTIONS(6381), 1, + anon_sym_COMMA, + ACTIONS(6414), 1, anon_sym_RPAREN, - STATE(4086), 1, + STATE(4060), 1, sym_for_in_clause, - STATE(4715), 1, + STATE(4905), 1, aux_sym__collection_elements_repeat1, - STATE(5518), 1, + STATE(5603), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161901] = 12, - ACTIONS(6286), 1, + [161900] = 12, + ACTIONS(6297), 1, anon_sym_as, - ACTIONS(6288), 1, + ACTIONS(6299), 1, anon_sym_if, - ACTIONS(6290), 1, + ACTIONS(6301), 1, anon_sym_async, - ACTIONS(6292), 1, + ACTIONS(6303), 1, anon_sym_for, - ACTIONS(6294), 1, + ACTIONS(6305), 1, anon_sym_and, - ACTIONS(6296), 1, + ACTIONS(6307), 1, anon_sym_or, - ACTIONS(6331), 1, + ACTIONS(6416), 1, anon_sym_RPAREN, - ACTIONS(6333), 1, + ACTIONS(6418), 1, anon_sym_COMMA, - STATE(4086), 1, + STATE(4060), 1, sym_for_in_clause, - STATE(4865), 1, + STATE(4826), 1, aux_sym_argument_list_repeat1, - STATE(5518), 1, + STATE(5603), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161939] = 8, + [161938] = 8, + ACTIONS(3712), 1, + anon_sym_STAR, + ACTIONS(3722), 1, + anon_sym_LBRACK, + ACTIONS(5703), 1, + anon_sym_LPAREN, + STATE(3444), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5706), 2, + sym__newline, + anon_sym_COLON, + STATE(3707), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(3728), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + [161968] = 9, + ACTIONS(5109), 1, + anon_sym_LBRACK, + ACTIONS(5495), 1, + anon_sym_LPAREN, + ACTIONS(6420), 1, + sym_identifier, + ACTIONS(6422), 1, + anon_sym_complex, + STATE(3468), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5105), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(5107), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3725), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [162000] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6272), 1, + ACTIONS(6345), 1, anon_sym_LBRACE, - ACTIONS(6276), 1, + ACTIONS(6349), 1, anon_sym_BSLASH, - ACTIONS(6335), 1, + ACTIONS(6424), 1, sym_string_end, - STATE(3888), 2, + STATE(3876), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(6274), 3, + ACTIONS(6347), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(3650), 3, + STATE(3658), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [161969] = 8, + [162030] = 7, + ACTIONS(3712), 1, + anon_sym_STAR, + ACTIONS(3722), 1, + anon_sym_LBRACK, + STATE(3444), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3700), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(3728), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(5414), 3, + sym__newline, + anon_sym_LPAREN, + anon_sym_COLON, + [162058] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6272), 1, + ACTIONS(6345), 1, anon_sym_LBRACE, - ACTIONS(6276), 1, + ACTIONS(6349), 1, anon_sym_BSLASH, - ACTIONS(6337), 1, + ACTIONS(6426), 1, sym_string_end, - STATE(3888), 2, + STATE(3876), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(6274), 3, + ACTIONS(6347), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(3661), 3, + STATE(3683), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [161999] = 12, - ACTIONS(6284), 1, + [162088] = 12, + ACTIONS(6297), 1, + anon_sym_as, + ACTIONS(6299), 1, + anon_sym_if, + ACTIONS(6301), 1, + anon_sym_async, + ACTIONS(6303), 1, + anon_sym_for, + ACTIONS(6305), 1, + anon_sym_and, + ACTIONS(6307), 1, + anon_sym_or, + ACTIONS(6381), 1, anon_sym_COMMA, - ACTIONS(6286), 1, + ACTIONS(6428), 1, + anon_sym_RPAREN, + STATE(4060), 1, + sym_for_in_clause, + STATE(4905), 1, + aux_sym__collection_elements_repeat1, + STATE(5506), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [162126] = 12, + ACTIONS(6297), 1, anon_sym_as, - ACTIONS(6288), 1, + ACTIONS(6299), 1, anon_sym_if, - ACTIONS(6290), 1, + ACTIONS(6301), 1, anon_sym_async, - ACTIONS(6292), 1, + ACTIONS(6303), 1, anon_sym_for, - ACTIONS(6294), 1, + ACTIONS(6305), 1, anon_sym_and, - ACTIONS(6296), 1, + ACTIONS(6307), 1, anon_sym_or, - ACTIONS(6339), 1, + ACTIONS(6381), 1, + anon_sym_COMMA, + ACTIONS(6430), 1, anon_sym_RPAREN, - STATE(4086), 1, + STATE(4060), 1, sym_for_in_clause, - STATE(4715), 1, + STATE(4905), 1, aux_sym__collection_elements_repeat1, - STATE(5641), 1, + STATE(5526), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162037] = 12, - ACTIONS(6286), 1, + [162164] = 12, + ACTIONS(6297), 1, anon_sym_as, - ACTIONS(6288), 1, + ACTIONS(6299), 1, anon_sym_if, - ACTIONS(6290), 1, + ACTIONS(6301), 1, anon_sym_async, - ACTIONS(6292), 1, + ACTIONS(6303), 1, anon_sym_for, - ACTIONS(6294), 1, + ACTIONS(6305), 1, anon_sym_and, - ACTIONS(6296), 1, + ACTIONS(6307), 1, anon_sym_or, - ACTIONS(6341), 1, + ACTIONS(6432), 1, anon_sym_RPAREN, - ACTIONS(6343), 1, + ACTIONS(6434), 1, anon_sym_COMMA, - STATE(4086), 1, + STATE(4060), 1, sym_for_in_clause, - STATE(4903), 1, + STATE(4859), 1, aux_sym_argument_list_repeat1, - STATE(5641), 1, + STATE(5506), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162075] = 8, + [162202] = 9, + ACTIONS(5109), 1, + anon_sym_LBRACK, + ACTIONS(5411), 1, + anon_sym_LPAREN, + ACTIONS(6309), 1, + sym_identifier, + ACTIONS(6436), 1, + anon_sym_complex, + STATE(3468), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5105), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(5107), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3778), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [162234] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6272), 1, + ACTIONS(6345), 1, anon_sym_LBRACE, - ACTIONS(6276), 1, + ACTIONS(6349), 1, anon_sym_BSLASH, - ACTIONS(6345), 1, + ACTIONS(6438), 1, sym_string_end, - STATE(3888), 2, + STATE(3876), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(6274), 3, + ACTIONS(6347), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(3654), 3, + STATE(3664), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [162105] = 8, + [162264] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6272), 1, + ACTIONS(6345), 1, anon_sym_LBRACE, - ACTIONS(6276), 1, + ACTIONS(6349), 1, anon_sym_BSLASH, - ACTIONS(6347), 1, + ACTIONS(6440), 1, sym_string_end, - STATE(3888), 2, + STATE(3876), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(6274), 3, + ACTIONS(6347), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(3661), 3, + STATE(3683), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [162135] = 12, - ACTIONS(6286), 1, + [162294] = 12, + ACTIONS(6297), 1, anon_sym_as, - ACTIONS(6288), 1, + ACTIONS(6299), 1, anon_sym_if, - ACTIONS(6290), 1, + ACTIONS(6301), 1, anon_sym_async, - ACTIONS(6292), 1, + ACTIONS(6303), 1, anon_sym_for, - ACTIONS(6294), 1, + ACTIONS(6305), 1, anon_sym_and, - ACTIONS(6296), 1, + ACTIONS(6307), 1, anon_sym_or, - ACTIONS(6349), 1, - anon_sym_RPAREN, - ACTIONS(6351), 1, + ACTIONS(6381), 1, anon_sym_COMMA, - STATE(4086), 1, + ACTIONS(6442), 1, + anon_sym_RPAREN, + STATE(4060), 1, sym_for_in_clause, - STATE(5047), 1, - aux_sym_argument_list_repeat1, - STATE(5712), 1, + STATE(4905), 1, + aux_sym__collection_elements_repeat1, + STATE(5444), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162173] = 12, - ACTIONS(6286), 1, + [162332] = 12, + ACTIONS(6297), 1, anon_sym_as, - ACTIONS(6288), 1, + ACTIONS(6299), 1, anon_sym_if, - ACTIONS(6290), 1, + ACTIONS(6301), 1, anon_sym_async, - ACTIONS(6292), 1, + ACTIONS(6303), 1, anon_sym_for, - ACTIONS(6294), 1, + ACTIONS(6305), 1, anon_sym_and, - ACTIONS(6296), 1, + ACTIONS(6307), 1, anon_sym_or, - ACTIONS(6353), 1, + ACTIONS(6444), 1, anon_sym_RPAREN, - ACTIONS(6355), 1, + ACTIONS(6446), 1, anon_sym_COMMA, - STATE(4086), 1, + STATE(4060), 1, sym_for_in_clause, - STATE(4715), 1, - aux_sym__collection_elements_repeat1, - STATE(5437), 1, + STATE(4891), 1, + aux_sym_argument_list_repeat1, + STATE(5444), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162211] = 8, - ACTIONS(3), 1, + [162370] = 5, + ACTIONS(5986), 1, + anon_sym_STAR, + ACTIONS(6448), 1, + anon_sym_LBRACK, + STATE(3767), 1, + sym_type_index, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6272), 1, - anon_sym_LBRACE, - ACTIONS(6276), 1, - anon_sym_BSLASH, - ACTIONS(6358), 1, - sym_string_end, - STATE(3888), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(6274), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(3658), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [162241] = 8, + ACTIONS(5988), 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, + [162394] = 9, + ACTIONS(5109), 1, + anon_sym_LBRACK, + ACTIONS(5495), 1, + anon_sym_LPAREN, + ACTIONS(6420), 1, + sym_identifier, + ACTIONS(6451), 1, + anon_sym_complex, + STATE(3468), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5105), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(5107), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3753), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [162426] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6272), 1, + ACTIONS(6345), 1, anon_sym_LBRACE, - ACTIONS(6276), 1, + ACTIONS(6349), 1, anon_sym_BSLASH, - ACTIONS(6360), 1, + ACTIONS(6453), 1, sym_string_end, - STATE(3888), 2, + STATE(3876), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(6274), 3, + ACTIONS(6347), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(3661), 3, + STATE(3683), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [162271] = 12, - ACTIONS(6147), 1, - anon_sym_RBRACK, - ACTIONS(6362), 1, - anon_sym_COMMA, - ACTIONS(6364), 1, + [162456] = 12, + ACTIONS(6297), 1, anon_sym_as, - ACTIONS(6366), 1, + ACTIONS(6299), 1, anon_sym_if, - ACTIONS(6368), 1, + ACTIONS(6301), 1, anon_sym_async, - ACTIONS(6370), 1, + ACTIONS(6303), 1, anon_sym_for, - ACTIONS(6372), 1, + ACTIONS(6305), 1, anon_sym_and, - ACTIONS(6374), 1, + ACTIONS(6307), 1, anon_sym_or, - STATE(3983), 1, + ACTIONS(6381), 1, + anon_sym_COMMA, + ACTIONS(6455), 1, + anon_sym_RPAREN, + STATE(4060), 1, sym_for_in_clause, - STATE(4830), 1, + STATE(4905), 1, aux_sym__collection_elements_repeat1, - STATE(5540), 1, + STATE(5645), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [162494] = 8, + ACTIONS(3712), 1, + anon_sym_STAR, + ACTIONS(3722), 1, + anon_sym_LBRACK, + ACTIONS(6132), 1, + anon_sym_LPAREN, + STATE(3444), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6130), 2, + sym__newline, + anon_sym_COLON, + STATE(3708), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(3728), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + [162524] = 12, + ACTIONS(6297), 1, + anon_sym_as, + ACTIONS(6299), 1, + anon_sym_if, + ACTIONS(6301), 1, + anon_sym_async, + ACTIONS(6303), 1, + anon_sym_for, + ACTIONS(6305), 1, + anon_sym_and, + ACTIONS(6307), 1, + anon_sym_or, + ACTIONS(6457), 1, + anon_sym_RPAREN, + ACTIONS(6459), 1, + anon_sym_COMMA, + STATE(4060), 1, + sym_for_in_clause, + STATE(4941), 1, + aux_sym_argument_list_repeat1, + STATE(5645), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162309] = 8, + [162562] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6272), 1, + ACTIONS(6345), 1, anon_sym_LBRACE, - ACTIONS(6276), 1, + ACTIONS(6349), 1, anon_sym_BSLASH, - ACTIONS(6376), 1, + ACTIONS(6461), 1, sym_string_end, - STATE(3888), 2, + STATE(3876), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(6274), 3, + ACTIONS(6347), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(3662), 3, + STATE(3674), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [162339] = 8, + [162592] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6378), 1, + ACTIONS(6345), 1, anon_sym_LBRACE, - ACTIONS(6384), 1, + ACTIONS(6349), 1, anon_sym_BSLASH, - ACTIONS(6387), 1, + ACTIONS(6463), 1, sym_string_end, - STATE(3888), 2, + STATE(3876), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(6381), 3, + ACTIONS(6347), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(3661), 3, + STATE(3683), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [162369] = 8, + [162622] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6272), 1, + ACTIONS(6345), 1, anon_sym_LBRACE, - ACTIONS(6276), 1, + ACTIONS(6349), 1, anon_sym_BSLASH, - ACTIONS(6389), 1, + ACTIONS(6465), 1, sym_string_end, - STATE(3888), 2, + STATE(3876), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(6274), 3, + ACTIONS(6347), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(3661), 3, + STATE(3676), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [162399] = 8, + [162652] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6272), 1, + ACTIONS(6345), 1, anon_sym_LBRACE, - ACTIONS(6276), 1, + ACTIONS(6349), 1, anon_sym_BSLASH, - ACTIONS(6391), 1, + ACTIONS(6467), 1, sym_string_end, - STATE(3888), 2, + STATE(3876), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(6274), 3, + ACTIONS(6347), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(3708), 3, + STATE(3683), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [162429] = 12, - ACTIONS(6284), 1, - anon_sym_COMMA, - ACTIONS(6286), 1, - anon_sym_as, - ACTIONS(6288), 1, - anon_sym_if, - ACTIONS(6290), 1, - anon_sym_async, - ACTIONS(6292), 1, - anon_sym_for, - ACTIONS(6294), 1, - anon_sym_and, - ACTIONS(6296), 1, - anon_sym_or, - ACTIONS(6393), 1, - anon_sym_RPAREN, - STATE(4086), 1, - sym_for_in_clause, - STATE(4715), 1, - aux_sym__collection_elements_repeat1, - STATE(5712), 1, - sym__comprehension_clauses, + [162682] = 5, + ACTIONS(6013), 1, + anon_sym_STAR, + ACTIONS(6357), 1, + anon_sym_DOT, + STATE(3642), 1, + aux_sym_type_qualifier_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162467] = 8, + ACTIONS(6015), 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, + [162706] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6272), 1, + ACTIONS(6345), 1, anon_sym_LBRACE, - ACTIONS(6276), 1, + ACTIONS(6349), 1, anon_sym_BSLASH, - ACTIONS(6395), 1, + ACTIONS(6469), 1, sym_string_end, - STATE(3888), 2, + STATE(3876), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(6274), 3, + ACTIONS(6347), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(3661), 3, + STATE(3680), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [162497] = 7, - ACTIONS(3708), 1, - anon_sym_STAR, - ACTIONS(3718), 1, - anon_sym_LBRACK, - STATE(3409), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3689), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3724), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5447), 3, - sym__newline, - anon_sym_LPAREN, - anon_sym_COLON, - [162525] = 12, - ACTIONS(6284), 1, - anon_sym_COMMA, - ACTIONS(6286), 1, - anon_sym_as, - ACTIONS(6288), 1, - anon_sym_if, - ACTIONS(6290), 1, - anon_sym_async, - ACTIONS(6292), 1, - anon_sym_for, - ACTIONS(6294), 1, - anon_sym_and, - ACTIONS(6296), 1, - anon_sym_or, - ACTIONS(6353), 1, - anon_sym_RPAREN, - STATE(4086), 1, - sym_for_in_clause, - STATE(4715), 1, - aux_sym__collection_elements_repeat1, - STATE(5437), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [162563] = 5, - ACTIONS(5953), 1, - anon_sym_STAR, - ACTIONS(6397), 1, - anon_sym_LBRACK, - STATE(3725), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5955), 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, - [162587] = 9, - ACTIONS(5117), 1, + [162736] = 9, + ACTIONS(5109), 1, anon_sym_LBRACK, - ACTIONS(5461), 1, + ACTIONS(5750), 1, anon_sym_LPAREN, - ACTIONS(6400), 1, + ACTIONS(6333), 1, sym_identifier, - ACTIONS(6402), 1, + ACTIONS(6471), 1, anon_sym_complex, - STATE(3455), 1, + STATE(3468), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5113), 2, + ACTIONS(5105), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5115), 2, + ACTIONS(5107), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3722), 2, + STATE(3754), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [162619] = 8, + [162768] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6272), 1, + ACTIONS(6345), 1, anon_sym_LBRACE, - ACTIONS(6276), 1, + ACTIONS(6349), 1, anon_sym_BSLASH, - ACTIONS(6404), 1, + ACTIONS(6473), 1, sym_string_end, - STATE(3888), 2, + STATE(3876), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(6274), 3, + ACTIONS(6347), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(3672), 3, + STATE(3683), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [162649] = 12, - ACTIONS(6147), 1, - anon_sym_RBRACK, - ACTIONS(6362), 1, - anon_sym_COMMA, - ACTIONS(6364), 1, + [162798] = 12, + ACTIONS(6297), 1, anon_sym_as, - ACTIONS(6366), 1, + ACTIONS(6299), 1, anon_sym_if, - ACTIONS(6368), 1, + ACTIONS(6301), 1, anon_sym_async, - ACTIONS(6370), 1, + ACTIONS(6303), 1, anon_sym_for, - ACTIONS(6372), 1, + ACTIONS(6305), 1, anon_sym_and, - ACTIONS(6374), 1, + ACTIONS(6307), 1, anon_sym_or, - STATE(3983), 1, + ACTIONS(6475), 1, + anon_sym_RPAREN, + ACTIONS(6477), 1, + anon_sym_COMMA, + STATE(4060), 1, sym_for_in_clause, - STATE(4830), 1, - aux_sym__collection_elements_repeat1, - STATE(5672), 1, + STATE(4683), 1, + aux_sym_argument_list_repeat1, + STATE(5526), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162687] = 8, + [162836] = 7, + ACTIONS(3712), 1, + anon_sym_STAR, + ACTIONS(3722), 1, + anon_sym_LBRACK, + STATE(3444), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3620), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(3728), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(5745), 3, + sym__newline, + anon_sym_LPAREN, + anon_sym_COLON, + [162864] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6272), 1, + ACTIONS(6479), 1, anon_sym_LBRACE, - ACTIONS(6276), 1, + ACTIONS(6485), 1, anon_sym_BSLASH, - ACTIONS(6406), 1, + ACTIONS(6488), 1, sym_string_end, - STATE(3888), 2, + STATE(3876), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(6274), 3, + ACTIONS(6482), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(3661), 3, + STATE(3683), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [162717] = 9, - ACTIONS(5117), 1, - anon_sym_LBRACK, - ACTIONS(5500), 1, - anon_sym_LPAREN, - ACTIONS(6408), 1, - sym_identifier, - ACTIONS(6410), 1, - anon_sym_complex, - STATE(3455), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5113), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(5115), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3759), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [162749] = 10, - ACTIONS(6256), 1, - anon_sym_COMMA, - ACTIONS(6260), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - sym_string_start, - ACTIONS(6412), 1, - anon_sym_EQ, - ACTIONS(6414), 1, - sym__newline, - STATE(4098), 1, - sym_string, - STATE(4895), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6254), 2, - anon_sym_LPAREN, - sym_identifier, - STATE(4099), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [162783] = 8, + [162894] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6272), 1, + ACTIONS(6345), 1, anon_sym_LBRACE, - ACTIONS(6276), 1, + ACTIONS(6349), 1, anon_sym_BSLASH, - ACTIONS(6416), 1, + ACTIONS(6490), 1, sym_string_end, - STATE(3888), 2, + STATE(3876), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(6274), 3, + ACTIONS(6347), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(3665), 3, + STATE(3651), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [162813] = 12, - ACTIONS(6286), 1, - anon_sym_as, - ACTIONS(6288), 1, - anon_sym_if, - ACTIONS(6290), 1, - anon_sym_async, - ACTIONS(6292), 1, - anon_sym_for, - ACTIONS(6294), 1, - anon_sym_and, - ACTIONS(6296), 1, - anon_sym_or, - ACTIONS(6418), 1, - anon_sym_RPAREN, - ACTIONS(6420), 1, - anon_sym_COMMA, - STATE(4086), 1, - sym_for_in_clause, - STATE(4909), 1, - aux_sym_argument_list_repeat1, - STATE(5437), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [162851] = 9, - ACTIONS(6029), 1, - anon_sym_as, - ACTIONS(6031), 1, - anon_sym_if, - ACTIONS(6033), 1, - anon_sym_and, - ACTIONS(6035), 1, - anon_sym_or, - ACTIONS(6426), 1, - anon_sym_COMMA, - STATE(4619), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6422), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(6424), 3, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_PIPE, - [162883] = 10, - ACTIONS(6256), 1, - anon_sym_COMMA, - ACTIONS(6260), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - sym_string_start, - ACTIONS(6428), 1, - anon_sym_EQ, - ACTIONS(6430), 1, - sym__newline, - STATE(4006), 1, - sym_string, - STATE(4740), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6254), 2, - anon_sym_LPAREN, - sym_identifier, - STATE(4007), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [162917] = 12, - ACTIONS(6147), 1, + [162924] = 12, + ACTIONS(6159), 1, anon_sym_RBRACK, - ACTIONS(6362), 1, + ACTIONS(6359), 1, anon_sym_COMMA, - ACTIONS(6364), 1, + ACTIONS(6361), 1, anon_sym_as, - ACTIONS(6366), 1, + ACTIONS(6363), 1, anon_sym_if, - ACTIONS(6368), 1, + ACTIONS(6365), 1, anon_sym_async, - ACTIONS(6370), 1, + ACTIONS(6367), 1, anon_sym_for, - ACTIONS(6372), 1, + ACTIONS(6369), 1, anon_sym_and, - ACTIONS(6374), 1, + ACTIONS(6371), 1, anon_sym_or, - STATE(3983), 1, + STATE(4140), 1, sym_for_in_clause, - STATE(4830), 1, + STATE(4657), 1, aux_sym__collection_elements_repeat1, - STATE(5549), 1, + STATE(5718), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162955] = 12, - ACTIONS(6284), 1, + [162962] = 12, + ACTIONS(6159), 1, + anon_sym_RBRACK, + ACTIONS(6359), 1, anon_sym_COMMA, - ACTIONS(6286), 1, + ACTIONS(6361), 1, anon_sym_as, - ACTIONS(6288), 1, + ACTIONS(6363), 1, anon_sym_if, - ACTIONS(6290), 1, + ACTIONS(6365), 1, anon_sym_async, - ACTIONS(6292), 1, + ACTIONS(6367), 1, anon_sym_for, - ACTIONS(6294), 1, + ACTIONS(6369), 1, anon_sym_and, - ACTIONS(6296), 1, + ACTIONS(6371), 1, anon_sym_or, - ACTIONS(6432), 1, - anon_sym_RPAREN, - STATE(4086), 1, + STATE(4140), 1, sym_for_in_clause, - STATE(4715), 1, + STATE(4657), 1, aux_sym__collection_elements_repeat1, - STATE(5602), 1, + STATE(5661), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162993] = 9, - ACTIONS(5117), 1, - anon_sym_LBRACK, - ACTIONS(5461), 1, - anon_sym_LPAREN, - ACTIONS(6400), 1, - sym_identifier, - ACTIONS(6434), 1, - anon_sym_complex, - STATE(3455), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5113), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(5115), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3719), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [163025] = 9, - ACTIONS(5117), 1, - anon_sym_LBRACK, - ACTIONS(5729), 1, - anon_sym_LPAREN, - ACTIONS(6248), 1, - sym_identifier, - ACTIONS(6436), 1, - anon_sym_complex, - STATE(3455), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5113), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(5115), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3757), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [163057] = 7, - ACTIONS(3708), 1, + [163000] = 7, + ACTIONS(3712), 1, anon_sym_STAR, - ACTIONS(3718), 1, + ACTIONS(3722), 1, anon_sym_LBRACK, - STATE(3409), 1, + STATE(3444), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3357), 2, + STATE(3393), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(3728), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5447), 3, + ACTIONS(5487), 3, sym__newline, anon_sym_LPAREN, anon_sym_COLON, - [163085] = 7, - ACTIONS(3708), 1, + [163028] = 7, + ACTIONS(3712), 1, anon_sym_STAR, - ACTIONS(3718), 1, + ACTIONS(3722), 1, anon_sym_LBRACK, - STATE(3409), 1, + STATE(3444), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3357), 2, + STATE(3393), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(3728), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5503), 3, + ACTIONS(5414), 3, sym__newline, anon_sym_LPAREN, anon_sym_COLON, - [163113] = 12, - ACTIONS(6147), 1, + [163056] = 12, + ACTIONS(6159), 1, anon_sym_RBRACK, - ACTIONS(6362), 1, + ACTIONS(6359), 1, anon_sym_COMMA, - ACTIONS(6364), 1, + ACTIONS(6361), 1, anon_sym_as, - ACTIONS(6366), 1, + ACTIONS(6363), 1, anon_sym_if, - ACTIONS(6368), 1, + ACTIONS(6365), 1, anon_sym_async, - ACTIONS(6370), 1, + ACTIONS(6367), 1, anon_sym_for, - ACTIONS(6372), 1, + ACTIONS(6369), 1, anon_sym_and, - ACTIONS(6374), 1, + ACTIONS(6371), 1, anon_sym_or, - STATE(3983), 1, + STATE(4140), 1, sym_for_in_clause, - STATE(4830), 1, + STATE(4657), 1, aux_sym__collection_elements_repeat1, - STATE(5693), 1, + STATE(5689), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163151] = 9, - ACTIONS(5117), 1, - anon_sym_LBRACK, - ACTIONS(5500), 1, - anon_sym_LPAREN, - ACTIONS(6408), 1, - sym_identifier, - ACTIONS(6438), 1, - anon_sym_complex, - STATE(3455), 1, - sym_type_index, + [163094] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(6345), 1, + anon_sym_LBRACE, + ACTIONS(6349), 1, + anon_sym_BSLASH, + ACTIONS(6492), 1, + sym_string_end, + STATE(3876), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(6347), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(3696), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [163124] = 12, + ACTIONS(6159), 1, + anon_sym_RBRACK, + ACTIONS(6359), 1, + anon_sym_COMMA, + ACTIONS(6361), 1, + anon_sym_as, + ACTIONS(6363), 1, + anon_sym_if, + ACTIONS(6365), 1, + anon_sym_async, + ACTIONS(6367), 1, + anon_sym_for, + ACTIONS(6369), 1, + anon_sym_and, + ACTIONS(6371), 1, + anon_sym_or, + STATE(4140), 1, + sym_for_in_clause, + STATE(4657), 1, + aux_sym__collection_elements_repeat1, + STATE(5635), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5113), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(5115), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3714), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [163183] = 10, - ACTIONS(6256), 1, + [163162] = 12, + ACTIONS(6159), 1, + anon_sym_RBRACK, + ACTIONS(6359), 1, anon_sym_COMMA, - ACTIONS(6260), 1, + ACTIONS(6361), 1, + anon_sym_as, + ACTIONS(6363), 1, + anon_sym_if, + ACTIONS(6365), 1, + anon_sym_async, + ACTIONS(6367), 1, + anon_sym_for, + ACTIONS(6369), 1, + anon_sym_and, + ACTIONS(6371), 1, + anon_sym_or, + STATE(4140), 1, + sym_for_in_clause, + STATE(4657), 1, + aux_sym__collection_elements_repeat1, + STATE(5515), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [163200] = 10, + ACTIONS(6315), 1, + anon_sym_COMMA, + ACTIONS(6319), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6324), 1, sym_string_start, - ACTIONS(6440), 1, + ACTIONS(6494), 1, anon_sym_EQ, - ACTIONS(6442), 1, + ACTIONS(6496), 1, sym__newline, - STATE(4062), 1, + STATE(4133), 1, sym_string, - STATE(5033), 1, + STATE(5103), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6254), 2, - anon_sym_LPAREN, - sym_identifier, - STATE(4083), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [163217] = 12, - ACTIONS(6147), 1, + ACTIONS(6313), 2, + anon_sym_LPAREN, + sym_identifier, + STATE(4135), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [163234] = 12, + ACTIONS(6159), 1, + anon_sym_RBRACK, + ACTIONS(6359), 1, + anon_sym_COMMA, + ACTIONS(6361), 1, + anon_sym_as, + ACTIONS(6363), 1, + anon_sym_if, + ACTIONS(6365), 1, + anon_sym_async, + ACTIONS(6367), 1, + anon_sym_for, + ACTIONS(6369), 1, + anon_sym_and, + ACTIONS(6371), 1, + anon_sym_or, + STATE(4140), 1, + sym_for_in_clause, + STATE(4657), 1, + aux_sym__collection_elements_repeat1, + STATE(5450), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [163272] = 12, + ACTIONS(6159), 1, anon_sym_RBRACK, - ACTIONS(6362), 1, + ACTIONS(6359), 1, anon_sym_COMMA, - ACTIONS(6364), 1, + ACTIONS(6361), 1, anon_sym_as, - ACTIONS(6366), 1, + ACTIONS(6363), 1, anon_sym_if, - ACTIONS(6368), 1, + ACTIONS(6365), 1, anon_sym_async, - ACTIONS(6370), 1, + ACTIONS(6367), 1, anon_sym_for, - ACTIONS(6372), 1, + ACTIONS(6369), 1, anon_sym_and, - ACTIONS(6374), 1, + ACTIONS(6371), 1, anon_sym_or, - STATE(3983), 1, + STATE(4140), 1, sym_for_in_clause, - STATE(4830), 1, + STATE(4657), 1, aux_sym__collection_elements_repeat1, - STATE(5676), 1, + STATE(5647), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163255] = 7, - ACTIONS(3708), 1, + [163310] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(6345), 1, + anon_sym_LBRACE, + ACTIONS(6349), 1, + anon_sym_BSLASH, + ACTIONS(6498), 1, + sym_string_end, + STATE(3876), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(6347), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(3683), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [163340] = 7, + ACTIONS(3712), 1, anon_sym_STAR, - ACTIONS(3718), 1, + ACTIONS(3722), 1, anon_sym_LBRACK, - STATE(3409), 1, + STATE(3444), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3357), 2, + STATE(3393), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(3728), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5758), 3, + ACTIONS(5745), 3, sym__newline, anon_sym_LPAREN, anon_sym_COLON, - [163283] = 8, - ACTIONS(3708), 1, + [163368] = 8, + ACTIONS(3712), 1, anon_sym_STAR, - ACTIONS(3718), 1, + ACTIONS(3722), 1, anon_sym_LBRACK, - ACTIONS(5533), 1, + ACTIONS(5457), 1, anon_sym_LPAREN, - STATE(3409), 1, + STATE(3444), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5536), 2, + ACTIONS(5460), 2, sym__newline, anon_sym_COLON, - STATE(3357), 2, + STATE(3393), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(3728), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [163313] = 12, - ACTIONS(6147), 1, - anon_sym_RBRACK, - ACTIONS(6362), 1, - anon_sym_COMMA, - ACTIONS(6364), 1, - anon_sym_as, - ACTIONS(6366), 1, - anon_sym_if, - ACTIONS(6368), 1, - anon_sym_async, - ACTIONS(6370), 1, - anon_sym_for, - ACTIONS(6372), 1, - anon_sym_and, - ACTIONS(6374), 1, - anon_sym_or, - STATE(3983), 1, - sym_for_in_clause, - STATE(4830), 1, - aux_sym__collection_elements_repeat1, - STATE(5724), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [163351] = 10, - ACTIONS(6256), 1, - anon_sym_COMMA, - ACTIONS(6260), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - sym_string_start, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6446), 1, - sym__newline, - STATE(3997), 1, - sym_string, - STATE(4709), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6254), 2, - anon_sym_LPAREN, - sym_identifier, - STATE(4000), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [163385] = 8, - ACTIONS(3708), 1, + [163398] = 8, + ACTIONS(3712), 1, anon_sym_STAR, - ACTIONS(3718), 1, + ACTIONS(3722), 1, anon_sym_LBRACK, - ACTIONS(5751), 1, + ACTIONS(5747), 1, anon_sym_LPAREN, - STATE(3409), 1, + STATE(3444), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5729), 2, + ACTIONS(5750), 2, sym__newline, anon_sym_COLON, - STATE(3357), 2, + STATE(3393), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(3728), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [163415] = 7, - ACTIONS(3708), 1, + [163428] = 7, + ACTIONS(3712), 1, anon_sym_STAR, - ACTIONS(3718), 1, + ACTIONS(3722), 1, anon_sym_LBRACK, - STATE(3409), 1, + STATE(3444), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3357), 2, + STATE(3393), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(3728), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5729), 3, + ACTIONS(5750), 3, sym__newline, anon_sym_LPAREN, anon_sym_COLON, - [163443] = 12, - ACTIONS(6147), 1, - anon_sym_RBRACK, - ACTIONS(6362), 1, - anon_sym_COMMA, - ACTIONS(6364), 1, - anon_sym_as, - ACTIONS(6366), 1, - anon_sym_if, - ACTIONS(6368), 1, - anon_sym_async, - ACTIONS(6370), 1, - anon_sym_for, - ACTIONS(6372), 1, - anon_sym_and, - ACTIONS(6374), 1, - anon_sym_or, - STATE(3983), 1, - sym_for_in_clause, - STATE(4830), 1, - aux_sym__collection_elements_repeat1, - STATE(5520), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [163481] = 9, - ACTIONS(5117), 1, - anon_sym_LBRACK, - ACTIONS(5741), 1, - anon_sym_LPAREN, - ACTIONS(6268), 1, - sym_identifier, - ACTIONS(6448), 1, - anon_sym_complex, - STATE(3455), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5113), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(5115), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3718), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [163513] = 12, - ACTIONS(6147), 1, - anon_sym_RBRACK, - ACTIONS(6362), 1, - anon_sym_COMMA, - ACTIONS(6364), 1, - anon_sym_as, - ACTIONS(6366), 1, - anon_sym_if, - ACTIONS(6368), 1, - anon_sym_async, - ACTIONS(6370), 1, - anon_sym_for, - ACTIONS(6372), 1, - anon_sym_and, - ACTIONS(6374), 1, - anon_sym_or, - STATE(3983), 1, - sym_for_in_clause, - STATE(4830), 1, - aux_sym__collection_elements_repeat1, - STATE(5642), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [163551] = 7, - ACTIONS(3708), 1, + [163456] = 7, + ACTIONS(3712), 1, anon_sym_STAR, - ACTIONS(3718), 1, + ACTIONS(3722), 1, anon_sym_LBRACK, - STATE(3409), 1, + STATE(3444), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3357), 2, + STATE(3393), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(3728), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5744), 3, + ACTIONS(5713), 3, sym__newline, anon_sym_LPAREN, anon_sym_COLON, - [163579] = 7, - ACTIONS(3708), 1, - anon_sym_STAR, - ACTIONS(3718), 1, + [163484] = 10, + ACTIONS(6315), 1, + anon_sym_COMMA, + ACTIONS(6319), 1, anon_sym_LBRACK, - STATE(3409), 1, - sym_type_index, + ACTIONS(6324), 1, + sym_string_start, + ACTIONS(6500), 1, + anon_sym_EQ, + ACTIONS(6502), 1, + sym__newline, + STATE(4116), 1, + sym_string, + STATE(5062), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3357), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3724), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5735), 3, - sym__newline, + ACTIONS(6313), 2, anon_sym_LPAREN, - anon_sym_COLON, - [163607] = 8, - ACTIONS(3708), 1, + sym_identifier, + STATE(4118), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [163518] = 8, + ACTIONS(3712), 1, anon_sym_STAR, - ACTIONS(3718), 1, + ACTIONS(3722), 1, anon_sym_LBRACK, - ACTIONS(5787), 1, + ACTIONS(5703), 1, anon_sym_LPAREN, - STATE(3409), 1, + STATE(3444), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5790), 2, + ACTIONS(5706), 2, sym__newline, anon_sym_COLON, - STATE(3357), 2, + STATE(3393), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(3728), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [163637] = 8, - ACTIONS(3708), 1, + [163548] = 8, + ACTIONS(3712), 1, anon_sym_STAR, - ACTIONS(3718), 1, + ACTIONS(3722), 1, anon_sym_LBRACK, - ACTIONS(5741), 1, + ACTIONS(5710), 1, anon_sym_LPAREN, - STATE(3409), 1, + STATE(3444), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5744), 2, + ACTIONS(5713), 2, sym__newline, anon_sym_COLON, - STATE(3357), 2, + STATE(3393), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(3728), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [163667] = 7, - ACTIONS(3708), 1, + [163578] = 7, + ACTIONS(3712), 1, anon_sym_STAR, - ACTIONS(3718), 1, + ACTIONS(3722), 1, anon_sym_LBRACK, - STATE(3409), 1, + STATE(3444), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3357), 2, + STATE(3393), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(3728), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6042), 3, + ACTIONS(6130), 3, sym__newline, anon_sym_LPAREN, anon_sym_COLON, - [163695] = 8, - ACTIONS(3708), 1, + [163606] = 8, + ACTIONS(3712), 1, anon_sym_STAR, - ACTIONS(3718), 1, + ACTIONS(3722), 1, anon_sym_LBRACK, - ACTIONS(6039), 1, + ACTIONS(6132), 1, anon_sym_LPAREN, - STATE(3409), 1, + STATE(3444), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6042), 2, + ACTIONS(6130), 2, sym__newline, anon_sym_COLON, - STATE(3357), 2, + STATE(3393), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(3728), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [163725] = 8, - ACTIONS(3708), 1, + [163636] = 8, + ACTIONS(3712), 1, anon_sym_STAR, - ACTIONS(3718), 1, + ACTIONS(3722), 1, anon_sym_LBRACK, - ACTIONS(5762), 1, + ACTIONS(5781), 1, anon_sym_LPAREN, - STATE(3409), 1, + STATE(3444), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5765), 2, + ACTIONS(5784), 2, sym__newline, anon_sym_COLON, - STATE(3357), 2, + STATE(3393), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(3728), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [163755] = 8, - ACTIONS(3708), 1, + [163666] = 8, + ACTIONS(3712), 1, anon_sym_STAR, - ACTIONS(3718), 1, + ACTIONS(3722), 1, anon_sym_LBRACK, - ACTIONS(6088), 1, + ACTIONS(6055), 1, anon_sym_LPAREN, - STATE(3409), 1, + STATE(3444), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6091), 2, + ACTIONS(6058), 2, sym__newline, anon_sym_COLON, - STATE(3357), 2, + STATE(3393), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(3728), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [163785] = 12, - ACTIONS(6286), 1, + [163696] = 12, + ACTIONS(6292), 1, + anon_sym_RPAREN, + ACTIONS(6297), 1, anon_sym_as, - ACTIONS(6288), 1, + ACTIONS(6299), 1, anon_sym_if, - ACTIONS(6290), 1, + ACTIONS(6301), 1, anon_sym_async, - ACTIONS(6292), 1, + ACTIONS(6303), 1, anon_sym_for, - ACTIONS(6294), 1, + ACTIONS(6305), 1, anon_sym_and, - ACTIONS(6296), 1, + ACTIONS(6307), 1, anon_sym_or, - ACTIONS(6450), 1, - anon_sym_RPAREN, - ACTIONS(6452), 1, + ACTIONS(6381), 1, anon_sym_COMMA, - STATE(4086), 1, + STATE(4060), 1, sym_for_in_clause, - STATE(4717), 1, - aux_sym_argument_list_repeat1, - STATE(5602), 1, + STATE(4905), 1, + aux_sym__collection_elements_repeat1, + STATE(5657), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163823] = 10, - ACTIONS(6256), 1, - anon_sym_COMMA, - ACTIONS(6260), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - sym_string_start, - ACTIONS(6454), 1, - anon_sym_EQ, - ACTIONS(6456), 1, - sym__newline, - STATE(4087), 1, - sym_string, - STATE(5003), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6254), 2, - anon_sym_LPAREN, - sym_identifier, - STATE(4088), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [163857] = 8, + [163734] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6272), 1, + ACTIONS(6345), 1, anon_sym_LBRACE, - ACTIONS(6276), 1, + ACTIONS(6349), 1, anon_sym_BSLASH, - ACTIONS(6458), 1, + ACTIONS(6504), 1, sym_string_end, - STATE(3888), 2, + STATE(3876), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(6274), 3, + ACTIONS(6347), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(3661), 3, + STATE(3669), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [163887] = 8, - ACTIONS(6460), 1, - anon_sym_COMMA, - ACTIONS(6462), 1, - anon_sym_as, - ACTIONS(6464), 1, - anon_sym_if, - ACTIONS(6468), 1, - anon_sym_and, - ACTIONS(6470), 1, - anon_sym_or, - STATE(4155), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6466), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [163916] = 6, - ACTIONS(5741), 1, + [163764] = 9, + ACTIONS(5105), 1, + anon_sym___stdcall, + ACTIONS(5107), 1, + anon_sym_AMP, + ACTIONS(5109), 1, + anon_sym_LBRACK, + ACTIONS(5710), 1, anon_sym_LPAREN, - STATE(3455), 1, + ACTIONS(5713), 1, + anon_sym_STAR_STAR, + STATE(3468), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3408), 2, + ACTIONS(6341), 2, + anon_sym_STAR, + sym_identifier, + STATE(3407), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5744), 3, - anon_sym_STAR_STAR, + [163795] = 8, + ACTIONS(5109), 1, anon_sym_LBRACK, - anon_sym_AMP, - ACTIONS(6268), 3, - anon_sym_STAR, + ACTIONS(5487), 1, + anon_sym_LPAREN, + ACTIONS(6080), 1, sym_identifier, + STATE(3468), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5105), 2, + anon_sym_STAR, anon_sym___stdcall, - [163941] = 3, - ACTIONS(6111), 1, + ACTIONS(5107), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3723), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [163824] = 3, + ACTIONS(6229), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6113), 9, + ACTIONS(6231), 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, - [163960] = 8, - ACTIONS(5117), 1, + [163843] = 6, + ACTIONS(6506), 1, + anon_sym_as, + ACTIONS(6508), 1, + anon_sym_if, + ACTIONS(6510), 1, + anon_sym_and, + ACTIONS(6512), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6385), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [163868] = 8, + ACTIONS(5109), 1, anon_sym_LBRACK, - ACTIONS(6039), 1, + ACTIONS(5414), 1, anon_sym_LPAREN, - ACTIONS(6472), 1, + ACTIONS(6309), 1, sym_identifier, - STATE(3455), 1, + STATE(3468), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5113), 2, + ACTIONS(5105), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5115), 2, + ACTIONS(5107), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3774), 2, + STATE(3726), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [163989] = 5, - STATE(3455), 1, + [163897] = 8, + ACTIONS(5109), 1, + anon_sym_LBRACK, + ACTIONS(5747), 1, + anon_sym_LPAREN, + ACTIONS(6333), 1, + sym_identifier, + STATE(3468), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3408), 2, + ACTIONS(5105), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(5107), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3711), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6009), 3, + [163926] = 3, + ACTIONS(5821), 1, anon_sym_STAR, - sym_identifier, - anon_sym___stdcall, - ACTIONS(5447), 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5823), 9, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AMP, - [164012] = 9, - ACTIONS(5113), 1, + anon_sym_complex, anon_sym___stdcall, - ACTIONS(5115), 1, + [163945] = 6, + ACTIONS(6132), 1, + anon_sym_LPAREN, + STATE(3468), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3407), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(6130), 3, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AMP, - ACTIONS(5117), 1, + ACTIONS(6514), 3, + anon_sym_STAR, + sym_identifier, + anon_sym___stdcall, + [163970] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4490), 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, + [163987] = 8, + ACTIONS(5109), 1, anon_sym_LBRACK, - ACTIONS(5729), 1, - anon_sym_STAR_STAR, - ACTIONS(5751), 1, + ACTIONS(5713), 1, anon_sym_LPAREN, - STATE(3455), 1, + ACTIONS(6341), 1, + sym_identifier, + STATE(3468), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6248), 2, + ACTIONS(5105), 2, anon_sym_STAR, - sym_identifier, - STATE(3408), 2, + anon_sym___stdcall, + ACTIONS(5107), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3749), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [164043] = 5, - STATE(3455), 1, + [164016] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4609), 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, + [164033] = 8, + ACTIONS(5109), 1, + anon_sym_LBRACK, + ACTIONS(6132), 1, + anon_sym_LPAREN, + ACTIONS(6514), 1, + sym_identifier, + STATE(3468), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3408), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(6472), 3, + ACTIONS(5105), 2, anon_sym_STAR, - sym_identifier, anon_sym___stdcall, - ACTIONS(6042), 4, - anon_sym_LPAREN, + ACTIONS(5107), 2, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AMP, - [164066] = 8, - ACTIONS(5113), 1, + STATE(3782), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [164062] = 8, + ACTIONS(5105), 1, anon_sym___stdcall, - ACTIONS(5115), 1, + ACTIONS(5107), 1, anon_sym_AMP, - ACTIONS(5117), 1, + ACTIONS(5109), 1, anon_sym_LBRACK, - STATE(3455), 1, + STATE(3468), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5447), 2, + ACTIONS(5745), 2, anon_sym_LPAREN, anon_sym_STAR_STAR, - ACTIONS(6009), 2, + ACTIONS(6516), 2, anon_sym_STAR, sym_identifier, - STATE(3408), 2, + STATE(3407), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [164095] = 8, - ACTIONS(6460), 1, - anon_sym_COMMA, - ACTIONS(6462), 1, - anon_sym_as, - ACTIONS(6464), 1, - anon_sym_if, - ACTIONS(6468), 1, - anon_sym_and, - ACTIONS(6470), 1, - anon_sym_or, - STATE(4155), 1, - aux_sym_assert_statement_repeat1, + [164091] = 3, + ACTIONS(5385), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6474), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [164124] = 6, - ACTIONS(6039), 1, + ACTIONS(4360), 9, anon_sym_LPAREN, - STATE(3455), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3408), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(6042), 3, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - ACTIONS(6472), 3, - anon_sym_STAR, - sym_identifier, + anon_sym_complex, anon_sym___stdcall, - [164149] = 8, - ACTIONS(5113), 1, + [164110] = 8, + ACTIONS(5105), 1, anon_sym___stdcall, - ACTIONS(5115), 1, + ACTIONS(5107), 1, anon_sym_AMP, - ACTIONS(5117), 1, + ACTIONS(5109), 1, anon_sym_LBRACK, - STATE(3455), 1, + STATE(3468), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5503), 2, + ACTIONS(5414), 2, anon_sym_LPAREN, anon_sym_STAR_STAR, - ACTIONS(6408), 2, + ACTIONS(6309), 2, anon_sym_STAR, sym_identifier, - STATE(3408), 2, + STATE(3407), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [164178] = 8, - ACTIONS(5113), 1, + [164139] = 8, + ACTIONS(5105), 1, anon_sym___stdcall, - ACTIONS(5115), 1, + ACTIONS(5107), 1, anon_sym_AMP, - ACTIONS(5117), 1, + ACTIONS(5109), 1, anon_sym_LBRACK, - STATE(3455), 1, + STATE(3468), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5729), 2, + ACTIONS(5750), 2, anon_sym_LPAREN, anon_sym_STAR_STAR, - ACTIONS(6248), 2, + ACTIONS(6333), 2, anon_sym_STAR, sym_identifier, - STATE(3408), 2, + STATE(3407), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [164207] = 6, - ACTIONS(5762), 1, + [164168] = 8, + ACTIONS(5109), 1, + anon_sym_LBRACK, + ACTIONS(5745), 1, anon_sym_LPAREN, - STATE(3455), 1, + ACTIONS(6516), 1, + sym_identifier, + STATE(3468), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3408), 2, + ACTIONS(5105), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(5107), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3756), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5765), 3, - anon_sym_STAR_STAR, + [164197] = 8, + ACTIONS(5109), 1, anon_sym_LBRACK, - anon_sym_AMP, - ACTIONS(6476), 3, - anon_sym_STAR, + ACTIONS(5703), 1, + anon_sym_LPAREN, + ACTIONS(6518), 1, sym_identifier, - anon_sym___stdcall, - [164232] = 5, - STATE(3455), 1, + STATE(3468), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3408), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(6408), 3, + ACTIONS(5105), 2, anon_sym_STAR, - sym_identifier, anon_sym___stdcall, - ACTIONS(5503), 4, - anon_sym_LPAREN, + ACTIONS(5107), 2, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AMP, - [164255] = 3, - ACTIONS(5385), 1, - anon_sym_STAR, + STATE(3772), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [164226] = 8, + ACTIONS(5109), 1, + anon_sym_LBRACK, + ACTIONS(5457), 1, + anon_sym_LPAREN, + ACTIONS(6090), 1, + sym_identifier, + STATE(3468), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4360), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5105), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(5107), 2, anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, anon_sym_AMP, - anon_sym_complex, - anon_sym___stdcall, - [164274] = 3, - ACTIONS(5843), 1, + STATE(3747), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [164255] = 3, + ACTIONS(5918), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5845), 9, + ACTIONS(5920), 9, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -255825,154 +256587,173 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_AMP, anon_sym___stdcall, - [164293] = 3, - ACTIONS(6052), 1, - anon_sym_STAR, + [164274] = 6, + ACTIONS(5781), 1, + anon_sym_LPAREN, + STATE(3468), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6054), 9, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, + STATE(3407), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(5784), 3, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AMP, + ACTIONS(6520), 3, + anon_sym_STAR, + sym_identifier, anon_sym___stdcall, - [164312] = 6, - ACTIONS(6478), 1, + [164299] = 8, + ACTIONS(6522), 1, + anon_sym_COMMA, + ACTIONS(6524), 1, anon_sym_as, - ACTIONS(6480), 1, + ACTIONS(6526), 1, anon_sym_if, - ACTIONS(6482), 1, + ACTIONS(6530), 1, anon_sym_and, - ACTIONS(6484), 1, + ACTIONS(6532), 1, anon_sym_or, + STATE(4235), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6528), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [164328] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4569), 6, + ACTIONS(4601), 10, sym__newline, anon_sym_SEMI, anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [164337] = 8, - ACTIONS(5117), 1, - anon_sym_LBRACK, - ACTIONS(5447), 1, - anon_sym_LPAREN, - ACTIONS(6009), 1, - sym_identifier, - STATE(3455), 1, - sym_type_index, + anon_sym_and, + anon_sym_or, + [164345] = 4, + ACTIONS(6538), 1, + anon_sym_LBRACK_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5113), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(5115), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3777), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [164366] = 3, - ACTIONS(6155), 1, + ACTIONS(6536), 2, anon_sym_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6157), 9, + anon_sym_LBRACK, + ACTIONS(6534), 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_complex, anon_sym___stdcall, - [164385] = 8, - ACTIONS(5117), 1, + [164366] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4629), 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, + [164383] = 8, + ACTIONS(5109), 1, anon_sym_LBRACK, - ACTIONS(5503), 1, + ACTIONS(5745), 1, anon_sym_LPAREN, - ACTIONS(6408), 1, + ACTIONS(6516), 1, sym_identifier, - STATE(3455), 1, + STATE(3468), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5113), 2, + ACTIONS(5105), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5115), 2, + ACTIONS(5107), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3769), 2, + STATE(3761), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [164414] = 2, + [164412] = 4, + ACTIONS(6540), 1, + anon_sym_LBRACK_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 10, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(6536), 2, + anon_sym_STAR, + anon_sym_LBRACK, + ACTIONS(6534), 7, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_COLON, + anon_sym_STAR_STAR, anon_sym_EQ, - anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [164431] = 4, - ACTIONS(5717), 1, - anon_sym_DOT, - STATE(3771), 1, - aux_sym_class_definition_repeat2, + anon_sym_AMP, + anon_sym___stdcall, + [164433] = 3, + ACTIONS(6007), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6486), 8, - anon_sym_import, - anon_sym_cimport, + ACTIONS(6009), 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, + [164452] = 6, + ACTIONS(6506), 1, anon_sym_as, + ACTIONS(6508), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [164452] = 2, + ACTIONS(6510), 1, + anon_sym_and, + ACTIONS(6512), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4513), 10, + ACTIONS(4621), 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, - [164469] = 3, - ACTIONS(5854), 1, + [164477] = 3, + ACTIONS(6229), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5856), 9, - anon_sym_DOT, + ACTIONS(6231), 9, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_STAR_STAR, @@ -255980,35 +256761,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AMP, + anon_sym_complex, anon_sym___stdcall, - [164488] = 8, - ACTIONS(5117), 1, - anon_sym_LBRACK, - ACTIONS(5744), 1, - anon_sym_LPAREN, - ACTIONS(6268), 1, - sym_identifier, - STATE(3455), 1, + [164496] = 5, + STATE(3468), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5113), 2, + STATE(3407), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(6341), 3, anon_sym_STAR, + sym_identifier, anon_sym___stdcall, - ACTIONS(5115), 2, + ACTIONS(5713), 4, + anon_sym_LPAREN, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AMP, - STATE(3737), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [164517] = 3, - ACTIONS(5858), 1, + [164519] = 3, + ACTIONS(5911), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5860), 9, + ACTIONS(5913), 9, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -256018,154 +256797,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_AMP, anon_sym___stdcall, - [164536] = 6, - ACTIONS(6088), 1, + [164538] = 8, + ACTIONS(5109), 1, + anon_sym_LBRACK, + ACTIONS(5457), 1, anon_sym_LPAREN, - STATE(3455), 1, + ACTIONS(6090), 1, + sym_identifier, + STATE(3468), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3408), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(6091), 3, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - ACTIONS(6488), 3, + ACTIONS(5105), 2, anon_sym_STAR, - sym_identifier, anon_sym___stdcall, - [164561] = 8, - ACTIONS(5113), 1, + ACTIONS(5107), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3766), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [164567] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4466), 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, + [164584] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4617), 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, + [164601] = 9, + ACTIONS(5105), 1, anon_sym___stdcall, - ACTIONS(5115), 1, + ACTIONS(5107), 1, anon_sym_AMP, - ACTIONS(5117), 1, + ACTIONS(5109), 1, anon_sym_LBRACK, - STATE(3455), 1, + ACTIONS(6055), 1, + anon_sym_LPAREN, + ACTIONS(6058), 1, + anon_sym_STAR_STAR, + STATE(3468), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6042), 2, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - ACTIONS(6472), 2, + ACTIONS(6542), 2, anon_sym_STAR, sym_identifier, - STATE(3408), 2, + STATE(3407), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [164590] = 6, - ACTIONS(5533), 1, + [164632] = 6, + ACTIONS(5703), 1, anon_sym_LPAREN, - STATE(3455), 1, + STATE(3468), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3408), 2, + STATE(3407), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5536), 3, + ACTIONS(5706), 3, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AMP, - ACTIONS(6013), 3, + ACTIONS(6518), 3, anon_sym_STAR, sym_identifier, anon_sym___stdcall, - [164615] = 9, - ACTIONS(5113), 1, - anon_sym___stdcall, - ACTIONS(5115), 1, - anon_sym_AMP, - ACTIONS(5117), 1, - anon_sym_LBRACK, - ACTIONS(6039), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_STAR_STAR, - STATE(3455), 1, + [164657] = 5, + STATE(3468), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6472), 2, - anon_sym_STAR, - sym_identifier, - STATE(3408), 2, + STATE(3407), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [164646] = 9, - ACTIONS(5113), 1, - anon_sym___stdcall, - ACTIONS(5115), 1, - anon_sym_AMP, - ACTIONS(5117), 1, - anon_sym_LBRACK, - ACTIONS(5762), 1, - anon_sym_LPAREN, - ACTIONS(5765), 1, - anon_sym_STAR_STAR, - STATE(3455), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6476), 2, + ACTIONS(6080), 3, anon_sym_STAR, sym_identifier, - STATE(3408), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [164677] = 3, - ACTIONS(6155), 1, - anon_sym_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6157), 9, + anon_sym___stdcall, + ACTIONS(5487), 4, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - anon_sym_complex, + [164680] = 8, + ACTIONS(5105), 1, anon_sym___stdcall, - [164696] = 8, - ACTIONS(5117), 1, + ACTIONS(5107), 1, + anon_sym_AMP, + ACTIONS(5109), 1, anon_sym_LBRACK, - ACTIONS(5447), 1, - anon_sym_LPAREN, - ACTIONS(6009), 1, - sym_identifier, - STATE(3455), 1, + STATE(3468), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5113), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(5115), 2, + ACTIONS(6130), 2, + anon_sym_LPAREN, anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3753), 2, + ACTIONS(6514), 2, + anon_sym_STAR, + sym_identifier, + STATE(3407), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [164725] = 3, - ACTIONS(5882), 1, + [164709] = 3, + ACTIONS(6260), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5884), 9, - anon_sym_DOT, + ACTIONS(6262), 9, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_STAR_STAR, @@ -256173,110 +256942,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AMP, + anon_sym_complex, anon_sym___stdcall, - [164744] = 3, - ACTIONS(5800), 1, - anon_sym_STAR, + [164728] = 8, + ACTIONS(5105), 1, + anon_sym___stdcall, + ACTIONS(5107), 1, + anon_sym_AMP, + ACTIONS(5109), 1, + anon_sym_LBRACK, + STATE(3468), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5802), 9, + ACTIONS(5487), 2, 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, + ACTIONS(6080), 2, + anon_sym_STAR, + sym_identifier, + STATE(3407), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [164757] = 9, + ACTIONS(5105), 1, anon_sym___stdcall, - [164763] = 8, - ACTIONS(5117), 1, + ACTIONS(5107), 1, + anon_sym_AMP, + ACTIONS(5109), 1, anon_sym_LBRACK, - ACTIONS(5758), 1, + ACTIONS(5457), 1, anon_sym_LPAREN, - ACTIONS(6490), 1, - sym_identifier, - STATE(3455), 1, + ACTIONS(5460), 1, + anon_sym_STAR_STAR, + STATE(3468), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5113), 2, + ACTIONS(6090), 2, anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(5115), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3766), 2, + sym_identifier, + STATE(3407), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [164792] = 8, - ACTIONS(5117), 1, - anon_sym_LBRACK, - ACTIONS(5758), 1, - anon_sym_LPAREN, - ACTIONS(6490), 1, - sym_identifier, - STATE(3455), 1, + [164788] = 5, + STATE(3468), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5113), 2, + STATE(3407), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(6309), 3, anon_sym_STAR, + sym_identifier, anon_sym___stdcall, - ACTIONS(5115), 2, + ACTIONS(5414), 4, + anon_sym_LPAREN, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AMP, - STATE(3762), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [164821] = 8, - ACTIONS(5117), 1, + [164811] = 8, + ACTIONS(5105), 1, + anon_sym___stdcall, + ACTIONS(5107), 1, + anon_sym_AMP, + ACTIONS(5109), 1, anon_sym_LBRACK, - ACTIONS(5533), 1, - anon_sym_LPAREN, - ACTIONS(6013), 1, - sym_identifier, - STATE(3455), 1, + STATE(3468), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5113), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(5115), 2, + ACTIONS(5713), 2, + anon_sym_LPAREN, anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3767), 2, + ACTIONS(6341), 2, + anon_sym_STAR, + sym_identifier, + STATE(3407), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [164850] = 4, - ACTIONS(6496), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6494), 2, - anon_sym_STAR, - anon_sym_LBRACK, - ACTIONS(6492), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_AMP, - anon_sym___stdcall, - [164871] = 3, - ACTIONS(5385), 1, + [164840] = 3, + ACTIONS(5433), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4360), 9, + ACTIONS(5435), 9, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_STAR_STAR, @@ -256286,170 +257042,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_complex, anon_sym___stdcall, - [164890] = 8, - ACTIONS(5117), 1, - anon_sym_LBRACK, - ACTIONS(5751), 1, - anon_sym_LPAREN, - ACTIONS(6248), 1, - sym_identifier, - STATE(3455), 1, + [164859] = 5, + STATE(3468), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5113), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(5115), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3710), 2, + STATE(3407), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [164919] = 6, - ACTIONS(6478), 1, - anon_sym_as, - ACTIONS(6480), 1, - anon_sym_if, - ACTIONS(6482), 1, - anon_sym_and, - ACTIONS(6484), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6424), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [164944] = 8, - ACTIONS(5117), 1, - anon_sym_LBRACK, - ACTIONS(5787), 1, - anon_sym_LPAREN, - ACTIONS(6498), 1, - sym_identifier, - STATE(3455), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5113), 2, + ACTIONS(6544), 3, anon_sym_STAR, + sym_identifier, anon_sym___stdcall, - ACTIONS(5115), 2, + ACTIONS(5779), 4, + anon_sym_LPAREN, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AMP, - STATE(3740), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [164973] = 8, - ACTIONS(5113), 1, + [164882] = 9, + ACTIONS(5105), 1, anon_sym___stdcall, - ACTIONS(5115), 1, + ACTIONS(5107), 1, anon_sym_AMP, - ACTIONS(5117), 1, + ACTIONS(5109), 1, anon_sym_LBRACK, - STATE(3455), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5758), 2, - anon_sym_LPAREN, + ACTIONS(6130), 1, anon_sym_STAR_STAR, - ACTIONS(6490), 2, - anon_sym_STAR, - sym_identifier, - STATE(3408), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [165002] = 8, - ACTIONS(5117), 1, - anon_sym_LBRACK, - ACTIONS(5503), 1, + ACTIONS(6132), 1, anon_sym_LPAREN, - ACTIONS(6408), 1, - sym_identifier, - STATE(3455), 1, + STATE(3468), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5113), 2, + ACTIONS(6514), 2, anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(5115), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3720), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [165031] = 8, - ACTIONS(5117), 1, - anon_sym_LBRACK, - ACTIONS(5533), 1, - anon_sym_LPAREN, - ACTIONS(6013), 1, sym_identifier, - STATE(3455), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5113), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(5115), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3768), 2, + STATE(3407), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [165060] = 2, + [164913] = 4, + ACTIONS(5715), 1, + anon_sym_DOT, + STATE(3182), 1, + aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4573), 10, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(6546), 8, + anon_sym_import, + anon_sym_cimport, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_EQ, anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [165077] = 5, - STATE(3455), 1, + [164934] = 8, + ACTIONS(5109), 1, + anon_sym_LBRACK, + ACTIONS(5747), 1, + anon_sym_LPAREN, + ACTIONS(6333), 1, + sym_identifier, + STATE(3468), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3408), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(6268), 3, + ACTIONS(5105), 2, anon_sym_STAR, - sym_identifier, anon_sym___stdcall, - ACTIONS(5744), 4, - anon_sym_LPAREN, + ACTIONS(5107), 2, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AMP, - [165100] = 3, - ACTIONS(5949), 1, + STATE(3762), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [164963] = 3, + ACTIONS(5891), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5951), 9, + ACTIONS(5893), 9, + anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_STAR_STAR, @@ -256457,292 +257135,307 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AMP, - anon_sym_complex, anon_sym___stdcall, - [165119] = 6, - ACTIONS(5751), 1, + [164982] = 8, + ACTIONS(5105), 1, + anon_sym___stdcall, + ACTIONS(5107), 1, + anon_sym_AMP, + ACTIONS(5109), 1, + anon_sym_LBRACK, + STATE(3468), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5779), 2, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + ACTIONS(6544), 2, + anon_sym_STAR, + sym_identifier, + STATE(3407), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [165011] = 6, + ACTIONS(5710), 1, anon_sym_LPAREN, - STATE(3455), 1, + STATE(3468), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3408), 2, + STATE(3407), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5729), 3, + ACTIONS(5713), 3, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AMP, - ACTIONS(6248), 3, + ACTIONS(6341), 3, anon_sym_STAR, sym_identifier, anon_sym___stdcall, - [165144] = 8, - ACTIONS(5117), 1, + [165036] = 8, + ACTIONS(5109), 1, anon_sym_LBRACK, - ACTIONS(5751), 1, + ACTIONS(5414), 1, anon_sym_LPAREN, - ACTIONS(6248), 1, + ACTIONS(6309), 1, sym_identifier, - STATE(3455), 1, + STATE(3468), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5113), 2, + ACTIONS(5105), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5115), 2, + ACTIONS(5107), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3770), 2, + STATE(3780), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [165173] = 8, - ACTIONS(5117), 1, + [165065] = 8, + ACTIONS(5109), 1, anon_sym_LBRACK, - ACTIONS(5744), 1, + ACTIONS(5487), 1, anon_sym_LPAREN, - ACTIONS(6268), 1, + ACTIONS(6080), 1, sym_identifier, - STATE(3455), 1, + STATE(3468), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5113), 2, + ACTIONS(5105), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5115), 2, + ACTIONS(5107), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3715), 2, + STATE(3773), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [165202] = 5, - STATE(3455), 1, - sym_type_index, + [165094] = 3, + ACTIONS(5887), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3408), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(6500), 3, - anon_sym_STAR, - sym_identifier, - anon_sym___stdcall, - ACTIONS(5735), 4, + ACTIONS(5889), 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, - [165225] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4521), 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, - [165242] = 8, - ACTIONS(5113), 1, anon_sym___stdcall, - ACTIONS(5115), 1, + [165113] = 9, + ACTIONS(5105), 1, + anon_sym___stdcall, + ACTIONS(5107), 1, anon_sym_AMP, - ACTIONS(5117), 1, + ACTIONS(5109), 1, anon_sym_LBRACK, - STATE(3455), 1, + ACTIONS(5703), 1, + anon_sym_LPAREN, + ACTIONS(5706), 1, + anon_sym_STAR_STAR, + STATE(3468), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5744), 2, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - ACTIONS(6268), 2, + ACTIONS(6518), 2, anon_sym_STAR, sym_identifier, - STATE(3408), 2, + STATE(3407), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [165271] = 8, - ACTIONS(5117), 1, - anon_sym_LBRACK, - ACTIONS(5787), 1, - anon_sym_LPAREN, - ACTIONS(6498), 1, - sym_identifier, - STATE(3455), 1, - sym_type_index, + [165144] = 3, + ACTIONS(6094), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5113), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(5115), 2, + ACTIONS(6096), 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, - STATE(3721), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [165300] = 8, - ACTIONS(5113), 1, anon_sym___stdcall, - ACTIONS(5115), 1, - anon_sym_AMP, - ACTIONS(5117), 1, + [165163] = 8, + ACTIONS(5109), 1, anon_sym_LBRACK, - STATE(3455), 1, + ACTIONS(5713), 1, + anon_sym_LPAREN, + ACTIONS(6341), 1, + sym_identifier, + STATE(3468), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5735), 2, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - ACTIONS(6500), 2, + ACTIONS(5105), 2, anon_sym_STAR, - sym_identifier, - STATE(3408), 2, + anon_sym___stdcall, + ACTIONS(5107), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3788), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [165329] = 6, - ACTIONS(5787), 1, - anon_sym_LPAREN, - STATE(3455), 1, - sym_type_index, + [165192] = 3, + ACTIONS(5932), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3408), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5790), 3, + ACTIONS(5934), 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(6498), 3, - anon_sym_STAR, - sym_identifier, anon_sym___stdcall, - [165354] = 9, - ACTIONS(5113), 1, + [165211] = 4, + ACTIONS(5715), 1, + anon_sym_DOT, + STATE(3758), 1, + aux_sym_class_definition_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6548), 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, + [165232] = 8, + ACTIONS(6522), 1, + anon_sym_COMMA, + ACTIONS(6524), 1, + anon_sym_as, + ACTIONS(6526), 1, + anon_sym_if, + ACTIONS(6530), 1, + anon_sym_and, + ACTIONS(6532), 1, + anon_sym_or, + STATE(4235), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6550), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [165261] = 9, + ACTIONS(5105), 1, anon_sym___stdcall, - ACTIONS(5115), 1, + ACTIONS(5107), 1, anon_sym_AMP, - ACTIONS(5117), 1, + ACTIONS(5109), 1, anon_sym_LBRACK, - ACTIONS(5787), 1, + ACTIONS(5781), 1, anon_sym_LPAREN, - ACTIONS(5790), 1, + ACTIONS(5784), 1, anon_sym_STAR_STAR, - STATE(3455), 1, + STATE(3468), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6498), 2, + ACTIONS(6520), 2, anon_sym_STAR, sym_identifier, - STATE(3408), 2, + STATE(3407), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [165385] = 5, - STATE(3455), 1, + [165292] = 5, + STATE(3468), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3408), 2, + STATE(3407), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6248), 3, + ACTIONS(6516), 3, anon_sym_STAR, sym_identifier, anon_sym___stdcall, - ACTIONS(5729), 4, + ACTIONS(5745), 4, anon_sym_LPAREN, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AMP, - [165408] = 9, - ACTIONS(5113), 1, - anon_sym___stdcall, - ACTIONS(5115), 1, - anon_sym_AMP, - ACTIONS(5117), 1, + [165315] = 8, + ACTIONS(5109), 1, anon_sym_LBRACK, - ACTIONS(5741), 1, + ACTIONS(5703), 1, anon_sym_LPAREN, - ACTIONS(5744), 1, - anon_sym_STAR_STAR, - STATE(3455), 1, + ACTIONS(6518), 1, + sym_identifier, + STATE(3468), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6268), 2, + ACTIONS(5105), 2, anon_sym_STAR, - sym_identifier, - STATE(3408), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [165439] = 4, - ACTIONS(5717), 1, - anon_sym_DOT, - STATE(3148), 1, - aux_sym_class_definition_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6502), 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, - [165460] = 9, - ACTIONS(5113), 1, anon_sym___stdcall, - ACTIONS(5115), 1, + ACTIONS(5107), 2, + anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(5117), 1, + STATE(3731), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [165344] = 8, + ACTIONS(5109), 1, anon_sym_LBRACK, - ACTIONS(5533), 1, + ACTIONS(6132), 1, anon_sym_LPAREN, - ACTIONS(5536), 1, - anon_sym_STAR_STAR, - STATE(3455), 1, + ACTIONS(6514), 1, + sym_identifier, + STATE(3468), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6013), 2, + ACTIONS(5105), 2, anon_sym_STAR, - sym_identifier, - STATE(3408), 2, + anon_sym___stdcall, + ACTIONS(5107), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3746), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [165491] = 3, - ACTIONS(6111), 1, + [165373] = 3, + ACTIONS(6260), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6113), 9, + ACTIONS(6262), 9, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -256752,161 +257445,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_complex, anon_sym___stdcall, - [165510] = 9, - ACTIONS(5113), 1, + [165392] = 6, + ACTIONS(5457), 1, + anon_sym_LPAREN, + STATE(3468), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3407), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(5460), 3, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + ACTIONS(6090), 3, + anon_sym_STAR, + sym_identifier, + anon_sym___stdcall, + [165417] = 9, + ACTIONS(5105), 1, anon_sym___stdcall, - ACTIONS(5115), 1, + ACTIONS(5107), 1, anon_sym_AMP, - ACTIONS(5117), 1, + ACTIONS(5109), 1, anon_sym_LBRACK, - ACTIONS(6088), 1, + ACTIONS(5747), 1, anon_sym_LPAREN, - ACTIONS(6091), 1, + ACTIONS(5750), 1, anon_sym_STAR_STAR, - STATE(3455), 1, + STATE(3468), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6488), 2, + ACTIONS(6333), 2, anon_sym_STAR, sym_identifier, - STATE(3408), 2, + STATE(3407), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [165541] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4585), 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, - [165558] = 3, - ACTIONS(5395), 1, - anon_sym_STAR, + [165448] = 6, + ACTIONS(5747), 1, + anon_sym_LPAREN, + STATE(3468), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5397), 9, - anon_sym_LPAREN, - anon_sym_COMMA, + STATE(3407), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(5750), 3, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AMP, - anon_sym_complex, + ACTIONS(6333), 3, + anon_sym_STAR, + sym_identifier, anon_sym___stdcall, - [165577] = 5, - STATE(3455), 1, + [165473] = 5, + STATE(3468), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3408), 2, + STATE(3407), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6490), 3, + ACTIONS(6333), 3, anon_sym_STAR, sym_identifier, anon_sym___stdcall, - ACTIONS(5758), 4, + ACTIONS(5750), 4, anon_sym_LPAREN, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AMP, - [165600] = 4, - ACTIONS(6504), 1, - anon_sym_LBRACK_RBRACK, + [165496] = 3, + ACTIONS(5385), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6494), 2, - anon_sym_STAR, - anon_sym_LBRACK, - ACTIONS(6492), 7, - sym__newline, + ACTIONS(4360), 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, - [165621] = 8, - ACTIONS(5117), 1, - anon_sym_LBRACK, - ACTIONS(6039), 1, + [165515] = 6, + ACTIONS(6055), 1, anon_sym_LPAREN, - ACTIONS(6472), 1, - sym_identifier, - STATE(3455), 1, + STATE(3468), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5113), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(5115), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3736), 2, + STATE(3407), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [165650] = 3, - ACTIONS(5817), 1, - anon_sym_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5819), 9, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(6058), 3, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AMP, + ACTIONS(6542), 3, + anon_sym_STAR, + sym_identifier, anon_sym___stdcall, - [165669] = 6, - ACTIONS(6478), 1, + [165540] = 6, + ACTIONS(6506), 1, anon_sym_as, - ACTIONS(6480), 1, + ACTIONS(6508), 1, anon_sym_if, - ACTIONS(6482), 1, + ACTIONS(6510), 1, anon_sym_and, - ACTIONS(6484), 1, + ACTIONS(6512), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4605), 6, + ACTIONS(4574), 6, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [165694] = 5, - ACTIONS(6482), 1, + [165565] = 5, + ACTIONS(6510), 1, anon_sym_and, - ACTIONS(6484), 1, + ACTIONS(6512), 1, anon_sym_or, - ACTIONS(6506), 1, + ACTIONS(6552), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4617), 7, + ACTIONS(4590), 7, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -256914,15 +257595,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [165717] = 4, - ACTIONS(6482), 1, + [165588] = 4, + ACTIONS(6510), 1, anon_sym_and, - ACTIONS(6484), 1, + ACTIONS(6512), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4577), 8, + ACTIONS(4597), 8, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -256931,13 +257612,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [165738] = 3, - ACTIONS(6482), 1, + [165609] = 3, + ACTIONS(6510), 1, anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4554), 9, + ACTIONS(4605), 9, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -256947,183 +257628,317 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_PIPE, anon_sym_or, - [165757] = 6, - ACTIONS(6478), 1, + [165628] = 6, + ACTIONS(6506), 1, anon_sym_as, - ACTIONS(6480), 1, + ACTIONS(6508), 1, anon_sym_if, - ACTIONS(6482), 1, + ACTIONS(6510), 1, anon_sym_and, - ACTIONS(6484), 1, + ACTIONS(6512), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4465), 6, + ACTIONS(4613), 6, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [165782] = 2, + [165653] = 5, + STATE(3468), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4613), 10, + STATE(3407), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(6514), 3, + anon_sym_STAR, + sym_identifier, + anon_sym___stdcall, + ACTIONS(6130), 4, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + [165676] = 8, + ACTIONS(5109), 1, + anon_sym_LBRACK, + ACTIONS(6555), 1, + sym_identifier, + ACTIONS(6557), 1, 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, - [165799] = 2, + STATE(5024), 1, + sym_type_index, + STATE(5535), 1, + sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4585), 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, - [165815] = 10, - ACTIONS(6509), 1, + ACTIONS(5105), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(5107), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + [165704] = 10, + ACTIONS(6559), 1, anon_sym_LPAREN, - ACTIONS(6511), 1, + ACTIONS(6561), 1, anon_sym_COMMA, - ACTIONS(6513), 1, + ACTIONS(6563), 1, anon_sym_EQ, - ACTIONS(6515), 1, + ACTIONS(6565), 1, anon_sym_LBRACK, - ACTIONS(6517), 1, + ACTIONS(6567), 1, sym__newline, - STATE(562), 1, + STATE(1360), 1, sym_c_function_definition, - STATE(3918), 1, + STATE(3968), 1, sym_c_parameters, - STATE(4785), 1, + STATE(5117), 1, aux_sym_cvar_def_repeat1, - STATE(5261), 1, + STATE(5202), 1, sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165847] = 8, - ACTIONS(5117), 1, - anon_sym_LBRACK, - ACTIONS(6519), 1, - sym_identifier, - ACTIONS(6521), 1, - sym__newline, - STATE(4976), 1, - sym_type_index, - STATE(5705), 1, - sym_type_qualifier, + [165736] = 5, + ACTIONS(6161), 1, + anon_sym_and, + ACTIONS(6163), 1, + anon_sym_or, + ACTIONS(6569), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5113), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(5115), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - [165875] = 6, - ACTIONS(6523), 1, - anon_sym_as, - ACTIONS(6525), 1, + ACTIONS(4590), 6, + anon_sym_COMMA, anon_sym_if, - ACTIONS(6527), 1, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [165758] = 5, + ACTIONS(4599), 1, + anon_sym_as, + ACTIONS(6161), 1, anon_sym_and, - ACTIONS(6529), 1, + ACTIONS(6163), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4465), 5, - anon_sym_DOT, + ACTIONS(4597), 6, anon_sym_COMMA, + anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [165899] = 8, - ACTIONS(5117), 1, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [165780] = 4, + ACTIONS(4607), 1, + anon_sym_as, + ACTIONS(6161), 1, + anon_sym_and, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4605), 7, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + anon_sym_or, + [165800] = 8, + ACTIONS(5109), 1, anon_sym_LBRACK, - ACTIONS(6519), 1, + ACTIONS(6555), 1, sym_identifier, - ACTIONS(6531), 1, + ACTIONS(6572), 1, sym__newline, - STATE(4976), 1, + STATE(5024), 1, sym_type_index, - STATE(5705), 1, + STATE(5535), 1, sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5113), 2, + ACTIONS(5105), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5115), 2, + ACTIONS(5107), 2, anon_sym_STAR_STAR, anon_sym_AMP, - [165927] = 10, - ACTIONS(6509), 1, + [165828] = 10, + ACTIONS(6559), 1, anon_sym_LPAREN, - ACTIONS(6515), 1, + ACTIONS(6565), 1, anon_sym_LBRACK, - ACTIONS(6531), 1, - sym__newline, - ACTIONS(6533), 1, + ACTIONS(6574), 1, anon_sym_COMMA, - ACTIONS(6535), 1, + ACTIONS(6576), 1, anon_sym_EQ, - STATE(570), 1, + ACTIONS(6578), 1, + sym__newline, + STATE(2964), 1, sym_c_function_definition, - STATE(3918), 1, + STATE(3928), 1, sym_c_parameters, - STATE(4892), 1, + STATE(5017), 1, aux_sym_cvar_def_repeat1, - STATE(5261), 1, + STATE(5224), 1, sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165959] = 8, - ACTIONS(5117), 1, + [165860] = 3, + ACTIONS(6260), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6262), 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, + [165878] = 8, + ACTIONS(5109), 1, anon_sym_LBRACK, - ACTIONS(6519), 1, + ACTIONS(6555), 1, sym_identifier, - ACTIONS(6537), 1, + ACTIONS(6580), 1, sym__newline, - STATE(4976), 1, + STATE(5024), 1, sym_type_index, - STATE(5705), 1, + STATE(5535), 1, sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5113), 2, + ACTIONS(5105), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5115), 2, + ACTIONS(5107), 2, anon_sym_STAR_STAR, anon_sym_AMP, - [165987] = 3, - ACTIONS(6494), 1, + [165906] = 9, + ACTIONS(3722), 1, + anon_sym_LBRACK, + ACTIONS(3766), 1, + sym_string_start, + ACTIONS(6315), 1, + anon_sym_COMMA, + ACTIONS(6582), 1, + anon_sym_EQ, + ACTIONS(6584), 1, + sym__newline, + STATE(4034), 1, + sym_string, + STATE(4743), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4035), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [165936] = 9, + ACTIONS(3722), 1, + anon_sym_LBRACK, + ACTIONS(3766), 1, + sym_string_start, + ACTIONS(6315), 1, + anon_sym_COMMA, + ACTIONS(6586), 1, + anon_sym_EQ, + ACTIONS(6588), 1, + sym__newline, + STATE(4036), 1, + sym_string, + STATE(4746), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4038), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [165966] = 9, + ACTIONS(3722), 1, + anon_sym_LBRACK, + ACTIONS(3766), 1, + sym_string_start, + ACTIONS(6315), 1, + anon_sym_COMMA, + ACTIONS(6590), 1, + anon_sym_EQ, + ACTIONS(6592), 1, + sym__newline, + STATE(4110), 1, + sym_string, + STATE(5042), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4111), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [165996] = 9, + ACTIONS(3722), 1, + anon_sym_LBRACK, + ACTIONS(3766), 1, + sym_string_start, + ACTIONS(6315), 1, + anon_sym_COMMA, + ACTIONS(6594), 1, + anon_sym_EQ, + ACTIONS(6596), 1, + sym__newline, + STATE(4112), 1, + sym_string, + STATE(5054), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4113), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [166026] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4601), 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, + [166042] = 3, + ACTIONS(6536), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6492), 8, + ACTIONS(6534), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -257132,405 +257947,384 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_AMP, anon_sym___stdcall, - [166005] = 6, - ACTIONS(6539), 1, - anon_sym_as, - ACTIONS(6541), 1, - anon_sym_if, - ACTIONS(6543), 1, - anon_sym_and, - ACTIONS(6545), 1, - anon_sym_or, + [166060] = 3, + ACTIONS(6600), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4605), 5, - anon_sym_DOT, + ACTIONS(6598), 8, + sym__newline, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_PIPE, - [166029] = 6, - ACTIONS(6523), 1, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym___stdcall, + [166078] = 6, + ACTIONS(6149), 1, anon_sym_as, - ACTIONS(6525), 1, + ACTIONS(6151), 1, anon_sym_if, - ACTIONS(6527), 1, + ACTIONS(6161), 1, anon_sym_and, - ACTIONS(6529), 1, + ACTIONS(6163), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4569), 5, - anon_sym_DOT, + ACTIONS(4613), 5, anon_sym_COMMA, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [166053] = 5, - ACTIONS(6543), 1, - anon_sym_and, - ACTIONS(6545), 1, - anon_sym_or, - ACTIONS(6547), 1, - anon_sym_as, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [166102] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4617), 6, - anon_sym_DOT, + ACTIONS(4617), 9, anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_else, - anon_sym_PIPE, - [166075] = 8, - ACTIONS(5117), 1, - anon_sym_LBRACK, - ACTIONS(6519), 1, - sym_identifier, - ACTIONS(6550), 1, - sym__newline, - STATE(4976), 1, - sym_type_index, - STATE(5705), 1, - sym_type_qualifier, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + sym_type_conversion, + [166118] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5113), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(5115), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - [166103] = 9, - ACTIONS(3718), 1, - anon_sym_LBRACK, - ACTIONS(3756), 1, - sym_string_start, - ACTIONS(6256), 1, + ACTIONS(4466), 9, anon_sym_COMMA, - ACTIONS(6440), 1, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, anon_sym_EQ, - ACTIONS(6442), 1, - sym__newline, - STATE(4062), 1, - sym_string, - STATE(5027), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + sym_type_conversion, + [166134] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4083), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [166133] = 6, - ACTIONS(6462), 1, + ACTIONS(4490), 9, + anon_sym_COMMA, anon_sym_as, - ACTIONS(6464), 1, anon_sym_if, - ACTIONS(6468), 1, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, anon_sym_and, - ACTIONS(6470), 1, anon_sym_or, + sym_type_conversion, + [166150] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6552), 5, + ACTIONS(4609), 9, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, - sym_type_conversion, - [166157] = 4, - ACTIONS(6543), 1, anon_sym_and, - ACTIONS(6545), 1, anon_sym_or, + sym_type_conversion, + [166166] = 10, + ACTIONS(6559), 1, + anon_sym_LPAREN, + ACTIONS(6565), 1, + anon_sym_LBRACK, + ACTIONS(6602), 1, + anon_sym_COMMA, + ACTIONS(6604), 1, + anon_sym_EQ, + ACTIONS(6606), 1, + sym__newline, + STATE(635), 1, + sym_c_function_definition, + STATE(3939), 1, + sym_c_parameters, + STATE(5153), 1, + aux_sym_cvar_def_repeat1, + STATE(5274), 1, + sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4577), 7, - anon_sym_DOT, + [166198] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4629), 9, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_else, - anon_sym_PIPE, - [166177] = 3, - ACTIONS(6543), 1, + anon_sym_EQ, + anon_sym_RBRACE, anon_sym_and, + anon_sym_or, + sym_type_conversion, + [166214] = 3, + ACTIONS(6600), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4554), 8, - anon_sym_DOT, + ACTIONS(6598), 8, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, - anon_sym_else, - anon_sym_PIPE, - anon_sym_or, - [166195] = 8, - ACTIONS(5117), 1, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym___stdcall, + [166232] = 8, + ACTIONS(5109), 1, anon_sym_LBRACK, - ACTIONS(6519), 1, + ACTIONS(6555), 1, sym_identifier, - ACTIONS(6554), 1, + ACTIONS(6608), 1, sym__newline, - STATE(4976), 1, + STATE(5024), 1, sym_type_index, - STATE(5705), 1, + STATE(5535), 1, sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5113), 2, + ACTIONS(5105), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5115), 2, + ACTIONS(5107), 2, anon_sym_STAR_STAR, anon_sym_AMP, - [166223] = 9, - ACTIONS(3718), 1, + [166260] = 10, + ACTIONS(6559), 1, + anon_sym_LPAREN, + ACTIONS(6565), 1, anon_sym_LBRACK, - ACTIONS(3756), 1, - sym_string_start, - ACTIONS(6256), 1, + ACTIONS(6608), 1, + sym__newline, + ACTIONS(6610), 1, anon_sym_COMMA, - ACTIONS(6556), 1, + ACTIONS(6612), 1, anon_sym_EQ, - ACTIONS(6558), 1, - sym__newline, - STATE(3980), 1, - sym_string, - STATE(5137), 1, - aux_sym_cvar_decl_repeat2, + STATE(3016), 1, + sym_c_function_definition, + STATE(3928), 1, + sym_c_parameters, + STATE(4698), 1, + aux_sym_cvar_def_repeat1, + STATE(5224), 1, + sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3981), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [166253] = 9, - ACTIONS(3718), 1, - anon_sym_LBRACK, - ACTIONS(3756), 1, - sym_string_start, - ACTIONS(6256), 1, + [166292] = 6, + ACTIONS(6149), 1, + anon_sym_as, + ACTIONS(6151), 1, + anon_sym_if, + ACTIONS(6161), 1, + anon_sym_and, + ACTIONS(6163), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4621), 5, anon_sym_COMMA, - ACTIONS(6560), 1, - anon_sym_EQ, - ACTIONS(6562), 1, - sym__newline, - STATE(3985), 1, - sym_string, - STATE(5138), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [166316] = 6, + ACTIONS(6614), 1, + anon_sym_as, + ACTIONS(6616), 1, + anon_sym_if, + ACTIONS(6618), 1, + anon_sym_and, + ACTIONS(6620), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3987), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [166283] = 8, - ACTIONS(5117), 1, + ACTIONS(4574), 5, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [166340] = 8, + ACTIONS(5109), 1, anon_sym_LBRACK, - ACTIONS(6519), 1, + ACTIONS(6555), 1, sym_identifier, - ACTIONS(6564), 1, + ACTIONS(6622), 1, sym__newline, - STATE(4976), 1, + STATE(5024), 1, sym_type_index, - STATE(5705), 1, + STATE(5535), 1, sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5113), 2, + ACTIONS(5105), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5115), 2, + ACTIONS(5107), 2, anon_sym_STAR_STAR, anon_sym_AMP, - [166311] = 9, - ACTIONS(3718), 1, - anon_sym_LBRACK, - ACTIONS(3756), 1, - sym_string_start, - ACTIONS(6256), 1, - anon_sym_COMMA, - ACTIONS(6566), 1, - anon_sym_EQ, - ACTIONS(6568), 1, - sym__newline, - STATE(4030), 1, - sym_string, - STATE(4659), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4034), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [166341] = 8, - ACTIONS(5117), 1, + [166368] = 8, + ACTIONS(5109), 1, anon_sym_LBRACK, - ACTIONS(6519), 1, + ACTIONS(6555), 1, sym_identifier, - ACTIONS(6570), 1, + ACTIONS(6624), 1, sym__newline, - STATE(4976), 1, + STATE(5024), 1, sym_type_index, - STATE(5705), 1, + STATE(5535), 1, sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5113), 2, + ACTIONS(5105), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5115), 2, + ACTIONS(5107), 2, anon_sym_STAR_STAR, anon_sym_AMP, - [166369] = 8, - ACTIONS(5117), 1, + [166396] = 8, + ACTIONS(5109), 1, anon_sym_LBRACK, - ACTIONS(6519), 1, + ACTIONS(6555), 1, sym_identifier, - ACTIONS(6572), 1, + ACTIONS(6626), 1, sym__newline, - STATE(4976), 1, + STATE(5024), 1, sym_type_index, - STATE(5705), 1, + STATE(5535), 1, sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5113), 2, + ACTIONS(5105), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5115), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - [166397] = 3, - ACTIONS(5937), 1, - anon_sym_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5939), 8, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(5107), 2, anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AMP, - anon_sym___stdcall, - [166415] = 10, - ACTIONS(6509), 1, + [166424] = 10, + ACTIONS(6559), 1, anon_sym_LPAREN, - ACTIONS(6515), 1, + ACTIONS(6565), 1, anon_sym_LBRACK, - ACTIONS(6574), 1, + ACTIONS(6624), 1, + sym__newline, + ACTIONS(6628), 1, anon_sym_COMMA, - ACTIONS(6576), 1, + ACTIONS(6630), 1, anon_sym_EQ, - ACTIONS(6578), 1, - sym__newline, - STATE(2953), 1, + STATE(642), 1, sym_c_function_definition, - STATE(3890), 1, + STATE(3939), 1, sym_c_parameters, - STATE(5016), 1, + STATE(4711), 1, aux_sym_cvar_def_repeat1, - STATE(5210), 1, + STATE(5274), 1, sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166447] = 8, - ACTIONS(5117), 1, + [166456] = 8, + ACTIONS(5109), 1, anon_sym_LBRACK, - ACTIONS(6519), 1, + ACTIONS(6555), 1, sym_identifier, - ACTIONS(6580), 1, + ACTIONS(6632), 1, sym__newline, - STATE(4976), 1, + STATE(5024), 1, sym_type_index, - STATE(5705), 1, + STATE(5535), 1, sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5113), 2, + ACTIONS(5105), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5115), 2, + ACTIONS(5107), 2, anon_sym_STAR_STAR, anon_sym_AMP, - [166475] = 10, - ACTIONS(6509), 1, - anon_sym_LPAREN, - ACTIONS(6515), 1, + [166484] = 9, + ACTIONS(3722), 1, anon_sym_LBRACK, - ACTIONS(6580), 1, - sym__newline, - ACTIONS(6582), 1, + ACTIONS(3766), 1, + sym_string_start, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(6584), 1, + ACTIONS(6634), 1, anon_sym_EQ, - STATE(3014), 1, - sym_c_function_definition, - STATE(3890), 1, - sym_c_parameters, - STATE(4703), 1, - aux_sym_cvar_def_repeat1, - STATE(5210), 1, - sym_template_params, + ACTIONS(6636), 1, + sym__newline, + STATE(4058), 1, + sym_string, + STATE(4840), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166507] = 3, - ACTIONS(5385), 1, + STATE(4059), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [166514] = 3, + ACTIONS(6640), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4360), 8, + ACTIONS(6638), 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, - [166525] = 2, + [166532] = 5, + ACTIONS(6618), 1, + anon_sym_and, + ACTIONS(6620), 1, + anon_sym_or, + ACTIONS(6642), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4513), 9, + ACTIONS(4590), 6, + anon_sym_DOT, 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, - [166541] = 2, + anon_sym_RBRACK, + anon_sym_PIPE, + [166554] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4613), 9, + ACTIONS(4205), 9, anon_sym_COMMA, anon_sym_as, anon_sym_if, @@ -257540,51 +258334,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, sym_type_conversion, - [166557] = 6, - ACTIONS(6539), 1, + [166570] = 6, + ACTIONS(6614), 1, anon_sym_as, - ACTIONS(6541), 1, + ACTIONS(6616), 1, anon_sym_if, - ACTIONS(6543), 1, + ACTIONS(6618), 1, anon_sym_and, - ACTIONS(6545), 1, + ACTIONS(6620), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4465), 5, + ACTIONS(6385), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, - anon_sym_else, + anon_sym_RBRACK, anon_sym_PIPE, - [166581] = 8, - ACTIONS(5117), 1, - anon_sym_LBRACK, - ACTIONS(6519), 1, - sym_identifier, - ACTIONS(6586), 1, - sym__newline, - STATE(4976), 1, - sym_type_index, - STATE(5705), 1, - sym_type_qualifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5113), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(5115), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - [166609] = 3, - ACTIONS(6111), 1, + [166594] = 3, + ACTIONS(5385), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6113), 8, + ACTIONS(4360), 8, sym__newline, anon_sym_LPAREN, anon_sym_COLON, @@ -257593,13 +258367,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_complex, anon_sym___stdcall, - [166627] = 3, - ACTIONS(6590), 1, + [166612] = 5, + ACTIONS(6645), 1, + anon_sym_class, + ACTIONS(6647), 1, + anon_sym_ctypedef, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2735), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(5654), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [166634] = 3, + ACTIONS(6640), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6588), 8, + ACTIONS(6638), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -257608,118 +258399,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_AMP, anon_sym___stdcall, - [166645] = 3, - ACTIONS(6590), 1, - anon_sym_STAR, + [166652] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6588), 8, - sym__newline, - anon_sym_LPAREN, + ACTIONS(4570), 9, anon_sym_COMMA, - anon_sym_STAR_STAR, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + sym_type_conversion, + [166668] = 9, + ACTIONS(3722), 1, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym___stdcall, - [166663] = 9, - ACTIONS(3718), 1, - anon_sym_LBRACK, - ACTIONS(3756), 1, + ACTIONS(3766), 1, sym_string_start, - ACTIONS(6256), 1, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(6258), 1, + ACTIONS(6649), 1, anon_sym_EQ, - ACTIONS(6263), 1, + ACTIONS(6651), 1, sym__newline, - STATE(4046), 1, + STATE(3995), 1, sym_string, - STATE(4840), 1, + STATE(4749), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4047), 2, + STATE(3996), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [166693] = 2, + [166698] = 8, + ACTIONS(5109), 1, + anon_sym_LBRACK, + ACTIONS(6555), 1, + sym_identifier, + ACTIONS(6653), 1, + sym__newline, + STATE(5024), 1, + sym_type_index, + STATE(5535), 1, + sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4573), 9, - anon_sym_COMMA, + ACTIONS(5105), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(5107), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + [166726] = 6, + ACTIONS(6104), 1, anon_sym_as, + ACTIONS(6106), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, + ACTIONS(6108), 1, anon_sym_and, + ACTIONS(6110), 1, anon_sym_or, - sym_type_conversion, - [166709] = 3, - ACTIONS(6155), 1, - anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6157), 8, + ACTIONS(6385), 5, sym__newline, - anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_COLON, - anon_sym_STAR_STAR, + anon_sym_PIPE, + [166750] = 8, + ACTIONS(5109), 1, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_complex, + ACTIONS(6555), 1, + sym_identifier, + ACTIONS(6655), 1, + sym__newline, + STATE(5024), 1, + sym_type_index, + STATE(5535), 1, + sym_type_qualifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5105), 2, + anon_sym_STAR, anon_sym___stdcall, - [166727] = 9, - ACTIONS(3718), 1, - anon_sym_LBRACK, - ACTIONS(3756), 1, - sym_string_start, - ACTIONS(6256), 1, + ACTIONS(5107), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + [166778] = 6, + ACTIONS(6524), 1, + anon_sym_as, + ACTIONS(6526), 1, + anon_sym_if, + ACTIONS(6530), 1, + anon_sym_and, + ACTIONS(6532), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4574), 5, anon_sym_COMMA, - ACTIONS(6592), 1, + anon_sym_COLON, anon_sym_EQ, - ACTIONS(6594), 1, - sym__newline, - STATE(4021), 1, - sym_string, - STATE(4841), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_RBRACE, + sym_type_conversion, + [166802] = 4, + ACTIONS(6618), 1, + anon_sym_and, + ACTIONS(6620), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4022), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [166757] = 9, - ACTIONS(3718), 1, - anon_sym_LBRACK, - ACTIONS(3756), 1, - sym_string_start, - ACTIONS(6256), 1, + ACTIONS(4597), 7, + anon_sym_DOT, anon_sym_COMMA, - ACTIONS(6596), 1, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [166822] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4586), 9, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, anon_sym_EQ, - ACTIONS(6598), 1, - sym__newline, - STATE(4023), 1, - sym_string, - STATE(4844), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + sym_type_conversion, + [166838] = 5, + ACTIONS(6530), 1, + anon_sym_and, + ACTIONS(6532), 1, + anon_sym_or, + ACTIONS(6657), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4024), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [166787] = 2, + ACTIONS(4590), 6, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [166860] = 4, + ACTIONS(6530), 1, + anon_sym_and, + ACTIONS(6532), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4597), 7, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [166880] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 9, + ACTIONS(4605), 9, anon_sym_COMMA, anon_sym_as, anon_sym_if, @@ -257729,884 +258587,1225 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, sym_type_conversion, - [166803] = 2, + [166896] = 3, + ACTIONS(6530), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4521), 9, + ACTIONS(4605), 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, - [166819] = 5, - ACTIONS(6600), 1, - anon_sym_class, - ACTIONS(6602), 1, - anon_sym_ctypedef, + [166914] = 9, + ACTIONS(3722), 1, + anon_sym_LBRACK, + ACTIONS(3766), 1, + sym_string_start, + ACTIONS(6315), 1, + anon_sym_COMMA, + ACTIONS(6660), 1, + anon_sym_EQ, + ACTIONS(6662), 1, + sym__newline, + STATE(4000), 1, + sym_string, + STATE(5145), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2727), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(5582), 5, - anon_sym_api, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - [166841] = 9, - ACTIONS(3718), 1, + STATE(4001), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [166944] = 9, + ACTIONS(3722), 1, anon_sym_LBRACK, - ACTIONS(3756), 1, + ACTIONS(3766), 1, sym_string_start, - ACTIONS(6256), 1, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(6604), 1, + ACTIONS(6664), 1, anon_sym_EQ, - ACTIONS(6606), 1, + ACTIONS(6666), 1, sym__newline, - STATE(4134), 1, + STATE(4002), 1, sym_string, - STATE(5120), 1, + STATE(5146), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4135), 2, + STATE(4003), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [166871] = 6, - ACTIONS(6029), 1, + [166974] = 8, + ACTIONS(5109), 1, + anon_sym_LBRACK, + ACTIONS(6555), 1, + sym_identifier, + ACTIONS(6668), 1, + sym__newline, + STATE(5024), 1, + sym_type_index, + STATE(5535), 1, + sym_type_qualifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5105), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(5107), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + [167002] = 3, + ACTIONS(6618), 1, + anon_sym_and, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4605), 8, + anon_sym_DOT, + anon_sym_COMMA, anon_sym_as, - ACTIONS(6031), 1, anon_sym_if, - ACTIONS(6033), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_or, + [167020] = 6, + ACTIONS(6614), 1, + anon_sym_as, + ACTIONS(6616), 1, + anon_sym_if, + ACTIONS(6618), 1, anon_sym_and, - ACTIONS(6035), 1, + ACTIONS(6620), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6424), 5, - sym__newline, - anon_sym_SEMI, + ACTIONS(4613), 5, anon_sym_DOT, + anon_sym_COMMA, anon_sym_COLON, + anon_sym_RBRACK, anon_sym_PIPE, - [166895] = 10, - ACTIONS(6509), 1, + [167044] = 3, + ACTIONS(5993), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5997), 8, anon_sym_LPAREN, - ACTIONS(6515), 1, - anon_sym_LBRACK, - ACTIONS(6537), 1, - sym__newline, - ACTIONS(6608), 1, anon_sym_COMMA, - ACTIONS(6610), 1, + anon_sym_STAR_STAR, anon_sym_EQ, - STATE(1369), 1, - sym_c_function_definition, - STATE(3899), 1, - sym_c_parameters, - STATE(4978), 1, - aux_sym_cvar_def_repeat1, - STATE(5300), 1, - sym_template_params, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym___stdcall, + [167062] = 6, + ACTIONS(6670), 1, + anon_sym_as, + ACTIONS(6672), 1, + anon_sym_if, + ACTIONS(6674), 1, + anon_sym_and, + ACTIONS(6676), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166927] = 9, - ACTIONS(3718), 1, - anon_sym_LBRACK, - ACTIONS(3756), 1, - sym_string_start, - ACTIONS(6256), 1, + ACTIONS(4574), 5, + anon_sym_DOT, anon_sym_COMMA, - ACTIONS(6612), 1, - anon_sym_EQ, - ACTIONS(6614), 1, + anon_sym_COLON, + anon_sym_else, + anon_sym_PIPE, + [167086] = 9, + ACTIONS(6104), 1, + anon_sym_as, + ACTIONS(6106), 1, + anon_sym_if, + ACTIONS(6108), 1, + anon_sym_and, + ACTIONS(6110), 1, + anon_sym_or, + ACTIONS(6680), 1, + anon_sym_from, + ACTIONS(6682), 1, + anon_sym_COMMA, + STATE(4408), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6678), 2, sym__newline, - STATE(4074), 1, - sym_string, - STATE(4950), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_SEMI, + [167116] = 8, + ACTIONS(5109), 1, + anon_sym_LBRACK, + ACTIONS(6555), 1, + sym_identifier, + ACTIONS(6684), 1, + sym__newline, + STATE(5024), 1, + sym_type_index, + STATE(5535), 1, + sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4075), 2, + ACTIONS(5105), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(5107), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + [167144] = 8, + ACTIONS(5109), 1, + anon_sym_LBRACK, + ACTIONS(6555), 1, + sym_identifier, + ACTIONS(6686), 1, + sym__newline, + STATE(5024), 1, sym_type_index, - aux_sym_cvar_decl_repeat1, - [166957] = 9, - ACTIONS(3718), 1, + STATE(5535), 1, + sym_type_qualifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5105), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(5107), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + [167172] = 9, + ACTIONS(3722), 1, anon_sym_LBRACK, - ACTIONS(3756), 1, + ACTIONS(3766), 1, sym_string_start, - ACTIONS(6256), 1, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(6616), 1, + ACTIONS(6688), 1, anon_sym_EQ, - ACTIONS(6618), 1, + ACTIONS(6690), 1, sym__newline, - STATE(4076), 1, + STATE(4012), 1, sym_string, - STATE(4953), 1, + STATE(4672), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4077), 2, + STATE(4013), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [166987] = 6, - ACTIONS(6137), 1, + [167202] = 5, + ACTIONS(6674), 1, + anon_sym_and, + ACTIONS(6676), 1, + anon_sym_or, + ACTIONS(6692), 1, anon_sym_as, - ACTIONS(6139), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4590), 6, + anon_sym_DOT, + anon_sym_COMMA, anon_sym_if, - ACTIONS(6149), 1, + anon_sym_COLON, + anon_sym_else, + anon_sym_PIPE, + [167224] = 6, + ACTIONS(6524), 1, + anon_sym_as, + ACTIONS(6526), 1, + anon_sym_if, + ACTIONS(6530), 1, anon_sym_and, - ACTIONS(6151), 1, + ACTIONS(6532), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4605), 5, + ACTIONS(4613), 5, anon_sym_COMMA, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [167248] = 6, + ACTIONS(6524), 1, + anon_sym_as, + ACTIONS(6526), 1, + anon_sym_if, + ACTIONS(6530), 1, + anon_sym_and, + ACTIONS(6532), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6695), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, anon_sym_RBRACE, - [167011] = 5, - ACTIONS(6149), 1, + sym_type_conversion, + [167272] = 4, + ACTIONS(6674), 1, anon_sym_and, - ACTIONS(6151), 1, + ACTIONS(6676), 1, anon_sym_or, - ACTIONS(6620), 1, - anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4617), 6, + ACTIONS(4597), 7, + anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [167033] = 5, - ACTIONS(4579), 1, + anon_sym_else, + anon_sym_PIPE, + [167292] = 6, + ACTIONS(6670), 1, anon_sym_as, - ACTIONS(6149), 1, + ACTIONS(6672), 1, + anon_sym_if, + ACTIONS(6674), 1, anon_sym_and, - ACTIONS(6151), 1, + ACTIONS(6676), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4577), 6, + ACTIONS(4621), 5, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [167055] = 4, - ACTIONS(4556), 1, - anon_sym_as, - ACTIONS(6149), 1, + anon_sym_else, + anon_sym_PIPE, + [167316] = 3, + ACTIONS(6674), 1, anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4554), 7, + ACTIONS(4605), 8, + anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, + anon_sym_else, + anon_sym_PIPE, anon_sym_or, - [167075] = 6, - ACTIONS(6539), 1, + [167334] = 6, + ACTIONS(6614), 1, anon_sym_as, - ACTIONS(6541), 1, + ACTIONS(6616), 1, anon_sym_if, - ACTIONS(6543), 1, + ACTIONS(6618), 1, anon_sym_and, - ACTIONS(6545), 1, + ACTIONS(6620), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4569), 5, + ACTIONS(4621), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, - anon_sym_else, + anon_sym_RBRACK, anon_sym_PIPE, - [167099] = 6, - ACTIONS(6137), 1, - anon_sym_as, - ACTIONS(6139), 1, - anon_sym_if, - ACTIONS(6149), 1, - anon_sym_and, - ACTIONS(6151), 1, - anon_sym_or, + [167358] = 5, + ACTIONS(5715), 1, + anon_sym_DOT, + ACTIONS(6697), 1, + anon_sym_EQ, + STATE(3758), 1, + aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4465), 5, + ACTIONS(6548), 6, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [167123] = 8, - ACTIONS(5117), 1, - anon_sym_LBRACK, - ACTIONS(6519), 1, - sym_identifier, - ACTIONS(6623), 1, - sym__newline, - STATE(4976), 1, - sym_type_index, - STATE(5705), 1, - sym_type_qualifier, + anon_sym_PIPE, + [167380] = 3, + ACTIONS(6536), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5113), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(5115), 2, + ACTIONS(6534), 8, + sym__newline, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_STAR_STAR, - anon_sym_AMP, - [167151] = 8, - ACTIONS(5117), 1, + anon_sym_EQ, anon_sym_LBRACK, - ACTIONS(6519), 1, - sym_identifier, - ACTIONS(6625), 1, - sym__newline, - STATE(4976), 1, - sym_type_index, - STATE(5705), 1, - sym_type_qualifier, + anon_sym_AMP, + anon_sym___stdcall, + [167398] = 6, + ACTIONS(6524), 1, + anon_sym_as, + ACTIONS(6526), 1, + anon_sym_if, + ACTIONS(6530), 1, + anon_sym_and, + ACTIONS(6532), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5113), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(5115), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - [167179] = 5, - ACTIONS(6627), 1, + ACTIONS(4621), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [167422] = 5, + ACTIONS(6699), 1, anon_sym_class, - ACTIONS(6629), 1, + ACTIONS(6701), 1, anon_sym_ctypedef, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2727), 2, + STATE(2735), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(5582), 5, + ACTIONS(5654), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [167201] = 6, - ACTIONS(6137), 1, - anon_sym_as, - ACTIONS(6139), 1, - anon_sym_if, - ACTIONS(6149), 1, - anon_sym_and, - ACTIONS(6151), 1, - anon_sym_or, + [167444] = 3, + ACTIONS(6229), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4569), 5, - anon_sym_COMMA, + ACTIONS(6231), 8, + sym__newline, + anon_sym_LPAREN, anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [167225] = 9, - ACTIONS(3718), 1, + anon_sym_STAR_STAR, anon_sym_LBRACK, - ACTIONS(3756), 1, + anon_sym_AMP, + anon_sym_complex, + anon_sym___stdcall, + [167462] = 9, + ACTIONS(3722), 1, + anon_sym_LBRACK, + ACTIONS(3766), 1, sym_string_start, - ACTIONS(6256), 1, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(6631), 1, + ACTIONS(6500), 1, anon_sym_EQ, - ACTIONS(6633), 1, + ACTIONS(6502), 1, sym__newline, - STATE(4102), 1, + STATE(4116), 1, sym_string, - STATE(5028), 1, + STATE(5060), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4103), 2, + STATE(4118), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [167255] = 2, + [167492] = 8, + ACTIONS(5109), 1, + anon_sym_LBRACK, + ACTIONS(6555), 1, + sym_identifier, + ACTIONS(6703), 1, + sym__newline, + STATE(5024), 1, + sym_type_index, + STATE(5535), 1, + sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4201), 9, + ACTIONS(5105), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(5107), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + [167520] = 9, + ACTIONS(3722), 1, + anon_sym_LBRACK, + ACTIONS(3766), 1, + sym_string_start, + ACTIONS(6315), 1, anon_sym_COMMA, + ACTIONS(6353), 1, + anon_sym_EQ, + ACTIONS(6355), 1, + sym__newline, + STATE(3983), 1, + sym_string, + STATE(4939), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3986), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [167550] = 6, + ACTIONS(6670), 1, anon_sym_as, + ACTIONS(6672), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, + ACTIONS(6674), 1, anon_sym_and, + ACTIONS(6676), 1, anon_sym_or, - sym_type_conversion, - [167271] = 10, - ACTIONS(6509), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4613), 5, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, + anon_sym_PIPE, + [167574] = 10, + ACTIONS(6559), 1, anon_sym_LPAREN, - ACTIONS(6515), 1, + ACTIONS(6565), 1, anon_sym_LBRACK, - ACTIONS(6635), 1, + ACTIONS(6705), 1, anon_sym_COMMA, - ACTIONS(6637), 1, + ACTIONS(6707), 1, anon_sym_EQ, - ACTIONS(6639), 1, + ACTIONS(6709), 1, sym__newline, - STATE(1178), 1, + STATE(1321), 1, sym_c_function_definition, - STATE(3899), 1, + STATE(3968), 1, sym_c_parameters, - STATE(4779), 1, + STATE(4721), 1, aux_sym_cvar_def_repeat1, - STATE(5300), 1, + STATE(5202), 1, sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167303] = 2, + [167606] = 8, + ACTIONS(5109), 1, + anon_sym_LBRACK, + ACTIONS(6555), 1, + sym_identifier, + ACTIONS(6567), 1, + sym__newline, + STATE(5024), 1, + sym_type_index, + STATE(5535), 1, + sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4550), 9, - anon_sym_COMMA, + ACTIONS(5105), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(5107), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + [167634] = 6, + ACTIONS(6149), 1, anon_sym_as, + ACTIONS(6151), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, + ACTIONS(6161), 1, anon_sym_and, + ACTIONS(6163), 1, anon_sym_or, - sym_type_conversion, - [167319] = 9, - ACTIONS(3718), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4574), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [167658] = 9, + ACTIONS(3722), 1, anon_sym_LBRACK, - ACTIONS(3756), 1, + ACTIONS(3766), 1, sym_string_start, - ACTIONS(6256), 1, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(6428), 1, + ACTIONS(6337), 1, anon_sym_EQ, - ACTIONS(6430), 1, + ACTIONS(6339), 1, sym__newline, - STATE(4006), 1, + STATE(3991), 1, sym_string, - STATE(4732), 1, + STATE(5025), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4007), 2, + STATE(3992), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [167349] = 6, - ACTIONS(6523), 1, + [167688] = 5, + ACTIONS(6711), 1, + anon_sym_DOT, + ACTIONS(6713), 1, + anon_sym_EQ, + STATE(4017), 1, + aux_sym_class_definition_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6548), 5, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, - ACTIONS(6525), 1, - anon_sym_if, - ACTIONS(6527), 1, + anon_sym_PIPE, + anon_sym_RBRACE, + [167709] = 5, + ACTIONS(6305), 1, anon_sym_and, - ACTIONS(6529), 1, + ACTIONS(6307), 1, anon_sym_or, + ACTIONS(6715), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6424), 5, - anon_sym_DOT, + ACTIONS(4590), 5, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [167373] = 6, - ACTIONS(6523), 1, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [167730] = 9, + ACTIONS(6614), 1, anon_sym_as, - ACTIONS(6525), 1, + ACTIONS(6616), 1, anon_sym_if, - ACTIONS(6527), 1, + ACTIONS(6618), 1, anon_sym_and, - ACTIONS(6529), 1, + ACTIONS(6620), 1, anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4605), 5, - anon_sym_DOT, + ACTIONS(6718), 1, anon_sym_COMMA, + ACTIONS(6720), 1, anon_sym_COLON, + ACTIONS(6722), 1, anon_sym_RBRACK, - anon_sym_PIPE, - [167397] = 8, - ACTIONS(5117), 1, - anon_sym_LBRACK, - ACTIONS(6519), 1, - sym_identifier, - ACTIONS(6641), 1, - sym__newline, - STATE(4976), 1, - sym_type_index, - STATE(5705), 1, - sym_type_qualifier, + STATE(4980), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5113), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(5115), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - [167425] = 6, - ACTIONS(6462), 1, + [167759] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(6728), 1, + anon_sym_BSLASH, + ACTIONS(6724), 2, + sym_string_end, + anon_sym_LBRACE, + STATE(3886), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(6726), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + [167782] = 6, + ACTIONS(6149), 1, anon_sym_as, - ACTIONS(6464), 1, + ACTIONS(6151), 1, anon_sym_if, - ACTIONS(6468), 1, + ACTIONS(6161), 1, anon_sym_and, - ACTIONS(6470), 1, + ACTIONS(6163), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4605), 5, + ACTIONS(6730), 4, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, + anon_sym_async, + anon_sym_for, anon_sym_RBRACE, - sym_type_conversion, - [167449] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4517), 9, - anon_sym_COMMA, + [167805] = 9, + ACTIONS(6614), 1, anon_sym_as, + ACTIONS(6616), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - sym_type_conversion, - [167465] = 5, - ACTIONS(6468), 1, + ACTIONS(6618), 1, anon_sym_and, - ACTIONS(6470), 1, + ACTIONS(6620), 1, anon_sym_or, - ACTIONS(6643), 1, - anon_sym_as, + ACTIONS(6720), 1, + anon_sym_COLON, + ACTIONS(6732), 1, + anon_sym_COMMA, + ACTIONS(6734), 1, + anon_sym_RBRACK, + STATE(4863), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4617), 6, - anon_sym_COMMA, + [167834] = 9, + ACTIONS(6614), 1, + anon_sym_as, + ACTIONS(6616), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [167487] = 4, - ACTIONS(6468), 1, + ACTIONS(6618), 1, anon_sym_and, - ACTIONS(6470), 1, + ACTIONS(6620), 1, anon_sym_or, + ACTIONS(6720), 1, + anon_sym_COLON, + ACTIONS(6736), 1, + anon_sym_COMMA, + ACTIONS(6738), 1, + anon_sym_RBRACK, + STATE(4991), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4577), 7, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, + [167863] = 9, + ACTIONS(3705), 1, + anon_sym_DOT, + ACTIONS(6740), 1, + anon_sym_LPAREN, + ACTIONS(6742), 1, anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [167507] = 2, + ACTIONS(6744), 1, + anon_sym_LBRACK, + ACTIONS(6746), 1, + sym__newline, + STATE(1137), 1, + sym_external_definition, + STATE(3907), 1, + aux_sym_class_definition_repeat2, + STATE(5135), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4554), 9, - anon_sym_COMMA, + [167892] = 9, + ACTIONS(6614), 1, anon_sym_as, + ACTIONS(6616), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, + ACTIONS(6618), 1, anon_sym_and, + ACTIONS(6620), 1, anon_sym_or, - sym_type_conversion, - [167523] = 3, - ACTIONS(6468), 1, - anon_sym_and, + ACTIONS(6720), 1, + anon_sym_COLON, + ACTIONS(6748), 1, + anon_sym_COMMA, + ACTIONS(6750), 1, + anon_sym_RBRACK, + STATE(4658), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4554), 8, - anon_sym_COMMA, + [167921] = 8, + ACTIONS(6104), 1, anon_sym_as, + ACTIONS(6106), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - anon_sym_or, - sym_type_conversion, - [167541] = 5, - ACTIONS(6527), 1, + ACTIONS(6108), 1, anon_sym_and, - ACTIONS(6529), 1, + ACTIONS(6110), 1, anon_sym_or, - ACTIONS(6646), 1, - anon_sym_as, + ACTIONS(6682), 1, + anon_sym_COMMA, + STATE(4408), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4617), 6, + ACTIONS(6550), 2, + sym__newline, + anon_sym_SEMI, + [167948] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4490), 8, anon_sym_DOT, - anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_EQ, anon_sym_PIPE, - [167563] = 6, - ACTIONS(6462), 1, + anon_sym_and, + anon_sym_or, + [167963] = 9, + ACTIONS(6614), 1, anon_sym_as, - ACTIONS(6464), 1, + ACTIONS(6616), 1, anon_sym_if, - ACTIONS(6468), 1, + ACTIONS(6618), 1, anon_sym_and, - ACTIONS(6470), 1, + ACTIONS(6620), 1, anon_sym_or, + ACTIONS(6720), 1, + anon_sym_COLON, + ACTIONS(6752), 1, + anon_sym_COMMA, + ACTIONS(6754), 1, + anon_sym_RBRACK, + STATE(5155), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4465), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [167587] = 5, - ACTIONS(5717), 1, + [167992] = 9, + ACTIONS(3705), 1, anon_sym_DOT, - ACTIONS(6649), 1, - anon_sym_EQ, - STATE(3771), 1, + ACTIONS(6744), 1, + anon_sym_LBRACK, + ACTIONS(6756), 1, + anon_sym_LPAREN, + ACTIONS(6758), 1, + anon_sym_COLON, + ACTIONS(6760), 1, + sym__newline, + STATE(1107), 1, + sym_external_definition, + STATE(3291), 1, aux_sym_class_definition_repeat2, + STATE(4799), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6486), 6, - anon_sym_LPAREN, - anon_sym_COMMA, + [168021] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(6767), 1, + anon_sym_BSLASH, + ACTIONS(6762), 2, + sym_string_end, + anon_sym_LBRACE, + STATE(3886), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(6764), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + [168044] = 6, + ACTIONS(6361), 1, anon_sym_as, + ACTIONS(6363), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [167609] = 6, - ACTIONS(6462), 1, + ACTIONS(6369), 1, + anon_sym_and, + ACTIONS(6371), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4613), 4, + anon_sym_COMMA, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [168067] = 6, + ACTIONS(6361), 1, anon_sym_as, - ACTIONS(6464), 1, + ACTIONS(6363), 1, anon_sym_if, - ACTIONS(6468), 1, + ACTIONS(6369), 1, anon_sym_and, - ACTIONS(6470), 1, + ACTIONS(6371), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4569), 5, + ACTIONS(4574), 4, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [167633] = 4, - ACTIONS(6527), 1, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [168090] = 5, + ACTIONS(6297), 1, + anon_sym_as, + ACTIONS(6305), 1, anon_sym_and, - ACTIONS(6529), 1, + ACTIONS(6307), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4577), 7, - anon_sym_DOT, + ACTIONS(6770), 5, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_if, + anon_sym_async, + anon_sym_for, + [168111] = 7, + ACTIONS(2775), 1, + anon_sym_except, + ACTIONS(2779), 1, + anon_sym_except_STAR, + ACTIONS(6772), 1, + anon_sym_finally, + STATE(1452), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(807), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + STATE(808), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + [168136] = 9, + ACTIONS(3705), 1, + anon_sym_DOT, + ACTIONS(6774), 1, + anon_sym_LPAREN, + ACTIONS(6776), 1, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [167653] = 8, - ACTIONS(5117), 1, + ACTIONS(6778), 1, anon_sym_LBRACK, - ACTIONS(6519), 1, - sym_identifier, - ACTIONS(6651), 1, + ACTIONS(6780), 1, sym__newline, - STATE(4976), 1, - sym_type_index, - STATE(5705), 1, - sym_type_qualifier, + STATE(497), 1, + sym_external_definition, + STATE(3925), 1, + aux_sym_class_definition_repeat2, + STATE(5035), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5113), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(5115), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - [167681] = 9, - ACTIONS(6029), 1, + [168165] = 8, + ACTIONS(6104), 1, anon_sym_as, - ACTIONS(6031), 1, + ACTIONS(6106), 1, anon_sym_if, - ACTIONS(6033), 1, + ACTIONS(6108), 1, anon_sym_and, - ACTIONS(6035), 1, + ACTIONS(6110), 1, anon_sym_or, - ACTIONS(6655), 1, - anon_sym_from, - ACTIONS(6657), 1, + ACTIONS(6784), 1, anon_sym_COMMA, - STATE(4453), 1, + STATE(4571), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6653), 2, + ACTIONS(6782), 2, sym__newline, anon_sym_SEMI, - [167711] = 3, - ACTIONS(6494), 1, - anon_sym_STAR, + [168192] = 9, + ACTIONS(6786), 1, + anon_sym_COLON, + ACTIONS(6788), 1, + anon_sym_except, + ACTIONS(6790), 1, + anon_sym_with, + ACTIONS(6792), 1, + anon_sym_nogil, + ACTIONS(6794), 1, + anon_sym_noexcept, + ACTIONS(6796), 1, + sym__newline, + STATE(3911), 1, + sym_gil_spec, + STATE(4293), 1, + sym_exception_value, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6492), 8, - sym__newline, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym___stdcall, - [167729] = 3, - ACTIONS(6527), 1, - anon_sym_and, + [168221] = 4, + ACTIONS(6645), 1, + anon_sym_class, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4554), 8, + STATE(2735), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(5654), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [168240] = 9, + ACTIONS(3705), 1, anon_sym_DOT, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_or, - [167747] = 8, - ACTIONS(5117), 1, + ACTIONS(6778), 1, anon_sym_LBRACK, - ACTIONS(6519), 1, - sym_identifier, - ACTIONS(6659), 1, + ACTIONS(6798), 1, + anon_sym_LPAREN, + ACTIONS(6800), 1, + anon_sym_COLON, + ACTIONS(6802), 1, sym__newline, - STATE(4976), 1, - sym_type_index, - STATE(5705), 1, - sym_type_qualifier, + STATE(496), 1, + sym_external_definition, + STATE(3291), 1, + aux_sym_class_definition_repeat2, + STATE(5032), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5113), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(5115), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - [167775] = 9, - ACTIONS(6509), 1, - anon_sym_LPAREN, - ACTIONS(6515), 1, + [168269] = 9, + ACTIONS(3705), 1, + anon_sym_DOT, + ACTIONS(6744), 1, anon_sym_LBRACK, - ACTIONS(6661), 1, - sym_identifier, - ACTIONS(6663), 1, - sym_string_start, - STATE(2809), 1, - sym_c_function_definition, - STATE(3890), 1, - sym_c_parameters, - STATE(4203), 1, - sym_string, - STATE(5210), 1, - sym_template_params, + ACTIONS(6804), 1, + anon_sym_LPAREN, + ACTIONS(6806), 1, + anon_sym_COLON, + ACTIONS(6808), 1, + sym__newline, + STATE(1102), 1, + sym_external_definition, + STATE(3885), 1, + aux_sym_class_definition_repeat2, + STATE(4669), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [168298] = 9, + ACTIONS(6786), 1, + anon_sym_COLON, + ACTIONS(6788), 1, + anon_sym_except, + ACTIONS(6794), 1, + anon_sym_noexcept, + ACTIONS(6796), 1, + sym__newline, + ACTIONS(6810), 1, + anon_sym_with, + ACTIONS(6812), 1, + anon_sym_nogil, + STATE(4293), 1, + sym_exception_value, + STATE(5198), 1, + sym_gil_spec, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [168327] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167804] = 6, - ACTIONS(6137), 1, + ACTIONS(4609), 8, + anon_sym_DOT, anon_sym_as, - ACTIONS(6139), 1, anon_sym_if, - ACTIONS(6149), 1, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, anon_sym_and, - ACTIONS(6151), 1, anon_sym_or, + [168342] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6665), 4, - anon_sym_COMMA, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [167827] = 4, - ACTIONS(4556), 1, + ACTIONS(4629), 8, + anon_sym_DOT, anon_sym_as, - ACTIONS(6294), 1, + anon_sym_if, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + [168357] = 5, + ACTIONS(4599), 1, + anon_sym_as, + ACTIONS(6305), 1, anon_sym_and, + ACTIONS(6307), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4554), 6, + ACTIONS(4597), 5, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_or, - [167846] = 9, - ACTIONS(6667), 1, - anon_sym_COLON, - ACTIONS(6669), 1, - anon_sym_except, - ACTIONS(6671), 1, - anon_sym_with, - ACTIONS(6673), 1, - anon_sym_nogil, - ACTIONS(6675), 1, - anon_sym_noexcept, - ACTIONS(6677), 1, - sym__newline, - STATE(4329), 1, - sym_exception_value, - STATE(5349), 1, - sym_gil_spec, + [168378] = 9, + ACTIONS(6559), 1, + anon_sym_LPAREN, + ACTIONS(6565), 1, + anon_sym_LBRACK, + ACTIONS(6814), 1, + sym_identifier, + ACTIONS(6816), 1, + sym_string_start, + STATE(2914), 1, + sym_c_function_definition, + STATE(3928), 1, + sym_c_parameters, + STATE(4203), 1, + sym_string, + STATE(5224), 1, + sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167875] = 9, - ACTIONS(3701), 1, + [168407] = 9, + ACTIONS(3705), 1, anon_sym_DOT, - ACTIONS(6679), 1, + ACTIONS(6818), 1, anon_sym_LPAREN, - ACTIONS(6681), 1, + ACTIONS(6820), 1, anon_sym_COLON, - ACTIONS(6683), 1, + ACTIONS(6822), 1, anon_sym_LBRACK, - ACTIONS(6685), 1, + ACTIONS(6824), 1, sym__newline, - STATE(1070), 1, + STATE(2922), 1, sym_external_definition, - STATE(3955), 1, + STATE(3291), 1, aux_sym_class_definition_repeat2, - STATE(5060), 1, + STATE(5080), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167904] = 5, - ACTIONS(6137), 1, + [168436] = 4, + ACTIONS(4607), 1, anon_sym_as, - ACTIONS(6149), 1, + ACTIONS(6305), 1, anon_sym_and, - ACTIONS(6151), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6687), 5, + ACTIONS(4605), 6, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACE, - [167925] = 2, + anon_sym_or, + [168455] = 7, + ACTIONS(2775), 1, + anon_sym_except, + ACTIONS(2779), 1, + anon_sym_except_STAR, + ACTIONS(6772), 1, + anon_sym_finally, + STATE(1479), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4513), 8, - anon_sym_DOT, + STATE(809), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + STATE(810), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + [168480] = 5, + ACTIONS(4599), 1, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(6369), 1, anon_sym_and, + ACTIONS(6371), 1, anon_sym_or, - [167940] = 9, - ACTIONS(3701), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4597), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [168501] = 7, + ACTIONS(2695), 1, + anon_sym_except_STAR, + ACTIONS(2699), 1, + anon_sym_except, + ACTIONS(6826), 1, + anon_sym_finally, + STATE(1388), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(796), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + STATE(797), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + [168526] = 9, + ACTIONS(3705), 1, anon_sym_DOT, - ACTIONS(6683), 1, + ACTIONS(6744), 1, anon_sym_LBRACK, - ACTIONS(6689), 1, + ACTIONS(6828), 1, anon_sym_LPAREN, - ACTIONS(6691), 1, + ACTIONS(6830), 1, anon_sym_COLON, - ACTIONS(6693), 1, + ACTIONS(6832), 1, sym__newline, - STATE(1098), 1, + STATE(1078), 1, sym_external_definition, - STATE(3278), 1, + STATE(3291), 1, aux_sym_class_definition_repeat2, - STATE(4769), 1, + STATE(4871), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167969] = 2, + [168555] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4613), 8, + ACTIONS(4601), 8, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -258615,11 +259814,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [167984] = 2, + [168570] = 8, + ACTIONS(6104), 1, + anon_sym_as, + ACTIONS(6106), 1, + anon_sym_if, + ACTIONS(6108), 1, + anon_sym_and, + ACTIONS(6110), 1, + anon_sym_or, + ACTIONS(6682), 1, + anon_sym_COMMA, + STATE(4408), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5733), 2, + sym__newline, + anon_sym_SEMI, + [168597] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4573), 8, + ACTIONS(4617), 8, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -258628,9582 +259846,9093 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [167999] = 7, - ACTIONS(5117), 1, - anon_sym_LBRACK, - ACTIONS(6519), 1, - sym_identifier, - STATE(4976), 1, - sym_type_index, - STATE(5705), 1, - sym_type_qualifier, + [168612] = 9, + ACTIONS(6788), 1, + anon_sym_except, + ACTIONS(6794), 1, + anon_sym_noexcept, + ACTIONS(6810), 1, + anon_sym_with, + ACTIONS(6812), 1, + anon_sym_nogil, + ACTIONS(6834), 1, + anon_sym_COLON, + ACTIONS(6836), 1, + sym__newline, + STATE(4460), 1, + sym_exception_value, + STATE(5357), 1, + sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5113), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(5115), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - [168024] = 7, - ACTIONS(2771), 1, - anon_sym_except, - ACTIONS(2781), 1, - anon_sym_except_STAR, - ACTIONS(6695), 1, - anon_sym_finally, - STATE(1647), 1, - sym_finally_clause, + [168641] = 9, + ACTIONS(3705), 1, + anon_sym_DOT, + ACTIONS(6822), 1, + anon_sym_LBRACK, + ACTIONS(6838), 1, + anon_sym_LPAREN, + ACTIONS(6840), 1, + anon_sym_COLON, + ACTIONS(6842), 1, + sym__newline, + STATE(2926), 1, + sym_external_definition, + STATE(3926), 1, + aux_sym_class_definition_repeat2, + STATE(5069), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(806), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - STATE(833), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - [168049] = 9, - ACTIONS(3701), 1, + [168670] = 9, + ACTIONS(3705), 1, anon_sym_DOT, - ACTIONS(6697), 1, + ACTIONS(6778), 1, + anon_sym_LBRACK, + ACTIONS(6844), 1, anon_sym_LPAREN, - ACTIONS(6699), 1, + ACTIONS(6846), 1, anon_sym_COLON, - ACTIONS(6701), 1, - anon_sym_LBRACK, - ACTIONS(6703), 1, + ACTIONS(6848), 1, sym__newline, - STATE(499), 1, + STATE(495), 1, sym_external_definition, - STATE(3278), 1, + STATE(3895), 1, aux_sym_class_definition_repeat2, - STATE(4984), 1, + STATE(5023), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168078] = 6, - ACTIONS(6364), 1, + [168699] = 9, + ACTIONS(6614), 1, anon_sym_as, - ACTIONS(6366), 1, + ACTIONS(6616), 1, anon_sym_if, - ACTIONS(6372), 1, + ACTIONS(6618), 1, anon_sym_and, - ACTIONS(6374), 1, + ACTIONS(6620), 1, anon_sym_or, + ACTIONS(6720), 1, + anon_sym_COLON, + ACTIONS(6850), 1, + anon_sym_COMMA, + ACTIONS(6852), 1, + anon_sym_RBRACK, + STATE(4894), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4605), 4, - anon_sym_COMMA, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [168101] = 6, - ACTIONS(6029), 1, + [168728] = 5, + ACTIONS(6297), 1, anon_sym_as, - ACTIONS(6031), 1, - anon_sym_if, - ACTIONS(6033), 1, + ACTIONS(6305), 1, anon_sym_and, - ACTIONS(6035), 1, + ACTIONS(6307), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4763), 4, - sym__newline, - anon_sym_COLON, - anon_sym_with, - anon_sym_nogil, - [168124] = 5, - ACTIONS(6372), 1, + ACTIONS(6770), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [168749] = 5, + ACTIONS(6369), 1, anon_sym_and, - ACTIONS(6374), 1, + ACTIONS(6371), 1, anon_sym_or, - ACTIONS(6705), 1, + ACTIONS(6854), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4617), 5, + ACTIONS(4590), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACK, - [168145] = 5, - ACTIONS(4579), 1, + [168770] = 5, + ACTIONS(6297), 1, anon_sym_as, - ACTIONS(6372), 1, + ACTIONS(6305), 1, anon_sym_and, - ACTIONS(6374), 1, + ACTIONS(6307), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4577), 5, + ACTIONS(6770), 5, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, - [168166] = 4, - ACTIONS(4556), 1, + [168791] = 9, + ACTIONS(6614), 1, anon_sym_as, - ACTIONS(6372), 1, + ACTIONS(6616), 1, + anon_sym_if, + ACTIONS(6618), 1, anon_sym_and, + ACTIONS(6620), 1, + anon_sym_or, + ACTIONS(6720), 1, + anon_sym_COLON, + ACTIONS(6857), 1, + anon_sym_COMMA, + ACTIONS(6859), 1, + anon_sym_RBRACK, + STATE(4829), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4554), 6, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_or, - [168185] = 6, - ACTIONS(6029), 1, + [168820] = 6, + ACTIONS(6104), 1, anon_sym_as, - ACTIONS(6031), 1, + ACTIONS(6106), 1, anon_sym_if, - ACTIONS(6033), 1, + ACTIONS(6108), 1, anon_sym_and, - ACTIONS(6035), 1, + ACTIONS(6110), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6552), 4, + ACTIONS(6695), 4, sym__newline, anon_sym_SEMI, anon_sym_from, anon_sym_COMMA, - [168208] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(6712), 1, - anon_sym_BSLASH, - ACTIONS(6708), 2, - sym_string_end, - anon_sym_LBRACE, - STATE(3922), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(6710), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - [168231] = 2, + [168843] = 6, + ACTIONS(6861), 1, + anon_sym_as, + ACTIONS(6863), 1, + anon_sym_if, + ACTIONS(6865), 1, + anon_sym_and, + ACTIONS(6867), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4585), 8, + ACTIONS(6385), 4, anon_sym_DOT, - anon_sym_as, - anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [168246] = 9, - ACTIONS(6669), 1, + [168866] = 9, + ACTIONS(6788), 1, anon_sym_except, - ACTIONS(6675), 1, - anon_sym_noexcept, - ACTIONS(6714), 1, - anon_sym_COLON, - ACTIONS(6716), 1, + ACTIONS(6790), 1, anon_sym_with, - ACTIONS(6718), 1, + ACTIONS(6792), 1, anon_sym_nogil, - ACTIONS(6720), 1, + ACTIONS(6794), 1, + anon_sym_noexcept, + ACTIONS(6869), 1, + anon_sym_COLON, + ACTIONS(6871), 1, sym__newline, - STATE(3905), 1, + STATE(3931), 1, sym_gil_spec, - STATE(4349), 1, + STATE(4399), 1, sym_exception_value, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168275] = 9, - ACTIONS(6509), 1, + [168895] = 7, + ACTIONS(2695), 1, + anon_sym_except_STAR, + ACTIONS(2699), 1, + anon_sym_except, + ACTIONS(6826), 1, + anon_sym_finally, + STATE(1540), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(813), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + STATE(814), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + [168920] = 9, + ACTIONS(6559), 1, anon_sym_LPAREN, - ACTIONS(6515), 1, + ACTIONS(6565), 1, anon_sym_LBRACK, - ACTIONS(6663), 1, + ACTIONS(6816), 1, sym_string_start, - ACTIONS(6722), 1, + ACTIONS(6873), 1, sym_identifier, - STATE(633), 1, + STATE(1231), 1, sym_c_function_definition, - STATE(3918), 1, + STATE(3968), 1, sym_c_parameters, - STATE(4234), 1, + STATE(4239), 1, sym_string, - STATE(5261), 1, + STATE(5202), 1, sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168304] = 8, - ACTIONS(6029), 1, - anon_sym_as, - ACTIONS(6031), 1, - anon_sym_if, - ACTIONS(6033), 1, - anon_sym_and, - ACTIONS(6035), 1, - anon_sym_or, - ACTIONS(6657), 1, - anon_sym_COMMA, - STATE(4453), 1, - aux_sym_assert_statement_repeat1, + [168949] = 9, + ACTIONS(6788), 1, + anon_sym_except, + ACTIONS(6794), 1, + anon_sym_noexcept, + ACTIONS(6810), 1, + anon_sym_with, + ACTIONS(6812), 1, + anon_sym_nogil, + ACTIONS(6875), 1, + anon_sym_COLON, + ACTIONS(6877), 1, + sym__newline, + STATE(4390), 1, + sym_exception_value, + STATE(5192), 1, + sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6466), 2, - sym__newline, - anon_sym_SEMI, - [168331] = 9, - ACTIONS(3701), 1, + [168978] = 9, + ACTIONS(3705), 1, anon_sym_DOT, - ACTIONS(6683), 1, + ACTIONS(6778), 1, anon_sym_LBRACK, - ACTIONS(6724), 1, + ACTIONS(6879), 1, anon_sym_LPAREN, - ACTIONS(6726), 1, + ACTIONS(6881), 1, anon_sym_COLON, - ACTIONS(6728), 1, + ACTIONS(6883), 1, sym__newline, - STATE(1082), 1, + STATE(498), 1, sym_external_definition, - STATE(3876), 1, + STATE(3291), 1, aux_sym_class_definition_repeat2, - STATE(4638), 1, + STATE(5043), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168360] = 9, - ACTIONS(6523), 1, - anon_sym_as, - ACTIONS(6525), 1, - anon_sym_if, - ACTIONS(6527), 1, - anon_sym_and, - ACTIONS(6529), 1, - anon_sym_or, - ACTIONS(6730), 1, - anon_sym_COMMA, - ACTIONS(6732), 1, - anon_sym_COLON, - ACTIONS(6734), 1, - anon_sym_RBRACK, - STATE(4720), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [168389] = 9, - ACTIONS(3701), 1, + [169007] = 9, + ACTIONS(3705), 1, anon_sym_DOT, - ACTIONS(6701), 1, + ACTIONS(6822), 1, anon_sym_LBRACK, - ACTIONS(6736), 1, + ACTIONS(6885), 1, anon_sym_LPAREN, - ACTIONS(6738), 1, + ACTIONS(6887), 1, anon_sym_COLON, - ACTIONS(6740), 1, + ACTIONS(6889), 1, sym__newline, - STATE(497), 1, + STATE(2928), 1, sym_external_definition, - STATE(3911), 1, + STATE(3291), 1, aux_sym_class_definition_repeat2, - STATE(4987), 1, + STATE(5074), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168418] = 7, - ACTIONS(2771), 1, + [169036] = 9, + ACTIONS(6788), 1, anon_sym_except, - ACTIONS(2781), 1, - anon_sym_except_STAR, - ACTIONS(6695), 1, - anon_sym_finally, - STATE(1683), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(809), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - STATE(810), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - [168443] = 6, - ACTIONS(6286), 1, - anon_sym_as, - ACTIONS(6288), 1, - anon_sym_if, - ACTIONS(6294), 1, - anon_sym_and, - ACTIONS(6296), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4465), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_async, - anon_sym_for, - [168466] = 4, - ACTIONS(6600), 1, - anon_sym_class, + ACTIONS(6794), 1, + anon_sym_noexcept, + ACTIONS(6810), 1, + anon_sym_with, + ACTIONS(6812), 1, + anon_sym_nogil, + ACTIONS(6869), 1, + anon_sym_COLON, + ACTIONS(6871), 1, + sym__newline, + STATE(4399), 1, + sym_exception_value, + STATE(5364), 1, + sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2727), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(5582), 5, - anon_sym_api, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - [168485] = 9, - ACTIONS(6669), 1, + [169065] = 9, + ACTIONS(6788), 1, anon_sym_except, - ACTIONS(6675), 1, - anon_sym_noexcept, - ACTIONS(6716), 1, + ACTIONS(6790), 1, anon_sym_with, - ACTIONS(6718), 1, + ACTIONS(6792), 1, anon_sym_nogil, - ACTIONS(6742), 1, + ACTIONS(6794), 1, + anon_sym_noexcept, + ACTIONS(6891), 1, anon_sym_COLON, - ACTIONS(6744), 1, + ACTIONS(6893), 1, sym__newline, - STATE(3932), 1, + STATE(3959), 1, sym_gil_spec, - STATE(4418), 1, + STATE(4410), 1, sym_exception_value, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168514] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4628), 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, - [168529] = 6, - ACTIONS(6364), 1, + [169094] = 4, + ACTIONS(4607), 1, anon_sym_as, - ACTIONS(6366), 1, - anon_sym_if, - ACTIONS(6372), 1, + ACTIONS(6369), 1, anon_sym_and, - ACTIONS(6374), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4465), 4, + ACTIONS(4605), 6, anon_sym_COMMA, + anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACK, - [168552] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4521), 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, - [168567] = 9, - ACTIONS(6523), 1, + [169113] = 9, + ACTIONS(6614), 1, anon_sym_as, - ACTIONS(6525), 1, + ACTIONS(6616), 1, anon_sym_if, - ACTIONS(6527), 1, + ACTIONS(6618), 1, anon_sym_and, - ACTIONS(6529), 1, + ACTIONS(6620), 1, anon_sym_or, - ACTIONS(6732), 1, + ACTIONS(6720), 1, anon_sym_COLON, - ACTIONS(6746), 1, + ACTIONS(6895), 1, anon_sym_COMMA, - ACTIONS(6748), 1, + ACTIONS(6897), 1, anon_sym_RBRACK, - STATE(4749), 1, + STATE(4777), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168596] = 9, - ACTIONS(6669), 1, + [169142] = 9, + ACTIONS(6788), 1, anon_sym_except, - ACTIONS(6675), 1, + ACTIONS(6794), 1, anon_sym_noexcept, - ACTIONS(6716), 1, - anon_sym_with, - ACTIONS(6718), 1, - anon_sym_nogil, - ACTIONS(6750), 1, - anon_sym_COLON, - ACTIONS(6752), 1, - sym__newline, - STATE(3920), 1, - sym_gil_spec, - STATE(4369), 1, - sym_exception_value, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [168625] = 9, - ACTIONS(6669), 1, - anon_sym_except, - ACTIONS(6671), 1, + ACTIONS(6810), 1, anon_sym_with, - ACTIONS(6673), 1, + ACTIONS(6812), 1, anon_sym_nogil, - ACTIONS(6675), 1, - anon_sym_noexcept, - ACTIONS(6750), 1, + ACTIONS(6899), 1, anon_sym_COLON, - ACTIONS(6752), 1, + ACTIONS(6901), 1, sym__newline, - STATE(4369), 1, + STATE(4406), 1, sym_exception_value, - STATE(5198), 1, + STATE(5177), 1, sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168654] = 9, - ACTIONS(3701), 1, - anon_sym_DOT, - ACTIONS(6754), 1, - anon_sym_LPAREN, - ACTIONS(6756), 1, - anon_sym_COLON, - ACTIONS(6758), 1, - anon_sym_LBRACK, - ACTIONS(6760), 1, - sym__newline, - STATE(2917), 1, - sym_external_definition, - STATE(3912), 1, - aux_sym_class_definition_repeat2, - STATE(5020), 1, - sym_argument_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [168683] = 6, - ACTIONS(6364), 1, + [169171] = 5, + ACTIONS(6361), 1, anon_sym_as, - ACTIONS(6366), 1, - anon_sym_if, - ACTIONS(6372), 1, + ACTIONS(6369), 1, anon_sym_and, - ACTIONS(6374), 1, + ACTIONS(6371), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4569), 4, + ACTIONS(6770), 5, anon_sym_COMMA, + anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACK, - [168706] = 5, - ACTIONS(6762), 1, - anon_sym_DOT, - ACTIONS(6764), 1, - anon_sym_EQ, - STATE(4037), 1, - aux_sym_class_definition_repeat2, + [169192] = 9, + ACTIONS(6559), 1, + anon_sym_LPAREN, + ACTIONS(6565), 1, + anon_sym_LBRACK, + ACTIONS(6816), 1, + sym_string_start, + ACTIONS(6903), 1, + sym_identifier, + STATE(1170), 1, + sym_c_function_definition, + STATE(3968), 1, + sym_c_parameters, + STATE(4249), 1, + sym_string, + STATE(5202), 1, + sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6486), 5, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [168727] = 6, - ACTIONS(6286), 1, + [169221] = 9, + ACTIONS(6614), 1, anon_sym_as, - ACTIONS(6288), 1, + ACTIONS(6616), 1, anon_sym_if, - ACTIONS(6294), 1, + ACTIONS(6618), 1, anon_sym_and, - ACTIONS(6296), 1, + ACTIONS(6620), 1, anon_sym_or, + ACTIONS(6720), 1, + anon_sym_COLON, + ACTIONS(6905), 1, + anon_sym_COMMA, + ACTIONS(6907), 1, + anon_sym_RBRACK, + STATE(4925), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4605), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_async, - anon_sym_for, - [168750] = 9, - ACTIONS(6509), 1, + [169250] = 9, + ACTIONS(6559), 1, anon_sym_LPAREN, - ACTIONS(6515), 1, + ACTIONS(6565), 1, anon_sym_LBRACK, - ACTIONS(6663), 1, + ACTIONS(6816), 1, sym_string_start, - ACTIONS(6766), 1, + ACTIONS(6909), 1, sym_identifier, - STATE(645), 1, + STATE(703), 1, sym_c_function_definition, - STATE(3918), 1, + STATE(3939), 1, sym_c_parameters, - STATE(4157), 1, + STATE(4269), 1, sym_string, - STATE(5261), 1, + STATE(5274), 1, sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168779] = 9, - ACTIONS(3701), 1, + [169279] = 4, + ACTIONS(6699), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2735), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(5654), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [169298] = 6, + ACTIONS(6297), 1, + anon_sym_as, + ACTIONS(6299), 1, + anon_sym_if, + ACTIONS(6305), 1, + anon_sym_and, + ACTIONS(6307), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4621), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_async, + anon_sym_for, + [169321] = 5, + ACTIONS(5877), 1, anon_sym_DOT, - ACTIONS(6701), 1, - anon_sym_LBRACK, - ACTIONS(6768), 1, - anon_sym_LPAREN, - ACTIONS(6770), 1, - anon_sym_COLON, - ACTIONS(6772), 1, - sym__newline, - STATE(495), 1, - sym_external_definition, - STATE(3278), 1, + ACTIONS(6911), 1, + anon_sym_EQ, + STATE(3976), 1, aux_sym_class_definition_repeat2, - STATE(4994), 1, - sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168808] = 9, - ACTIONS(3701), 1, - anon_sym_DOT, - ACTIONS(6758), 1, - anon_sym_LBRACK, - ACTIONS(6774), 1, + ACTIONS(6548), 5, anon_sym_LPAREN, - ACTIONS(6776), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [169342] = 9, + ACTIONS(6788), 1, + anon_sym_except, + ACTIONS(6790), 1, + anon_sym_with, + ACTIONS(6792), 1, + anon_sym_nogil, + ACTIONS(6794), 1, + anon_sym_noexcept, + ACTIONS(6913), 1, anon_sym_COLON, - ACTIONS(6778), 1, + ACTIONS(6915), 1, sym__newline, - STATE(2859), 1, - sym_external_definition, - STATE(3278), 1, - aux_sym_class_definition_repeat2, - STATE(5025), 1, - sym_argument_list, + STATE(3897), 1, + sym_gil_spec, + STATE(4365), 1, + sym_exception_value, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168837] = 9, - ACTIONS(6523), 1, + [169371] = 9, + ACTIONS(6614), 1, anon_sym_as, - ACTIONS(6525), 1, + ACTIONS(6616), 1, anon_sym_if, - ACTIONS(6527), 1, + ACTIONS(6618), 1, anon_sym_and, - ACTIONS(6529), 1, + ACTIONS(6620), 1, anon_sym_or, - ACTIONS(6732), 1, + ACTIONS(6720), 1, anon_sym_COLON, - ACTIONS(6780), 1, + ACTIONS(6917), 1, anon_sym_COMMA, - ACTIONS(6782), 1, + ACTIONS(6919), 1, anon_sym_RBRACK, - STATE(4803), 1, + STATE(4944), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168866] = 8, - ACTIONS(6029), 1, - anon_sym_as, - ACTIONS(6031), 1, - anon_sym_if, - ACTIONS(6033), 1, - anon_sym_and, - ACTIONS(6035), 1, - anon_sym_or, - ACTIONS(6786), 1, - anon_sym_COMMA, - STATE(4516), 1, - aux_sym_assert_statement_repeat1, + [169400] = 4, + ACTIONS(1247), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6784), 2, - sym__newline, - anon_sym_SEMI, - [168893] = 9, - ACTIONS(6523), 1, + STATE(2170), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(6921), 5, + anon_sym_COMMA, anon_sym_as, - ACTIONS(6525), 1, anon_sym_if, - ACTIONS(6527), 1, + anon_sym_COLON, + anon_sym_PIPE, + [169419] = 5, + ACTIONS(6149), 1, + anon_sym_as, + ACTIONS(6161), 1, anon_sym_and, - ACTIONS(6529), 1, + ACTIONS(6163), 1, anon_sym_or, - ACTIONS(6732), 1, - anon_sym_COLON, - ACTIONS(6788), 1, - anon_sym_COMMA, - ACTIONS(6790), 1, - anon_sym_RBRACK, - STATE(4834), 1, - aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168922] = 5, - ACTIONS(6286), 1, + ACTIONS(6770), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [169440] = 5, + ACTIONS(6149), 1, anon_sym_as, - ACTIONS(6294), 1, + ACTIONS(6161), 1, anon_sym_and, - ACTIONS(6296), 1, + ACTIONS(6163), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6687), 5, - anon_sym_RPAREN, + ACTIONS(6770), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [168943] = 9, - ACTIONS(6523), 1, + anon_sym_RBRACE, + [169461] = 8, + ACTIONS(6104), 1, anon_sym_as, - ACTIONS(6525), 1, + ACTIONS(6106), 1, anon_sym_if, - ACTIONS(6527), 1, + ACTIONS(6108), 1, anon_sym_and, - ACTIONS(6529), 1, + ACTIONS(6110), 1, anon_sym_or, - ACTIONS(6732), 1, - anon_sym_COLON, - ACTIONS(6792), 1, + ACTIONS(6925), 1, anon_sym_COMMA, - ACTIONS(6794), 1, - anon_sym_RBRACK, - STATE(4867), 1, - aux_sym_subscript_repeat1, + STATE(4627), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168972] = 9, - ACTIONS(6669), 1, + ACTIONS(6923), 2, + sym__newline, + anon_sym_SEMI, + [169488] = 9, + ACTIONS(6788), 1, anon_sym_except, - ACTIONS(6675), 1, - anon_sym_noexcept, - ACTIONS(6716), 1, + ACTIONS(6790), 1, anon_sym_with, - ACTIONS(6718), 1, + ACTIONS(6792), 1, anon_sym_nogil, - ACTIONS(6796), 1, + ACTIONS(6794), 1, + anon_sym_noexcept, + ACTIONS(6927), 1, anon_sym_COLON, - ACTIONS(6798), 1, + ACTIONS(6929), 1, sym__newline, - STATE(3950), 1, + STATE(3924), 1, sym_gil_spec, - STATE(4313), 1, + STATE(4468), 1, sym_exception_value, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169001] = 8, - ACTIONS(6029), 1, + [169517] = 8, + ACTIONS(6104), 1, anon_sym_as, - ACTIONS(6031), 1, + ACTIONS(6106), 1, anon_sym_if, - ACTIONS(6033), 1, + ACTIONS(6108), 1, anon_sym_and, - ACTIONS(6035), 1, + ACTIONS(6110), 1, anon_sym_or, - ACTIONS(6426), 1, + ACTIONS(6784), 1, anon_sym_COMMA, - STATE(4619), 1, + STATE(4644), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6422), 2, + ACTIONS(6931), 2, sym__newline, anon_sym_SEMI, - [169028] = 9, - ACTIONS(6669), 1, - anon_sym_except, - ACTIONS(6671), 1, - anon_sym_with, - ACTIONS(6673), 1, - anon_sym_nogil, - ACTIONS(6675), 1, - anon_sym_noexcept, - ACTIONS(6800), 1, - anon_sym_COLON, - ACTIONS(6802), 1, - sym__newline, - STATE(4402), 1, - sym_exception_value, - STATE(5171), 1, - sym_gil_spec, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [169057] = 6, - ACTIONS(6462), 1, + [169544] = 6, + ACTIONS(6861), 1, anon_sym_as, - ACTIONS(6464), 1, + ACTIONS(6863), 1, anon_sym_if, - ACTIONS(6468), 1, + ACTIONS(6865), 1, anon_sym_and, - ACTIONS(6470), 1, + ACTIONS(6867), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6804), 4, + ACTIONS(4574), 4, + anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [169080] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(6811), 1, - anon_sym_BSLASH, - ACTIONS(6806), 2, - sym_string_end, - anon_sym_LBRACE, - STATE(3922), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(6808), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - [169103] = 5, - ACTIONS(6364), 1, - anon_sym_as, - ACTIONS(6372), 1, + anon_sym_PIPE, + [169567] = 5, + ACTIONS(6865), 1, anon_sym_and, - ACTIONS(6374), 1, + ACTIONS(6867), 1, anon_sym_or, + ACTIONS(6933), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6687), 5, - anon_sym_COMMA, + ACTIONS(4590), 5, + anon_sym_DOT, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [169124] = 9, - ACTIONS(6669), 1, - anon_sym_except, - ACTIONS(6675), 1, - anon_sym_noexcept, - ACTIONS(6716), 1, - anon_sym_with, - ACTIONS(6718), 1, - anon_sym_nogil, - ACTIONS(6814), 1, anon_sym_COLON, - ACTIONS(6816), 1, - sym__newline, - STATE(3936), 1, - sym_gil_spec, - STATE(4461), 1, - sym_exception_value, + anon_sym_EQ, + anon_sym_PIPE, + [169588] = 4, + ACTIONS(6865), 1, + anon_sym_and, + ACTIONS(6867), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169153] = 9, - ACTIONS(6523), 1, + ACTIONS(4597), 6, + anon_sym_DOT, anon_sym_as, - ACTIONS(6525), 1, anon_sym_if, - ACTIONS(6527), 1, - anon_sym_and, - ACTIONS(6529), 1, - anon_sym_or, - ACTIONS(6732), 1, anon_sym_COLON, - ACTIONS(6818), 1, - anon_sym_COMMA, - ACTIONS(6820), 1, - anon_sym_RBRACK, - STATE(4906), 1, - aux_sym_subscript_repeat1, + anon_sym_EQ, + anon_sym_PIPE, + [169607] = 3, + ACTIONS(6865), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169182] = 9, - ACTIONS(6523), 1, + ACTIONS(4605), 7, + anon_sym_DOT, anon_sym_as, - ACTIONS(6525), 1, anon_sym_if, - ACTIONS(6527), 1, - anon_sym_and, - ACTIONS(6529), 1, - anon_sym_or, - ACTIONS(6732), 1, anon_sym_COLON, - ACTIONS(6822), 1, - anon_sym_COMMA, - ACTIONS(6824), 1, - anon_sym_RBRACK, - STATE(4919), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [169211] = 9, - ACTIONS(6523), 1, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_or, + [169624] = 6, + ACTIONS(6861), 1, anon_sym_as, - ACTIONS(6525), 1, + ACTIONS(6863), 1, anon_sym_if, - ACTIONS(6527), 1, + ACTIONS(6865), 1, anon_sym_and, - ACTIONS(6529), 1, + ACTIONS(6867), 1, anon_sym_or, - ACTIONS(6732), 1, - anon_sym_COLON, - ACTIONS(6826), 1, - anon_sym_COMMA, - ACTIONS(6828), 1, - anon_sym_RBRACK, - STATE(4911), 1, - aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169240] = 9, - ACTIONS(3701), 1, + ACTIONS(4613), 4, anon_sym_DOT, - ACTIONS(6758), 1, - anon_sym_LBRACK, - ACTIONS(6830), 1, - anon_sym_LPAREN, - ACTIONS(6832), 1, anon_sym_COLON, - ACTIONS(6834), 1, - sym__newline, - STATE(2812), 1, - sym_external_definition, - STATE(3958), 1, - aux_sym_class_definition_repeat2, - STATE(5029), 1, - sym_argument_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [169269] = 9, - ACTIONS(6523), 1, + anon_sym_EQ, + anon_sym_PIPE, + [169647] = 6, + ACTIONS(6861), 1, anon_sym_as, - ACTIONS(6525), 1, + ACTIONS(6863), 1, anon_sym_if, - ACTIONS(6527), 1, + ACTIONS(6865), 1, anon_sym_and, - ACTIONS(6529), 1, + ACTIONS(6867), 1, anon_sym_or, - ACTIONS(6732), 1, - anon_sym_COLON, - ACTIONS(6836), 1, - anon_sym_COMMA, - ACTIONS(6838), 1, - anon_sym_RBRACK, - STATE(4938), 1, - aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169298] = 9, - ACTIONS(6523), 1, + ACTIONS(4621), 4, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [169670] = 5, + ACTIONS(6361), 1, anon_sym_as, - ACTIONS(6525), 1, - anon_sym_if, - ACTIONS(6527), 1, + ACTIONS(6369), 1, anon_sym_and, - ACTIONS(6529), 1, + ACTIONS(6371), 1, anon_sym_or, - ACTIONS(6732), 1, - anon_sym_COLON, - ACTIONS(6840), 1, - anon_sym_COMMA, - ACTIONS(6842), 1, - anon_sym_RBRACK, - STATE(4948), 1, - aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169327] = 5, - ACTIONS(6137), 1, + ACTIONS(6770), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [169691] = 6, + ACTIONS(6104), 1, anon_sym_as, - ACTIONS(6149), 1, + ACTIONS(6106), 1, + anon_sym_if, + ACTIONS(6108), 1, anon_sym_and, - ACTIONS(6151), 1, + ACTIONS(6110), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6687), 5, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [169348] = 9, - ACTIONS(6669), 1, - anon_sym_except, - ACTIONS(6671), 1, + ACTIONS(3814), 4, + sym__newline, + anon_sym_COLON, anon_sym_with, - ACTIONS(6673), 1, anon_sym_nogil, - ACTIONS(6675), 1, - anon_sym_noexcept, - ACTIONS(6814), 1, - anon_sym_COLON, + [169714] = 7, + ACTIONS(5109), 1, + anon_sym_LBRACK, + ACTIONS(6555), 1, + sym_identifier, + STATE(5024), 1, + sym_type_index, + STATE(5535), 1, + sym_type_qualifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5105), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(5107), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + [169739] = 9, + ACTIONS(6559), 1, + anon_sym_LPAREN, + ACTIONS(6565), 1, + anon_sym_LBRACK, ACTIONS(6816), 1, - sym__newline, - STATE(4461), 1, - sym_exception_value, - STATE(5320), 1, - sym_gil_spec, + sym_string_start, + ACTIONS(6936), 1, + sym_identifier, + STATE(2929), 1, + sym_c_function_definition, + STATE(3928), 1, + sym_c_parameters, + STATE(4219), 1, + sym_string, + STATE(5224), 1, + sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169377] = 6, - ACTIONS(6286), 1, + [169768] = 6, + ACTIONS(6361), 1, anon_sym_as, - ACTIONS(6288), 1, + ACTIONS(6363), 1, anon_sym_if, - ACTIONS(6294), 1, + ACTIONS(6369), 1, anon_sym_and, - ACTIONS(6296), 1, + ACTIONS(6371), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4569), 4, - anon_sym_RPAREN, + ACTIONS(4621), 4, anon_sym_COMMA, anon_sym_async, anon_sym_for, - [169400] = 5, - ACTIONS(5771), 1, - anon_sym_DOT, - ACTIONS(6844), 1, - anon_sym_EQ, - STATE(3971), 1, - aux_sym_class_definition_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6486), 5, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_RBRACK, - anon_sym_PIPE, - [169421] = 8, - ACTIONS(6029), 1, + [169791] = 6, + ACTIONS(6297), 1, anon_sym_as, - ACTIONS(6031), 1, + ACTIONS(6299), 1, anon_sym_if, - ACTIONS(6033), 1, + ACTIONS(6305), 1, anon_sym_and, - ACTIONS(6035), 1, + ACTIONS(6307), 1, anon_sym_or, - ACTIONS(6657), 1, - anon_sym_COMMA, - STATE(4453), 1, - aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5703), 2, - sym__newline, - anon_sym_SEMI, - [169448] = 9, - ACTIONS(6669), 1, + ACTIONS(4613), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_async, + anon_sym_for, + [169814] = 9, + ACTIONS(6788), 1, anon_sym_except, - ACTIONS(6671), 1, + ACTIONS(6794), 1, + anon_sym_noexcept, + ACTIONS(6810), 1, anon_sym_with, - ACTIONS(6673), 1, + ACTIONS(6812), 1, anon_sym_nogil, - ACTIONS(6675), 1, - anon_sym_noexcept, - ACTIONS(6846), 1, + ACTIONS(6927), 1, anon_sym_COLON, - ACTIONS(6848), 1, + ACTIONS(6929), 1, sym__newline, - STATE(4342), 1, + STATE(4468), 1, sym_exception_value, - STATE(5208), 1, + STATE(5362), 1, sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169477] = 4, - ACTIONS(6627), 1, - anon_sym_class, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2727), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(5582), 5, - anon_sym_api, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - [169496] = 7, - ACTIONS(2697), 1, - anon_sym_except, - ACTIONS(2701), 1, - anon_sym_except_STAR, - ACTIONS(6850), 1, - anon_sym_finally, - STATE(1394), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(789), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - STATE(790), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - [169521] = 5, - ACTIONS(6364), 1, + [169843] = 9, + ACTIONS(6614), 1, anon_sym_as, - ACTIONS(6372), 1, + ACTIONS(6616), 1, + anon_sym_if, + ACTIONS(6618), 1, anon_sym_and, - ACTIONS(6374), 1, + ACTIONS(6620), 1, anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6687), 5, + ACTIONS(6720), 1, + anon_sym_COLON, + ACTIONS(6938), 1, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, + ACTIONS(6940), 1, anon_sym_RBRACK, - [169542] = 9, - ACTIONS(6509), 1, - anon_sym_LPAREN, - ACTIONS(6515), 1, - anon_sym_LBRACK, - ACTIONS(6663), 1, - sym_string_start, - ACTIONS(6852), 1, - sym_identifier, - STATE(1258), 1, - sym_c_function_definition, - STATE(3899), 1, - sym_c_parameters, - STATE(4160), 1, - sym_string, - STATE(5300), 1, - sym_template_params, + STATE(4962), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169571] = 5, - ACTIONS(4239), 1, + [169872] = 5, + ACTIONS(4255), 1, anon_sym_DOT, - ACTIONS(6854), 1, + ACTIONS(6942), 1, anon_sym_EQ, - STATE(3986), 1, + STATE(4114), 1, aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6486), 5, + ACTIONS(6548), 5, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [169592] = 9, - ACTIONS(6523), 1, + [169893] = 6, + ACTIONS(6297), 1, anon_sym_as, - ACTIONS(6525), 1, + ACTIONS(6299), 1, anon_sym_if, - ACTIONS(6527), 1, - anon_sym_and, - ACTIONS(6529), 1, - anon_sym_or, - ACTIONS(6732), 1, - anon_sym_COLON, - ACTIONS(6856), 1, - anon_sym_COMMA, - ACTIONS(6858), 1, - anon_sym_RBRACK, - STATE(5053), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [169621] = 5, - ACTIONS(6137), 1, - anon_sym_as, - ACTIONS(6149), 1, + ACTIONS(6305), 1, anon_sym_and, - ACTIONS(6151), 1, + ACTIONS(6307), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6687), 5, + ACTIONS(4574), 4, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACE, - [169642] = 9, - ACTIONS(6509), 1, + [169916] = 9, + ACTIONS(6559), 1, anon_sym_LPAREN, - ACTIONS(6515), 1, + ACTIONS(6565), 1, anon_sym_LBRACK, - ACTIONS(6663), 1, + ACTIONS(6816), 1, sym_string_start, - ACTIONS(6860), 1, + ACTIONS(6944), 1, sym_identifier, - STATE(1186), 1, + STATE(507), 1, sym_c_function_definition, - STATE(3899), 1, + STATE(3939), 1, sym_c_parameters, - STATE(4249), 1, + STATE(4152), 1, sym_string, - STATE(5300), 1, + STATE(5274), 1, sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169671] = 5, - ACTIONS(6286), 1, + [169945] = 6, + ACTIONS(6104), 1, anon_sym_as, - ACTIONS(6294), 1, + ACTIONS(6106), 1, + anon_sym_if, + ACTIONS(6108), 1, anon_sym_and, - ACTIONS(6296), 1, + ACTIONS(6110), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6687), 5, - anon_sym_RPAREN, + ACTIONS(4800), 4, + sym__newline, + anon_sym_COLON, + anon_sym_with, + anon_sym_nogil, + [169968] = 5, + ACTIONS(6149), 1, + anon_sym_as, + ACTIONS(6161), 1, + anon_sym_and, + ACTIONS(6163), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6770), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [169692] = 6, - ACTIONS(6862), 1, - anon_sym_as, - ACTIONS(6864), 1, - anon_sym_if, - ACTIONS(6866), 1, - anon_sym_and, - ACTIONS(6868), 1, - anon_sym_or, + anon_sym_RBRACE, + [169989] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6424), 4, + ACTIONS(4466), 8, anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [169715] = 8, - ACTIONS(6029), 1, - anon_sym_as, - ACTIONS(6031), 1, - anon_sym_if, - ACTIONS(6033), 1, anon_sym_and, - ACTIONS(6035), 1, anon_sym_or, - ACTIONS(6872), 1, - anon_sym_COMMA, - STATE(4579), 1, - aux_sym_print_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6870), 2, - sym__newline, - anon_sym_SEMI, - [169742] = 8, - ACTIONS(6029), 1, + [170004] = 9, + ACTIONS(6614), 1, anon_sym_as, - ACTIONS(6031), 1, + ACTIONS(6616), 1, anon_sym_if, - ACTIONS(6033), 1, + ACTIONS(6618), 1, anon_sym_and, - ACTIONS(6035), 1, + ACTIONS(6620), 1, anon_sym_or, - ACTIONS(6786), 1, + ACTIONS(6720), 1, + anon_sym_COLON, + ACTIONS(6946), 1, anon_sym_COMMA, - STATE(4583), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(6948), 1, + anon_sym_RBRACK, + STATE(4787), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6874), 2, - sym__newline, - anon_sym_SEMI, - [169769] = 9, - ACTIONS(6669), 1, + [170033] = 9, + ACTIONS(6788), 1, anon_sym_except, - ACTIONS(6675), 1, - anon_sym_noexcept, - ACTIONS(6716), 1, + ACTIONS(6790), 1, anon_sym_with, - ACTIONS(6718), 1, + ACTIONS(6792), 1, anon_sym_nogil, - ACTIONS(6876), 1, + ACTIONS(6794), 1, + anon_sym_noexcept, + ACTIONS(6950), 1, anon_sym_COLON, - ACTIONS(6878), 1, + ACTIONS(6952), 1, sym__newline, - STATE(3872), 1, + STATE(3927), 1, sym_gil_spec, - STATE(4318), 1, + STATE(4392), 1, sym_exception_value, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169798] = 9, - ACTIONS(6669), 1, - anon_sym_except, - ACTIONS(6671), 1, - anon_sym_with, - ACTIONS(6673), 1, - anon_sym_nogil, - ACTIONS(6675), 1, - anon_sym_noexcept, - ACTIONS(6876), 1, + [170062] = 9, + ACTIONS(3705), 1, + anon_sym_DOT, + ACTIONS(6822), 1, + anon_sym_LBRACK, + ACTIONS(6954), 1, + anon_sym_LPAREN, + ACTIONS(6956), 1, anon_sym_COLON, - ACTIONS(6878), 1, + ACTIONS(6958), 1, sym__newline, - STATE(4318), 1, - sym_exception_value, - STATE(5217), 1, - sym_gil_spec, + STATE(2910), 1, + sym_external_definition, + STATE(3902), 1, + aux_sym_class_definition_repeat2, + STATE(5075), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169827] = 8, - ACTIONS(6029), 1, + [170091] = 8, + ACTIONS(6104), 1, anon_sym_as, - ACTIONS(6031), 1, + ACTIONS(6106), 1, anon_sym_if, - ACTIONS(6033), 1, + ACTIONS(6108), 1, anon_sym_and, - ACTIONS(6035), 1, + ACTIONS(6110), 1, anon_sym_or, - ACTIONS(6657), 1, + ACTIONS(6682), 1, anon_sym_COMMA, - STATE(4453), 1, + STATE(4408), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6880), 2, + ACTIONS(6960), 2, sym__newline, anon_sym_SEMI, - [169854] = 8, - ACTIONS(6029), 1, + [170118] = 5, + ACTIONS(6361), 1, anon_sym_as, - ACTIONS(6031), 1, + ACTIONS(6369), 1, + anon_sym_and, + ACTIONS(6371), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6770), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [170139] = 8, + ACTIONS(6104), 1, + anon_sym_as, + ACTIONS(6106), 1, anon_sym_if, - ACTIONS(6033), 1, + ACTIONS(6108), 1, anon_sym_and, - ACTIONS(6035), 1, + ACTIONS(6110), 1, anon_sym_or, - ACTIONS(6657), 1, + ACTIONS(6682), 1, anon_sym_COMMA, - STATE(4453), 1, + STATE(4408), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6882), 2, + ACTIONS(6962), 2, sym__newline, anon_sym_SEMI, - [169881] = 5, - ACTIONS(6286), 1, + [170166] = 6, + ACTIONS(6524), 1, anon_sym_as, - ACTIONS(6294), 1, + ACTIONS(6526), 1, + anon_sym_if, + ACTIONS(6530), 1, anon_sym_and, - ACTIONS(6296), 1, + ACTIONS(6532), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6687), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [169902] = 9, - ACTIONS(3701), 1, - anon_sym_DOT, - ACTIONS(6701), 1, - anon_sym_LBRACK, - ACTIONS(6884), 1, - anon_sym_LPAREN, - ACTIONS(6886), 1, - anon_sym_COLON, - ACTIONS(6888), 1, - sym__newline, - STATE(496), 1, - sym_external_definition, - STATE(3881), 1, - aux_sym_class_definition_repeat2, - STATE(4975), 1, - sym_argument_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [169931] = 9, - ACTIONS(3701), 1, - anon_sym_DOT, - ACTIONS(6683), 1, - anon_sym_LBRACK, - ACTIONS(6890), 1, - anon_sym_LPAREN, - ACTIONS(6892), 1, + ACTIONS(6964), 4, anon_sym_COLON, - ACTIONS(6894), 1, - sym__newline, - STATE(1117), 1, - sym_external_definition, - STATE(3278), 1, - aux_sym_class_definition_repeat2, - STATE(4981), 1, - sym_argument_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [169960] = 9, - ACTIONS(6509), 1, - anon_sym_LPAREN, - ACTIONS(6515), 1, - anon_sym_LBRACK, - ACTIONS(6663), 1, - sym_string_start, - ACTIONS(6896), 1, - sym_identifier, - STATE(2826), 1, - sym_c_function_definition, - STATE(3890), 1, - sym_c_parameters, - STATE(4166), 1, - sym_string, - STATE(5210), 1, - sym_template_params, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [169989] = 6, - ACTIONS(6029), 1, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [170189] = 8, + ACTIONS(6104), 1, anon_sym_as, - ACTIONS(6031), 1, + ACTIONS(6106), 1, anon_sym_if, - ACTIONS(6033), 1, + ACTIONS(6108), 1, anon_sym_and, - ACTIONS(6035), 1, + ACTIONS(6110), 1, anon_sym_or, + ACTIONS(6387), 1, + anon_sym_COMMA, + STATE(4573), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3788), 4, - sym__newline, - anon_sym_COLON, - anon_sym_with, - anon_sym_nogil, - [170012] = 9, - ACTIONS(3701), 1, - anon_sym_DOT, - ACTIONS(6758), 1, - anon_sym_LBRACK, - ACTIONS(6898), 1, - anon_sym_LPAREN, - ACTIONS(6900), 1, - anon_sym_COLON, - ACTIONS(6902), 1, + ACTIONS(6383), 2, sym__newline, - STATE(2836), 1, - sym_external_definition, - STATE(3278), 1, - aux_sym_class_definition_repeat2, - STATE(5034), 1, - sym_argument_list, + anon_sym_SEMI, + [170216] = 6, + ACTIONS(6155), 1, + anon_sym_async, + ACTIONS(6157), 1, + anon_sym_for, + ACTIONS(6966), 1, + anon_sym_if, + ACTIONS(6968), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170041] = 4, - ACTIONS(1247), 1, - sym_string_start, + STATE(4024), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [170238] = 4, + ACTIONS(5877), 1, + anon_sym_DOT, + STATE(3428), 1, + aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2132), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(6904), 5, + ACTIONS(6546), 5, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, + anon_sym_RBRACK, anon_sym_PIPE, - [170060] = 7, - ACTIONS(2697), 1, - anon_sym_except, - ACTIONS(2701), 1, - anon_sym_except_STAR, - ACTIONS(6850), 1, - anon_sym_finally, - STATE(1524), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(814), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - STATE(815), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - [170085] = 5, - ACTIONS(6294), 1, - anon_sym_and, - ACTIONS(6296), 1, - anon_sym_or, - ACTIONS(6906), 1, - anon_sym_as, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4617), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [170106] = 6, - ACTIONS(6862), 1, + [170256] = 8, + ACTIONS(6670), 1, anon_sym_as, - ACTIONS(6864), 1, + ACTIONS(6672), 1, anon_sym_if, - ACTIONS(6866), 1, + ACTIONS(6674), 1, anon_sym_and, - ACTIONS(6868), 1, + ACTIONS(6676), 1, anon_sym_or, + ACTIONS(6970), 1, + anon_sym_COMMA, + ACTIONS(6972), 1, + anon_sym_COLON, + STATE(4680), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4605), 4, - anon_sym_DOT, - anon_sym_COLON, + [170282] = 7, + ACTIONS(3722), 1, + anon_sym_LBRACK, + ACTIONS(6315), 1, + anon_sym_COMMA, + ACTIONS(6974), 1, anon_sym_EQ, - anon_sym_PIPE, - [170129] = 5, - ACTIONS(6866), 1, - anon_sym_and, - ACTIONS(6868), 1, - anon_sym_or, - ACTIONS(6909), 1, - anon_sym_as, + ACTIONS(6976), 1, + sym__newline, + STATE(4890), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4617), 5, - anon_sym_DOT, + STATE(4209), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [170306] = 8, + ACTIONS(6104), 1, + anon_sym_as, + ACTIONS(6106), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [170150] = 4, - ACTIONS(6866), 1, + ACTIONS(6108), 1, anon_sym_and, - ACTIONS(6868), 1, + ACTIONS(6110), 1, anon_sym_or, + ACTIONS(6580), 1, + sym__newline, + ACTIONS(6978), 1, + anon_sym_COMMA, + STATE(4727), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4577), 6, - anon_sym_DOT, + [170332] = 8, + ACTIONS(6104), 1, anon_sym_as, + ACTIONS(6106), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [170169] = 3, - ACTIONS(6866), 1, + ACTIONS(6108), 1, anon_sym_and, + ACTIONS(6110), 1, + anon_sym_or, + ACTIONS(6653), 1, + sym__newline, + ACTIONS(6980), 1, + anon_sym_COMMA, + STATE(4929), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4554), 7, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_or, - [170186] = 6, - ACTIONS(6862), 1, + [170358] = 8, + ACTIONS(6104), 1, anon_sym_as, - ACTIONS(6864), 1, + ACTIONS(6106), 1, anon_sym_if, - ACTIONS(6866), 1, + ACTIONS(6108), 1, anon_sym_and, - ACTIONS(6868), 1, + ACTIONS(6110), 1, anon_sym_or, + ACTIONS(6315), 1, + anon_sym_COMMA, + ACTIONS(6588), 1, + sym__newline, + STATE(4729), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4465), 4, - anon_sym_DOT, - anon_sym_COLON, + [170384] = 7, + ACTIONS(3722), 1, + anon_sym_LBRACK, + ACTIONS(6315), 1, + anon_sym_COMMA, + ACTIONS(6582), 1, anon_sym_EQ, - anon_sym_PIPE, - [170209] = 6, - ACTIONS(6862), 1, - anon_sym_as, - ACTIONS(6864), 1, - anon_sym_if, - ACTIONS(6866), 1, - anon_sym_and, - ACTIONS(6868), 1, - anon_sym_or, + ACTIONS(6584), 1, + sym__newline, + STATE(4731), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4569), 4, - anon_sym_DOT, - anon_sym_COLON, + STATE(4209), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [170408] = 7, + ACTIONS(3722), 1, + anon_sym_LBRACK, + ACTIONS(6315), 1, + anon_sym_COMMA, + ACTIONS(6982), 1, anon_sym_EQ, - anon_sym_PIPE, - [170232] = 5, - ACTIONS(6364), 1, - anon_sym_as, - ACTIONS(6372), 1, - anon_sym_and, - ACTIONS(6374), 1, - anon_sym_or, + ACTIONS(6984), 1, + sym__newline, + STATE(4735), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6687), 5, + STATE(4033), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [170432] = 7, + ACTIONS(3722), 1, + anon_sym_LBRACK, + ACTIONS(6315), 1, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [170253] = 5, - ACTIONS(4579), 1, - anon_sym_as, - ACTIONS(6294), 1, - anon_sym_and, - ACTIONS(6296), 1, - anon_sym_or, + ACTIONS(6986), 1, + anon_sym_EQ, + ACTIONS(6988), 1, + sym__newline, + STATE(5018), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4577), 5, - anon_sym_RPAREN, + STATE(3990), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [170456] = 7, + ACTIONS(3722), 1, + anon_sym_LBRACK, + ACTIONS(6315), 1, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [170274] = 9, - ACTIONS(6523), 1, - anon_sym_as, - ACTIONS(6525), 1, - anon_sym_if, - ACTIONS(6527), 1, - anon_sym_and, - ACTIONS(6529), 1, - anon_sym_or, - ACTIONS(6732), 1, - anon_sym_COLON, - ACTIONS(6912), 1, + ACTIONS(6337), 1, + anon_sym_EQ, + ACTIONS(6339), 1, + sym__newline, + STATE(5019), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4209), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [170480] = 7, + ACTIONS(3722), 1, + anon_sym_LBRACK, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(6914), 1, - anon_sym_RBRACK, - STATE(4890), 1, - aux_sym_subscript_repeat1, + ACTIONS(6586), 1, + anon_sym_EQ, + ACTIONS(6588), 1, + sym__newline, + STATE(4736), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170303] = 4, - ACTIONS(5771), 1, + STATE(4209), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [170504] = 4, + ACTIONS(6711), 1, anon_sym_DOT, - STATE(3404), 1, + STATE(4017), 1, aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6502), 5, + ACTIONS(6548), 5, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [170321] = 8, - ACTIONS(6143), 1, - anon_sym_async, - ACTIONS(6145), 1, - anon_sym_for, - ACTIONS(6916), 1, - anon_sym_COMMA, - ACTIONS(6918), 1, anon_sym_RBRACE, - STATE(3999), 1, - sym_for_in_clause, - STATE(4893), 1, - aux_sym_dictionary_repeat1, - STATE(5383), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [170347] = 6, - ACTIONS(6290), 1, - anon_sym_async, - ACTIONS(6292), 1, - anon_sym_for, - ACTIONS(6920), 1, - anon_sym_RPAREN, - ACTIONS(6922), 1, + [170522] = 8, + ACTIONS(6104), 1, + anon_sym_as, + ACTIONS(6106), 1, anon_sym_if, + ACTIONS(6108), 1, + anon_sym_and, + ACTIONS(6110), 1, + anon_sym_or, + ACTIONS(6655), 1, + sym__newline, + ACTIONS(6990), 1, + anon_sym_COMMA, + STATE(5128), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4123), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [170369] = 8, - ACTIONS(6029), 1, + [170548] = 8, + ACTIONS(6104), 1, anon_sym_as, - ACTIONS(6031), 1, + ACTIONS(6106), 1, anon_sym_if, - ACTIONS(6033), 1, + ACTIONS(6108), 1, anon_sym_and, - ACTIONS(6035), 1, + ACTIONS(6110), 1, anon_sym_or, - ACTIONS(6256), 1, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(6924), 1, + ACTIONS(6666), 1, sym__newline, - STATE(4649), 1, + STATE(5130), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170395] = 8, - ACTIONS(6029), 1, - anon_sym_as, - ACTIONS(6031), 1, - anon_sym_if, - ACTIONS(6033), 1, - anon_sym_and, - ACTIONS(6035), 1, - anon_sym_or, - ACTIONS(6256), 1, + [170574] = 7, + ACTIONS(3722), 1, + anon_sym_LBRACK, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(6926), 1, + ACTIONS(6660), 1, + anon_sym_EQ, + ACTIONS(6662), 1, sym__newline, - STATE(4809), 1, + STATE(5137), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170421] = 8, - ACTIONS(6349), 1, - anon_sym_RPAREN, - ACTIONS(6351), 1, + STATE(4209), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [170598] = 7, + ACTIONS(3722), 1, + anon_sym_LBRACK, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(6928), 1, - anon_sym_as, - ACTIONS(6930), 1, - anon_sym_if, - ACTIONS(6932), 1, - anon_sym_and, - ACTIONS(6934), 1, - anon_sym_or, - STATE(5047), 1, - aux_sym_argument_list_repeat1, + ACTIONS(6992), 1, + anon_sym_EQ, + ACTIONS(6994), 1, + sym__newline, + STATE(5138), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170447] = 8, - ACTIONS(6029), 1, - anon_sym_as, - ACTIONS(6031), 1, - anon_sym_if, - ACTIONS(6033), 1, - anon_sym_and, - ACTIONS(6035), 1, - anon_sym_or, - ACTIONS(6256), 1, + STATE(3999), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [170622] = 7, + ACTIONS(3722), 1, + anon_sym_LBRACK, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(6936), 1, + ACTIONS(6664), 1, + anon_sym_EQ, + ACTIONS(6666), 1, sym__newline, - STATE(4651), 1, + STATE(5140), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170473] = 8, - ACTIONS(6029), 1, + STATE(4209), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [170646] = 8, + ACTIONS(6670), 1, anon_sym_as, - ACTIONS(6031), 1, + ACTIONS(6672), 1, anon_sym_if, - ACTIONS(6033), 1, + ACTIONS(6674), 1, anon_sym_and, - ACTIONS(6035), 1, + ACTIONS(6676), 1, anon_sym_or, - ACTIONS(6256), 1, + ACTIONS(6970), 1, anon_sym_COMMA, - ACTIONS(6938), 1, - sym__newline, - STATE(4926), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(6996), 1, + anon_sym_COLON, + STATE(4680), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170499] = 7, - ACTIONS(3718), 1, - anon_sym_LBRACK, - ACTIONS(6256), 1, + [170672] = 8, + ACTIONS(6614), 1, + anon_sym_as, + ACTIONS(6616), 1, + anon_sym_if, + ACTIONS(6618), 1, + anon_sym_and, + ACTIONS(6620), 1, + anon_sym_or, + ACTIONS(6998), 1, anon_sym_COMMA, - ACTIONS(6566), 1, - anon_sym_EQ, - ACTIONS(6568), 1, - sym__newline, - STATE(4652), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(7000), 1, + anon_sym_RBRACK, + STATE(4656), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4274), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [170523] = 7, - ACTIONS(3718), 1, + [170698] = 7, + ACTIONS(3722), 1, anon_sym_LBRACK, - ACTIONS(6256), 1, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(6940), 1, + ACTIONS(7002), 1, anon_sym_EQ, - ACTIONS(6942), 1, + ACTIONS(7004), 1, sym__newline, - STATE(4654), 1, + STATE(4964), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4019), 2, + STATE(4090), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [170547] = 7, - ACTIONS(3718), 1, + [170722] = 7, + ACTIONS(3722), 1, anon_sym_LBRACK, - ACTIONS(6256), 1, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(6924), 1, - sym__newline, - ACTIONS(6944), 1, + ACTIONS(7006), 1, anon_sym_EQ, - STATE(4655), 1, + ACTIONS(7008), 1, + sym__newline, + STATE(4968), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4274), 2, + STATE(4209), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [170571] = 8, - ACTIONS(6029), 1, + [170746] = 8, + ACTIONS(6104), 1, anon_sym_as, - ACTIONS(6031), 1, + ACTIONS(6106), 1, anon_sym_if, - ACTIONS(6033), 1, + ACTIONS(6108), 1, anon_sym_and, - ACTIONS(6035), 1, + ACTIONS(6110), 1, anon_sym_or, - ACTIONS(6256), 1, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(6946), 1, + ACTIONS(7010), 1, sym__newline, - STATE(4945), 1, + STATE(4662), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170597] = 6, - ACTIONS(6368), 1, - anon_sym_async, - ACTIONS(6370), 1, - anon_sym_for, - ACTIONS(6948), 1, + [170772] = 8, + ACTIONS(6104), 1, + anon_sym_as, + ACTIONS(6106), 1, anon_sym_if, - ACTIONS(6950), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3995), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [170619] = 8, - ACTIONS(6143), 1, - anon_sym_async, - ACTIONS(6145), 1, - anon_sym_for, - ACTIONS(6952), 1, + ACTIONS(6108), 1, + anon_sym_and, + ACTIONS(6110), 1, + anon_sym_or, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(6954), 1, - anon_sym_RBRACE, - STATE(3999), 1, - sym_for_in_clause, - STATE(4735), 1, - aux_sym_dictionary_repeat1, - STATE(5403), 1, - sym__comprehension_clauses, + ACTIONS(7012), 1, + sym__newline, + STATE(4663), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170645] = 7, - ACTIONS(3718), 1, + [170798] = 7, + ACTIONS(3722), 1, anon_sym_LBRACK, - ACTIONS(6256), 1, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(6956), 1, + ACTIONS(6688), 1, anon_sym_EQ, - ACTIONS(6958), 1, + ACTIONS(6690), 1, sym__newline, - STATE(4657), 1, + STATE(4664), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4025), 2, + STATE(4209), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [170669] = 4, - ACTIONS(4239), 1, - anon_sym_DOT, - STATE(3311), 1, - aux_sym_class_definition_repeat2, + [170822] = 7, + ACTIONS(3722), 1, + anon_sym_LBRACK, + ACTIONS(6315), 1, + anon_sym_COMMA, + ACTIONS(7014), 1, + anon_sym_EQ, + ACTIONS(7016), 1, + sym__newline, + STATE(4667), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6502), 5, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [170687] = 7, - ACTIONS(3718), 1, + STATE(4010), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [170846] = 7, + ACTIONS(3722), 1, anon_sym_LBRACK, - ACTIONS(6256), 1, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(6936), 1, + ACTIONS(7010), 1, sym__newline, - ACTIONS(6960), 1, + ACTIONS(7018), 1, anon_sym_EQ, - STATE(4658), 1, + STATE(4668), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4274), 2, + STATE(4209), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [170711] = 8, - ACTIONS(6029), 1, - anon_sym_as, - ACTIONS(6031), 1, - anon_sym_if, - ACTIONS(6033), 1, - anon_sym_and, - ACTIONS(6035), 1, - anon_sym_or, - ACTIONS(6256), 1, + [170870] = 7, + ACTIONS(3722), 1, + anon_sym_LBRACK, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(6962), 1, + ACTIONS(7020), 1, + anon_sym_EQ, + ACTIONS(7022), 1, sym__newline, - STATE(4761), 1, + STATE(4670), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170737] = 8, - ACTIONS(6029), 1, - anon_sym_as, - ACTIONS(6031), 1, - anon_sym_if, - ACTIONS(6033), 1, - anon_sym_and, - ACTIONS(6035), 1, - anon_sym_or, - ACTIONS(6256), 1, + STATE(4011), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [170894] = 7, + ACTIONS(3722), 1, + anon_sym_LBRACK, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(6598), 1, + ACTIONS(7012), 1, sym__newline, - STATE(4745), 1, + ACTIONS(7024), 1, + anon_sym_EQ, + STATE(4671), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170763] = 8, - ACTIONS(6928), 1, - anon_sym_as, - ACTIONS(6930), 1, - anon_sym_if, - ACTIONS(6932), 1, - anon_sym_and, - ACTIONS(6934), 1, - anon_sym_or, - ACTIONS(6964), 1, - anon_sym_RPAREN, - ACTIONS(6966), 1, - anon_sym_COMMA, - STATE(4887), 1, - aux_sym_argument_list_repeat1, + STATE(4209), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [170918] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170789] = 8, - ACTIONS(6029), 1, + ACTIONS(7026), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6921), 5, + anon_sym_COMMA, anon_sym_as, - ACTIONS(6031), 1, anon_sym_if, - ACTIONS(6033), 1, + anon_sym_COLON, + anon_sym_PIPE, + [170934] = 8, + ACTIONS(6614), 1, + anon_sym_as, + ACTIONS(6616), 1, + anon_sym_if, + ACTIONS(6618), 1, anon_sym_and, - ACTIONS(6035), 1, + ACTIONS(6620), 1, anon_sym_or, - ACTIONS(6586), 1, - sym__newline, - ACTIONS(6968), 1, + ACTIONS(6998), 1, anon_sym_COMMA, - STATE(4796), 1, - aux_sym_cvar_def_repeat1, + ACTIONS(7028), 1, + anon_sym_RBRACK, + STATE(4803), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170815] = 8, - ACTIONS(6970), 1, - sym_identifier, - ACTIONS(6972), 1, - anon_sym_LPAREN, - ACTIONS(6974), 1, - anon_sym_STAR, - STATE(4390), 1, - sym_dotted_name, - STATE(4561), 1, - sym_aliased_import, - STATE(5182), 1, - sym_wildcard_import, - STATE(5367), 1, - sym__import_list, + [170960] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170841] = 6, - ACTIONS(6029), 1, + ACTIONS(4402), 7, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, + anon_sym_EQ, + anon_sym_LBRACK, + [170974] = 8, + ACTIONS(6104), 1, anon_sym_as, - ACTIONS(6031), 1, + ACTIONS(6106), 1, anon_sym_if, - ACTIONS(6033), 1, + ACTIONS(6108), 1, anon_sym_and, - ACTIONS(6035), 1, + ACTIONS(6110), 1, anon_sym_or, + ACTIONS(6315), 1, + anon_sym_COMMA, + ACTIONS(7030), 1, + sym__newline, + STATE(4690), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6976), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - [170863] = 8, - ACTIONS(6029), 1, + [171000] = 8, + ACTIONS(6104), 1, anon_sym_as, - ACTIONS(6031), 1, + ACTIONS(6106), 1, anon_sym_if, - ACTIONS(6033), 1, + ACTIONS(6108), 1, anon_sym_and, - ACTIONS(6035), 1, + ACTIONS(6110), 1, anon_sym_or, - ACTIONS(6256), 1, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(6978), 1, + ACTIONS(7032), 1, sym__newline, - STATE(5090), 1, + STATE(4691), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170889] = 6, - ACTIONS(6368), 1, - anon_sym_async, - ACTIONS(6370), 1, - anon_sym_for, - ACTIONS(6920), 1, - anon_sym_RBRACK, - ACTIONS(6948), 1, + [171026] = 8, + ACTIONS(6104), 1, + anon_sym_as, + ACTIONS(6106), 1, anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4031), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [170911] = 8, - ACTIONS(6143), 1, - anon_sym_async, - ACTIONS(6145), 1, - anon_sym_for, - ACTIONS(6980), 1, + ACTIONS(6108), 1, + anon_sym_and, + ACTIONS(6110), 1, + anon_sym_or, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(6982), 1, - anon_sym_RBRACE, - STATE(3999), 1, - sym_for_in_clause, - STATE(4736), 1, - aux_sym_dictionary_repeat1, - STATE(5465), 1, - sym__comprehension_clauses, + ACTIONS(7034), 1, + sym__newline, + STATE(4693), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170937] = 7, - ACTIONS(3718), 1, + [171052] = 7, + ACTIONS(3722), 1, anon_sym_LBRACK, - ACTIONS(6256), 1, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(6984), 1, + ACTIONS(7036), 1, anon_sym_EQ, - ACTIONS(6986), 1, + ACTIONS(7038), 1, sym__newline, - STATE(4635), 1, + STATE(4694), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4043), 2, + STATE(4209), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [170961] = 8, - ACTIONS(6523), 1, - anon_sym_as, - ACTIONS(6525), 1, - anon_sym_if, - ACTIONS(6527), 1, - anon_sym_and, - ACTIONS(6529), 1, - anon_sym_or, - ACTIONS(6988), 1, + [171076] = 7, + ACTIONS(3722), 1, + anon_sym_LBRACK, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(6990), 1, - anon_sym_RBRACK, - STATE(4765), 1, - aux_sym_type_index_repeat1, + ACTIONS(7040), 1, + anon_sym_EQ, + ACTIONS(7042), 1, + sym__newline, + STATE(4695), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170987] = 6, - ACTIONS(6143), 1, - anon_sym_async, - ACTIONS(6145), 1, - anon_sym_for, - ACTIONS(6950), 1, - anon_sym_RBRACE, - ACTIONS(6992), 1, - anon_sym_if, + STATE(4209), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [171100] = 7, + ACTIONS(3722), 1, + anon_sym_LBRACK, + ACTIONS(6315), 1, + anon_sym_COMMA, + ACTIONS(7044), 1, + anon_sym_EQ, + ACTIONS(7046), 1, + sym__newline, + STATE(4696), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4119), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [171009] = 7, - ACTIONS(3718), 1, + STATE(4023), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [171124] = 7, + ACTIONS(3722), 1, anon_sym_LBRACK, - ACTIONS(6256), 1, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(6258), 1, - anon_sym_EQ, - ACTIONS(6263), 1, + ACTIONS(7032), 1, sym__newline, - STATE(4836), 1, + ACTIONS(7048), 1, + anon_sym_EQ, + STATE(4697), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4274), 2, + STATE(4209), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [171033] = 2, + [171148] = 4, + ACTIONS(5877), 1, + anon_sym_DOT, + STATE(3976), 1, + aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4454), 7, - sym__newline, - anon_sym_SEMI, + ACTIONS(6548), 5, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_in, - anon_sym_EQ, - anon_sym_LBRACK, - [171047] = 4, - ACTIONS(1931), 1, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [171166] = 4, + ACTIONS(2485), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2119), 2, + STATE(2213), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(6904), 4, + ACTIONS(6921), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, + [171184] = 8, + ACTIONS(6155), 1, + anon_sym_async, + ACTIONS(6157), 1, + anon_sym_for, + ACTIONS(7050), 1, + anon_sym_COMMA, + ACTIONS(7052), 1, anon_sym_RBRACE, - [171065] = 2, + STATE(4115), 1, + sym_for_in_clause, + STATE(4982), 1, + aux_sym_dictionary_repeat1, + STATE(5454), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4394), 7, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_in, - anon_sym_EQ, - anon_sym_LBRACK, - [171079] = 4, - ACTIONS(5771), 1, + [171210] = 4, + ACTIONS(6711), 1, anon_sym_DOT, - STATE(3971), 1, + STATE(4046), 1, aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6486), 5, + ACTIONS(6546), 5, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [171097] = 7, - ACTIONS(3718), 1, - anon_sym_LBRACK, - ACTIONS(6256), 1, - anon_sym_COMMA, - ACTIONS(6592), 1, - anon_sym_EQ, - ACTIONS(6594), 1, - sym__newline, - STATE(4767), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4274), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [171121] = 7, - ACTIONS(3718), 1, - anon_sym_LBRACK, - ACTIONS(6256), 1, + anon_sym_RBRACE, + [171228] = 8, + ACTIONS(6104), 1, + anon_sym_as, + ACTIONS(6106), 1, + anon_sym_if, + ACTIONS(6108), 1, + anon_sym_and, + ACTIONS(6110), 1, + anon_sym_or, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(6994), 1, - anon_sym_EQ, - ACTIONS(6996), 1, + ACTIONS(7054), 1, sym__newline, - STATE(4799), 1, + STATE(4712), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4012), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [171145] = 7, - ACTIONS(3718), 1, - anon_sym_LBRACK, - ACTIONS(6256), 1, + [171254] = 8, + ACTIONS(6104), 1, + anon_sym_as, + ACTIONS(6106), 1, + anon_sym_if, + ACTIONS(6108), 1, + anon_sym_and, + ACTIONS(6110), 1, + anon_sym_or, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(6596), 1, - anon_sym_EQ, - ACTIONS(6598), 1, + ACTIONS(7056), 1, sym__newline, - STATE(4837), 1, + STATE(4713), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4274), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [171169] = 8, - ACTIONS(6029), 1, + [171280] = 8, + ACTIONS(6104), 1, anon_sym_as, - ACTIONS(6031), 1, + ACTIONS(6106), 1, anon_sym_if, - ACTIONS(6033), 1, + ACTIONS(6108), 1, anon_sym_and, - ACTIONS(6035), 1, + ACTIONS(6110), 1, anon_sym_or, - ACTIONS(6256), 1, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(6998), 1, + ACTIONS(7058), 1, sym__newline, - STATE(5095), 1, + STATE(4714), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [171195] = 8, - ACTIONS(6143), 1, - anon_sym_async, - ACTIONS(6145), 1, - anon_sym_for, - ACTIONS(7000), 1, - anon_sym_COMMA, - ACTIONS(7002), 1, - anon_sym_RBRACE, - STATE(3999), 1, - sym_for_in_clause, - STATE(4792), 1, - aux_sym_dictionary_repeat1, - STATE(5708), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [171221] = 8, - ACTIONS(6029), 1, + [171306] = 8, + ACTIONS(6104), 1, anon_sym_as, - ACTIONS(6031), 1, + ACTIONS(6106), 1, anon_sym_if, - ACTIONS(6033), 1, + ACTIONS(6108), 1, anon_sym_and, - ACTIONS(6035), 1, + ACTIONS(6110), 1, anon_sym_or, - ACTIONS(6256), 1, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(7004), 1, + ACTIONS(7060), 1, sym__newline, - STATE(4673), 1, + STATE(4715), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [171247] = 8, - ACTIONS(6029), 1, + [171332] = 8, + ACTIONS(6104), 1, anon_sym_as, - ACTIONS(6031), 1, + ACTIONS(6106), 1, anon_sym_if, - ACTIONS(6033), 1, + ACTIONS(6108), 1, anon_sym_and, - ACTIONS(6035), 1, + ACTIONS(6110), 1, anon_sym_or, - ACTIONS(6256), 1, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(7006), 1, + ACTIONS(7062), 1, sym__newline, - STATE(4674), 1, + STATE(4717), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [171273] = 7, - ACTIONS(3718), 1, + [171358] = 7, + ACTIONS(3722), 1, anon_sym_LBRACK, - ACTIONS(6256), 1, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(6604), 1, + ACTIONS(7064), 1, anon_sym_EQ, - ACTIONS(6606), 1, + ACTIONS(7066), 1, sym__newline, - STATE(5097), 1, + STATE(4719), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4274), 2, + STATE(4209), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [171297] = 8, - ACTIONS(6298), 1, - anon_sym_RPAREN, - ACTIONS(6300), 1, - anon_sym_COMMA, - ACTIONS(6928), 1, - anon_sym_as, - ACTIONS(6930), 1, + [171382] = 6, + ACTIONS(7068), 1, anon_sym_if, - ACTIONS(6932), 1, - anon_sym_and, - ACTIONS(6934), 1, - anon_sym_or, - STATE(4747), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [171323] = 5, - ACTIONS(6137), 1, - anon_sym_as, - ACTIONS(6149), 1, - anon_sym_and, - ACTIONS(6151), 1, - anon_sym_or, + ACTIONS(7071), 1, + anon_sym_async, + ACTIONS(7074), 1, + anon_sym_for, + ACTIONS(7077), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7008), 4, - anon_sym_if, + STATE(4024), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [171404] = 6, + ACTIONS(6301), 1, anon_sym_async, + ACTIONS(6303), 1, anon_sym_for, - anon_sym_RBRACE, - [171343] = 6, - ACTIONS(7010), 1, + ACTIONS(6968), 1, + anon_sym_RPAREN, + ACTIONS(7079), 1, anon_sym_if, - ACTIONS(7013), 1, - anon_sym_async, - ACTIONS(7016), 1, - anon_sym_for, - ACTIONS(7019), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4015), 3, + STATE(4130), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [171365] = 7, - ACTIONS(3718), 1, - anon_sym_LBRACK, - ACTIONS(6256), 1, + [171426] = 8, + ACTIONS(3836), 1, + anon_sym_RPAREN, + ACTIONS(3838), 1, anon_sym_COMMA, - ACTIONS(7021), 1, - anon_sym_EQ, - ACTIONS(7023), 1, + ACTIONS(7081), 1, + anon_sym_as, + ACTIONS(7083), 1, + anon_sym_if, + ACTIONS(7085), 1, + anon_sym_and, + ACTIONS(7087), 1, + anon_sym_or, + STATE(5113), 1, + aux_sym__typedargslist_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [171452] = 8, + ACTIONS(6104), 1, + anon_sym_as, + ACTIONS(6106), 1, + anon_sym_if, + ACTIONS(6108), 1, + anon_sym_and, + ACTIONS(6110), 1, + anon_sym_or, + ACTIONS(6315), 1, + anon_sym_COMMA, + ACTIONS(7089), 1, sym__newline, - STATE(4793), 1, + STATE(4816), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4274), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [171389] = 8, - ACTIONS(6143), 1, - anon_sym_async, - ACTIONS(6145), 1, - anon_sym_for, - ACTIONS(7025), 1, + [171478] = 8, + ACTIONS(6104), 1, + anon_sym_as, + ACTIONS(6106), 1, + anon_sym_if, + ACTIONS(6108), 1, + anon_sym_and, + ACTIONS(6110), 1, + anon_sym_or, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(7027), 1, - anon_sym_RBRACE, - STATE(3999), 1, - sym_for_in_clause, - STATE(4822), 1, - aux_sym_dictionary_repeat1, - STATE(5386), 1, - sym__comprehension_clauses, + ACTIONS(7091), 1, + sym__newline, + STATE(4820), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [171415] = 8, - ACTIONS(6029), 1, + [171504] = 8, + ACTIONS(6104), 1, anon_sym_as, - ACTIONS(6031), 1, + ACTIONS(6106), 1, anon_sym_if, - ACTIONS(6033), 1, + ACTIONS(6108), 1, anon_sym_and, - ACTIONS(6035), 1, + ACTIONS(6110), 1, anon_sym_or, - ACTIONS(6256), 1, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(7029), 1, + ACTIONS(7093), 1, sym__newline, - STATE(4675), 1, + STATE(4724), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [171441] = 7, - ACTIONS(3718), 1, - anon_sym_LBRACK, - ACTIONS(6256), 1, + [171530] = 8, + ACTIONS(6104), 1, + anon_sym_as, + ACTIONS(6106), 1, + anon_sym_if, + ACTIONS(6108), 1, + anon_sym_and, + ACTIONS(6110), 1, + anon_sym_or, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(7031), 1, - anon_sym_EQ, - ACTIONS(7033), 1, + ACTIONS(7095), 1, sym__newline, - STATE(4677), 1, + STATE(4725), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4274), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [171465] = 8, - ACTIONS(6311), 1, - anon_sym_RPAREN, - ACTIONS(6313), 1, - anon_sym_COMMA, - ACTIONS(6928), 1, + [171556] = 8, + ACTIONS(6104), 1, anon_sym_as, - ACTIONS(6930), 1, + ACTIONS(6106), 1, anon_sym_if, - ACTIONS(6932), 1, + ACTIONS(6108), 1, anon_sym_and, - ACTIONS(6934), 1, + ACTIONS(6110), 1, anon_sym_or, - STATE(4800), 1, - aux_sym_argument_list_repeat1, + ACTIONS(6315), 1, + anon_sym_COMMA, + ACTIONS(7097), 1, + sym__newline, + STATE(4726), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [171491] = 7, - ACTIONS(3718), 1, - anon_sym_LBRACK, - ACTIONS(6256), 1, + [171582] = 8, + ACTIONS(6104), 1, + anon_sym_as, + ACTIONS(6106), 1, + anon_sym_if, + ACTIONS(6108), 1, + anon_sym_and, + ACTIONS(6110), 1, + anon_sym_or, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(7035), 1, - anon_sym_EQ, - ACTIONS(7037), 1, + ACTIONS(7099), 1, sym__newline, - STATE(5100), 1, + STATE(4728), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4129), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [171515] = 7, - ACTIONS(3718), 1, + [171608] = 7, + ACTIONS(3722), 1, anon_sym_LBRACK, - ACTIONS(6256), 1, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(6978), 1, - sym__newline, - ACTIONS(7039), 1, + ACTIONS(6634), 1, anon_sym_EQ, - STATE(5101), 1, + ACTIONS(6636), 1, + sym__newline, + STATE(4824), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4274), 2, + STATE(4209), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [171539] = 7, - ACTIONS(3718), 1, + [171632] = 7, + ACTIONS(3722), 1, anon_sym_LBRACK, - ACTIONS(6256), 1, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(7041), 1, + ACTIONS(7101), 1, anon_sym_EQ, - ACTIONS(7043), 1, + ACTIONS(7103), 1, sym__newline, - STATE(5110), 1, + STATE(4831), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4133), 2, + STATE(4056), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [171563] = 7, - ACTIONS(3718), 1, + [171656] = 7, + ACTIONS(3722), 1, anon_sym_LBRACK, - ACTIONS(6256), 1, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(6998), 1, + ACTIONS(7089), 1, sym__newline, - ACTIONS(7045), 1, + ACTIONS(7105), 1, anon_sym_EQ, - STATE(5115), 1, + STATE(4832), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4274), 2, + STATE(4209), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [171587] = 7, - ACTIONS(3718), 1, + [171680] = 7, + ACTIONS(3722), 1, anon_sym_LBRACK, - ACTIONS(6256), 1, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(7047), 1, + ACTIONS(7107), 1, anon_sym_EQ, - ACTIONS(7049), 1, + ACTIONS(7109), 1, sym__newline, - STATE(4678), 1, + STATE(4833), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4274), 2, + STATE(4057), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [171611] = 4, - ACTIONS(6762), 1, - anon_sym_DOT, - STATE(4037), 1, - aux_sym_class_definition_repeat2, + [171704] = 8, + ACTIONS(6104), 1, + anon_sym_as, + ACTIONS(6106), 1, + anon_sym_if, + ACTIONS(6108), 1, + anon_sym_and, + ACTIONS(6110), 1, + anon_sym_or, + ACTIONS(6315), 1, + anon_sym_COMMA, + ACTIONS(7111), 1, + sym__newline, + STATE(4734), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6486), 5, - anon_sym_LPAREN, + [171730] = 7, + ACTIONS(3722), 1, + anon_sym_LBRACK, + ACTIONS(6315), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [171629] = 6, - ACTIONS(4245), 1, + ACTIONS(7091), 1, + sym__newline, + ACTIONS(7113), 1, + anon_sym_EQ, + STATE(4834), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4209), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [171754] = 6, + ACTIONS(4261), 1, anon_sym_LBRACK, - ACTIONS(7053), 1, + ACTIONS(7117), 1, anon_sym_EQ, - STATE(4351), 1, + STATE(4397), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7051), 2, + ACTIONS(7115), 2, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(7055), 2, + ACTIONS(7119), 2, anon_sym_not, anon_sym_or, - [171651] = 8, - ACTIONS(6143), 1, + [171776] = 7, + ACTIONS(5213), 1, + sym_identifier, + ACTIONS(7121), 1, + anon_sym_DOT, + ACTIONS(7123), 1, + anon_sym___future__, + STATE(4321), 1, + aux_sym_import_prefix_repeat1, + STATE(4557), 1, + sym_import_prefix, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(5238), 2, + sym_relative_import, + sym_dotted_name, + [171800] = 7, + ACTIONS(3211), 1, + anon_sym_COLON, + ACTIONS(6614), 1, + anon_sym_as, + ACTIONS(6616), 1, + anon_sym_if, + ACTIONS(6618), 1, + anon_sym_and, + ACTIONS(6620), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3209), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [171824] = 8, + ACTIONS(6155), 1, anon_sym_async, - ACTIONS(6145), 1, + ACTIONS(6157), 1, anon_sym_for, - ACTIONS(7057), 1, + ACTIONS(7125), 1, anon_sym_COMMA, - ACTIONS(7059), 1, + ACTIONS(7127), 1, anon_sym_RBRACE, - STATE(3999), 1, + STATE(4115), 1, sym_for_in_clause, - STATE(4857), 1, + STATE(4760), 1, aux_sym_dictionary_repeat1, - STATE(5527), 1, + STATE(5726), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [171677] = 5, - ACTIONS(6364), 1, + [171850] = 8, + ACTIONS(7081), 1, anon_sym_as, - ACTIONS(6372), 1, + ACTIONS(7083), 1, + anon_sym_if, + ACTIONS(7085), 1, anon_sym_and, - ACTIONS(6374), 1, + ACTIONS(7087), 1, anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7008), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [171697] = 7, - ACTIONS(3718), 1, - anon_sym_LBRACK, - ACTIONS(6256), 1, + ACTIONS(7129), 1, + anon_sym_RPAREN, + ACTIONS(7131), 1, anon_sym_COMMA, - ACTIONS(7061), 1, - anon_sym_EQ, - ACTIONS(7063), 1, - sym__newline, - STATE(4679), 1, - aux_sym_cvar_decl_repeat2, + STATE(4923), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4081), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [171721] = 6, - ACTIONS(7019), 1, - anon_sym_RBRACK, - ACTIONS(7065), 1, + [171876] = 8, + ACTIONS(6670), 1, + anon_sym_as, + ACTIONS(6672), 1, anon_sym_if, - ACTIONS(7068), 1, - anon_sym_async, - ACTIONS(7071), 1, - anon_sym_for, + ACTIONS(6674), 1, + anon_sym_and, + ACTIONS(6676), 1, + anon_sym_or, + ACTIONS(7133), 1, + anon_sym_COMMA, + ACTIONS(7135), 1, + anon_sym_COLON, + STATE(5142), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4031), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [171743] = 8, - ACTIONS(6928), 1, + [171902] = 8, + ACTIONS(6614), 1, anon_sym_as, - ACTIONS(6930), 1, + ACTIONS(6616), 1, anon_sym_if, - ACTIONS(6932), 1, + ACTIONS(6618), 1, anon_sym_and, - ACTIONS(6934), 1, + ACTIONS(6620), 1, anon_sym_or, - ACTIONS(7074), 1, - anon_sym_RPAREN, - ACTIONS(7076), 1, + ACTIONS(6998), 1, anon_sym_COMMA, - STATE(4917), 1, - aux_sym_argument_list_repeat1, + ACTIONS(7137), 1, + anon_sym_RBRACK, + STATE(4791), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [171769] = 7, - ACTIONS(5215), 1, - sym_identifier, - ACTIONS(7078), 1, + [171928] = 4, + ACTIONS(7139), 1, anon_sym_DOT, - ACTIONS(7080), 1, - anon_sym___future__, - STATE(4455), 1, - aux_sym_import_prefix_repeat1, - STATE(4581), 1, - sym_import_prefix, + STATE(4046), 1, + aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5297), 2, - sym_relative_import, - sym_dotted_name, - [171793] = 7, - ACTIONS(3718), 1, - anon_sym_LBRACK, - ACTIONS(6256), 1, + ACTIONS(5577), 5, + anon_sym_LPAREN, anon_sym_COMMA, - ACTIONS(7006), 1, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [171946] = 8, + ACTIONS(6104), 1, + anon_sym_as, + ACTIONS(6106), 1, + anon_sym_if, + ACTIONS(6108), 1, + anon_sym_and, + ACTIONS(6110), 1, + anon_sym_or, + ACTIONS(6315), 1, + anon_sym_COMMA, + ACTIONS(7142), 1, sym__newline, - ACTIONS(7082), 1, - anon_sym_EQ, - STATE(4680), 1, + STATE(5119), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4274), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [171817] = 8, - ACTIONS(6143), 1, + [171972] = 8, + ACTIONS(6329), 1, + anon_sym_RPAREN, + ACTIONS(6331), 1, + anon_sym_COMMA, + ACTIONS(7081), 1, + anon_sym_as, + ACTIONS(7083), 1, + anon_sym_if, + ACTIONS(7085), 1, + anon_sym_and, + ACTIONS(7087), 1, + anon_sym_or, + STATE(4772), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [171998] = 8, + ACTIONS(6155), 1, anon_sym_async, - ACTIONS(6145), 1, + ACTIONS(6157), 1, anon_sym_for, - ACTIONS(7084), 1, + ACTIONS(7144), 1, anon_sym_COMMA, - ACTIONS(7086), 1, + ACTIONS(7146), 1, anon_sym_RBRACE, - STATE(3999), 1, + STATE(4115), 1, sym_for_in_clause, - STATE(4881), 1, + STATE(4814), 1, aux_sym_dictionary_repeat1, - STATE(5650), 1, + STATE(5402), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [171843] = 8, - ACTIONS(6331), 1, - anon_sym_RPAREN, - ACTIONS(6333), 1, - anon_sym_COMMA, - ACTIONS(6928), 1, + [172024] = 8, + ACTIONS(6104), 1, anon_sym_as, - ACTIONS(6930), 1, + ACTIONS(6106), 1, anon_sym_if, - ACTIONS(6932), 1, + ACTIONS(6108), 1, anon_sym_and, - ACTIONS(6934), 1, + ACTIONS(6110), 1, anon_sym_or, - STATE(4865), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [171869] = 4, - ACTIONS(6762), 1, - anon_sym_DOT, - STATE(4058), 1, - aux_sym_class_definition_repeat2, + ACTIONS(6315), 1, + anon_sym_COMMA, + ACTIONS(7148), 1, + sym__newline, + STATE(5125), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6502), 5, - anon_sym_LPAREN, - anon_sym_COMMA, + [172050] = 8, + ACTIONS(6104), 1, anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [171887] = 8, - ACTIONS(6029), 1, - anon_sym_as, - ACTIONS(6031), 1, + ACTIONS(6106), 1, anon_sym_if, - ACTIONS(6033), 1, + ACTIONS(6108), 1, anon_sym_and, - ACTIONS(6035), 1, + ACTIONS(6110), 1, anon_sym_or, - ACTIONS(6623), 1, - sym__newline, - ACTIONS(7088), 1, + ACTIONS(6315), 1, anon_sym_COMMA, - STATE(5072), 1, - aux_sym_cvar_def_repeat1, + ACTIONS(7150), 1, + sym__newline, + STATE(4892), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [171913] = 8, - ACTIONS(6029), 1, + [172076] = 8, + ACTIONS(6402), 1, + anon_sym_RPAREN, + ACTIONS(6404), 1, + anon_sym_COMMA, + ACTIONS(7081), 1, anon_sym_as, - ACTIONS(6031), 1, + ACTIONS(7083), 1, anon_sym_if, - ACTIONS(6033), 1, + ACTIONS(7085), 1, anon_sym_and, - ACTIONS(6035), 1, + ACTIONS(7087), 1, anon_sym_or, - ACTIONS(6554), 1, - sym__newline, - ACTIONS(7090), 1, - anon_sym_COMMA, - STATE(5117), 1, - aux_sym_cvar_def_repeat1, + STATE(4774), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [171939] = 8, - ACTIONS(6029), 1, + [172102] = 8, + ACTIONS(6614), 1, anon_sym_as, - ACTIONS(6031), 1, + ACTIONS(6616), 1, anon_sym_if, - ACTIONS(6033), 1, + ACTIONS(6618), 1, anon_sym_and, - ACTIONS(6035), 1, + ACTIONS(6620), 1, anon_sym_or, - ACTIONS(6256), 1, + ACTIONS(6998), 1, anon_sym_COMMA, - ACTIONS(7092), 1, - sym__newline, - STATE(4862), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(7152), 1, + anon_sym_RBRACK, + STATE(5096), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [171965] = 8, - ACTIONS(6029), 1, + [172128] = 8, + ACTIONS(6104), 1, anon_sym_as, - ACTIONS(6031), 1, + ACTIONS(6106), 1, anon_sym_if, - ACTIONS(6033), 1, + ACTIONS(6108), 1, anon_sym_and, - ACTIONS(6035), 1, + ACTIONS(6110), 1, anon_sym_or, - ACTIONS(6659), 1, - sym__newline, - ACTIONS(7094), 1, + ACTIONS(6315), 1, anon_sym_COMMA, - STATE(4928), 1, - aux_sym_cvar_def_repeat1, + ACTIONS(7154), 1, + sym__newline, + STATE(4896), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [171991] = 8, - ACTIONS(6029), 1, + [172154] = 8, + ACTIONS(6104), 1, anon_sym_as, - ACTIONS(6031), 1, + ACTIONS(6106), 1, anon_sym_if, - ACTIONS(6033), 1, + ACTIONS(6108), 1, anon_sym_and, - ACTIONS(6035), 1, + ACTIONS(6110), 1, anon_sym_or, - ACTIONS(6256), 1, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(6618), 1, + ACTIONS(7156), 1, sym__newline, - STATE(4932), 1, + STATE(4899), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172017] = 7, - ACTIONS(3718), 1, + [172180] = 7, + ACTIONS(3722), 1, anon_sym_LBRACK, - ACTIONS(6256), 1, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(6612), 1, + ACTIONS(7158), 1, anon_sym_EQ, - ACTIONS(6614), 1, + ACTIONS(7160), 1, sym__newline, - STATE(4936), 1, + STATE(4902), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4274), 2, + STATE(4209), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [172041] = 8, - ACTIONS(6029), 1, - anon_sym_as, - ACTIONS(6031), 1, - anon_sym_if, - ACTIONS(6033), 1, - anon_sym_and, - ACTIONS(6035), 1, - anon_sym_or, - ACTIONS(6256), 1, + [172204] = 7, + ACTIONS(3722), 1, + anon_sym_LBRACK, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(6562), 1, + ACTIONS(7162), 1, + anon_sym_EQ, + ACTIONS(7164), 1, sym__newline, - STATE(5118), 1, + STATE(4907), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172067] = 8, - ACTIONS(6341), 1, - anon_sym_RPAREN, - ACTIONS(6343), 1, - anon_sym_COMMA, - ACTIONS(6928), 1, - anon_sym_as, - ACTIONS(6930), 1, - anon_sym_if, - ACTIONS(6932), 1, - anon_sym_and, - ACTIONS(6934), 1, - anon_sym_or, - STATE(4903), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [172093] = 7, - ACTIONS(3718), 1, + STATE(4209), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [172228] = 7, + ACTIONS(3722), 1, anon_sym_LBRACK, - ACTIONS(6256), 1, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(7096), 1, + ACTIONS(7166), 1, anon_sym_EQ, - ACTIONS(7098), 1, + ACTIONS(7168), 1, sym__newline, - STATE(4942), 1, + STATE(4911), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4073), 2, + STATE(4076), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [172117] = 7, - ACTIONS(3718), 1, + [172252] = 7, + ACTIONS(3722), 1, anon_sym_LBRACK, - ACTIONS(6256), 1, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(6616), 1, - anon_sym_EQ, - ACTIONS(6618), 1, + ACTIONS(7154), 1, sym__newline, - STATE(4943), 1, + ACTIONS(7170), 1, + anon_sym_EQ, + STATE(4913), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4274), 2, + STATE(4209), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [172141] = 8, - ACTIONS(6539), 1, + [172276] = 6, + ACTIONS(6301), 1, + anon_sym_async, + ACTIONS(6303), 1, + anon_sym_for, + ACTIONS(7079), 1, + anon_sym_if, + ACTIONS(7172), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4025), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [172298] = 8, + ACTIONS(6155), 1, + anon_sym_async, + ACTIONS(6157), 1, + anon_sym_for, + ACTIONS(7174), 1, + anon_sym_COMMA, + ACTIONS(7176), 1, + anon_sym_RBRACE, + STATE(4115), 1, + sym_for_in_clause, + STATE(4849), 1, + aux_sym_dictionary_repeat1, + STATE(5530), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [172324] = 8, + ACTIONS(6550), 1, + anon_sym_RPAREN, + ACTIONS(7081), 1, anon_sym_as, - ACTIONS(6541), 1, + ACTIONS(7083), 1, anon_sym_if, - ACTIONS(6543), 1, + ACTIONS(7085), 1, anon_sym_and, - ACTIONS(6545), 1, + ACTIONS(7087), 1, anon_sym_or, - ACTIONS(7100), 1, + ACTIONS(7178), 1, anon_sym_COMMA, - ACTIONS(7102), 1, - anon_sym_COLON, - STATE(4947), 1, + STATE(4730), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172167] = 8, - ACTIONS(6418), 1, + [172350] = 8, + ACTIONS(6416), 1, anon_sym_RPAREN, - ACTIONS(6420), 1, + ACTIONS(6418), 1, anon_sym_COMMA, - ACTIONS(6928), 1, + ACTIONS(7081), 1, anon_sym_as, - ACTIONS(6930), 1, + ACTIONS(7083), 1, anon_sym_if, - ACTIONS(6932), 1, + ACTIONS(7085), 1, anon_sym_and, - ACTIONS(6934), 1, + ACTIONS(7087), 1, anon_sym_or, - STATE(4909), 1, + STATE(4826), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172193] = 8, - ACTIONS(6029), 1, + [172376] = 8, + ACTIONS(6670), 1, anon_sym_as, - ACTIONS(6031), 1, + ACTIONS(6672), 1, anon_sym_if, - ACTIONS(6033), 1, + ACTIONS(6674), 1, anon_sym_and, - ACTIONS(6035), 1, + ACTIONS(6676), 1, anon_sym_or, - ACTIONS(6256), 1, + ACTIONS(6970), 1, anon_sym_COMMA, - ACTIONS(7104), 1, - sym__newline, - STATE(4972), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(7180), 1, + anon_sym_COLON, + STATE(4680), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172219] = 8, - ACTIONS(6321), 1, - anon_sym_RPAREN, - ACTIONS(6323), 1, - anon_sym_COMMA, - ACTIONS(6928), 1, + [172402] = 5, + ACTIONS(6361), 1, anon_sym_as, - ACTIONS(6930), 1, - anon_sym_if, - ACTIONS(6932), 1, + ACTIONS(6369), 1, anon_sym_and, - ACTIONS(6934), 1, + ACTIONS(6371), 1, anon_sym_or, - STATE(4831), 1, - aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172245] = 3, + ACTIONS(7182), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [172422] = 6, + ACTIONS(7077), 1, + anon_sym_RBRACK, + ACTIONS(7184), 1, + anon_sym_if, + ACTIONS(7187), 1, + anon_sym_async, + ACTIONS(7190), 1, + anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7108), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7106), 5, + STATE(4066), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [172444] = 8, + ACTIONS(6375), 1, + anon_sym_RPAREN, + ACTIONS(6377), 1, anon_sym_COMMA, + ACTIONS(7081), 1, anon_sym_as, + ACTIONS(7083), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [172261] = 7, - ACTIONS(6523), 1, - anon_sym_as, - ACTIONS(6525), 1, - anon_sym_if, - ACTIONS(6527), 1, + ACTIONS(7085), 1, anon_sym_and, - ACTIONS(6529), 1, + ACTIONS(7087), 1, anon_sym_or, - ACTIONS(6732), 1, - anon_sym_COLON, + STATE(5093), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7110), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [172285] = 8, - ACTIONS(6029), 1, + [172470] = 8, + ACTIONS(6104), 1, anon_sym_as, - ACTIONS(6031), 1, + ACTIONS(6106), 1, anon_sym_if, - ACTIONS(6033), 1, + ACTIONS(6108), 1, anon_sym_and, - ACTIONS(6035), 1, + ACTIONS(6110), 1, anon_sym_or, - ACTIONS(6256), 1, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(7112), 1, + ACTIONS(7193), 1, sym__newline, - STATE(4872), 1, + STATE(4951), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172311] = 7, - ACTIONS(3718), 1, - anon_sym_LBRACK, - ACTIONS(6256), 1, + [172496] = 8, + ACTIONS(6104), 1, + anon_sym_as, + ACTIONS(6106), 1, + anon_sym_if, + ACTIONS(6108), 1, + anon_sym_and, + ACTIONS(6110), 1, + anon_sym_or, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(6556), 1, - anon_sym_EQ, - ACTIONS(6558), 1, + ACTIONS(7195), 1, sym__newline, - STATE(5126), 1, + STATE(4952), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4274), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [172335] = 8, - ACTIONS(6928), 1, + [172522] = 8, + ACTIONS(6104), 1, anon_sym_as, - ACTIONS(6930), 1, + ACTIONS(6106), 1, anon_sym_if, - ACTIONS(6932), 1, + ACTIONS(6108), 1, anon_sym_and, - ACTIONS(6934), 1, + ACTIONS(6110), 1, anon_sym_or, - ACTIONS(7114), 1, - anon_sym_RPAREN, - ACTIONS(7116), 1, + ACTIONS(6315), 1, anon_sym_COMMA, - STATE(4935), 1, - aux_sym_argument_list_repeat1, + ACTIONS(7197), 1, + sym__newline, + STATE(5144), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172361] = 7, - ACTIONS(6523), 1, + [172548] = 8, + ACTIONS(6104), 1, anon_sym_as, - ACTIONS(6525), 1, + ACTIONS(6106), 1, anon_sym_if, - ACTIONS(6527), 1, + ACTIONS(6108), 1, anon_sym_and, - ACTIONS(6529), 1, + ACTIONS(6110), 1, anon_sym_or, - ACTIONS(7118), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3333), 2, + ACTIONS(6315), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [172385] = 4, - ACTIONS(7120), 1, - anon_sym_DOT, - STATE(4058), 1, - aux_sym_class_definition_repeat2, + ACTIONS(7199), 1, + sym__newline, + STATE(4957), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5498), 5, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [172403] = 8, - ACTIONS(6029), 1, + [172574] = 8, + ACTIONS(6104), 1, anon_sym_as, - ACTIONS(6031), 1, + ACTIONS(6106), 1, anon_sym_if, - ACTIONS(6033), 1, + ACTIONS(6108), 1, anon_sym_and, - ACTIONS(6035), 1, + ACTIONS(6110), 1, anon_sym_or, - ACTIONS(6521), 1, - sym__newline, - ACTIONS(7123), 1, + ACTIONS(6315), 1, anon_sym_COMMA, - STATE(4700), 1, - aux_sym_cvar_def_repeat1, + ACTIONS(7201), 1, + sym__newline, + STATE(4959), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172429] = 8, - ACTIONS(6523), 1, + [172600] = 8, + ACTIONS(6104), 1, anon_sym_as, - ACTIONS(6525), 1, + ACTIONS(6106), 1, anon_sym_if, - ACTIONS(6527), 1, + ACTIONS(6108), 1, anon_sym_and, - ACTIONS(6529), 1, + ACTIONS(6110), 1, anon_sym_or, - ACTIONS(6988), 1, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(7125), 1, - anon_sym_RBRACK, - STATE(4989), 1, - aux_sym_type_index_repeat1, + ACTIONS(7203), 1, + sym__newline, + STATE(4965), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172455] = 4, - ACTIONS(4239), 1, - anon_sym_DOT, - STATE(3986), 1, - aux_sym_class_definition_repeat2, + [172626] = 8, + ACTIONS(6155), 1, + anon_sym_async, + ACTIONS(6157), 1, + anon_sym_for, + ACTIONS(7205), 1, + anon_sym_COMMA, + ACTIONS(7207), 1, + anon_sym_RBRACE, + STATE(4115), 1, + sym_for_in_clause, + STATE(4884), 1, + aux_sym_dictionary_repeat1, + STATE(5457), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6486), 5, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, + [172652] = 8, + ACTIONS(6104), 1, anon_sym_as, - anon_sym_PIPE, - [172473] = 7, - ACTIONS(3718), 1, + ACTIONS(6106), 1, + anon_sym_if, + ACTIONS(6108), 1, + anon_sym_and, + ACTIONS(6110), 1, + anon_sym_or, + ACTIONS(6315), 1, + anon_sym_COMMA, + ACTIONS(7209), 1, + sym__newline, + STATE(5150), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [172678] = 7, + ACTIONS(3722), 1, anon_sym_LBRACK, - ACTIONS(6256), 1, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(7127), 1, + ACTIONS(7211), 1, anon_sym_EQ, - ACTIONS(7129), 1, + ACTIONS(7213), 1, sym__newline, - STATE(5131), 1, + STATE(4967), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3979), 2, + STATE(4209), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [172497] = 8, - ACTIONS(3820), 1, - anon_sym_RPAREN, - ACTIONS(3822), 1, - anon_sym_COMMA, - ACTIONS(6928), 1, + [172702] = 8, + ACTIONS(7081), 1, anon_sym_as, - ACTIONS(6930), 1, + ACTIONS(7083), 1, anon_sym_if, - ACTIONS(6932), 1, + ACTIONS(7085), 1, anon_sym_and, - ACTIONS(6934), 1, + ACTIONS(7087), 1, anon_sym_or, - STATE(5093), 1, - aux_sym__typedargslist_repeat1, + ACTIONS(7215), 1, + anon_sym_RPAREN, + ACTIONS(7217), 1, + anon_sym_COMMA, + STATE(4958), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172523] = 8, - ACTIONS(6029), 1, + [172728] = 8, + ACTIONS(6104), 1, anon_sym_as, - ACTIONS(6031), 1, + ACTIONS(6106), 1, anon_sym_if, - ACTIONS(6033), 1, + ACTIONS(6108), 1, anon_sym_and, - ACTIONS(6035), 1, + ACTIONS(6110), 1, anon_sym_or, - ACTIONS(6256), 1, - anon_sym_COMMA, - ACTIONS(7131), 1, + ACTIONS(6632), 1, sym__newline, - STATE(4692), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(7219), 1, + anon_sym_COMMA, + STATE(4983), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172549] = 8, - ACTIONS(6450), 1, - anon_sym_RPAREN, - ACTIONS(6452), 1, + [172754] = 8, + ACTIONS(6155), 1, + anon_sym_async, + ACTIONS(6157), 1, + anon_sym_for, + ACTIONS(7221), 1, anon_sym_COMMA, - ACTIONS(6928), 1, + ACTIONS(7223), 1, + anon_sym_RBRACE, + STATE(4115), 1, + sym_for_in_clause, + STATE(4912), 1, + aux_sym_dictionary_repeat1, + STATE(5652), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [172780] = 8, + ACTIONS(6104), 1, anon_sym_as, - ACTIONS(6930), 1, + ACTIONS(6106), 1, anon_sym_if, - ACTIONS(6932), 1, + ACTIONS(6108), 1, anon_sym_and, - ACTIONS(6934), 1, + ACTIONS(6110), 1, anon_sym_or, - STATE(4717), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [172575] = 4, - ACTIONS(2475), 1, - sym_string_start, + ACTIONS(6315), 1, + anon_sym_COMMA, + ACTIONS(7225), 1, + sym__newline, + STATE(4986), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2200), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(6904), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [172593] = 8, - ACTIONS(6029), 1, + [172806] = 8, + ACTIONS(6104), 1, anon_sym_as, - ACTIONS(6031), 1, + ACTIONS(6106), 1, anon_sym_if, - ACTIONS(6033), 1, + ACTIONS(6108), 1, anon_sym_and, - ACTIONS(6035), 1, + ACTIONS(6110), 1, anon_sym_or, - ACTIONS(6256), 1, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(7133), 1, + ACTIONS(7227), 1, sym__newline, - STATE(5007), 1, + STATE(5156), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172619] = 8, - ACTIONS(6029), 1, + [172832] = 8, + ACTIONS(6444), 1, + anon_sym_RPAREN, + ACTIONS(6446), 1, + anon_sym_COMMA, + ACTIONS(7081), 1, anon_sym_as, - ACTIONS(6031), 1, + ACTIONS(7083), 1, anon_sym_if, - ACTIONS(6033), 1, + ACTIONS(7085), 1, anon_sym_and, - ACTIONS(6035), 1, + ACTIONS(7087), 1, anon_sym_or, - ACTIONS(6256), 1, - anon_sym_COMMA, - ACTIONS(7135), 1, - sym__newline, - STATE(5012), 1, - aux_sym_cvar_decl_repeat2, + STATE(4891), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172645] = 8, - ACTIONS(6029), 1, + [172858] = 8, + ACTIONS(6104), 1, anon_sym_as, - ACTIONS(6031), 1, + ACTIONS(6106), 1, anon_sym_if, - ACTIONS(6033), 1, + ACTIONS(6108), 1, anon_sym_and, - ACTIONS(6035), 1, + ACTIONS(6110), 1, anon_sym_or, - ACTIONS(6256), 1, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(7137), 1, + ACTIONS(7229), 1, sym__newline, - STATE(4693), 1, + STATE(4987), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172671] = 8, - ACTIONS(6029), 1, + [172884] = 8, + ACTIONS(6104), 1, anon_sym_as, - ACTIONS(6031), 1, + ACTIONS(6106), 1, anon_sym_if, - ACTIONS(6033), 1, + ACTIONS(6108), 1, anon_sym_and, - ACTIONS(6035), 1, + ACTIONS(6110), 1, anon_sym_or, - ACTIONS(6256), 1, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(7139), 1, + ACTIONS(7231), 1, sym__newline, - STATE(4694), 1, + STATE(4988), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172697] = 8, - ACTIONS(6539), 1, + [172910] = 8, + ACTIONS(6104), 1, anon_sym_as, - ACTIONS(6541), 1, + ACTIONS(6106), 1, anon_sym_if, - ACTIONS(6543), 1, + ACTIONS(6108), 1, anon_sym_and, - ACTIONS(6545), 1, + ACTIONS(6110), 1, anon_sym_or, - ACTIONS(7141), 1, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(7143), 1, - anon_sym_COLON, - STATE(4824), 1, - aux_sym_match_statement_repeat1, + ACTIONS(7233), 1, + sym__newline, + STATE(4990), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172723] = 8, - ACTIONS(6539), 1, + [172936] = 8, + ACTIONS(3826), 1, + anon_sym_RPAREN, + ACTIONS(3828), 1, + anon_sym_COMMA, + ACTIONS(7081), 1, anon_sym_as, - ACTIONS(6541), 1, + ACTIONS(7083), 1, anon_sym_if, - ACTIONS(6543), 1, + ACTIONS(7085), 1, anon_sym_and, - ACTIONS(6545), 1, + ACTIONS(7087), 1, anon_sym_or, - ACTIONS(7100), 1, - anon_sym_COMMA, - ACTIONS(7145), 1, - anon_sym_COLON, - STATE(4947), 1, - aux_sym_assert_statement_repeat1, + STATE(4647), 1, + aux_sym__typedargslist_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172749] = 7, - ACTIONS(3718), 1, - anon_sym_LBRACK, - ACTIONS(6256), 1, - anon_sym_COMMA, - ACTIONS(6631), 1, - anon_sym_EQ, - ACTIONS(6633), 1, - sym__newline, - STATE(5013), 1, - aux_sym_cvar_decl_repeat2, + [172962] = 4, + ACTIONS(1967), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4274), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [172773] = 7, - ACTIONS(3718), 1, - anon_sym_LBRACK, - ACTIONS(6256), 1, + STATE(2098), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(6921), 4, anon_sym_COMMA, - ACTIONS(7147), 1, - anon_sym_EQ, - ACTIONS(7149), 1, - sym__newline, - STATE(5017), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [172980] = 8, + ACTIONS(6457), 1, + anon_sym_RPAREN, + ACTIONS(6459), 1, + anon_sym_COMMA, + ACTIONS(7081), 1, + anon_sym_as, + ACTIONS(7083), 1, + anon_sym_if, + ACTIONS(7085), 1, + anon_sym_and, + ACTIONS(7087), 1, + anon_sym_or, + STATE(4941), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4097), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [172797] = 7, - ACTIONS(3718), 1, - anon_sym_LBRACK, - ACTIONS(6256), 1, + [173006] = 8, + ACTIONS(6104), 1, + anon_sym_as, + ACTIONS(6106), 1, + anon_sym_if, + ACTIONS(6108), 1, + anon_sym_and, + ACTIONS(6110), 1, + anon_sym_or, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(7133), 1, + ACTIONS(6596), 1, sym__newline, - ACTIONS(7151), 1, - anon_sym_EQ, - STATE(5018), 1, + STATE(4999), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4274), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [172821] = 7, - ACTIONS(3718), 1, + [173032] = 7, + ACTIONS(3722), 1, anon_sym_LBRACK, - ACTIONS(6256), 1, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(7153), 1, + ACTIONS(7235), 1, anon_sym_EQ, - ACTIONS(7155), 1, + ACTIONS(7237), 1, sym__newline, - STATE(5021), 1, + STATE(5031), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4101), 2, + STATE(4209), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [172845] = 7, - ACTIONS(3718), 1, + [173056] = 7, + ACTIONS(3722), 1, anon_sym_LBRACK, - ACTIONS(6256), 1, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(7135), 1, - sym__newline, - ACTIONS(7157), 1, + ACTIONS(6590), 1, anon_sym_EQ, - STATE(5023), 1, + ACTIONS(6592), 1, + sym__newline, + STATE(5005), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4274), 2, + STATE(4209), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [172869] = 8, - ACTIONS(6029), 1, + [173080] = 8, + ACTIONS(6104), 1, anon_sym_as, - ACTIONS(6031), 1, + ACTIONS(6106), 1, anon_sym_if, - ACTIONS(6033), 1, + ACTIONS(6108), 1, anon_sym_and, - ACTIONS(6035), 1, + ACTIONS(6110), 1, anon_sym_or, - ACTIONS(6256), 1, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(7159), 1, + ACTIONS(7239), 1, sym__newline, - STATE(4695), 1, + STATE(4998), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172895] = 8, - ACTIONS(6539), 1, + [173106] = 8, + ACTIONS(6432), 1, + anon_sym_RPAREN, + ACTIONS(6434), 1, + anon_sym_COMMA, + ACTIONS(7081), 1, anon_sym_as, - ACTIONS(6541), 1, + ACTIONS(7083), 1, anon_sym_if, - ACTIONS(6543), 1, + ACTIONS(7085), 1, anon_sym_and, - ACTIONS(6545), 1, + ACTIONS(7087), 1, anon_sym_or, - ACTIONS(7100), 1, - anon_sym_COMMA, - ACTIONS(7161), 1, - anon_sym_COLON, - STATE(4947), 1, - aux_sym_assert_statement_repeat1, + STATE(4859), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172921] = 8, - ACTIONS(6029), 1, + [173132] = 6, + ACTIONS(6104), 1, anon_sym_as, - ACTIONS(6031), 1, + ACTIONS(6106), 1, anon_sym_if, - ACTIONS(6033), 1, + ACTIONS(6108), 1, anon_sym_and, - ACTIONS(6035), 1, + ACTIONS(6110), 1, anon_sym_or, - ACTIONS(6256), 1, - anon_sym_COMMA, - ACTIONS(7163), 1, - sym__newline, - STATE(4697), 1, - aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172947] = 7, - ACTIONS(3718), 1, - anon_sym_LBRACK, - ACTIONS(6256), 1, + ACTIONS(7241), 3, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(7165), 1, - anon_sym_EQ, - ACTIONS(7167), 1, + [173154] = 8, + ACTIONS(6104), 1, + anon_sym_as, + ACTIONS(6106), 1, + anon_sym_if, + ACTIONS(6108), 1, + anon_sym_and, + ACTIONS(6110), 1, + anon_sym_or, + ACTIONS(6315), 1, + anon_sym_COMMA, + ACTIONS(7243), 1, sym__newline, - STATE(4699), 1, + STATE(4794), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4274), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [172971] = 8, - ACTIONS(6539), 1, + [173180] = 8, + ACTIONS(7081), 1, anon_sym_as, - ACTIONS(6541), 1, + ACTIONS(7083), 1, anon_sym_if, - ACTIONS(6543), 1, + ACTIONS(7085), 1, anon_sym_and, - ACTIONS(6545), 1, + ACTIONS(7087), 1, anon_sym_or, - ACTIONS(7100), 1, + ACTIONS(7245), 1, + anon_sym_RPAREN, + ACTIONS(7247), 1, anon_sym_COMMA, - ACTIONS(7169), 1, - anon_sym_COLON, - STATE(4947), 1, - aux_sym_assert_statement_repeat1, + STATE(4976), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172997] = 7, - ACTIONS(3718), 1, - anon_sym_LBRACK, - ACTIONS(6256), 1, - anon_sym_COMMA, - ACTIONS(6560), 1, - anon_sym_EQ, - ACTIONS(6562), 1, - sym__newline, - STATE(5133), 1, - aux_sym_cvar_decl_repeat2, + [173206] = 6, + ACTIONS(6104), 1, + anon_sym_as, + ACTIONS(6106), 1, + anon_sym_if, + ACTIONS(6108), 1, + anon_sym_and, + ACTIONS(6110), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4274), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [173021] = 4, - ACTIONS(1408), 1, - sym_string_start, + ACTIONS(7249), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + [173228] = 4, + ACTIONS(4255), 1, + anon_sym_DOT, + STATE(4114), 1, + aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2323), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(6904), 4, + ACTIONS(6548), 5, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [173039] = 8, - ACTIONS(6539), 1, + [173246] = 8, + ACTIONS(6550), 1, + anon_sym_RBRACE, + ACTIONS(7251), 1, + anon_sym_COMMA, + ACTIONS(7253), 1, anon_sym_as, - ACTIONS(6541), 1, + ACTIONS(7255), 1, anon_sym_if, - ACTIONS(6543), 1, + ACTIONS(7257), 1, anon_sym_and, - ACTIONS(6545), 1, + ACTIONS(7259), 1, anon_sym_or, - ACTIONS(7100), 1, - anon_sym_COMMA, - ACTIONS(7171), 1, - anon_sym_COLON, - STATE(4947), 1, + STATE(5157), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173065] = 6, - ACTIONS(6290), 1, - anon_sym_async, - ACTIONS(6292), 1, - anon_sym_for, - ACTIONS(6922), 1, - anon_sym_if, - ACTIONS(6950), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3973), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [173087] = 7, - ACTIONS(3718), 1, - anon_sym_LBRACK, - ACTIONS(6256), 1, - anon_sym_COMMA, - ACTIONS(7173), 1, - anon_sym_EQ, - ACTIONS(7175), 1, - sym__newline, - STATE(4716), 1, - aux_sym_cvar_decl_repeat2, + [173272] = 5, + ACTIONS(6149), 1, + anon_sym_as, + ACTIONS(6161), 1, + anon_sym_and, + ACTIONS(6163), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4005), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [173111] = 7, - ACTIONS(3718), 1, - anon_sym_LBRACK, - ACTIONS(6256), 1, + ACTIONS(7182), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [173292] = 8, + ACTIONS(6104), 1, + anon_sym_as, + ACTIONS(6106), 1, + anon_sym_if, + ACTIONS(6108), 1, + anon_sym_and, + ACTIONS(6110), 1, + anon_sym_or, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(6428), 1, - anon_sym_EQ, - ACTIONS(6430), 1, + ACTIONS(7261), 1, sym__newline, - STATE(4723), 1, + STATE(5064), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4274), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [173135] = 8, - ACTIONS(6029), 1, + [173318] = 8, + ACTIONS(6670), 1, anon_sym_as, - ACTIONS(6031), 1, + ACTIONS(6672), 1, anon_sym_if, - ACTIONS(6033), 1, + ACTIONS(6674), 1, anon_sym_and, - ACTIONS(6035), 1, + ACTIONS(6676), 1, anon_sym_or, - ACTIONS(6256), 1, + ACTIONS(7263), 1, anon_sym_COMMA, - ACTIONS(7177), 1, - sym__newline, - STATE(4778), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(7265), 1, + anon_sym_COLON, + STATE(4955), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173161] = 8, - ACTIONS(6523), 1, + [173344] = 8, + ACTIONS(6670), 1, anon_sym_as, - ACTIONS(6525), 1, + ACTIONS(6672), 1, anon_sym_if, - ACTIONS(6527), 1, + ACTIONS(6674), 1, anon_sym_and, - ACTIONS(6529), 1, + ACTIONS(6676), 1, anon_sym_or, - ACTIONS(6988), 1, + ACTIONS(6970), 1, anon_sym_COMMA, - ACTIONS(7179), 1, - anon_sym_RBRACK, - STATE(5041), 1, - aux_sym_type_index_repeat1, + ACTIONS(7267), 1, + anon_sym_COLON, + STATE(4680), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173187] = 6, - ACTIONS(6029), 1, + [173370] = 8, + ACTIONS(6670), 1, anon_sym_as, - ACTIONS(6031), 1, + ACTIONS(6672), 1, anon_sym_if, - ACTIONS(6033), 1, + ACTIONS(6674), 1, anon_sym_and, - ACTIONS(6035), 1, + ACTIONS(6676), 1, anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7181), 3, - sym__newline, - anon_sym_SEMI, + ACTIONS(6970), 1, anon_sym_COMMA, - [173209] = 6, - ACTIONS(5117), 1, - anon_sym_LBRACK, - ACTIONS(7183), 1, - anon_sym_EQ, - STATE(4335), 1, - sym_type_index, + ACTIONS(7269), 1, + anon_sym_COLON, + STATE(4680), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7051), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(7185), 2, - anon_sym_not, - anon_sym_or, - [173231] = 8, - ACTIONS(6029), 1, + [173396] = 8, + ACTIONS(6550), 1, + anon_sym_RBRACK, + ACTIONS(6614), 1, anon_sym_as, - ACTIONS(6031), 1, + ACTIONS(6616), 1, anon_sym_if, - ACTIONS(6033), 1, + ACTIONS(6618), 1, anon_sym_and, - ACTIONS(6035), 1, + ACTIONS(6620), 1, anon_sym_or, - ACTIONS(6550), 1, - sym__newline, - ACTIONS(7187), 1, + ACTIONS(7271), 1, anon_sym_COMMA, - STATE(4974), 1, - aux_sym_cvar_def_repeat1, + STATE(4701), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173257] = 8, - ACTIONS(6029), 1, + [173422] = 8, + ACTIONS(6104), 1, anon_sym_as, - ACTIONS(6031), 1, + ACTIONS(6106), 1, anon_sym_if, - ACTIONS(6033), 1, + ACTIONS(6108), 1, anon_sym_and, - ACTIONS(6035), 1, + ACTIONS(6110), 1, anon_sym_or, - ACTIONS(6256), 1, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(7189), 1, + ACTIONS(7273), 1, sym__newline, - STATE(5063), 1, + STATE(4835), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173283] = 8, - ACTIONS(6029), 1, + [173448] = 8, + ACTIONS(6670), 1, anon_sym_as, - ACTIONS(6031), 1, + ACTIONS(6672), 1, anon_sym_if, - ACTIONS(6033), 1, + ACTIONS(6674), 1, anon_sym_and, - ACTIONS(6035), 1, + ACTIONS(6676), 1, anon_sym_or, - ACTIONS(6256), 1, + ACTIONS(6970), 1, + anon_sym_COMMA, + ACTIONS(7275), 1, + anon_sym_COLON, + STATE(4680), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [173474] = 7, + ACTIONS(3722), 1, + anon_sym_LBRACK, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(7191), 1, + ACTIONS(6649), 1, + anon_sym_EQ, + ACTIONS(6651), 1, sym__newline, - STATE(5065), 1, + STATE(4841), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173309] = 8, - ACTIONS(6029), 1, + STATE(4209), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [173498] = 8, + ACTIONS(6670), 1, anon_sym_as, - ACTIONS(6031), 1, + ACTIONS(6672), 1, anon_sym_if, - ACTIONS(6033), 1, + ACTIONS(6674), 1, anon_sym_and, - ACTIONS(6035), 1, + ACTIONS(6676), 1, anon_sym_or, - ACTIONS(6256), 1, + ACTIONS(6970), 1, anon_sym_COMMA, - ACTIONS(7193), 1, + ACTIONS(7277), 1, + anon_sym_COLON, + STATE(4680), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [173524] = 7, + ACTIONS(3722), 1, + anon_sym_LBRACK, + ACTIONS(6315), 1, + anon_sym_COMMA, + ACTIONS(7279), 1, + anon_sym_EQ, + ACTIONS(7281), 1, sym__newline, - STATE(5066), 1, + STATE(5158), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173335] = 7, - ACTIONS(3718), 1, + STATE(4136), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [173548] = 7, + ACTIONS(3722), 1, anon_sym_LBRACK, - ACTIONS(6256), 1, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(7195), 1, - anon_sym_EQ, - ACTIONS(7197), 1, + ACTIONS(7261), 1, sym__newline, - STATE(5069), 1, + ACTIONS(7283), 1, + anon_sym_EQ, + STATE(4652), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4274), 2, + STATE(4209), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [173359] = 7, - ACTIONS(3718), 1, + [173572] = 7, + ACTIONS(3722), 1, anon_sym_LBRACK, - ACTIONS(6256), 1, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(7199), 1, + ACTIONS(7285), 1, anon_sym_EQ, - ACTIONS(7201), 1, + ACTIONS(7287), 1, sym__newline, - STATE(5009), 1, + STATE(4702), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4055), 2, + STATE(3978), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [173383] = 7, - ACTIONS(3718), 1, + [173596] = 7, + ACTIONS(3722), 1, anon_sym_LBRACK, - ACTIONS(6256), 1, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(6440), 1, - anon_sym_EQ, - ACTIONS(6442), 1, + ACTIONS(7273), 1, sym__newline, - STATE(5010), 1, + ACTIONS(7289), 1, + anon_sym_EQ, + STATE(4722), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4274), 2, + STATE(4209), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [173407] = 8, - ACTIONS(6466), 1, - anon_sym_RBRACK, - ACTIONS(6523), 1, + [173620] = 4, + ACTIONS(4255), 1, + anon_sym_DOT, + STATE(3330), 1, + aux_sym_class_definition_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6546), 5, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_as, - ACTIONS(6525), 1, + anon_sym_PIPE, + [173638] = 6, + ACTIONS(6155), 1, + anon_sym_async, + ACTIONS(6157), 1, + anon_sym_for, + ACTIONS(6966), 1, anon_sym_if, - ACTIONS(6527), 1, - anon_sym_and, - ACTIONS(6529), 1, - anon_sym_or, - ACTIONS(7203), 1, - anon_sym_COMMA, - STATE(4898), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(7172), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173433] = 7, - ACTIONS(3718), 1, + STATE(3975), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [173660] = 7, + ACTIONS(3722), 1, anon_sym_LBRACK, - ACTIONS(6256), 1, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(7205), 1, + ACTIONS(7291), 1, anon_sym_EQ, - ACTIONS(7207), 1, + ACTIONS(7293), 1, sym__newline, - STATE(5073), 1, + STATE(5034), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4274), 2, + STATE(4108), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [173457] = 7, - ACTIONS(3718), 1, - anon_sym_LBRACK, - ACTIONS(6256), 1, + [173684] = 8, + ACTIONS(6475), 1, + anon_sym_RPAREN, + ACTIONS(6477), 1, anon_sym_COMMA, - ACTIONS(7209), 1, - anon_sym_EQ, - ACTIONS(7211), 1, - sym__newline, - STATE(5074), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(7081), 1, + anon_sym_as, + ACTIONS(7083), 1, + anon_sym_if, + ACTIONS(7085), 1, + anon_sym_and, + ACTIONS(7087), 1, + anon_sym_or, + STATE(4683), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4118), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [173481] = 7, - ACTIONS(3718), 1, + [173710] = 7, + ACTIONS(3722), 1, anon_sym_LBRACK, - ACTIONS(6256), 1, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(7191), 1, - sym__newline, - ACTIONS(7213), 1, + ACTIONS(6594), 1, anon_sym_EQ, - STATE(5075), 1, + ACTIONS(6596), 1, + sym__newline, + STATE(5039), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4274), 2, + STATE(4209), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [173505] = 8, - ACTIONS(6029), 1, + [173734] = 8, + ACTIONS(6104), 1, anon_sym_as, - ACTIONS(6031), 1, + ACTIONS(6106), 1, anon_sym_if, - ACTIONS(6033), 1, + ACTIONS(6108), 1, anon_sym_and, - ACTIONS(6035), 1, + ACTIONS(6110), 1, anon_sym_or, - ACTIONS(6256), 1, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(7215), 1, + ACTIONS(7008), 1, sym__newline, - STATE(4706), 1, + STATE(4800), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173531] = 8, - ACTIONS(6539), 1, + [173760] = 8, + ACTIONS(6104), 1, anon_sym_as, - ACTIONS(6541), 1, + ACTIONS(6106), 1, anon_sym_if, - ACTIONS(6543), 1, + ACTIONS(6108), 1, anon_sym_and, - ACTIONS(6545), 1, + ACTIONS(6110), 1, anon_sym_or, - ACTIONS(7100), 1, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(7217), 1, - anon_sym_COLON, - STATE(4947), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(7295), 1, + sym__newline, + STATE(4682), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173557] = 7, - ACTIONS(3177), 1, - anon_sym_COLON, - ACTIONS(6523), 1, + [173786] = 7, + ACTIONS(6614), 1, anon_sym_as, - ACTIONS(6525), 1, + ACTIONS(6616), 1, anon_sym_if, - ACTIONS(6527), 1, + ACTIONS(6618), 1, anon_sym_and, - ACTIONS(6529), 1, + ACTIONS(6620), 1, anon_sym_or, + ACTIONS(7297), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3175), 2, + ACTIONS(3247), 2, anon_sym_COMMA, anon_sym_RBRACK, - [173581] = 8, - ACTIONS(6143), 1, + [173810] = 8, + ACTIONS(6155), 1, anon_sym_async, - ACTIONS(6145), 1, + ACTIONS(6157), 1, anon_sym_for, - ACTIONS(7219), 1, + ACTIONS(7299), 1, anon_sym_COMMA, - ACTIONS(7221), 1, + ACTIONS(7301), 1, anon_sym_RBRACE, - STATE(3999), 1, + STATE(4115), 1, sym_for_in_clause, - STATE(4711), 1, + STATE(4757), 1, aux_sym_dictionary_repeat1, - STATE(5461), 1, + STATE(5536), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173607] = 8, - ACTIONS(6029), 1, - anon_sym_as, - ACTIONS(6031), 1, - anon_sym_if, - ACTIONS(6033), 1, - anon_sym_and, - ACTIONS(6035), 1, - anon_sym_or, - ACTIONS(6256), 1, - anon_sym_COMMA, - ACTIONS(7223), 1, - sym__newline, - STATE(4707), 1, - aux_sym_cvar_decl_repeat2, + [173836] = 4, + ACTIONS(1408), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173633] = 8, - ACTIONS(6029), 1, + STATE(2376), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(6921), 4, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_as, - ACTIONS(6031), 1, + anon_sym_PIPE, + [173854] = 8, + ACTIONS(6104), 1, + anon_sym_as, + ACTIONS(6106), 1, anon_sym_if, - ACTIONS(6033), 1, + ACTIONS(6108), 1, anon_sym_and, - ACTIONS(6035), 1, + ACTIONS(6110), 1, anon_sym_or, - ACTIONS(6256), 1, - anon_sym_COMMA, - ACTIONS(7225), 1, + ACTIONS(6684), 1, sym__newline, - STATE(4708), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(7303), 1, + anon_sym_COMMA, + STATE(4718), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173659] = 3, + [173880] = 6, + ACTIONS(5109), 1, + anon_sym_LBRACK, + ACTIONS(7305), 1, + anon_sym_EQ, + STATE(4431), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7227), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6904), 5, + ACTIONS(7115), 2, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, - anon_sym_PIPE, - [173675] = 8, - ACTIONS(6029), 1, + ACTIONS(7307), 2, + anon_sym_not, + anon_sym_or, + [173902] = 8, + ACTIONS(6104), 1, anon_sym_as, - ACTIONS(6031), 1, + ACTIONS(6106), 1, anon_sym_if, - ACTIONS(6033), 1, + ACTIONS(6108), 1, anon_sym_and, - ACTIONS(6035), 1, + ACTIONS(6110), 1, anon_sym_or, - ACTIONS(6256), 1, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(7229), 1, + ACTIONS(7309), 1, sym__newline, - STATE(5104), 1, + STATE(4806), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173701] = 8, - ACTIONS(6029), 1, + [173928] = 7, + ACTIONS(6614), 1, anon_sym_as, - ACTIONS(6031), 1, + ACTIONS(6616), 1, anon_sym_if, - ACTIONS(6033), 1, + ACTIONS(6618), 1, anon_sym_and, - ACTIONS(6035), 1, + ACTIONS(6620), 1, anon_sym_or, - ACTIONS(6256), 1, - anon_sym_COMMA, - ACTIONS(7231), 1, - sym__newline, - STATE(4710), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(6720), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173727] = 8, - ACTIONS(6029), 1, + ACTIONS(7311), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [173952] = 7, + ACTIONS(6614), 1, anon_sym_as, - ACTIONS(6031), 1, + ACTIONS(6616), 1, anon_sym_if, - ACTIONS(6033), 1, + ACTIONS(6618), 1, anon_sym_and, - ACTIONS(6035), 1, + ACTIONS(6620), 1, anon_sym_or, - ACTIONS(6256), 1, - anon_sym_COMMA, - ACTIONS(7233), 1, - sym__newline, - STATE(5106), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(7313), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173753] = 8, - ACTIONS(6029), 1, + ACTIONS(3285), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [173976] = 5, + ACTIONS(6297), 1, anon_sym_as, - ACTIONS(6031), 1, - anon_sym_if, - ACTIONS(6033), 1, + ACTIONS(6305), 1, anon_sym_and, - ACTIONS(6035), 1, + ACTIONS(6307), 1, anon_sym_or, - ACTIONS(6256), 1, - anon_sym_COMMA, - ACTIONS(7235), 1, - sym__newline, - STATE(5108), 1, - aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173779] = 7, - ACTIONS(6523), 1, - anon_sym_as, - ACTIONS(6525), 1, + ACTIONS(7182), 4, + anon_sym_RPAREN, anon_sym_if, - ACTIONS(6527), 1, - anon_sym_and, - ACTIONS(6529), 1, - anon_sym_or, - ACTIONS(7237), 1, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, + [173996] = 6, + ACTIONS(7077), 1, + anon_sym_RPAREN, + ACTIONS(7315), 1, + anon_sym_if, + ACTIONS(7318), 1, + anon_sym_async, + ACTIONS(7321), 1, + anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3345), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [173803] = 8, - ACTIONS(6029), 1, + STATE(4130), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [174018] = 8, + ACTIONS(6104), 1, anon_sym_as, - ACTIONS(6031), 1, + ACTIONS(6106), 1, anon_sym_if, - ACTIONS(6033), 1, + ACTIONS(6108), 1, anon_sym_and, - ACTIONS(6035), 1, + ACTIONS(6110), 1, anon_sym_or, - ACTIONS(6256), 1, - anon_sym_COMMA, - ACTIONS(7239), 1, + ACTIONS(6703), 1, sym__newline, - STATE(5109), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(7324), 1, + anon_sym_COMMA, + STATE(5104), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173829] = 8, - ACTIONS(6029), 1, - anon_sym_as, - ACTIONS(6031), 1, - anon_sym_if, - ACTIONS(6033), 1, - anon_sym_and, - ACTIONS(6035), 1, - anon_sym_or, - ACTIONS(6256), 1, + [174044] = 8, + ACTIONS(6155), 1, + anon_sym_async, + ACTIONS(6157), 1, + anon_sym_for, + ACTIONS(7326), 1, anon_sym_COMMA, - ACTIONS(7241), 1, - sym__newline, - STATE(5111), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(7328), 1, + anon_sym_RBRACE, + STATE(4115), 1, + sym_for_in_clause, + STATE(5136), 1, + aux_sym_dictionary_repeat1, + STATE(5665), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173855] = 7, - ACTIONS(3718), 1, + [174070] = 7, + ACTIONS(3722), 1, anon_sym_LBRACK, - ACTIONS(6256), 1, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(7243), 1, + ACTIONS(7330), 1, anon_sym_EQ, - ACTIONS(7245), 1, + ACTIONS(7332), 1, sym__newline, - STATE(5113), 1, + STATE(5147), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4274), 2, + STATE(3982), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [173879] = 6, - ACTIONS(6143), 1, - anon_sym_async, - ACTIONS(6145), 1, - anon_sym_for, - ACTIONS(6920), 1, - anon_sym_RBRACE, - ACTIONS(6992), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4015), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [173901] = 8, - ACTIONS(6029), 1, + [174094] = 8, + ACTIONS(6104), 1, anon_sym_as, - ACTIONS(6031), 1, + ACTIONS(6106), 1, anon_sym_if, - ACTIONS(6033), 1, + ACTIONS(6108), 1, anon_sym_and, - ACTIONS(6035), 1, + ACTIONS(6110), 1, anon_sym_or, - ACTIONS(6256), 1, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(7247), 1, + ACTIONS(7334), 1, sym__newline, - STATE(4849), 1, + STATE(5000), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173927] = 8, - ACTIONS(3830), 1, - anon_sym_RPAREN, - ACTIONS(3832), 1, + [174120] = 7, + ACTIONS(3722), 1, + anon_sym_LBRACK, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(6928), 1, - anon_sym_as, - ACTIONS(6930), 1, - anon_sym_if, - ACTIONS(6932), 1, - anon_sym_and, - ACTIONS(6934), 1, - anon_sym_or, - STATE(5068), 1, - aux_sym__typedargslist_repeat1, + ACTIONS(6353), 1, + anon_sym_EQ, + ACTIONS(6355), 1, + sym__newline, + STATE(5152), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173953] = 5, - ACTIONS(6286), 1, - anon_sym_as, - ACTIONS(6294), 1, - anon_sym_and, - ACTIONS(6296), 1, - anon_sym_or, + STATE(4209), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [174144] = 7, + ACTIONS(3722), 1, + anon_sym_LBRACK, + ACTIONS(6315), 1, + anon_sym_COMMA, + ACTIONS(7336), 1, + anon_sym_EQ, + ACTIONS(7338), 1, + sym__newline, + STATE(4868), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7008), 4, - anon_sym_RPAREN, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [173973] = 6, - ACTIONS(7019), 1, - anon_sym_RPAREN, - ACTIONS(7249), 1, - anon_sym_if, - ACTIONS(7252), 1, - anon_sym_async, - ACTIONS(7255), 1, - anon_sym_for, + STATE(4209), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [174168] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4123), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [173995] = 8, - ACTIONS(6029), 1, - anon_sym_as, - ACTIONS(6031), 1, - anon_sym_if, - ACTIONS(6033), 1, - anon_sym_and, - ACTIONS(6035), 1, - anon_sym_or, - ACTIONS(6256), 1, + ACTIONS(7342), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7340), 5, anon_sym_COMMA, - ACTIONS(7258), 1, - sym__newline, - STATE(4956), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [174021] = 8, - ACTIONS(6539), 1, anon_sym_as, - ACTIONS(6541), 1, anon_sym_if, - ACTIONS(6543), 1, - anon_sym_and, - ACTIONS(6545), 1, - anon_sym_or, - ACTIONS(7260), 1, - anon_sym_COMMA, - ACTIONS(7262), 1, anon_sym_COLON, - STATE(5139), 1, - aux_sym_match_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [174047] = 8, - ACTIONS(6029), 1, + anon_sym_PIPE, + [174184] = 8, + ACTIONS(6104), 1, anon_sym_as, - ACTIONS(6031), 1, + ACTIONS(6106), 1, anon_sym_if, - ACTIONS(6033), 1, + ACTIONS(6108), 1, anon_sym_and, - ACTIONS(6035), 1, + ACTIONS(6110), 1, anon_sym_or, - ACTIONS(6256), 1, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(7264), 1, + ACTIONS(7344), 1, sym__newline, - STATE(5037), 1, + STATE(4857), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [174073] = 8, - ACTIONS(6029), 1, - anon_sym_as, - ACTIONS(6031), 1, + [174210] = 6, + ACTIONS(6365), 1, + anon_sym_async, + ACTIONS(6367), 1, + anon_sym_for, + ACTIONS(6968), 1, + anon_sym_RBRACK, + ACTIONS(7346), 1, anon_sym_if, - ACTIONS(6033), 1, - anon_sym_and, - ACTIONS(6035), 1, - anon_sym_or, - ACTIONS(6256), 1, - anon_sym_COMMA, - ACTIONS(7266), 1, - sym__newline, - STATE(5129), 1, - aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [174099] = 8, - ACTIONS(6029), 1, - anon_sym_as, - ACTIONS(6031), 1, + STATE(4066), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [174232] = 6, + ACTIONS(6365), 1, + anon_sym_async, + ACTIONS(6367), 1, + anon_sym_for, + ACTIONS(7172), 1, + anon_sym_RBRACK, + ACTIONS(7346), 1, anon_sym_if, - ACTIONS(6033), 1, - anon_sym_and, - ACTIONS(6035), 1, - anon_sym_or, - ACTIONS(6256), 1, - anon_sym_COMMA, - ACTIONS(7268), 1, - sym__newline, - STATE(5121), 1, - aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [174125] = 7, - ACTIONS(3718), 1, - anon_sym_LBRACK, - ACTIONS(6256), 1, - anon_sym_COMMA, - ACTIONS(7270), 1, - anon_sym_EQ, - ACTIONS(7272), 1, - sym__newline, - STATE(4650), 1, - aux_sym_cvar_decl_repeat2, + STATE(4139), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [174254] = 8, + ACTIONS(7348), 1, + sym_identifier, + ACTIONS(7350), 1, + anon_sym_LPAREN, + ACTIONS(7352), 1, + anon_sym_STAR, + STATE(4393), 1, + sym_dotted_name, + STATE(4534), 1, + sym_aliased_import, + STATE(5339), 1, + sym__import_list, + STATE(5348), 1, + sym_wildcard_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4274), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [174149] = 8, - ACTIONS(6029), 1, + [174280] = 6, + ACTIONS(6670), 1, anon_sym_as, - ACTIONS(6031), 1, + ACTIONS(6672), 1, anon_sym_if, - ACTIONS(6033), 1, + ACTIONS(6674), 1, anon_sym_and, - ACTIONS(6035), 1, + ACTIONS(6676), 1, anon_sym_or, - ACTIONS(6256), 1, - anon_sym_COMMA, - ACTIONS(7274), 1, - sym__newline, - STATE(4713), 1, - aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [174175] = 8, - ACTIONS(6466), 1, - anon_sym_RBRACE, - ACTIONS(7276), 1, - anon_sym_COMMA, - ACTIONS(7278), 1, + ACTIONS(6385), 3, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_PIPE, + [174302] = 8, + ACTIONS(6670), 1, anon_sym_as, - ACTIONS(7280), 1, + ACTIONS(6672), 1, anon_sym_if, - ACTIONS(7282), 1, + ACTIONS(6674), 1, anon_sym_and, - ACTIONS(7284), 1, + ACTIONS(6676), 1, anon_sym_or, - STATE(5144), 1, + ACTIONS(6970), 1, + anon_sym_COMMA, + ACTIONS(7354), 1, + anon_sym_COLON, + STATE(4680), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [174201] = 8, - ACTIONS(6029), 1, + [174328] = 8, + ACTIONS(6104), 1, anon_sym_as, - ACTIONS(6031), 1, + ACTIONS(6106), 1, anon_sym_if, - ACTIONS(6033), 1, + ACTIONS(6108), 1, anon_sym_and, - ACTIONS(6035), 1, + ACTIONS(6110), 1, anon_sym_or, - ACTIONS(6256), 1, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(7286), 1, + ACTIONS(7356), 1, sym__newline, - STATE(5130), 1, + STATE(4921), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [174227] = 7, - ACTIONS(3718), 1, + [174354] = 7, + ACTIONS(3722), 1, anon_sym_LBRACK, - ACTIONS(6256), 1, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(7288), 1, + ACTIONS(7358), 1, anon_sym_EQ, - ACTIONS(7290), 1, + ACTIONS(7360), 1, sym__newline, - STATE(4668), 1, + STATE(4994), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4274), 2, + STATE(4091), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [174251] = 7, - ACTIONS(3718), 1, + [174378] = 7, + ACTIONS(3722), 1, anon_sym_LBRACK, - ACTIONS(6256), 1, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(7292), 1, + ACTIONS(6500), 1, anon_sym_EQ, - ACTIONS(7294), 1, + ACTIONS(6502), 1, sym__newline, - STATE(4698), 1, + STATE(5010), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4016), 2, + STATE(4209), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [174275] = 7, - ACTIONS(3718), 1, - anon_sym_LBRACK, - ACTIONS(6256), 1, - anon_sym_COMMA, - ACTIONS(7264), 1, - sym__newline, - ACTIONS(7296), 1, - anon_sym_EQ, - STATE(4704), 1, - aux_sym_cvar_decl_repeat2, + [174402] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4274), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [174299] = 8, - ACTIONS(6539), 1, + ACTIONS(4398), 7, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, + anon_sym_EQ, + anon_sym_LBRACK, + [174416] = 8, + ACTIONS(6104), 1, anon_sym_as, - ACTIONS(6541), 1, + ACTIONS(6106), 1, anon_sym_if, - ACTIONS(6543), 1, + ACTIONS(6108), 1, anon_sym_and, - ACTIONS(6545), 1, + ACTIONS(6110), 1, anon_sym_or, - ACTIONS(7100), 1, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(7298), 1, - anon_sym_COLON, - STATE(4947), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(7362), 1, + sym__newline, + STATE(5014), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [174325] = 8, - ACTIONS(6539), 1, + [174442] = 6, + ACTIONS(6670), 1, anon_sym_as, - ACTIONS(6541), 1, + ACTIONS(6672), 1, anon_sym_if, - ACTIONS(6543), 1, + ACTIONS(6674), 1, anon_sym_and, - ACTIONS(6545), 1, + ACTIONS(6676), 1, anon_sym_or, - ACTIONS(7100), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7364), 2, anon_sym_COMMA, - ACTIONS(7300), 1, anon_sym_COLON, - STATE(4947), 1, - aux_sym_assert_statement_repeat1, + [174463] = 7, + ACTIONS(6744), 1, + anon_sym_LBRACK, + ACTIONS(7366), 1, + anon_sym_LPAREN, + ACTIONS(7368), 1, + anon_sym_COLON, + ACTIONS(7370), 1, + sym__newline, + STATE(1136), 1, + sym_external_definition, + STATE(4762), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [174351] = 6, - ACTIONS(6539), 1, + [174486] = 6, + ACTIONS(6104), 1, anon_sym_as, - ACTIONS(6541), 1, + ACTIONS(6106), 1, anon_sym_if, - ACTIONS(6543), 1, + ACTIONS(6108), 1, anon_sym_and, - ACTIONS(6545), 1, + ACTIONS(6110), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6424), 3, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_PIPE, - [174373] = 8, - ACTIONS(6029), 1, - anon_sym_as, - ACTIONS(6031), 1, - anon_sym_if, - ACTIONS(6033), 1, - anon_sym_and, - ACTIONS(6035), 1, - anon_sym_or, - ACTIONS(6256), 1, - anon_sym_COMMA, - ACTIONS(7302), 1, + ACTIONS(7372), 2, sym__newline, - STATE(5132), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_COMMA, + [174507] = 7, + ACTIONS(6559), 1, + anon_sym_LPAREN, + ACTIONS(6565), 1, + anon_sym_LBRACK, + ACTIONS(7374), 1, + sym_identifier, + STATE(521), 1, + sym_c_function_definition, + STATE(3939), 1, + sym_c_parameters, + STATE(5274), 1, + sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [174399] = 8, - ACTIONS(6029), 1, + [174530] = 6, + ACTIONS(7081), 1, anon_sym_as, - ACTIONS(6031), 1, + ACTIONS(7083), 1, anon_sym_if, - ACTIONS(6033), 1, + ACTIONS(7085), 1, anon_sym_and, - ACTIONS(6035), 1, + ACTIONS(7087), 1, anon_sym_or, - ACTIONS(6256), 1, - anon_sym_COMMA, - ACTIONS(7304), 1, - sym__newline, - STATE(5134), 1, - aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [174425] = 8, - ACTIONS(6523), 1, - anon_sym_as, - ACTIONS(6525), 1, - anon_sym_if, - ACTIONS(6527), 1, - anon_sym_and, - ACTIONS(6529), 1, - anon_sym_or, - ACTIONS(6988), 1, + ACTIONS(7376), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(7306), 1, - anon_sym_RBRACK, - STATE(4644), 1, - aux_sym_type_index_repeat1, + [174551] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [174451] = 8, - ACTIONS(6029), 1, - anon_sym_as, - ACTIONS(6031), 1, - anon_sym_if, - ACTIONS(6033), 1, - anon_sym_and, - ACTIONS(6035), 1, - anon_sym_or, - ACTIONS(6256), 1, + ACTIONS(5577), 6, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - ACTIONS(7308), 1, - sym__newline, - STATE(5140), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [174564] = 4, + ACTIONS(7380), 1, + anon_sym_PIPE, + STATE(4155), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [174477] = 8, - ACTIONS(6466), 1, - anon_sym_RPAREN, - ACTIONS(6928), 1, + ACTIONS(7378), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + [174581] = 6, + ACTIONS(6614), 1, anon_sym_as, - ACTIONS(6930), 1, + ACTIONS(6616), 1, anon_sym_if, - ACTIONS(6932), 1, + ACTIONS(6618), 1, anon_sym_and, - ACTIONS(6934), 1, + ACTIONS(6620), 1, anon_sym_or, - ACTIONS(7310), 1, - anon_sym_COMMA, - STATE(4661), 1, - aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [174503] = 8, - ACTIONS(6029), 1, - anon_sym_as, - ACTIONS(6031), 1, - anon_sym_if, - ACTIONS(6033), 1, - anon_sym_and, - ACTIONS(6035), 1, - anon_sym_or, - ACTIONS(6256), 1, + ACTIONS(7383), 2, anon_sym_COMMA, - ACTIONS(7312), 1, + anon_sym_RBRACK, + [174602] = 7, + ACTIONS(6744), 1, + anon_sym_LBRACK, + ACTIONS(7366), 1, + anon_sym_LPAREN, + ACTIONS(7385), 1, + anon_sym_COLON, + ACTIONS(7387), 1, sym__newline, - STATE(4660), 1, - aux_sym_cvar_decl_repeat2, + STATE(1090), 1, + sym_external_definition, + STATE(4885), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [174529] = 3, + [174625] = 7, + ACTIONS(6822), 1, + anon_sym_LBRACK, + ACTIONS(7366), 1, + anon_sym_LPAREN, + ACTIONS(7389), 1, + anon_sym_COLON, + ACTIONS(7391), 1, + sym__newline, + STATE(2923), 1, + sym_external_definition, + STATE(5082), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7314), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6904), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [174544] = 3, - ACTIONS(3), 2, + [174648] = 4, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - ACTIONS(7316), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6904), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [174559] = 6, - ACTIONS(6928), 1, + ACTIONS(7395), 1, + anon_sym_BSLASH, + ACTIONS(7393), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [174665] = 6, + ACTIONS(6104), 1, anon_sym_as, - ACTIONS(6930), 1, + ACTIONS(6106), 1, anon_sym_if, - ACTIONS(6932), 1, + ACTIONS(6108), 1, anon_sym_and, - ACTIONS(6934), 1, + ACTIONS(6110), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7318), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [174580] = 6, - ACTIONS(6539), 1, + ACTIONS(7397), 2, + sym__newline, + anon_sym_SEMI, + [174686] = 6, + ACTIONS(6614), 1, anon_sym_as, - ACTIONS(6541), 1, + ACTIONS(6616), 1, anon_sym_if, - ACTIONS(6543), 1, + ACTIONS(6618), 1, anon_sym_and, - ACTIONS(6545), 1, + ACTIONS(6620), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7320), 2, + ACTIONS(7399), 2, anon_sym_COMMA, + anon_sym_RBRACK, + [174707] = 7, + ACTIONS(6822), 1, + anon_sym_LBRACK, + ACTIONS(7366), 1, + anon_sym_LPAREN, + ACTIONS(7401), 1, anon_sym_COLON, - [174601] = 2, + ACTIONS(7403), 1, + sym__newline, + STATE(2833), 1, + sym_external_definition, + STATE(5084), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7322), 6, - sym__newline, - anon_sym_COLON, - anon_sym_except, - anon_sym_with, - anon_sym_nogil, - anon_sym_noexcept, - [174614] = 7, - ACTIONS(6541), 1, - anon_sym_if, - ACTIONS(6543), 1, - anon_sym_and, - ACTIONS(6545), 1, - anon_sym_or, - ACTIONS(7324), 1, - anon_sym_COMMA, - ACTIONS(7326), 1, - anon_sym_as, - ACTIONS(7328), 1, - anon_sym_COLON, - ACTIONS(3), 2, + [174730] = 4, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - [174637] = 7, - ACTIONS(6701), 1, + ACTIONS(7407), 1, + anon_sym_BSLASH, + ACTIONS(7405), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [174747] = 7, + ACTIONS(6778), 1, anon_sym_LBRACK, - ACTIONS(7330), 1, + ACTIONS(7366), 1, anon_sym_LPAREN, - ACTIONS(7332), 1, + ACTIONS(7409), 1, anon_sym_COLON, - ACTIONS(7334), 1, + ACTIONS(7411), 1, sym__newline, - STATE(491), 1, + STATE(500), 1, sym_external_definition, - STATE(5004), 1, + STATE(5053), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [174660] = 6, - ACTIONS(7278), 1, + [174770] = 3, + ACTIONS(7413), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6921), 5, + anon_sym_COMMA, anon_sym_as, - ACTIONS(7280), 1, anon_sym_if, - ACTIONS(7282), 1, - anon_sym_and, - ACTIONS(7284), 1, - anon_sym_or, + anon_sym_COLON, + anon_sym_PIPE, + [174785] = 7, + ACTIONS(7415), 1, + anon_sym_COMMA, + ACTIONS(7417), 1, + anon_sym_as, + ACTIONS(7419), 1, + anon_sym_if, + ACTIONS(7421), 1, + anon_sym_COLON, + STATE(4470), 1, + aux_sym_case_clause_repeat1, + STATE(5727), 1, + sym_if_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [174808] = 4, + ACTIONS(7425), 1, + anon_sym_PIPE, + STATE(4175), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7336), 2, + ACTIONS(7423), 4, anon_sym_COMMA, - anon_sym_RBRACE, - [174681] = 2, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + [174825] = 7, + ACTIONS(6778), 1, + anon_sym_LBRACK, + ACTIONS(7366), 1, + anon_sym_LPAREN, + ACTIONS(7427), 1, + anon_sym_COLON, + ACTIONS(7429), 1, + sym__newline, + STATE(492), 1, + sym_external_definition, + STATE(5058), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7338), 6, + [174848] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7431), 6, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [174694] = 6, - ACTIONS(6523), 1, + [174861] = 6, + ACTIONS(7081), 1, anon_sym_as, - ACTIONS(6525), 1, + ACTIONS(7083), 1, anon_sym_if, - ACTIONS(6527), 1, + ACTIONS(7085), 1, anon_sym_and, - ACTIONS(6529), 1, + ACTIONS(7087), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6804), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [174715] = 4, - ACTIONS(7340), 1, + ACTIONS(4621), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(4215), 1, - aux_sym_assert_statement_repeat1, + [174882] = 6, + ACTIONS(7253), 1, + anon_sym_as, + ACTIONS(7255), 1, + anon_sym_if, + ACTIONS(7257), 1, + anon_sym_and, + ACTIONS(7259), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3077), 4, - anon_sym_COLON, - anon_sym_EQ, + ACTIONS(6964), 2, + anon_sym_COMMA, anon_sym_RBRACE, - sym_type_conversion, - [174732] = 6, - ACTIONS(6523), 1, + [174903] = 6, + ACTIONS(6670), 1, anon_sym_as, - ACTIONS(6525), 1, + ACTIONS(6672), 1, anon_sym_if, - ACTIONS(6527), 1, + ACTIONS(6674), 1, anon_sym_and, - ACTIONS(6529), 1, + ACTIONS(6676), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7342), 2, + ACTIONS(7433), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [174753] = 7, - ACTIONS(6509), 1, - anon_sym_LPAREN, - ACTIONS(6515), 1, - anon_sym_LBRACK, - ACTIONS(7344), 1, - sym_identifier, - STATE(667), 1, - sym_c_function_definition, - STATE(3918), 1, - sym_c_parameters, - STATE(5261), 1, - sym_template_params, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [174776] = 6, - ACTIONS(7278), 1, + anon_sym_COLON, + [174924] = 6, + ACTIONS(6104), 1, anon_sym_as, - ACTIONS(7280), 1, + ACTIONS(6106), 1, anon_sym_if, - ACTIONS(7282), 1, + ACTIONS(6108), 1, anon_sym_and, - ACTIONS(7284), 1, + ACTIONS(6110), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6804), 2, + ACTIONS(7435), 2, + sym__newline, anon_sym_COMMA, - anon_sym_RBRACE, - [174797] = 2, + [174945] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(7439), 1, + anon_sym_BSLASH, + ACTIONS(7437), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [174962] = 4, + ACTIONS(7425), 1, + anon_sym_PIPE, + STATE(4155), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7346), 6, + ACTIONS(7441), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + [174979] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7443), 6, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [174810] = 7, - ACTIONS(6509), 1, - anon_sym_LPAREN, - ACTIONS(6515), 1, - anon_sym_LBRACK, - ACTIONS(7348), 1, - sym_identifier, - STATE(1185), 1, - sym_c_function_definition, - STATE(3899), 1, - sym_c_parameters, - STATE(5300), 1, - sym_template_params, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [174833] = 4, - ACTIONS(3701), 1, + [174992] = 5, + ACTIONS(7447), 1, anon_sym_DOT, - STATE(3278), 1, - aux_sym_class_definition_repeat2, + ACTIONS(7449), 1, + anon_sym_COLON, + ACTIONS(7451), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6502), 4, + ACTIONS(7445), 3, sym__newline, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_as, - [174850] = 3, - STATE(4208), 1, - aux_sym_union_pattern_repeat1, + anon_sym_EQ, + [175011] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7350), 5, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, + ACTIONS(7453), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_COLON, + anon_sym_EQ, anon_sym_PIPE, - [174865] = 4, - ACTIONS(7352), 1, - anon_sym_COMMA, - STATE(4163), 1, - aux_sym__patterns_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5488), 4, + [175024] = 6, + ACTIONS(7447), 1, + anon_sym_DOT, + ACTIONS(7449), 1, anon_sym_COLON, + ACTIONS(7451), 1, + anon_sym_PIPE, + ACTIONS(7457), 1, anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [174882] = 6, - ACTIONS(6928), 1, - anon_sym_as, - ACTIONS(6930), 1, - anon_sym_if, - ACTIONS(6932), 1, - anon_sym_and, - ACTIONS(6934), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6552), 2, - anon_sym_RPAREN, + ACTIONS(7455), 2, + sym__newline, + anon_sym_SEMI, + [175045] = 4, + ACTIONS(7461), 1, anon_sym_COMMA, - [174903] = 4, - ACTIONS(7355), 1, - anon_sym_PIPE, - STATE(4165), 1, - aux_sym_union_pattern_repeat1, + STATE(4180), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7350), 4, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(7459), 4, + anon_sym_RPAREN, anon_sym_if, - anon_sym_COLON, - [174920] = 7, - ACTIONS(6509), 1, - anon_sym_LPAREN, - ACTIONS(6515), 1, - anon_sym_LBRACK, - ACTIONS(7358), 1, - sym_identifier, - STATE(2852), 1, - sym_c_function_definition, - STATE(3890), 1, - sym_c_parameters, - STATE(5210), 1, - sym_template_params, + anon_sym_async, + anon_sym_for, + [175062] = 4, + ACTIONS(7466), 1, + anon_sym_COMMA, + STATE(4257), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [174943] = 6, - ACTIONS(7278), 1, - anon_sym_as, - ACTIONS(7280), 1, + ACTIONS(7464), 4, + anon_sym_RPAREN, anon_sym_if, - ACTIONS(7282), 1, - anon_sym_and, - ACTIONS(7284), 1, - anon_sym_or, + anon_sym_async, + anon_sym_for, + [175079] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6665), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [174964] = 6, - ACTIONS(6523), 1, - anon_sym_as, - ACTIONS(6525), 1, - anon_sym_if, - ACTIONS(6527), 1, - anon_sym_and, - ACTIONS(6529), 1, - anon_sym_or, + ACTIONS(7468), 6, + sym__newline, + anon_sym_COLON, + anon_sym_except, + anon_sym_with, + anon_sym_nogil, + anon_sym_noexcept, + [175092] = 7, + ACTIONS(6822), 1, + anon_sym_LBRACK, + ACTIONS(7366), 1, + anon_sym_LPAREN, + ACTIONS(7470), 1, + anon_sym_COLON, + ACTIONS(7472), 1, + sym__newline, + STATE(2851), 1, + sym_external_definition, + STATE(5087), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7336), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [174985] = 6, - ACTIONS(6928), 1, + [175115] = 6, + ACTIONS(7081), 1, anon_sym_as, - ACTIONS(6930), 1, + ACTIONS(7083), 1, anon_sym_if, - ACTIONS(6932), 1, + ACTIONS(7085), 1, anon_sym_and, - ACTIONS(6934), 1, + ACTIONS(7087), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7360), 2, + ACTIONS(7474), 2, anon_sym_RPAREN, anon_sym_COMMA, - [175006] = 4, - ACTIONS(3), 1, + [175136] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(7364), 1, - anon_sym_BSLASH, - ACTIONS(7362), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [175023] = 4, - ACTIONS(3), 1, + ACTIONS(7476), 6, + sym__newline, + anon_sym_COLON, + anon_sym_except, + anon_sym_with, + anon_sym_nogil, + anon_sym_noexcept, + [175149] = 4, + ACTIONS(7478), 1, + anon_sym_COMMA, + STATE(4200), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(7368), 1, - anon_sym_BSLASH, - ACTIONS(7366), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [175040] = 6, - ACTIONS(6928), 1, + ACTIONS(2715), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [175166] = 6, + ACTIONS(7081), 1, anon_sym_as, - ACTIONS(6930), 1, + ACTIONS(7083), 1, anon_sym_if, - ACTIONS(6932), 1, + ACTIONS(7085), 1, anon_sym_and, - ACTIONS(6934), 1, + ACTIONS(7087), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7370), 2, + ACTIONS(3845), 2, anon_sym_RPAREN, anon_sym_COMMA, - [175061] = 7, - ACTIONS(6683), 1, - anon_sym_LBRACK, - ACTIONS(7330), 1, - anon_sym_LPAREN, - ACTIONS(7372), 1, - anon_sym_COLON, - ACTIONS(7374), 1, - sym__newline, - STATE(1086), 1, - sym_external_definition, - STATE(5112), 1, - sym_argument_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [175084] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(7378), 1, - anon_sym_BSLASH, - ACTIONS(7376), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [175101] = 6, - ACTIONS(6928), 1, + [175187] = 6, + ACTIONS(6670), 1, anon_sym_as, - ACTIONS(6930), 1, + ACTIONS(6672), 1, anon_sym_if, - ACTIONS(6932), 1, + ACTIONS(6674), 1, anon_sym_and, - ACTIONS(6934), 1, + ACTIONS(6676), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7320), 2, - anon_sym_RPAREN, + ACTIONS(7480), 2, anon_sym_COMMA, - [175122] = 6, - ACTIONS(6523), 1, + anon_sym_COLON, + [175208] = 6, + ACTIONS(7081), 1, anon_sym_as, - ACTIONS(6525), 1, + ACTIONS(7083), 1, anon_sym_if, - ACTIONS(6527), 1, + ACTIONS(7085), 1, anon_sym_and, - ACTIONS(6529), 1, + ACTIONS(7087), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7380), 2, + ACTIONS(7364), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [175143] = 4, - ACTIONS(3701), 1, - anon_sym_DOT, - STATE(4161), 1, - aux_sym_class_definition_repeat2, + [175229] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6486), 4, - sym__newline, - anon_sym_SEMI, + ACTIONS(7482), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6921), 4, anon_sym_COMMA, anon_sym_as, - [175160] = 6, - ACTIONS(6928), 1, + anon_sym_PIPE, + anon_sym_RBRACE, + [175244] = 6, + ACTIONS(6614), 1, anon_sym_as, - ACTIONS(6930), 1, + ACTIONS(6616), 1, anon_sym_if, - ACTIONS(6932), 1, + ACTIONS(6618), 1, anon_sym_and, - ACTIONS(6934), 1, + ACTIONS(6620), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7382), 2, - anon_sym_RPAREN, + ACTIONS(7484), 2, anon_sym_COMMA, - [175181] = 6, - ACTIONS(6029), 1, + anon_sym_RBRACK, + [175265] = 6, + ACTIONS(6104), 1, anon_sym_as, - ACTIONS(6031), 1, + ACTIONS(6106), 1, anon_sym_if, - ACTIONS(6033), 1, + ACTIONS(6108), 1, anon_sym_and, - ACTIONS(6035), 1, + ACTIONS(6110), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6804), 2, + ACTIONS(7486), 2, sym__newline, - anon_sym_SEMI, - [175202] = 6, - ACTIONS(6928), 1, - anon_sym_as, - ACTIONS(6930), 1, - anon_sym_if, - ACTIONS(6932), 1, - anon_sym_and, - ACTIONS(6934), 1, - anon_sym_or, + anon_sym_COMMA, + [175286] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3857), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [175223] = 6, - ACTIONS(6539), 1, + ACTIONS(7488), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [175299] = 6, + ACTIONS(6670), 1, anon_sym_as, - ACTIONS(6541), 1, + ACTIONS(6672), 1, anon_sym_if, - ACTIONS(6543), 1, + ACTIONS(6674), 1, anon_sym_and, - ACTIONS(6545), 1, + ACTIONS(6676), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7384), 2, + ACTIONS(7490), 2, anon_sym_COMMA, anon_sym_COLON, - [175244] = 6, - ACTIONS(6928), 1, - anon_sym_as, - ACTIONS(6930), 1, - anon_sym_if, - ACTIONS(6932), 1, + [175320] = 4, + ACTIONS(6674), 1, anon_sym_and, - ACTIONS(6934), 1, + ACTIONS(6676), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6804), 2, - anon_sym_RPAREN, + ACTIONS(4597), 4, anon_sym_COMMA, - [175265] = 6, - ACTIONS(7278), 1, anon_sym_as, - ACTIONS(7280), 1, anon_sym_if, - ACTIONS(7282), 1, + anon_sym_COLON, + [175337] = 6, + ACTIONS(6670), 1, + anon_sym_as, + ACTIONS(6672), 1, + anon_sym_if, + ACTIONS(6674), 1, anon_sym_and, - ACTIONS(7284), 1, + ACTIONS(6676), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7382), 2, + ACTIONS(7492), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [175286] = 7, - ACTIONS(6683), 1, - anon_sym_LBRACK, - ACTIONS(7330), 1, - anon_sym_LPAREN, - ACTIONS(7386), 1, anon_sym_COLON, - ACTIONS(7388), 1, - sym__newline, - STATE(1060), 1, - sym_external_definition, - STATE(5014), 1, - sym_argument_list, + [175358] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [175309] = 7, - ACTIONS(7390), 1, + ACTIONS(7494), 6, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(7392), 1, - anon_sym_COMMA, - ACTIONS(7394), 1, anon_sym_COLON, - ACTIONS(7396), 1, - anon_sym_RBRACK, - ACTIONS(7398), 1, + anon_sym_EQ, anon_sym_PIPE, - STATE(4743), 1, - aux_sym_type_parameter_repeat1, + [175371] = 6, + ACTIONS(4847), 1, + anon_sym_STAR_STAR, + ACTIONS(7496), 1, + sym_identifier, + ACTIONS(7498), 1, + anon_sym_LPAREN, + ACTIONS(7500), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [175332] = 6, - ACTIONS(6523), 1, + STATE(4606), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + [175392] = 6, + ACTIONS(7081), 1, anon_sym_as, - ACTIONS(6525), 1, + ACTIONS(7083), 1, anon_sym_if, - ACTIONS(6527), 1, + ACTIONS(7085), 1, anon_sym_and, - ACTIONS(6529), 1, + ACTIONS(7087), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6552), 2, + ACTIONS(4574), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [175353] = 6, - ACTIONS(7402), 1, - anon_sym_DOT, - ACTIONS(7404), 1, + [175413] = 4, + ACTIONS(7502), 1, + anon_sym_COMMA, + STATE(4200), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5521), 4, anon_sym_COLON, - ACTIONS(7406), 1, anon_sym_EQ, - ACTIONS(7408), 1, - anon_sym_PIPE, + anon_sym_RBRACE, + sym_type_conversion, + [175430] = 6, + ACTIONS(7253), 1, + anon_sym_as, + ACTIONS(7255), 1, + anon_sym_if, + ACTIONS(7257), 1, + anon_sym_and, + ACTIONS(7259), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7400), 2, - sym__newline, - anon_sym_SEMI, - [175374] = 6, - ACTIONS(6539), 1, + ACTIONS(7505), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [175451] = 6, + ACTIONS(6104), 1, anon_sym_as, - ACTIONS(6541), 1, + ACTIONS(6106), 1, anon_sym_if, - ACTIONS(6543), 1, + ACTIONS(6108), 1, anon_sym_and, - ACTIONS(6545), 1, + ACTIONS(6110), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7410), 2, + ACTIONS(7507), 2, + sym__newline, anon_sym_COMMA, - anon_sym_COLON, - [175395] = 5, - ACTIONS(7402), 1, - anon_sym_DOT, - ACTIONS(7404), 1, - anon_sym_COLON, - ACTIONS(7408), 1, - anon_sym_PIPE, + [175472] = 7, + ACTIONS(6559), 1, + anon_sym_LPAREN, + ACTIONS(6565), 1, + anon_sym_LBRACK, + ACTIONS(7509), 1, + sym_identifier, + STATE(2817), 1, + sym_c_function_definition, + STATE(3928), 1, + sym_c_parameters, + STATE(5224), 1, + sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7412), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_EQ, - [175414] = 6, - ACTIONS(6523), 1, + [175495] = 6, + ACTIONS(7081), 1, anon_sym_as, - ACTIONS(6525), 1, + ACTIONS(7083), 1, anon_sym_if, - ACTIONS(6527), 1, + ACTIONS(7085), 1, anon_sym_and, - ACTIONS(6529), 1, + ACTIONS(7087), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3333), 2, + ACTIONS(3861), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [175435] = 3, + [175516] = 4, + ACTIONS(7511), 1, + anon_sym_COMMA, + STATE(4232), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7414), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7106), 4, + ACTIONS(7513), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [175533] = 4, + ACTIONS(7515), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, + STATE(4258), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7513), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_RBRACE, - [175450] = 6, - ACTIONS(6523), 1, + [175550] = 6, + ACTIONS(7081), 1, anon_sym_as, - ACTIONS(6525), 1, + ACTIONS(7083), 1, anon_sym_if, - ACTIONS(6527), 1, + ACTIONS(7085), 1, anon_sym_and, - ACTIONS(6529), 1, + ACTIONS(7087), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7382), 2, + ACTIONS(7492), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [175471] = 7, - ACTIONS(6701), 1, - anon_sym_LBRACK, - ACTIONS(7330), 1, - anon_sym_LPAREN, - ACTIONS(7416), 1, - anon_sym_COLON, - ACTIONS(7418), 1, + [175571] = 4, + ACTIONS(3705), 1, + anon_sym_DOT, + STATE(4234), 1, + aux_sym_class_definition_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6548), 4, sym__newline, - STATE(494), 1, - sym_external_definition, - STATE(5008), 1, - sym_argument_list, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + [175588] = 4, + ACTIONS(7519), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [175494] = 6, - ACTIONS(6928), 1, + STATE(4209), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + ACTIONS(7517), 3, + sym__newline, + anon_sym_COMMA, + anon_sym_EQ, + [175605] = 6, + ACTIONS(7081), 1, anon_sym_as, - ACTIONS(6930), 1, + ACTIONS(7083), 1, anon_sym_if, - ACTIONS(6932), 1, + ACTIONS(7085), 1, anon_sym_and, - ACTIONS(6934), 1, + ACTIONS(7087), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7420), 2, + ACTIONS(7490), 2, anon_sym_RPAREN, anon_sym_COMMA, - [175515] = 3, + [175626] = 7, + ACTIONS(7522), 1, + anon_sym_DOT, + ACTIONS(7524), 1, + anon_sym_COMMA, + ACTIONS(7526), 1, + anon_sym_COLON, + ACTIONS(7528), 1, + anon_sym_RBRACK, + ACTIONS(7530), 1, + anon_sym_PIPE, + STATE(4914), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7422), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6904), 4, - anon_sym_COMMA, + [175649] = 6, + ACTIONS(6670), 1, anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [175530] = 4, - ACTIONS(7426), 1, - anon_sym_COMMA, - STATE(4265), 1, - aux_sym_for_in_clause_repeat1, + ACTIONS(6672), 1, + anon_sym_if, + ACTIONS(6674), 1, + anon_sym_and, + ACTIONS(6676), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7424), 4, - anon_sym_RPAREN, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [175547] = 7, - ACTIONS(6758), 1, - anon_sym_LBRACK, - ACTIONS(7330), 1, - anon_sym_LPAREN, - ACTIONS(7428), 1, + ACTIONS(6695), 2, + anon_sym_COMMA, anon_sym_COLON, - ACTIONS(7430), 1, - sym__newline, - STATE(2884), 1, - sym_external_definition, - STATE(5042), 1, - sym_argument_list, + [175670] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [175570] = 7, - ACTIONS(6701), 1, - anon_sym_LBRACK, - ACTIONS(7330), 1, - anon_sym_LPAREN, - ACTIONS(7432), 1, - anon_sym_COLON, - ACTIONS(7434), 1, + ACTIONS(6385), 6, sym__newline, - STATE(500), 1, - sym_external_definition, - STATE(5001), 1, - sym_argument_list, - ACTIONS(3), 2, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [175683] = 4, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - [175593] = 4, - ACTIONS(7436), 1, - anon_sym_COMMA, - STATE(4279), 1, - aux_sym_for_in_clause_repeat1, + ACTIONS(7534), 1, + anon_sym_BSLASH, + ACTIONS(7532), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [175700] = 4, + ACTIONS(7425), 1, + anon_sym_PIPE, + STATE(4175), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7438), 4, + ACTIONS(7536), 4, + anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [175610] = 4, - ACTIONS(7440), 1, + anon_sym_COLON, + [175717] = 4, + ACTIONS(7538), 1, anon_sym_COMMA, - STATE(4233), 1, + STATE(4283), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7442), 4, + ACTIONS(7540), 4, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACE, - [175627] = 3, + [175734] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7444), 2, + ACTIONS(7542), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7106), 4, + ACTIONS(7340), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [175642] = 4, - ACTIONS(7446), 1, + anon_sym_RBRACE, + [175749] = 4, + ACTIONS(7544), 1, anon_sym_COMMA, - STATE(4200), 1, + STATE(4240), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7424), 4, + ACTIONS(7540), 4, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACE, - [175659] = 7, - ACTIONS(6509), 1, + anon_sym_RBRACK, + [175766] = 7, + ACTIONS(6559), 1, anon_sym_LPAREN, - ACTIONS(6515), 1, + ACTIONS(6565), 1, anon_sym_LBRACK, - ACTIONS(7448), 1, + ACTIONS(7546), 1, sym_identifier, - STATE(2825), 1, + STATE(2911), 1, sym_c_function_definition, - STATE(3890), 1, + STATE(3928), 1, sym_c_parameters, - STATE(5210), 1, + STATE(5224), 1, sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [175682] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5498), 6, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [175695] = 6, - ACTIONS(6539), 1, - anon_sym_as, - ACTIONS(6541), 1, - anon_sym_if, - ACTIONS(6543), 1, - anon_sym_and, - ACTIONS(6545), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7370), 2, - anon_sym_COMMA, - anon_sym_COLON, - [175716] = 6, - ACTIONS(6523), 1, + [175789] = 6, + ACTIONS(7253), 1, anon_sym_as, - ACTIONS(6525), 1, + ACTIONS(7255), 1, anon_sym_if, - ACTIONS(6527), 1, + ACTIONS(7257), 1, anon_sym_and, - ACTIONS(6529), 1, + ACTIONS(7259), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3327), 2, + ACTIONS(6730), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [175737] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7450), 6, - sym__newline, - anon_sym_COLON, - anon_sym_except, - anon_sym_with, - anon_sym_nogil, - anon_sym_noexcept, - [175750] = 4, - ACTIONS(7454), 1, - anon_sym_PIPE, - STATE(4165), 1, - aux_sym_union_pattern_repeat1, + anon_sym_RBRACE, + [175810] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7452), 4, + ACTIONS(7548), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7340), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [175767] = 4, - ACTIONS(7454), 1, anon_sym_PIPE, - STATE(4208), 1, - aux_sym_union_pattern_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7456), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [175784] = 7, - ACTIONS(6701), 1, - anon_sym_LBRACK, - ACTIONS(7330), 1, - anon_sym_LPAREN, - ACTIONS(7458), 1, - anon_sym_COLON, - ACTIONS(7460), 1, - sym__newline, - STATE(498), 1, - sym_external_definition, - STATE(4998), 1, - sym_argument_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [175807] = 7, - ACTIONS(6683), 1, + [175825] = 7, + ACTIONS(6822), 1, anon_sym_LBRACK, - ACTIONS(7330), 1, + ACTIONS(7366), 1, anon_sym_LPAREN, - ACTIONS(7462), 1, + ACTIONS(7550), 1, anon_sym_COLON, - ACTIONS(7464), 1, + ACTIONS(7552), 1, sym__newline, - STATE(1141), 1, + STATE(2820), 1, sym_external_definition, - STATE(5124), 1, + STATE(5083), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [175830] = 6, - ACTIONS(4987), 1, - anon_sym_STAR_STAR, - ACTIONS(7466), 1, - sym_identifier, - ACTIONS(7468), 1, - anon_sym_LPAREN, - ACTIONS(7470), 1, - anon_sym_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4534), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - [175851] = 3, - ACTIONS(7472), 1, - anon_sym_LPAREN, + [175848] = 3, + ACTIONS(7085), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6904), 5, + ACTIONS(4605), 5, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [175866] = 7, - ACTIONS(7474), 1, + anon_sym_or, + [175863] = 7, + ACTIONS(6672), 1, + anon_sym_if, + ACTIONS(6674), 1, + anon_sym_and, + ACTIONS(6676), 1, + anon_sym_or, + ACTIONS(7554), 1, anon_sym_COMMA, - ACTIONS(7476), 1, + ACTIONS(7556), 1, anon_sym_as, - ACTIONS(7478), 1, - anon_sym_if, - ACTIONS(7480), 1, + ACTIONS(7558), 1, anon_sym_COLON, - STATE(4412), 1, - aux_sym_case_clause_repeat1, - STATE(5419), 1, - sym_if_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [175889] = 4, - ACTIONS(7482), 1, - anon_sym_COMMA, - STATE(4215), 1, - aux_sym_assert_statement_repeat1, + [175886] = 6, + ACTIONS(7081), 1, + anon_sym_as, + ACTIONS(7083), 1, + anon_sym_if, + ACTIONS(7085), 1, + anon_sym_and, + ACTIONS(7087), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6552), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [175906] = 4, - ACTIONS(7485), 1, + ACTIONS(7505), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(4266), 1, - aux_sym_for_in_clause_repeat1, + [175907] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7438), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [175923] = 4, - ACTIONS(7487), 1, + ACTIONS(7560), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7340), 4, anon_sym_COMMA, - STATE(4269), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7442), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_as, anon_sym_RBRACK, - [175940] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(7491), 1, - anon_sym_BSLASH, - ACTIONS(7489), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [175957] = 4, - ACTIONS(7454), 1, anon_sym_PIPE, - STATE(4208), 1, - aux_sym_union_pattern_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7493), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [175974] = 6, - ACTIONS(6928), 1, - anon_sym_as, - ACTIONS(6930), 1, + [175922] = 7, + ACTIONS(6672), 1, anon_sym_if, - ACTIONS(6932), 1, + ACTIONS(6674), 1, anon_sym_and, - ACTIONS(6934), 1, + ACTIONS(6676), 1, anon_sym_or, + ACTIONS(7556), 1, + anon_sym_as, + ACTIONS(7562), 1, + anon_sym_COMMA, + ACTIONS(7564), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7495), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [175995] = 6, - ACTIONS(6029), 1, + [175945] = 6, + ACTIONS(6614), 1, anon_sym_as, - ACTIONS(6031), 1, + ACTIONS(6616), 1, anon_sym_if, - ACTIONS(6033), 1, + ACTIONS(6618), 1, anon_sym_and, - ACTIONS(6035), 1, + ACTIONS(6620), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7497), 2, - sym__newline, - anon_sym_SEMI, - [176016] = 6, - ACTIONS(6029), 1, + ACTIONS(3253), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [175966] = 6, + ACTIONS(7253), 1, anon_sym_as, - ACTIONS(6031), 1, + ACTIONS(7255), 1, anon_sym_if, - ACTIONS(6033), 1, + ACTIONS(7257), 1, anon_sym_and, - ACTIONS(6035), 1, + ACTIONS(7259), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7499), 2, - sym__newline, - anon_sym_COMMA, - [176037] = 4, - ACTIONS(7501), 1, + ACTIONS(7376), 2, anon_sym_COMMA, - STATE(4163), 1, - aux_sym__patterns_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2747), 4, - anon_sym_COLON, - anon_sym_EQ, anon_sym_RBRACE, - sym_type_conversion, - [176054] = 3, + [175987] = 6, + ACTIONS(7081), 1, + anon_sym_as, + ACTIONS(7083), 1, + anon_sym_if, + ACTIONS(7085), 1, + anon_sym_and, + ACTIONS(7087), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7503), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7106), 4, + ACTIONS(6695), 2, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [176069] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(7507), 1, - anon_sym_BSLASH, - ACTIONS(7505), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [176086] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(7511), 1, - anon_sym_BSLASH, - ACTIONS(7509), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [176103] = 4, + [176008] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(7515), 1, + ACTIONS(7568), 1, anon_sym_BSLASH, - ACTIONS(7513), 5, + ACTIONS(7566), 5, sym__string_content, sym_escape_interpolation, sym_string_end, anon_sym_LBRACE, sym_escape_sequence, - [176120] = 2, + [176025] = 4, + ACTIONS(7570), 1, + anon_sym_COMMA, + STATE(4240), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7517), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [176133] = 7, - ACTIONS(6758), 1, + ACTIONS(7572), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [176042] = 7, + ACTIONS(6744), 1, anon_sym_LBRACK, - ACTIONS(7330), 1, + ACTIONS(7366), 1, anon_sym_LPAREN, - ACTIONS(7519), 1, + ACTIONS(7574), 1, anon_sym_COLON, - ACTIONS(7521), 1, + ACTIONS(7576), 1, sym__newline, - STATE(2837), 1, + STATE(1092), 1, sym_external_definition, - STATE(5036), 1, + STATE(4966), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [176156] = 6, - ACTIONS(6029), 1, - anon_sym_as, - ACTIONS(6031), 1, - anon_sym_if, - ACTIONS(6033), 1, - anon_sym_and, - ACTIONS(6035), 1, - anon_sym_or, + [176065] = 4, + ACTIONS(3705), 1, + anon_sym_DOT, + STATE(3291), 1, + aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7523), 2, + ACTIONS(6546), 4, sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + [176082] = 4, + ACTIONS(7578), 1, anon_sym_COMMA, - [176177] = 7, - ACTIONS(7390), 1, + STATE(4261), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3055), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [176099] = 7, + ACTIONS(7522), 1, anon_sym_DOT, - ACTIONS(7394), 1, + ACTIONS(7526), 1, anon_sym_COLON, - ACTIONS(7398), 1, + ACTIONS(7530), 1, anon_sym_PIPE, - ACTIONS(7525), 1, + ACTIONS(7580), 1, anon_sym_COMMA, - ACTIONS(7527), 1, + ACTIONS(7582), 1, anon_sym_RBRACK, - STATE(4929), 1, + STATE(4838), 1, aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [176200] = 2, + [176122] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7529), 6, + ACTIONS(5961), 6, sym__newline, - anon_sym_SEMI, - anon_sym_DOT, anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [176213] = 4, - ACTIONS(7531), 1, - anon_sym_COMMA, - STATE(4233), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(3), 2, + anon_sym_except, + anon_sym_with, + anon_sym_nogil, + anon_sym_noexcept, + [176135] = 4, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - ACTIONS(7534), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [176230] = 7, - ACTIONS(6509), 1, + ACTIONS(7586), 1, + anon_sym_BSLASH, + ACTIONS(7584), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [176152] = 7, + ACTIONS(6559), 1, anon_sym_LPAREN, - ACTIONS(6515), 1, + ACTIONS(6565), 1, anon_sym_LBRACK, - ACTIONS(7536), 1, + ACTIONS(7588), 1, sym_identifier, - STATE(644), 1, + STATE(1233), 1, sym_c_function_definition, - STATE(3918), 1, + STATE(3968), 1, sym_c_parameters, - STATE(5261), 1, + STATE(5202), 1, sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [176253] = 6, - ACTIONS(6928), 1, - anon_sym_as, - ACTIONS(6930), 1, - anon_sym_if, - ACTIONS(6932), 1, - anon_sym_and, - ACTIONS(6934), 1, - anon_sym_or, + [176175] = 4, + ACTIONS(7590), 1, + anon_sym_COMMA, + STATE(4240), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7538), 2, - anon_sym_RPAREN, + ACTIONS(7459), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [176192] = 4, + ACTIONS(7593), 1, anon_sym_COMMA, - [176274] = 6, - ACTIONS(6029), 1, + STATE(4218), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7464), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [176209] = 6, + ACTIONS(7081), 1, anon_sym_as, - ACTIONS(6031), 1, + ACTIONS(7083), 1, anon_sym_if, - ACTIONS(6033), 1, + ACTIONS(7085), 1, anon_sym_and, - ACTIONS(6035), 1, + ACTIONS(7087), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7540), 2, - sym__newline, - anon_sym_SEMI, - [176295] = 6, - ACTIONS(6539), 1, + ACTIONS(7595), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [176230] = 6, + ACTIONS(7081), 1, anon_sym_as, - ACTIONS(6541), 1, + ACTIONS(7083), 1, anon_sym_if, - ACTIONS(6543), 1, + ACTIONS(7085), 1, anon_sym_and, - ACTIONS(6545), 1, + ACTIONS(7087), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7538), 2, + ACTIONS(7597), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - [176316] = 2, + [176251] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6424), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, + ACTIONS(7599), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6921), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_PIPE, - [176329] = 2, + [176266] = 6, + ACTIONS(7081), 1, + anon_sym_as, + ACTIONS(7083), 1, + anon_sym_if, + ACTIONS(7085), 1, + anon_sym_and, + ACTIONS(7087), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5960), 6, - sym__newline, - anon_sym_COLON, - anon_sym_except, - anon_sym_with, - anon_sym_nogil, - anon_sym_noexcept, - [176342] = 6, - ACTIONS(6539), 1, + ACTIONS(7601), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [176287] = 6, + ACTIONS(6614), 1, anon_sym_as, - ACTIONS(6541), 1, + ACTIONS(6616), 1, anon_sym_if, - ACTIONS(6543), 1, + ACTIONS(6618), 1, anon_sym_and, - ACTIONS(6545), 1, + ACTIONS(6620), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6552), 2, + ACTIONS(3285), 2, anon_sym_COMMA, - anon_sym_COLON, - [176363] = 2, + anon_sym_RBRACK, + [176308] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(7605), 1, + anon_sym_BSLASH, + ACTIONS(7603), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [176325] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3875), 6, + ACTIONS(7607), 6, sym__newline, - anon_sym_SEMI, - anon_sym_DOT, anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [176376] = 7, - ACTIONS(6758), 1, + anon_sym_except, + anon_sym_with, + anon_sym_nogil, + anon_sym_noexcept, + [176338] = 7, + ACTIONS(6559), 1, + anon_sym_LPAREN, + ACTIONS(6565), 1, anon_sym_LBRACK, - ACTIONS(7330), 1, + ACTIONS(7609), 1, + sym_identifier, + STATE(1219), 1, + sym_c_function_definition, + STATE(3968), 1, + sym_c_parameters, + STATE(5202), 1, + sym_template_params, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [176361] = 7, + ACTIONS(6778), 1, + anon_sym_LBRACK, + ACTIONS(7366), 1, anon_sym_LPAREN, - ACTIONS(7542), 1, + ACTIONS(7611), 1, anon_sym_COLON, - ACTIONS(7544), 1, + ACTIONS(7613), 1, sym__newline, - STATE(2909), 1, + STATE(501), 1, sym_external_definition, - STATE(5045), 1, + STATE(5055), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [176399] = 6, - ACTIONS(6928), 1, + [176384] = 6, + ACTIONS(6614), 1, anon_sym_as, - ACTIONS(6930), 1, + ACTIONS(6616), 1, anon_sym_if, - ACTIONS(6932), 1, + ACTIONS(6618), 1, anon_sym_and, - ACTIONS(6934), 1, + ACTIONS(6620), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3855), 2, - anon_sym_RPAREN, + ACTIONS(6964), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [176405] = 4, + ACTIONS(7615), 1, anon_sym_COMMA, - [176420] = 6, - ACTIONS(6029), 1, + STATE(4284), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7513), 4, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [176422] = 6, + ACTIONS(6104), 1, anon_sym_as, - ACTIONS(6031), 1, + ACTIONS(6106), 1, anon_sym_if, - ACTIONS(6033), 1, + ACTIONS(6108), 1, anon_sym_and, - ACTIONS(6035), 1, + ACTIONS(6110), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7546), 2, - sym__newline, - anon_sym_COMMA, - [176441] = 7, - ACTIONS(6758), 1, - anon_sym_LBRACK, - ACTIONS(7330), 1, - anon_sym_LPAREN, - ACTIONS(7548), 1, - anon_sym_COLON, - ACTIONS(7550), 1, + ACTIONS(6964), 2, sym__newline, - STATE(2858), 1, - sym_external_definition, - STATE(5039), 1, - sym_argument_list, + anon_sym_SEMI, + [176443] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [176464] = 4, + ACTIONS(7617), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [176456] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(7554), 1, + ACTIONS(7621), 1, anon_sym_BSLASH, - ACTIONS(7552), 5, + ACTIONS(7619), 5, sym__string_content, sym_escape_interpolation, sym_string_end, anon_sym_LBRACE, sym_escape_sequence, - [176481] = 6, - ACTIONS(7278), 1, - anon_sym_as, - ACTIONS(7280), 1, - anon_sym_if, - ACTIONS(7282), 1, - anon_sym_and, - ACTIONS(7284), 1, - anon_sym_or, + [176473] = 6, + ACTIONS(4991), 1, + anon_sym_STAR_STAR, + ACTIONS(7498), 1, + anon_sym_LPAREN, + ACTIONS(7623), 1, + sym_identifier, + ACTIONS(7625), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7495), 2, + STATE(4554), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + [176494] = 4, + ACTIONS(7627), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [176502] = 6, - ACTIONS(6928), 1, - anon_sym_as, - ACTIONS(6930), 1, - anon_sym_if, - ACTIONS(6932), 1, - anon_sym_and, - ACTIONS(6934), 1, - anon_sym_or, + STATE(4180), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7336), 2, + ACTIONS(7540), 4, anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [176511] = 4, + ACTIONS(7629), 1, anon_sym_COMMA, - [176523] = 7, - ACTIONS(6509), 1, - anon_sym_LPAREN, - ACTIONS(6515), 1, - anon_sym_LBRACK, - ACTIONS(7556), 1, - sym_identifier, - STATE(1361), 1, - sym_c_function_definition, - STATE(3899), 1, - sym_c_parameters, - STATE(5300), 1, - sym_template_params, + STATE(4283), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [176546] = 2, + ACTIONS(7572), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [176528] = 7, + ACTIONS(6744), 1, + anon_sym_LBRACK, + ACTIONS(7366), 1, + anon_sym_LPAREN, + ACTIONS(7631), 1, + anon_sym_COLON, + ACTIONS(7633), 1, + sym__newline, + STATE(1113), 1, + sym_external_definition, + STATE(5003), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7558), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [176559] = 6, - ACTIONS(6928), 1, - anon_sym_as, - ACTIONS(6930), 1, - anon_sym_if, - ACTIONS(6932), 1, - anon_sym_and, - ACTIONS(6934), 1, - anon_sym_or, + [176551] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4605), 2, - anon_sym_RPAREN, + ACTIONS(7635), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6921), 4, anon_sym_COMMA, - [176580] = 4, - ACTIONS(7560), 1, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [176566] = 4, + ACTIONS(7637), 1, anon_sym_COMMA, - STATE(4270), 1, - aux_sym_for_in_clause_repeat1, + STATE(4261), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7438), 4, - anon_sym_RPAREN, + ACTIONS(6695), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [176583] = 6, + ACTIONS(7081), 1, + anon_sym_as, + ACTIONS(7083), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - [176597] = 5, - ACTIONS(6932), 1, + ACTIONS(7085), 1, anon_sym_and, - ACTIONS(6934), 1, + ACTIONS(7087), 1, anon_sym_or, - ACTIONS(7562), 1, - anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4617), 3, + ACTIONS(7433), 2, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, - [176616] = 6, - ACTIONS(7278), 1, + [176604] = 6, + ACTIONS(6104), 1, anon_sym_as, - ACTIONS(7280), 1, + ACTIONS(6106), 1, anon_sym_if, - ACTIONS(7282), 1, + ACTIONS(6108), 1, anon_sym_and, - ACTIONS(7284), 1, + ACTIONS(6110), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4605), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [176637] = 4, - ACTIONS(6932), 1, - anon_sym_and, - ACTIONS(6934), 1, - anon_sym_or, + ACTIONS(7640), 2, + sym__newline, + anon_sym_SEMI, + [176625] = 3, + STATE(4175), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4577), 4, - anon_sym_RPAREN, + ACTIONS(7378), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, - [176654] = 5, - ACTIONS(7282), 1, - anon_sym_and, - ACTIONS(7284), 1, - anon_sym_or, - ACTIONS(7565), 1, + anon_sym_COLON, + anon_sym_PIPE, + [176640] = 6, + ACTIONS(7253), 1, anon_sym_as, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4617), 3, - anon_sym_COMMA, + ACTIONS(7255), 1, anon_sym_if, - anon_sym_RBRACE, - [176673] = 4, - ACTIONS(7282), 1, + ACTIONS(7257), 1, anon_sym_and, - ACTIONS(7284), 1, + ACTIONS(7259), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4577), 4, + ACTIONS(7474), 2, anon_sym_COMMA, + anon_sym_RBRACE, + [176661] = 6, + ACTIONS(7081), 1, anon_sym_as, + ACTIONS(7083), 1, anon_sym_if, - anon_sym_RBRACE, - [176690] = 3, - ACTIONS(7282), 1, + ACTIONS(7085), 1, anon_sym_and, + ACTIONS(7087), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4554), 5, + ACTIONS(6964), 2, + anon_sym_RPAREN, anon_sym_COMMA, + [176682] = 6, + ACTIONS(6614), 1, anon_sym_as, + ACTIONS(6616), 1, anon_sym_if, - anon_sym_RBRACE, - anon_sym_or, - [176705] = 6, - ACTIONS(7278), 1, - anon_sym_as, - ACTIONS(7280), 1, - anon_sym_if, - ACTIONS(7282), 1, + ACTIONS(6618), 1, anon_sym_and, - ACTIONS(7284), 1, + ACTIONS(6620), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4465), 2, + ACTIONS(6695), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [176726] = 6, - ACTIONS(7278), 1, + anon_sym_RBRACK, + [176703] = 6, + ACTIONS(7081), 1, anon_sym_as, - ACTIONS(7280), 1, + ACTIONS(7083), 1, anon_sym_if, - ACTIONS(7282), 1, + ACTIONS(7085), 1, anon_sym_and, - ACTIONS(7284), 1, + ACTIONS(7087), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4569), 2, + ACTIONS(4613), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACE, - [176747] = 3, - ACTIONS(6932), 1, - anon_sym_and, + [176724] = 7, + ACTIONS(6559), 1, + anon_sym_LPAREN, + ACTIONS(6565), 1, + anon_sym_LBRACK, + ACTIONS(7642), 1, + sym_identifier, + STATE(506), 1, + sym_c_function_definition, + STATE(3939), 1, + sym_c_parameters, + STATE(5274), 1, + sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4554), 5, - anon_sym_RPAREN, + [176747] = 4, + ACTIONS(7644), 1, anon_sym_COMMA, - anon_sym_as, + STATE(4216), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7464), 4, anon_sym_if, - anon_sym_or, - [176762] = 6, - ACTIONS(6928), 1, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [176764] = 6, + ACTIONS(6614), 1, anon_sym_as, - ACTIONS(6930), 1, + ACTIONS(6616), 1, anon_sym_if, - ACTIONS(6932), 1, + ACTIONS(6618), 1, anon_sym_and, - ACTIONS(6934), 1, + ACTIONS(6620), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4569), 2, - anon_sym_RPAREN, + ACTIONS(7376), 2, anon_sym_COMMA, - [176783] = 4, - ACTIONS(6543), 1, + anon_sym_RBRACK, + [176785] = 5, + ACTIONS(7085), 1, anon_sym_and, - ACTIONS(6545), 1, + ACTIONS(7087), 1, anon_sym_or, + ACTIONS(7646), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4577), 4, + ACTIONS(4590), 3, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, - [176800] = 6, - ACTIONS(6523), 1, + [176804] = 6, + ACTIONS(6614), 1, anon_sym_as, - ACTIONS(6525), 1, + ACTIONS(6616), 1, anon_sym_if, - ACTIONS(6527), 1, + ACTIONS(6618), 1, anon_sym_and, - ACTIONS(6529), 1, + ACTIONS(6620), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7568), 2, + ACTIONS(7474), 2, anon_sym_COMMA, anon_sym_RBRACK, - [176821] = 4, - ACTIONS(7570), 1, + [176825] = 7, + ACTIONS(7522), 1, + anon_sym_DOT, + ACTIONS(7526), 1, + anon_sym_COLON, + ACTIONS(7530), 1, + anon_sym_PIPE, + ACTIONS(7649), 1, anon_sym_COMMA, - STATE(4272), 1, - aux_sym_for_in_clause_repeat1, + ACTIONS(7651), 1, + anon_sym_RBRACK, + STATE(4805), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7442), 4, - anon_sym_RPAREN, + [176848] = 6, + ACTIONS(7253), 1, + anon_sym_as, + ACTIONS(7255), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - [176838] = 4, - ACTIONS(7572), 1, - anon_sym_COMMA, - STATE(4269), 1, - aux_sym_for_in_clause_repeat1, + ACTIONS(7257), 1, + anon_sym_and, + ACTIONS(7259), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7574), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [176855] = 6, - ACTIONS(6928), 1, + ACTIONS(4574), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [176869] = 5, + ACTIONS(7257), 1, + anon_sym_and, + ACTIONS(7259), 1, + anon_sym_or, + ACTIONS(7653), 1, anon_sym_as, - ACTIONS(6930), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4590), 3, + anon_sym_COMMA, anon_sym_if, - ACTIONS(6932), 1, + anon_sym_RBRACE, + [176888] = 4, + ACTIONS(7257), 1, anon_sym_and, - ACTIONS(6934), 1, + ACTIONS(7259), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7384), 2, - anon_sym_RPAREN, + ACTIONS(4597), 4, anon_sym_COMMA, - [176876] = 6, - ACTIONS(6029), 1, anon_sym_as, - ACTIONS(6031), 1, anon_sym_if, - ACTIONS(6033), 1, + anon_sym_RBRACE, + [176905] = 3, + ACTIONS(7257), 1, anon_sym_and, - ACTIONS(6035), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7576), 2, - sym__newline, - anon_sym_COMMA, - [176897] = 4, - ACTIONS(7578), 1, + ACTIONS(4605), 5, anon_sym_COMMA, - STATE(4269), 1, - aux_sym_for_in_clause_repeat1, + anon_sym_as, + anon_sym_if, + anon_sym_RBRACE, + anon_sym_or, + [176920] = 6, + ACTIONS(7253), 1, + anon_sym_as, + ACTIONS(7255), 1, + anon_sym_if, + ACTIONS(7257), 1, + anon_sym_and, + ACTIONS(7259), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7534), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [176914] = 4, - ACTIONS(7581), 1, + ACTIONS(4613), 2, anon_sym_COMMA, - STATE(4272), 1, - aux_sym_for_in_clause_repeat1, + anon_sym_RBRACE, + [176941] = 6, + ACTIONS(7253), 1, + anon_sym_as, + ACTIONS(7255), 1, + anon_sym_if, + ACTIONS(7257), 1, + anon_sym_and, + ACTIONS(7259), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7574), 4, - anon_sym_RPAREN, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [176931] = 7, - ACTIONS(6683), 1, + ACTIONS(4621), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [176962] = 7, + ACTIONS(6778), 1, anon_sym_LBRACK, - ACTIONS(7330), 1, + ACTIONS(7366), 1, anon_sym_LPAREN, - ACTIONS(7583), 1, + ACTIONS(7656), 1, anon_sym_COLON, - ACTIONS(7585), 1, + ACTIONS(7658), 1, sym__newline, - STATE(1062), 1, + STATE(499), 1, sym_external_definition, - STATE(4741), 1, + STATE(5048), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [176954] = 4, - ACTIONS(7587), 1, - anon_sym_COMMA, - STATE(4272), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7534), 4, - anon_sym_RPAREN, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [176971] = 6, - ACTIONS(6928), 1, - anon_sym_as, - ACTIONS(6930), 1, - anon_sym_if, - ACTIONS(6932), 1, + [176985] = 4, + ACTIONS(7085), 1, anon_sym_and, - ACTIONS(6934), 1, + ACTIONS(7087), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4465), 2, + ACTIONS(4597), 4, anon_sym_RPAREN, anon_sym_COMMA, - [176992] = 4, - ACTIONS(7592), 1, - anon_sym_LBRACK, + anon_sym_as, + anon_sym_if, + [177002] = 4, + ACTIONS(7660), 1, + anon_sym_COMMA, + STATE(4283), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4274), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - ACTIONS(7590), 3, - sym__newline, - anon_sym_COMMA, - anon_sym_EQ, - [177009] = 4, - ACTIONS(7595), 1, + ACTIONS(7459), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [177019] = 4, + ACTIONS(7663), 1, anon_sym_COMMA, - STATE(4217), 1, + STATE(4180), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7424), 4, + ACTIONS(7572), 4, + anon_sym_RPAREN, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, - [177026] = 2, + [177036] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7597), 6, + ACTIONS(3920), 6, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [177039] = 7, - ACTIONS(7390), 1, - anon_sym_DOT, - ACTIONS(7394), 1, - anon_sym_COLON, - ACTIONS(7398), 1, - anon_sym_PIPE, - ACTIONS(7599), 1, - anon_sym_COMMA, - ACTIONS(7601), 1, - anon_sym_RBRACK, - STATE(4812), 1, - aux_sym_type_parameter_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [177062] = 6, - ACTIONS(6523), 1, + [177049] = 6, + ACTIONS(7253), 1, anon_sym_as, - ACTIONS(6525), 1, + ACTIONS(7255), 1, anon_sym_if, - ACTIONS(6527), 1, + ACTIONS(7257), 1, anon_sym_and, - ACTIONS(6529), 1, + ACTIONS(7259), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3341), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [177083] = 4, - ACTIONS(7603), 1, + ACTIONS(6695), 2, anon_sym_COMMA, - STATE(4233), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7574), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_RBRACE, - [177100] = 6, - ACTIONS(4843), 1, - anon_sym_STAR_STAR, - ACTIONS(7468), 1, - anon_sym_LPAREN, - ACTIONS(7605), 1, - sym_identifier, - ACTIONS(7607), 1, - anon_sym_STAR, + [177070] = 6, + ACTIONS(6614), 1, + anon_sym_as, + ACTIONS(6616), 1, + anon_sym_if, + ACTIONS(6618), 1, + anon_sym_and, + ACTIONS(6620), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4574), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - [177121] = 6, - ACTIONS(7278), 1, + ACTIONS(3353), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [177091] = 6, + ACTIONS(6670), 1, anon_sym_as, - ACTIONS(7280), 1, + ACTIONS(6672), 1, anon_sym_if, - ACTIONS(7282), 1, + ACTIONS(6674), 1, anon_sym_and, - ACTIONS(7284), 1, + ACTIONS(6676), 1, anon_sym_or, + ACTIONS(7665), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6552), 2, - anon_sym_COMMA, + [177111] = 6, + ACTIONS(7667), 1, + anon_sym_LBRACE, + ACTIONS(7670), 1, anon_sym_RBRACE, - [177142] = 2, - ACTIONS(3), 2, + ACTIONS(7672), 1, + aux_sym_format_specifier_token1, + STATE(4289), 1, + aux_sym_format_specifier_repeat1, + STATE(4809), 1, + sym_interpolation, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(7609), 6, - sym__newline, - anon_sym_COLON, - anon_sym_except, - anon_sym_with, - anon_sym_nogil, - anon_sym_noexcept, - [177155] = 7, - ACTIONS(6541), 1, + [177131] = 6, + ACTIONS(6670), 1, + anon_sym_as, + ACTIONS(6672), 1, anon_sym_if, - ACTIONS(6543), 1, + ACTIONS(6674), 1, anon_sym_and, - ACTIONS(6545), 1, + ACTIONS(6676), 1, anon_sym_or, - ACTIONS(7326), 1, - anon_sym_as, - ACTIONS(7611), 1, - anon_sym_COMMA, - ACTIONS(7613), 1, + ACTIONS(7675), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177178] = 3, - STATE(4447), 1, - aux_sym_union_pattern_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7350), 4, - anon_sym_RPAREN, - anon_sym_COMMA, + [177151] = 6, + ACTIONS(6670), 1, anon_sym_as, - anon_sym_PIPE, - [177192] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7615), 5, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(6672), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - [177204] = 2, + ACTIONS(6674), 1, + anon_sym_and, + ACTIONS(6676), 1, + anon_sym_or, + ACTIONS(7677), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7615), 5, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [177216] = 2, + [177171] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7534), 5, + ACTIONS(6385), 5, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [177228] = 4, - ACTIONS(7617), 1, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_PIPE, - STATE(4445), 1, - aux_sym_union_pattern_repeat1, + [177183] = 6, + ACTIONS(6810), 1, + anon_sym_with, + ACTIONS(6812), 1, + anon_sym_nogil, + ACTIONS(6834), 1, + anon_sym_COLON, + ACTIONS(6836), 1, + sym__newline, + STATE(5357), 1, + sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7456), 3, - anon_sym_COMMA, + [177203] = 6, + ACTIONS(6670), 1, anon_sym_as, - anon_sym_RBRACK, - [177244] = 3, - STATE(4445), 1, - aux_sym_union_pattern_repeat1, + ACTIONS(6672), 1, + anon_sym_if, + ACTIONS(6674), 1, + anon_sym_and, + ACTIONS(6676), 1, + anon_sym_or, + ACTIONS(7679), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7350), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [177258] = 4, - ACTIONS(7619), 1, - anon_sym_PIPE, - STATE(4290), 1, - aux_sym_union_pattern_repeat1, + [177223] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7350), 3, + ACTIONS(7681), 5, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, - [177274] = 5, - ACTIONS(7402), 1, - anon_sym_DOT, - ACTIONS(7624), 1, + anon_sym_if, anon_sym_COLON, - ACTIONS(7626), 1, anon_sym_PIPE, + [177235] = 6, + ACTIONS(7683), 1, + anon_sym_COLON, + ACTIONS(7685), 1, + anon_sym_EQ, + ACTIONS(7687), 1, + anon_sym_RBRACE, + ACTIONS(7689), 1, + sym_type_conversion, + STATE(5469), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7622), 2, - sym__newline, - anon_sym_SEMI, - [177292] = 6, - ACTIONS(7628), 1, + [177255] = 6, + ACTIONS(7691), 1, anon_sym_pass, - ACTIONS(7630), 1, + ACTIONS(7693), 1, sym__newline, - ACTIONS(7632), 1, + ACTIONS(7695), 1, sym__indent, - STATE(565), 1, + STATE(1318), 1, sym_pass_statement, - STATE(618), 1, + STATE(1374), 1, sym_extern_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177312] = 2, + [177275] = 5, + ACTIONS(7697), 1, + anon_sym_COMMA, + ACTIONS(7699), 1, + anon_sym_RBRACE, + STATE(4681), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7346), 5, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [177324] = 5, - ACTIONS(7390), 1, - anon_sym_DOT, - ACTIONS(7394), 1, + ACTIONS(6921), 2, anon_sym_COLON, - ACTIONS(7398), 1, anon_sym_PIPE, + [177293] = 6, + ACTIONS(7701), 1, + anon_sym_pass, + ACTIONS(7703), 1, + sym__newline, + ACTIONS(7705), 1, + sym__indent, + STATE(2944), 1, + sym_extern_suite, + STATE(3001), 1, + sym_pass_statement, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [177313] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7634), 2, + ACTIONS(7707), 5, anon_sym_COMMA, - anon_sym_RBRACK, - [177342] = 2, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [177325] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7636), 5, + ACTIONS(7709), 5, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACE, - [177354] = 6, - ACTIONS(6539), 1, + [177337] = 6, + ACTIONS(6670), 1, anon_sym_as, - ACTIONS(6541), 1, + ACTIONS(6672), 1, anon_sym_if, - ACTIONS(6543), 1, + ACTIONS(6674), 1, anon_sym_and, - ACTIONS(6545), 1, + ACTIONS(6676), 1, anon_sym_or, - ACTIONS(7638), 1, + ACTIONS(7711), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177374] = 2, + [177357] = 6, + ACTIONS(7713), 1, + anon_sym_COLON, + ACTIONS(7715), 1, + anon_sym_LBRACK, + ACTIONS(7717), 1, + anon_sym_nogil, + ACTIONS(7719), 1, + sym__newline, + STATE(5081), 1, + sym_template_params, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [177377] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7640), 5, + ACTIONS(7721), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [177386] = 5, - ACTIONS(7642), 1, - sym_identifier, - ACTIONS(7644), 1, + [177389] = 6, + ACTIONS(6670), 1, + anon_sym_as, + ACTIONS(6672), 1, + anon_sym_if, + ACTIONS(6674), 1, + anon_sym_and, + ACTIONS(6676), 1, + anon_sym_or, + ACTIONS(7723), 1, anon_sym_COLON, - ACTIONS(7648), 1, - sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7646), 2, - anon_sym_class, - anon_sym_struct, - [177404] = 6, - ACTIONS(6988), 1, - anon_sym_COMMA, - ACTIONS(7650), 1, - anon_sym_LPAREN, - ACTIONS(7652), 1, - anon_sym_EQ, - ACTIONS(7654), 1, - anon_sym_RBRACK, - STATE(4829), 1, - aux_sym_type_index_repeat1, + [177409] = 6, + ACTIONS(6104), 1, + anon_sym_as, + ACTIONS(6106), 1, + anon_sym_if, + ACTIONS(6108), 1, + anon_sym_and, + ACTIONS(6110), 1, + anon_sym_or, + ACTIONS(7725), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177424] = 5, - ACTIONS(7656), 1, - sym_identifier, - ACTIONS(7658), 1, - anon_sym_COLON, - ACTIONS(7662), 1, + [177429] = 6, + ACTIONS(6104), 1, + anon_sym_as, + ACTIONS(6106), 1, + anon_sym_if, + ACTIONS(6108), 1, + anon_sym_and, + ACTIONS(6110), 1, + anon_sym_or, + ACTIONS(7727), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7660), 2, - anon_sym_class, - anon_sym_struct, - [177442] = 5, - ACTIONS(7664), 1, - sym_identifier, - ACTIONS(7666), 1, - anon_sym_COLON, - ACTIONS(7670), 1, - sym__newline, + [177449] = 6, + ACTIONS(7081), 1, + anon_sym_as, + ACTIONS(7083), 1, + anon_sym_if, + ACTIONS(7085), 1, + anon_sym_and, + ACTIONS(7087), 1, + anon_sym_or, + ACTIONS(7729), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7668), 2, - anon_sym_class, - anon_sym_struct, - [177460] = 2, + [177469] = 6, + ACTIONS(6670), 1, + anon_sym_as, + ACTIONS(6672), 1, + anon_sym_if, + ACTIONS(6674), 1, + anon_sym_and, + ACTIONS(6676), 1, + anon_sym_or, + ACTIONS(7731), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [177489] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7672), 5, + ACTIONS(7733), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [177472] = 6, - ACTIONS(7674), 1, - anon_sym_pass, - ACTIONS(7676), 1, - sym__newline, - ACTIONS(7678), 1, - sym__indent, - STATE(1197), 1, - sym_pass_statement, - STATE(1237), 1, - sym_extern_suite, + [177501] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177492] = 6, - ACTIONS(7628), 1, - anon_sym_pass, - ACTIONS(7630), 1, - sym__newline, - ACTIONS(7632), 1, - sym__indent, - STATE(565), 1, - sym_pass_statement, - STATE(566), 1, - sym_extern_suite, + ACTIONS(7735), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [177513] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177512] = 6, - ACTIONS(7680), 1, + ACTIONS(7737), 5, + anon_sym_COMMA, + anon_sym_as, anon_sym_COLON, - ACTIONS(7682), 1, - anon_sym_LBRACK, - ACTIONS(7684), 1, - anon_sym_nogil, - ACTIONS(7686), 1, - sym__newline, - STATE(4864), 1, - sym_template_params, + anon_sym_PIPE, + anon_sym_RBRACE, + [177525] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177532] = 5, - ACTIONS(7688), 1, - sym_identifier, - ACTIONS(7690), 1, + ACTIONS(7739), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - ACTIONS(7694), 1, + anon_sym_PIPE, + [177537] = 6, + ACTIONS(7701), 1, + anon_sym_pass, + ACTIONS(7703), 1, sym__newline, + ACTIONS(7705), 1, + sym__indent, + STATE(3001), 1, + sym_pass_statement, + STATE(3017), 1, + sym_extern_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7692), 2, - anon_sym_class, - anon_sym_struct, - [177550] = 6, - ACTIONS(6539), 1, + [177557] = 6, + ACTIONS(7081), 1, anon_sym_as, - ACTIONS(6541), 1, + ACTIONS(7083), 1, anon_sym_if, - ACTIONS(6543), 1, + ACTIONS(7085), 1, anon_sym_and, - ACTIONS(6545), 1, + ACTIONS(7087), 1, anon_sym_or, - ACTIONS(7696), 1, - anon_sym_else, + ACTIONS(7741), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177570] = 6, - ACTIONS(6539), 1, - anon_sym_as, - ACTIONS(6541), 1, - anon_sym_if, - ACTIONS(6543), 1, - anon_sym_and, - ACTIONS(6545), 1, - anon_sym_or, - ACTIONS(7698), 1, - anon_sym_else, + [177577] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177590] = 6, - ACTIONS(7700), 1, - anon_sym_COLON, - ACTIONS(7702), 1, - anon_sym_EQ, - ACTIONS(7704), 1, + ACTIONS(7459), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_RBRACE, - ACTIONS(7706), 1, - sym_type_conversion, - STATE(5699), 1, - sym_format_specifier, + [177589] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177610] = 6, - ACTIONS(7674), 1, - anon_sym_pass, - ACTIONS(7708), 1, - sym__newline, - ACTIONS(7710), 1, - sym__indent, - STATE(1341), 1, - sym_struct_suite, - STATE(1343), 1, - sym_pass_statement, + ACTIONS(7743), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [177601] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177630] = 6, - ACTIONS(6988), 1, + ACTIONS(5521), 5, anon_sym_COMMA, - ACTIONS(7650), 1, - anon_sym_LPAREN, - ACTIONS(7712), 1, + anon_sym_COLON, anon_sym_EQ, - ACTIONS(7714), 1, - anon_sym_RBRACK, - STATE(4952), 1, - aux_sym_type_index_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [177650] = 6, - ACTIONS(7628), 1, - anon_sym_pass, - ACTIONS(7716), 1, - sym__newline, - ACTIONS(7718), 1, - sym__indent, - STATE(575), 1, - sym_pass_statement, - STATE(576), 1, - sym_struct_suite, + anon_sym_RBRACE, + sym_type_conversion, + [177613] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177670] = 6, - ACTIONS(6671), 1, - anon_sym_with, - ACTIONS(6673), 1, - anon_sym_nogil, - ACTIONS(6876), 1, + ACTIONS(7745), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - ACTIONS(6878), 1, - sym__newline, - STATE(5217), 1, - sym_gil_spec, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [177690] = 6, - ACTIONS(6029), 1, + anon_sym_PIPE, + [177625] = 6, + ACTIONS(6670), 1, anon_sym_as, - ACTIONS(6031), 1, + ACTIONS(6672), 1, anon_sym_if, - ACTIONS(6033), 1, + ACTIONS(6674), 1, anon_sym_and, - ACTIONS(6035), 1, + ACTIONS(6676), 1, anon_sym_or, - ACTIONS(7720), 1, - sym__newline, + ACTIONS(7747), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [177645] = 4, + ACTIONS(7751), 1, + anon_sym_DOT, + STATE(4412), 1, + aux_sym_import_prefix_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177710] = 2, + ACTIONS(7749), 3, + anon_sym_import, + anon_sym_cimport, + sym_identifier, + [177661] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3720), 5, + ACTIONS(3724), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [177722] = 2, + [177673] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7722), 5, + ACTIONS(7753), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [177734] = 6, - ACTIONS(7724), 1, + [177685] = 6, + ACTIONS(7691), 1, anon_sym_pass, - ACTIONS(7726), 1, + ACTIONS(7755), 1, sym__newline, - ACTIONS(7728), 1, + ACTIONS(7757), 1, sym__indent, - STATE(3007), 1, + STATE(1315), 1, sym_pass_statement, - STATE(3008), 1, - sym_extern_suite, + STATE(1349), 1, + sym_struct_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177754] = 6, - ACTIONS(6667), 1, + [177705] = 6, + ACTIONS(6672), 1, + anon_sym_if, + ACTIONS(6674), 1, + anon_sym_and, + ACTIONS(6676), 1, + anon_sym_or, + ACTIONS(7759), 1, + anon_sym_as, + ACTIONS(7761), 1, anon_sym_COLON, - ACTIONS(6671), 1, - anon_sym_with, - ACTIONS(6673), 1, - anon_sym_nogil, - ACTIONS(6677), 1, - sym__newline, - STATE(5349), 1, - sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177774] = 6, - ACTIONS(7682), 1, - anon_sym_LBRACK, - ACTIONS(7730), 1, - anon_sym_COLON, - ACTIONS(7732), 1, - anon_sym_nogil, - ACTIONS(7734), 1, + [177725] = 6, + ACTIONS(7763), 1, + anon_sym_pass, + ACTIONS(7765), 1, sym__newline, - STATE(4691), 1, - sym_template_params, + ACTIONS(7767), 1, + sym__indent, + STATE(646), 1, + sym_pass_statement, + STATE(674), 1, + sym_struct_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177794] = 4, - ACTIONS(7736), 1, - anon_sym_COMMA, - STATE(4320), 1, - aux_sym_assert_statement_repeat1, + [177745] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6552), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - [177810] = 2, + ACTIONS(5670), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [177757] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7739), 5, + ACTIONS(7769), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [177822] = 5, - ACTIONS(7741), 1, - sym_identifier, - ACTIONS(7743), 1, + [177769] = 6, + ACTIONS(6670), 1, + anon_sym_as, + ACTIONS(6672), 1, + anon_sym_if, + ACTIONS(6674), 1, + anon_sym_and, + ACTIONS(6676), 1, + anon_sym_or, + ACTIONS(7771), 1, anon_sym_COLON, - ACTIONS(7747), 1, - sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7745), 2, - anon_sym_class, - anon_sym_struct, - [177840] = 2, + [177789] = 3, + ACTIONS(7773), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7597), 5, - anon_sym_DOT, + ACTIONS(6921), 4, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [177852] = 6, - ACTIONS(3830), 1, - anon_sym_RPAREN, - ACTIONS(3832), 1, + [177803] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5642), 5, anon_sym_COMMA, - ACTIONS(7749), 1, - anon_sym_LPAREN, - ACTIONS(7751), 1, + anon_sym_COLON, anon_sym_EQ, - STATE(5068), 1, - aux_sym__typedargslist_repeat1, + anon_sym_RBRACE, + sym_type_conversion, + [177815] = 6, + ACTIONS(6670), 1, + anon_sym_as, + ACTIONS(6672), 1, + anon_sym_if, + ACTIONS(6674), 1, + anon_sym_and, + ACTIONS(6676), 1, + anon_sym_or, + ACTIONS(7775), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177872] = 5, - ACTIONS(7390), 1, - anon_sym_DOT, - ACTIONS(7394), 1, - anon_sym_COLON, - ACTIONS(7398), 1, + [177835] = 4, + ACTIONS(7777), 1, anon_sym_PIPE, + STATE(4381), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7412), 2, + ACTIONS(7441), 3, anon_sym_COMMA, - anon_sym_RBRACK, - [177890] = 2, + anon_sym_as, + anon_sym_RBRACE, + [177851] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7529), 5, - anon_sym_DOT, + ACTIONS(7779), 5, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, anon_sym_PIPE, - [177902] = 6, - ACTIONS(6539), 1, + [177863] = 6, + ACTIONS(6670), 1, anon_sym_as, - ACTIONS(6541), 1, + ACTIONS(6672), 1, anon_sym_if, - ACTIONS(6543), 1, + ACTIONS(6674), 1, anon_sym_and, - ACTIONS(6545), 1, + ACTIONS(6676), 1, anon_sym_or, - ACTIONS(7753), 1, + ACTIONS(7781), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177922] = 2, + [177883] = 6, + ACTIONS(7701), 1, + anon_sym_pass, + ACTIONS(7783), 1, + sym__newline, + ACTIONS(7785), 1, + sym__indent, + STATE(2931), 1, + sym_struct_suite, + STATE(3052), 1, + sym_pass_statement, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6466), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [177934] = 6, - ACTIONS(6671), 1, - anon_sym_with, - ACTIONS(6673), 1, - anon_sym_nogil, - ACTIONS(7755), 1, - anon_sym_COLON, - ACTIONS(7757), 1, + [177903] = 6, + ACTIONS(6670), 1, + anon_sym_as, + ACTIONS(6672), 1, + anon_sym_if, + ACTIONS(6674), 1, + anon_sym_and, + ACTIONS(6676), 1, + anon_sym_or, + ACTIONS(7787), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [177923] = 6, + ACTIONS(7701), 1, + anon_sym_pass, + ACTIONS(7703), 1, sym__newline, - STATE(5161), 1, - sym_gil_spec, + ACTIONS(7705), 1, + sym__indent, + STATE(2994), 1, + sym_extern_suite, + STATE(3001), 1, + sym_pass_statement, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177954] = 5, - ACTIONS(7759), 1, - anon_sym_COMMA, - ACTIONS(7761), 1, + [177943] = 6, + ACTIONS(7789), 1, + anon_sym_LBRACE, + ACTIONS(7791), 1, anon_sym_RBRACE, - STATE(4669), 1, - aux_sym_dict_pattern_repeat1, - ACTIONS(3), 2, + ACTIONS(7793), 1, + aux_sym_format_specifier_token1, + STATE(4472), 1, + aux_sym_format_specifier_repeat1, + STATE(4809), 1, + sym_interpolation, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(6904), 2, - anon_sym_COLON, - anon_sym_PIPE, - [177972] = 2, + [177963] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7763), 5, + ACTIONS(7795), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [177984] = 2, + [177975] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7765), 5, + ACTIONS(7797), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [177996] = 2, + [177987] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7767), 5, + ACTIONS(7799), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [178008] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5609), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [178020] = 4, - ACTIONS(7771), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7769), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(7773), 2, - anon_sym_not, - anon_sym_or, - [178036] = 2, + [177999] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7775), 5, + ACTIONS(7801), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [178048] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7777), 5, - anon_sym_COMMA, + [178011] = 6, + ACTIONS(7081), 1, anon_sym_as, + ACTIONS(7083), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [178060] = 5, - ACTIONS(3756), 1, - sym_string_start, - ACTIONS(7781), 1, - anon_sym_EQ, - STATE(4737), 1, - sym_string, + ACTIONS(7085), 1, + anon_sym_and, + ACTIONS(7087), 1, + anon_sym_or, + ACTIONS(7803), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7779), 2, - sym__newline, - anon_sym_COMMA, - [178078] = 2, + [178031] = 4, + ACTIONS(7777), 1, + anon_sym_PIPE, + STATE(4333), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5601), 5, + ACTIONS(7536), 3, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, + anon_sym_as, anon_sym_RBRACE, - sym_type_conversion, - [178090] = 6, - ACTIONS(6988), 1, - anon_sym_COMMA, - ACTIONS(7650), 1, - anon_sym_LPAREN, - ACTIONS(7783), 1, - anon_sym_EQ, - ACTIONS(7785), 1, - anon_sym_RBRACK, - STATE(4758), 1, - aux_sym_type_index_repeat1, + [178047] = 6, + ACTIONS(7763), 1, + anon_sym_pass, + ACTIONS(7805), 1, + sym__newline, + ACTIONS(7807), 1, + sym__indent, + STATE(637), 1, + sym_pass_statement, + STATE(654), 1, + sym_extern_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178110] = 2, + [178067] = 4, + ACTIONS(6674), 1, + anon_sym_and, + ACTIONS(6676), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7636), 5, - anon_sym_COMMA, + ACTIONS(4597), 3, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [178122] = 6, - ACTIONS(6671), 1, - anon_sym_with, - ACTIONS(6673), 1, - anon_sym_nogil, - ACTIONS(7787), 1, anon_sym_COLON, - ACTIONS(7789), 1, - sym__newline, - STATE(5322), 1, - sym_gil_spec, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [178142] = 6, - ACTIONS(6029), 1, + [178083] = 6, + ACTIONS(7081), 1, anon_sym_as, - ACTIONS(6031), 1, + ACTIONS(7083), 1, anon_sym_if, - ACTIONS(6033), 1, + ACTIONS(7085), 1, anon_sym_and, - ACTIONS(6035), 1, + ACTIONS(7087), 1, anon_sym_or, - ACTIONS(7791), 1, - sym__newline, + ACTIONS(7809), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178162] = 2, + [178103] = 3, + ACTIONS(7811), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7534), 5, - anon_sym_RPAREN, + ACTIONS(6921), 4, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [178174] = 6, - ACTIONS(7724), 1, - anon_sym_pass, - ACTIONS(7793), 1, - sym__newline, - ACTIONS(7795), 1, - sym__indent, - STATE(2947), 1, - sym_pass_statement, - STATE(2948), 1, - sym_struct_suite, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [178194] = 6, - ACTIONS(6029), 1, anon_sym_as, - ACTIONS(6031), 1, + anon_sym_PIPE, + anon_sym_RBRACE, + [178117] = 6, + ACTIONS(6670), 1, + anon_sym_as, + ACTIONS(6672), 1, anon_sym_if, - ACTIONS(6033), 1, + ACTIONS(6674), 1, anon_sym_and, - ACTIONS(6035), 1, + ACTIONS(6676), 1, anon_sym_or, - ACTIONS(7797), 1, - sym__newline, + ACTIONS(7813), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178214] = 2, + [178137] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5488), 5, + ACTIONS(3920), 5, + anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [178226] = 6, - ACTIONS(7674), 1, + anon_sym_RBRACK, + anon_sym_PIPE, + [178149] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7494), 5, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [178161] = 6, + ACTIONS(7701), 1, anon_sym_pass, - ACTIONS(7708), 1, + ACTIONS(7783), 1, sym__newline, - ACTIONS(7710), 1, + ACTIONS(7785), 1, sym__indent, - STATE(1301), 1, + STATE(2955), 1, sym_struct_suite, - STATE(1343), 1, + STATE(3052), 1, sym_pass_statement, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178246] = 6, - ACTIONS(6671), 1, - anon_sym_with, - ACTIONS(6673), 1, - anon_sym_nogil, - ACTIONS(6750), 1, - anon_sym_COLON, - ACTIONS(6752), 1, + [178181] = 5, + ACTIONS(7348), 1, + sym_identifier, + STATE(4600), 1, + sym_dotted_name, + STATE(5078), 1, + sym_aliased_import, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7815), 2, sym__newline, - STATE(5198), 1, - sym_gil_spec, + anon_sym_SEMI, + [178199] = 4, + ACTIONS(7777), 1, + anon_sym_PIPE, + STATE(4333), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178266] = 6, - ACTIONS(7700), 1, - anon_sym_COLON, - ACTIONS(7799), 1, - anon_sym_EQ, - ACTIONS(7801), 1, + ACTIONS(7423), 3, + anon_sym_COMMA, + anon_sym_as, anon_sym_RBRACE, - ACTIONS(7803), 1, - sym_type_conversion, - STATE(5541), 1, - sym_format_specifier, + [178215] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178286] = 4, - ACTIONS(7805), 1, - anon_sym_EQ, + ACTIONS(7817), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [178227] = 4, + ACTIONS(7819), 1, + anon_sym_PIPE, + STATE(4379), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7769), 2, + ACTIONS(7441), 3, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(7807), 2, - anon_sym_not, - anon_sym_or, - [178302] = 6, - ACTIONS(6541), 1, - anon_sym_if, - ACTIONS(6543), 1, - anon_sym_and, - ACTIONS(6545), 1, - anon_sym_or, - ACTIONS(7809), 1, anon_sym_as, - ACTIONS(7811), 1, - anon_sym_COLON, + [178243] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178322] = 6, - ACTIONS(6539), 1, - anon_sym_as, - ACTIONS(6541), 1, + ACTIONS(7459), 5, + anon_sym_COMMA, anon_sym_if, - ACTIONS(6543), 1, - anon_sym_and, - ACTIONS(6545), 1, - anon_sym_or, - ACTIONS(7008), 1, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [178255] = 6, + ACTIONS(7683), 1, anon_sym_COLON, + ACTIONS(7821), 1, + anon_sym_EQ, + ACTIONS(7823), 1, + anon_sym_RBRACE, + ACTIONS(7825), 1, + sym_type_conversion, + STATE(5489), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178342] = 6, - ACTIONS(6539), 1, - anon_sym_as, - ACTIONS(6541), 1, - anon_sym_if, - ACTIONS(6543), 1, - anon_sym_and, - ACTIONS(6545), 1, - anon_sym_or, - ACTIONS(7813), 1, - anon_sym_else, + [178275] = 6, + ACTIONS(7827), 1, + anon_sym_RPAREN, + ACTIONS(7829), 1, + anon_sym_COMMA, + ACTIONS(7831), 1, + anon_sym_COLON, + ACTIONS(7833), 1, + anon_sym_EQ, + STATE(4665), 1, + aux_sym__typedargslist_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178362] = 6, - ACTIONS(6988), 1, - anon_sym_COMMA, - ACTIONS(7650), 1, - anon_sym_LPAREN, - ACTIONS(7815), 1, - anon_sym_EQ, - ACTIONS(7817), 1, - anon_sym_RBRACK, - STATE(4751), 1, - aux_sym_type_index_repeat1, + [178295] = 6, + ACTIONS(7763), 1, + anon_sym_pass, + ACTIONS(7765), 1, + sym__newline, + ACTIONS(7767), 1, + sym__indent, + STATE(646), 1, + sym_pass_statement, + STATE(657), 1, + sym_struct_suite, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [178315] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178382] = 6, - ACTIONS(7674), 1, + ACTIONS(7617), 5, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [178327] = 6, + ACTIONS(7691), 1, anon_sym_pass, - ACTIONS(7676), 1, + ACTIONS(7693), 1, sym__newline, - ACTIONS(7678), 1, + ACTIONS(7695), 1, sym__indent, - STATE(1197), 1, + STATE(1318), 1, sym_pass_statement, - STATE(1313), 1, + STATE(1340), 1, sym_extern_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178402] = 2, + [178347] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7558), 5, + ACTIONS(7488), 5, anon_sym_DOT, - anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_EQ, anon_sym_PIPE, - [178414] = 5, - ACTIONS(6970), 1, + [178359] = 6, + ACTIONS(6786), 1, + anon_sym_COLON, + ACTIONS(6796), 1, + sym__newline, + ACTIONS(6810), 1, + anon_sym_with, + ACTIONS(6812), 1, + anon_sym_nogil, + STATE(5198), 1, + sym_gil_spec, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [178379] = 5, + ACTIONS(7348), 1, sym_identifier, - STATE(4567), 1, + STATE(4600), 1, sym_dotted_name, - STATE(4999), 1, + STATE(5078), 1, sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7819), 2, + ACTIONS(7835), 2, sym__newline, anon_sym_SEMI, - [178432] = 5, - ACTIONS(7821), 1, - anon_sym_COMMA, - ACTIONS(7823), 1, - anon_sym_RBRACE, - STATE(4772), 1, - aux_sym_dict_pattern_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6904), 2, + [178397] = 5, + ACTIONS(7522), 1, + anon_sym_DOT, + ACTIONS(7526), 1, anon_sym_COLON, + ACTIONS(7530), 1, anon_sym_PIPE, - [178450] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7636), 5, + ACTIONS(7837), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [178415] = 6, + ACTIONS(3826), 1, anon_sym_RPAREN, + ACTIONS(3828), 1, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [178462] = 3, - ACTIONS(7825), 1, + ACTIONS(7839), 1, anon_sym_LPAREN, + ACTIONS(7841), 1, + anon_sym_EQ, + STATE(4647), 1, + aux_sym__typedargslist_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6904), 4, - anon_sym_COMMA, + [178435] = 6, + ACTIONS(6670), 1, anon_sym_as, + ACTIONS(6672), 1, + anon_sym_if, + ACTIONS(6674), 1, + anon_sym_and, + ACTIONS(6676), 1, + anon_sym_or, + ACTIONS(7843), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [178455] = 4, + ACTIONS(7819), 1, anon_sym_PIPE, - anon_sym_RBRACE, - [178476] = 4, - ACTIONS(7827), 1, - anon_sym_PIPE, - STATE(4368), 1, + STATE(4357), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7493), 3, + ACTIONS(7536), 3, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACE, - [178492] = 6, - ACTIONS(7724), 1, - anon_sym_pass, - ACTIONS(7726), 1, - sym__newline, - ACTIONS(7728), 1, - sym__indent, - STATE(2932), 1, - sym_extern_suite, - STATE(3007), 1, - sym_pass_statement, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [178512] = 2, + [178471] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6424), 5, + ACTIONS(7617), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_RBRACK, anon_sym_PIPE, - [178524] = 2, + [178483] = 6, + ACTIONS(6998), 1, + anon_sym_COMMA, + ACTIONS(7845), 1, + anon_sym_LPAREN, + ACTIONS(7847), 1, + anon_sym_EQ, + ACTIONS(7849), 1, + anon_sym_RBRACK, + STATE(4997), 1, + aux_sym_type_index_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [178503] = 3, + ACTIONS(7851), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7829), 5, + ACTIONS(6921), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_COLON, anon_sym_PIPE, - anon_sym_RBRACE, - [178536] = 6, - ACTIONS(6539), 1, + [178517] = 4, + ACTIONS(7819), 1, + anon_sym_PIPE, + STATE(4357), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7423), 3, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_as, - ACTIONS(6541), 1, + [178533] = 6, + ACTIONS(6672), 1, anon_sym_if, - ACTIONS(6543), 1, + ACTIONS(6674), 1, anon_sym_and, - ACTIONS(6545), 1, + ACTIONS(6676), 1, anon_sym_or, - ACTIONS(7831), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [178556] = 2, + ACTIONS(7759), 1, + anon_sym_as, + ACTIONS(7853), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7558), 5, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [178568] = 4, - ACTIONS(7827), 1, - anon_sym_PIPE, - STATE(4373), 1, + [178553] = 3, + STATE(4357), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7452), 3, + ACTIONS(7378), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACE, - [178584] = 6, - ACTIONS(6671), 1, - anon_sym_with, - ACTIONS(6673), 1, - anon_sym_nogil, - ACTIONS(6800), 1, - anon_sym_COLON, - ACTIONS(6802), 1, + anon_sym_PIPE, + [178567] = 6, + ACTIONS(7763), 1, + anon_sym_pass, + ACTIONS(7765), 1, sym__newline, - STATE(5171), 1, - sym_gil_spec, + ACTIONS(7767), 1, + sym__indent, + STATE(646), 1, + sym_pass_statement, + STATE(647), 1, + sym_struct_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178604] = 2, + [178587] = 6, + ACTIONS(6670), 1, + anon_sym_as, + ACTIONS(6672), 1, + anon_sym_if, + ACTIONS(6674), 1, + anon_sym_and, + ACTIONS(6676), 1, + anon_sym_or, + ACTIONS(7855), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7833), 5, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [178616] = 4, - ACTIONS(7827), 1, + [178607] = 4, + ACTIONS(7857), 1, anon_sym_PIPE, - STATE(4368), 1, + STATE(4379), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7456), 3, + ACTIONS(7378), 3, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACE, - [178632] = 3, - STATE(4368), 1, + [178623] = 3, + STATE(4333), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7350), 4, + ACTIONS(7378), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [178646] = 4, - ACTIONS(7835), 1, + [178637] = 4, + ACTIONS(7860), 1, anon_sym_PIPE, - STATE(4373), 1, + STATE(4381), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7350), 3, + ACTIONS(7378), 3, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACE, - [178662] = 6, - ACTIONS(6539), 1, - anon_sym_as, - ACTIONS(6541), 1, - anon_sym_if, - ACTIONS(6543), 1, - anon_sym_and, - ACTIONS(6545), 1, - anon_sym_or, - ACTIONS(7838), 1, - anon_sym_else, + [178653] = 5, + ACTIONS(7348), 1, + sym_identifier, + STATE(4600), 1, + sym_dotted_name, + STATE(5078), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178682] = 2, + ACTIONS(7815), 2, + sym__newline, + anon_sym_SEMI, + [178671] = 5, + ACTIONS(7863), 1, + sym_identifier, + ACTIONS(7865), 1, + anon_sym_COLON, + ACTIONS(7869), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7840), 5, + ACTIONS(7867), 2, + anon_sym_class, + anon_sym_struct, + [178689] = 4, + ACTIONS(7871), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [178694] = 2, + STATE(4384), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7842), 5, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [178706] = 4, - ACTIONS(7844), 1, + ACTIONS(6695), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + [178705] = 4, + ACTIONS(7874), 1, anon_sym_PIPE, - STATE(4377), 1, + STATE(4403), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7350), 3, - anon_sym_RPAREN, + ACTIONS(7441), 3, anon_sym_COMMA, anon_sym_as, - [178722] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7847), 5, + anon_sym_RBRACK, + [178721] = 5, + ACTIONS(7876), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [178734] = 6, - ACTIONS(7674), 1, - anon_sym_pass, - ACTIONS(7708), 1, - sym__newline, - ACTIONS(7710), 1, - sym__indent, - STATE(1343), 1, - sym_pass_statement, - STATE(1344), 1, - sym_struct_suite, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [178754] = 2, + ACTIONS(7878), 1, + anon_sym_RBRACE, + STATE(4797), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7849), 5, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, + ACTIONS(6921), 2, anon_sym_COLON, anon_sym_PIPE, - [178766] = 6, - ACTIONS(7628), 1, + [178739] = 6, + ACTIONS(7691), 1, anon_sym_pass, - ACTIONS(7630), 1, + ACTIONS(7755), 1, sym__newline, - ACTIONS(7632), 1, + ACTIONS(7757), 1, sym__indent, - STATE(565), 1, + STATE(1315), 1, sym_pass_statement, - STATE(585), 1, - sym_extern_suite, + STATE(1366), 1, + sym_struct_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178786] = 6, - ACTIONS(6539), 1, + [178759] = 6, + ACTIONS(6670), 1, anon_sym_as, - ACTIONS(6541), 1, + ACTIONS(6672), 1, anon_sym_if, - ACTIONS(6543), 1, + ACTIONS(6674), 1, anon_sym_and, - ACTIONS(6545), 1, + ACTIONS(6676), 1, anon_sym_or, - ACTIONS(7851), 1, + ACTIONS(7880), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178806] = 2, + [178779] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7853), 5, + ACTIONS(7882), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [178818] = 6, - ACTIONS(7628), 1, - anon_sym_pass, - ACTIONS(7716), 1, + [178791] = 6, + ACTIONS(6810), 1, + anon_sym_with, + ACTIONS(6812), 1, + anon_sym_nogil, + ACTIONS(7884), 1, + anon_sym_COLON, + ACTIONS(7886), 1, sym__newline, - ACTIONS(7718), 1, - sym__indent, - STATE(575), 1, - sym_pass_statement, - STATE(588), 1, - sym_struct_suite, + STATE(5169), 1, + sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178838] = 6, - ACTIONS(7855), 1, - anon_sym_RPAREN, - ACTIONS(7857), 1, + [178811] = 4, + ACTIONS(7874), 1, + anon_sym_PIPE, + STATE(4385), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7423), 3, anon_sym_COMMA, - ACTIONS(7859), 1, + anon_sym_as, + anon_sym_RBRACK, + [178827] = 6, + ACTIONS(6810), 1, + anon_sym_with, + ACTIONS(6812), 1, + anon_sym_nogil, + ACTIONS(6869), 1, anon_sym_COLON, - ACTIONS(7861), 1, - anon_sym_EQ, - STATE(5038), 1, - aux_sym__typedargslist_repeat1, + ACTIONS(6871), 1, + sym__newline, + STATE(5364), 1, + sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178858] = 6, - ACTIONS(6539), 1, + [178847] = 5, + ACTIONS(7890), 1, + anon_sym_COMMA, + ACTIONS(7892), 1, anon_sym_as, - ACTIONS(6541), 1, - anon_sym_if, - ACTIONS(6543), 1, - anon_sym_and, - ACTIONS(6545), 1, - anon_sym_or, - ACTIONS(7863), 1, - anon_sym_else, + STATE(4611), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178878] = 6, - ACTIONS(7628), 1, + ACTIONS(7888), 2, + sym__newline, + anon_sym_SEMI, + [178865] = 6, + ACTIONS(7701), 1, anon_sym_pass, - ACTIONS(7716), 1, + ACTIONS(7703), 1, sym__newline, - ACTIONS(7718), 1, + ACTIONS(7705), 1, sym__indent, - STATE(575), 1, + STATE(3001), 1, sym_pass_statement, - STATE(597), 1, - sym_struct_suite, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [178898] = 2, + STATE(3005), 1, + sym_extern_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7865), 5, - anon_sym_COMMA, + [178885] = 6, + ACTIONS(6670), 1, anon_sym_as, + ACTIONS(6672), 1, anon_sym_if, + ACTIONS(6674), 1, + anon_sym_and, + ACTIONS(6676), 1, + anon_sym_or, + ACTIONS(7894), 1, anon_sym_COLON, - anon_sym_PIPE, - [178910] = 6, - ACTIONS(6970), 1, - sym_identifier, - ACTIONS(7867), 1, - anon_sym_LPAREN, - STATE(4390), 1, - sym_dotted_name, - STATE(4561), 1, - sym_aliased_import, - STATE(5310), 1, - sym__import_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [178930] = 5, - ACTIONS(7871), 1, - anon_sym_COMMA, - ACTIONS(7873), 1, - anon_sym_as, - STATE(4498), 1, - aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7869), 2, - sym__newline, - anon_sym_SEMI, - [178948] = 2, + [178905] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7875), 5, + ACTIONS(7896), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [178960] = 2, + [178917] = 4, + ACTIONS(7900), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7877), 5, + ACTIONS(7898), 2, + anon_sym_RPAREN, anon_sym_COMMA, + ACTIONS(7902), 2, + anon_sym_not, + anon_sym_or, + [178933] = 6, + ACTIONS(6104), 1, anon_sym_as, + ACTIONS(6106), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [178972] = 6, - ACTIONS(6539), 1, - anon_sym_as, - ACTIONS(6541), 1, - anon_sym_if, - ACTIONS(6543), 1, + ACTIONS(6108), 1, anon_sym_and, - ACTIONS(6545), 1, + ACTIONS(6110), 1, anon_sym_or, - ACTIONS(7879), 1, - anon_sym_else, + ACTIONS(7904), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178992] = 2, + [178953] = 6, + ACTIONS(6810), 1, + anon_sym_with, + ACTIONS(6812), 1, + anon_sym_nogil, + ACTIONS(6899), 1, + anon_sym_COLON, + ACTIONS(6901), 1, + sym__newline, + STATE(5177), 1, + sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7881), 5, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [179004] = 2, + [178973] = 6, + ACTIONS(7701), 1, + anon_sym_pass, + ACTIONS(7783), 1, + sym__newline, + ACTIONS(7785), 1, + sym__indent, + STATE(3052), 1, + sym_pass_statement, + STATE(3053), 1, + sym_struct_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7883), 5, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [179016] = 2, + [178993] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7829), 5, + ACTIONS(7431), 5, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, + anon_sym_RBRACK, anon_sym_PIPE, - [179028] = 3, - ACTIONS(7885), 1, - anon_sym_LPAREN, + [179005] = 6, + ACTIONS(6670), 1, + anon_sym_as, + ACTIONS(6672), 1, + anon_sym_if, + ACTIONS(6674), 1, + anon_sym_and, + ACTIONS(6676), 1, + anon_sym_or, + ACTIONS(7906), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6904), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [179042] = 4, - ACTIONS(7617), 1, + [179025] = 4, + ACTIONS(7908), 1, anon_sym_PIPE, - STATE(4445), 1, + STATE(4403), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7493), 3, + ACTIONS(7378), 3, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, - [179058] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7887), 5, + [179041] = 6, + ACTIONS(6998), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [179070] = 6, - ACTIONS(6539), 1, - anon_sym_as, - ACTIONS(6541), 1, - anon_sym_if, - ACTIONS(6543), 1, - anon_sym_and, - ACTIONS(6545), 1, - anon_sym_or, - ACTIONS(7889), 1, - anon_sym_else, + ACTIONS(7845), 1, + anon_sym_LPAREN, + ACTIONS(7911), 1, + anon_sym_EQ, + ACTIONS(7913), 1, + anon_sym_RBRACK, + STATE(4845), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179090] = 2, + [179061] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7346), 5, - anon_sym_DOT, + ACTIONS(7915), 5, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, anon_sym_PIPE, - [179102] = 6, - ACTIONS(6671), 1, + [179073] = 6, + ACTIONS(6810), 1, anon_sym_with, - ACTIONS(6673), 1, + ACTIONS(6812), 1, anon_sym_nogil, - ACTIONS(7891), 1, + ACTIONS(7917), 1, anon_sym_COLON, - ACTIONS(7893), 1, + ACTIONS(7919), 1, sym__newline, - STATE(5237), 1, + STATE(5188), 1, sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179122] = 2, + [179093] = 6, + ACTIONS(7348), 1, + sym_identifier, + ACTIONS(7921), 1, + anon_sym_LPAREN, + STATE(4393), 1, + sym_dotted_name, + STATE(4534), 1, + sym_aliased_import, + STATE(5330), 1, + sym__import_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7895), 5, + [179113] = 4, + ACTIONS(7923), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, + STATE(4384), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3055), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + [179129] = 6, + ACTIONS(7715), 1, + anon_sym_LBRACK, + ACTIONS(7925), 1, anon_sym_COLON, - anon_sym_PIPE, - [179134] = 6, - ACTIONS(7724), 1, - anon_sym_pass, - ACTIONS(7726), 1, + ACTIONS(7927), 1, + anon_sym_nogil, + ACTIONS(7929), 1, sym__newline, - ACTIONS(7728), 1, - sym__indent, - STATE(2966), 1, - sym_extern_suite, - STATE(3007), 1, - sym_pass_statement, + STATE(5151), 1, + sym_template_params, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [179149] = 6, + ACTIONS(6810), 1, + anon_sym_with, + ACTIONS(6812), 1, + anon_sym_nogil, + ACTIONS(6927), 1, + anon_sym_COLON, + ACTIONS(6929), 1, + sym__newline, + STATE(5362), 1, + sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179154] = 6, - ACTIONS(6539), 1, + [179169] = 6, + ACTIONS(6670), 1, anon_sym_as, - ACTIONS(6541), 1, + ACTIONS(6672), 1, anon_sym_if, - ACTIONS(6543), 1, + ACTIONS(6674), 1, anon_sym_and, - ACTIONS(6545), 1, + ACTIONS(6676), 1, anon_sym_or, - ACTIONS(7897), 1, - anon_sym_else, + ACTIONS(7182), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179174] = 4, - ACTIONS(7901), 1, + [179189] = 4, + ACTIONS(7933), 1, anon_sym_DOT, - STATE(4406), 1, + STATE(4412), 1, aux_sym_import_prefix_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7899), 3, + ACTIONS(7931), 3, anon_sym_import, anon_sym_cimport, sym_identifier, - [179190] = 5, - ACTIONS(7904), 1, - anon_sym_COMMA, - ACTIONS(7906), 1, - anon_sym_RBRACE, - STATE(4790), 1, - aux_sym_dict_pattern_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6904), 2, - anon_sym_COLON, - anon_sym_PIPE, - [179208] = 5, - ACTIONS(7908), 1, + [179205] = 5, + ACTIONS(7936), 1, sym_identifier, - ACTIONS(7910), 1, + ACTIONS(7938), 1, anon_sym_COLON, - ACTIONS(7914), 1, + ACTIONS(7942), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7912), 2, + ACTIONS(7940), 2, anon_sym_class, anon_sym_struct, - [179226] = 6, - ACTIONS(6539), 1, - anon_sym_as, - ACTIONS(6541), 1, - anon_sym_if, - ACTIONS(6543), 1, - anon_sym_and, - ACTIONS(6545), 1, - anon_sym_or, - ACTIONS(7916), 1, - anon_sym_else, + [179223] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179246] = 6, - ACTIONS(7918), 1, - anon_sym_LBRACE, - ACTIONS(7920), 1, - anon_sym_RBRACE, - ACTIONS(7922), 1, - aux_sym_format_specifier_token1, - STATE(4443), 1, - aux_sym_format_specifier_repeat1, - STATE(5064), 1, - sym_interpolation, - ACTIONS(5), 2, + ACTIONS(7431), 5, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [179235] = 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179266] = 6, - ACTIONS(7724), 1, + ACTIONS(7709), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [179247] = 6, + ACTIONS(7691), 1, anon_sym_pass, - ACTIONS(7793), 1, + ACTIONS(7693), 1, sym__newline, - ACTIONS(7795), 1, + ACTIONS(7695), 1, sym__indent, - STATE(2947), 1, + STATE(1318), 1, sym_pass_statement, - STATE(2970), 1, - sym_struct_suite, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [179286] = 6, - ACTIONS(4918), 1, - anon_sym_COLON, - ACTIONS(7478), 1, - anon_sym_if, - ACTIONS(7924), 1, - anon_sym_COMMA, - STATE(4529), 1, - aux_sym_case_clause_repeat1, - STATE(5709), 1, - sym_if_clause, + STATE(1329), 1, + sym_extern_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179306] = 6, - ACTIONS(6539), 1, - anon_sym_as, - ACTIONS(6541), 1, - anon_sym_if, - ACTIONS(6543), 1, - anon_sym_and, - ACTIONS(6545), 1, - anon_sym_or, - ACTIONS(7926), 1, - anon_sym_else, + [179267] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179326] = 6, - ACTIONS(6539), 1, + ACTIONS(7944), 5, + anon_sym_COMMA, anon_sym_as, - ACTIONS(6541), 1, anon_sym_if, - ACTIONS(6543), 1, - anon_sym_and, - ACTIONS(6545), 1, - anon_sym_or, - ACTIONS(7928), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [179346] = 6, - ACTIONS(7674), 1, - anon_sym_pass, - ACTIONS(7708), 1, + anon_sym_COLON, + anon_sym_PIPE, + [179279] = 5, + ACTIONS(7946), 1, + sym_identifier, + ACTIONS(7948), 1, + anon_sym_COLON, + ACTIONS(7952), 1, sym__newline, - ACTIONS(7710), 1, - sym__indent, - STATE(1318), 1, - sym_struct_suite, - STATE(1343), 1, - sym_pass_statement, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179366] = 6, - ACTIONS(7724), 1, - anon_sym_pass, - ACTIONS(7793), 1, + ACTIONS(7950), 2, + anon_sym_class, + anon_sym_struct, + [179297] = 5, + ACTIONS(7954), 1, + sym_identifier, + ACTIONS(7956), 1, + anon_sym_COLON, + ACTIONS(7960), 1, sym__newline, - ACTIONS(7795), 1, - sym__indent, - STATE(2947), 1, - sym_pass_statement, - STATE(2976), 1, - sym_struct_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179386] = 6, - ACTIONS(6539), 1, + ACTIONS(7958), 2, + anon_sym_class, + anon_sym_struct, + [179315] = 6, + ACTIONS(6670), 1, anon_sym_as, - ACTIONS(6541), 1, + ACTIONS(6672), 1, anon_sym_if, - ACTIONS(6543), 1, + ACTIONS(6674), 1, anon_sym_and, - ACTIONS(6545), 1, + ACTIONS(6676), 1, anon_sym_or, - ACTIONS(7930), 1, - anon_sym_else, + ACTIONS(7962), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, - sym_line_continuation, - [179406] = 6, - ACTIONS(6671), 1, - anon_sym_with, - ACTIONS(6673), 1, - anon_sym_nogil, - ACTIONS(6814), 1, - anon_sym_COLON, - ACTIONS(6816), 1, - sym__newline, - STATE(5320), 1, - sym_gil_spec, + sym_line_continuation, + [179335] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179426] = 6, - ACTIONS(6539), 1, + ACTIONS(7737), 5, + anon_sym_COMMA, anon_sym_as, - ACTIONS(6541), 1, anon_sym_if, - ACTIONS(6543), 1, - anon_sym_and, - ACTIONS(6545), 1, - anon_sym_or, - ACTIONS(7932), 1, - anon_sym_else, + anon_sym_COLON, + anon_sym_PIPE, + [179347] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179446] = 6, - ACTIONS(6539), 1, + ACTIONS(7964), 5, + anon_sym_COMMA, anon_sym_as, - ACTIONS(6541), 1, anon_sym_if, - ACTIONS(6543), 1, - anon_sym_and, - ACTIONS(6545), 1, - anon_sym_or, - ACTIONS(7934), 1, anon_sym_COLON, + anon_sym_PIPE, + [179359] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179466] = 6, - ACTIONS(6539), 1, - anon_sym_as, - ACTIONS(6541), 1, - anon_sym_if, - ACTIONS(6543), 1, - anon_sym_and, - ACTIONS(6545), 1, - anon_sym_or, - ACTIONS(7936), 1, + ACTIONS(7443), 5, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [179371] = 5, + ACTIONS(7522), 1, + anon_sym_DOT, + ACTIONS(7526), 1, anon_sym_COLON, + ACTIONS(7530), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179486] = 5, - ACTIONS(7938), 1, + ACTIONS(7445), 2, anon_sym_COMMA, - ACTIONS(7940), 1, - anon_sym_RBRACE, - STATE(5049), 1, - aux_sym_dict_pattern_repeat1, + anon_sym_RBRACK, + [179389] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6904), 2, + ACTIONS(7453), 5, + anon_sym_DOT, + anon_sym_COMMA, anon_sym_COLON, + anon_sym_RBRACK, anon_sym_PIPE, - [179504] = 6, - ACTIONS(6539), 1, - anon_sym_as, - ACTIONS(6541), 1, - anon_sym_if, - ACTIONS(6543), 1, - anon_sym_and, - ACTIONS(6545), 1, - anon_sym_or, - ACTIONS(7942), 1, - anon_sym_COLON, + [179401] = 6, + ACTIONS(7701), 1, + anon_sym_pass, + ACTIONS(7783), 1, + sym__newline, + ACTIONS(7785), 1, + sym__indent, + STATE(2984), 1, + sym_struct_suite, + STATE(3052), 1, + sym_pass_statement, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179524] = 6, - ACTIONS(7628), 1, + [179421] = 6, + ACTIONS(7763), 1, anon_sym_pass, - ACTIONS(7630), 1, + ACTIONS(7805), 1, sym__newline, - ACTIONS(7632), 1, + ACTIONS(7807), 1, sym__indent, - STATE(565), 1, + STATE(637), 1, sym_pass_statement, - STATE(600), 1, + STATE(666), 1, sym_extern_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179544] = 4, - ACTIONS(6543), 1, - anon_sym_and, - ACTIONS(6545), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4577), 3, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [179560] = 6, - ACTIONS(6539), 1, + [179441] = 6, + ACTIONS(6670), 1, anon_sym_as, - ACTIONS(6541), 1, + ACTIONS(6672), 1, anon_sym_if, - ACTIONS(6543), 1, + ACTIONS(6674), 1, anon_sym_and, - ACTIONS(6545), 1, + ACTIONS(6676), 1, anon_sym_or, - ACTIONS(7944), 1, + ACTIONS(7966), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179580] = 6, - ACTIONS(7946), 1, - anon_sym_LBRACE, - ACTIONS(7949), 1, - anon_sym_RBRACE, - ACTIONS(7951), 1, - aux_sym_format_specifier_token1, - STATE(4427), 1, - aux_sym_format_specifier_repeat1, - STATE(5064), 1, - sym_interpolation, - ACTIONS(5), 2, + [179461] = 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179600] = 3, - ACTIONS(7954), 1, - anon_sym_LPAREN, + ACTIONS(7968), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [179473] = 3, + STATE(4385), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6904), 4, - anon_sym_RPAREN, + ACTIONS(7378), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - [179614] = 4, - ACTIONS(7956), 1, - anon_sym_PIPE, - STATE(4447), 1, - aux_sym_union_pattern_repeat1, + [179487] = 4, + ACTIONS(7970), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7493), 3, - anon_sym_RPAREN, + ACTIONS(7898), 2, anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(7972), 2, + anon_sym_not, + anon_sym_or, + [179503] = 6, + ACTIONS(7081), 1, anon_sym_as, - [179630] = 6, - ACTIONS(6541), 1, + ACTIONS(7083), 1, anon_sym_if, - ACTIONS(6543), 1, + ACTIONS(7085), 1, anon_sym_and, - ACTIONS(6545), 1, + ACTIONS(7087), 1, anon_sym_or, - ACTIONS(7809), 1, - anon_sym_as, - ACTIONS(7958), 1, - anon_sym_COLON, + ACTIONS(7974), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179650] = 2, + [179523] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7517), 5, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [179662] = 6, - ACTIONS(6539), 1, + ACTIONS(7976), 5, + anon_sym_COMMA, anon_sym_as, - ACTIONS(6541), 1, anon_sym_if, - ACTIONS(6543), 1, - anon_sym_and, - ACTIONS(6545), 1, - anon_sym_or, - ACTIONS(7960), 1, anon_sym_COLON, + anon_sym_PIPE, + [179535] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6550), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [179547] = 4, + ACTIONS(7874), 1, + anon_sym_PIPE, + STATE(4385), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179682] = 6, - ACTIONS(6539), 1, + ACTIONS(7536), 3, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + [179563] = 6, + ACTIONS(7081), 1, anon_sym_as, - ACTIONS(6541), 1, + ACTIONS(7083), 1, anon_sym_if, - ACTIONS(6543), 1, + ACTIONS(7085), 1, anon_sym_and, - ACTIONS(6545), 1, + ACTIONS(7087), 1, anon_sym_or, - ACTIONS(7962), 1, - anon_sym_COLON, + ACTIONS(7978), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179702] = 5, - ACTIONS(6970), 1, - sym_identifier, - STATE(4567), 1, - sym_dotted_name, - STATE(4999), 1, - sym_aliased_import, + [179583] = 6, + ACTIONS(7691), 1, + anon_sym_pass, + ACTIONS(7755), 1, + sym__newline, + ACTIONS(7757), 1, + sym__indent, + STATE(1181), 1, + sym_struct_suite, + STATE(1315), 1, + sym_pass_statement, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7964), 2, - sym__newline, - anon_sym_SEMI, - [179720] = 6, - ACTIONS(7628), 1, + [179603] = 6, + ACTIONS(7691), 1, anon_sym_pass, - ACTIONS(7716), 1, + ACTIONS(7755), 1, sym__newline, - ACTIONS(7718), 1, + ACTIONS(7757), 1, sym__indent, - STATE(575), 1, - sym_pass_statement, - STATE(609), 1, + STATE(1273), 1, sym_struct_suite, + STATE(1315), 1, + sym_pass_statement, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179740] = 5, - ACTIONS(6970), 1, - sym_identifier, - STATE(4567), 1, - sym_dotted_name, - STATE(4999), 1, - sym_aliased_import, + [179623] = 6, + ACTIONS(7081), 1, + anon_sym_as, + ACTIONS(7083), 1, + anon_sym_if, + ACTIONS(7085), 1, + anon_sym_and, + ACTIONS(7087), 1, + anon_sym_or, + ACTIONS(7980), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7964), 2, - sym__newline, - anon_sym_SEMI, - [179758] = 6, - ACTIONS(7724), 1, + [179643] = 6, + ACTIONS(7763), 1, anon_sym_pass, - ACTIONS(7726), 1, + ACTIONS(7805), 1, sym__newline, - ACTIONS(7728), 1, + ACTIONS(7807), 1, sym__indent, - STATE(3007), 1, + STATE(637), 1, sym_pass_statement, - STATE(3029), 1, + STATE(638), 1, sym_extern_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179778] = 6, - ACTIONS(6539), 1, + [179663] = 6, + ACTIONS(6670), 1, anon_sym_as, - ACTIONS(6541), 1, + ACTIONS(6672), 1, anon_sym_if, - ACTIONS(6543), 1, + ACTIONS(6674), 1, anon_sym_and, - ACTIONS(6545), 1, + ACTIONS(6676), 1, anon_sym_or, - ACTIONS(7966), 1, + ACTIONS(7982), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179798] = 6, - ACTIONS(7674), 1, + [179683] = 6, + ACTIONS(7763), 1, anon_sym_pass, - ACTIONS(7676), 1, + ACTIONS(7765), 1, sym__newline, - ACTIONS(7678), 1, + ACTIONS(7767), 1, sym__indent, - STATE(1197), 1, + STATE(646), 1, sym_pass_statement, - STATE(1298), 1, - sym_extern_suite, + STATE(664), 1, + sym_struct_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179818] = 6, - ACTIONS(7724), 1, - anon_sym_pass, - ACTIONS(7793), 1, - sym__newline, - ACTIONS(7795), 1, - sym__indent, - STATE(2947), 1, - sym_pass_statement, - STATE(3042), 1, - sym_struct_suite, + [179703] = 6, + ACTIONS(6670), 1, + anon_sym_as, + ACTIONS(6672), 1, + anon_sym_if, + ACTIONS(6674), 1, + anon_sym_and, + ACTIONS(6676), 1, + anon_sym_or, + ACTIONS(7984), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [179723] = 6, + ACTIONS(6998), 1, + anon_sym_COMMA, + ACTIONS(7845), 1, + anon_sym_LPAREN, + ACTIONS(7986), 1, + anon_sym_EQ, + ACTIONS(7988), 1, + anon_sym_RBRACK, + STATE(4927), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179838] = 2, + [179743] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3875), 5, + ACTIONS(7488), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_RBRACK, anon_sym_PIPE, - [179850] = 2, + [179755] = 6, + ACTIONS(6670), 1, + anon_sym_as, + ACTIONS(6672), 1, + anon_sym_if, + ACTIONS(6674), 1, + anon_sym_and, + ACTIONS(6676), 1, + anon_sym_or, + ACTIONS(7990), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7338), 5, - anon_sym_DOT, - anon_sym_COMMA, + [179775] = 6, + ACTIONS(7715), 1, + anon_sym_LBRACK, + ACTIONS(7992), 1, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [179862] = 6, - ACTIONS(7918), 1, - anon_sym_LBRACE, - ACTIONS(7968), 1, - anon_sym_RBRACE, - ACTIONS(7970), 1, - aux_sym_format_specifier_token1, - STATE(4427), 1, - aux_sym_format_specifier_repeat1, - STATE(5064), 1, - sym_interpolation, - ACTIONS(5), 2, + ACTIONS(7994), 1, + anon_sym_nogil, + ACTIONS(7996), 1, + sym__newline, + STATE(4655), 1, + sym_template_params, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179882] = 6, - ACTIONS(6539), 1, + [179795] = 6, + ACTIONS(6670), 1, anon_sym_as, - ACTIONS(6541), 1, + ACTIONS(6672), 1, anon_sym_if, - ACTIONS(6543), 1, + ACTIONS(6674), 1, anon_sym_and, - ACTIONS(6545), 1, + ACTIONS(6676), 1, anon_sym_or, - ACTIONS(7972), 1, - anon_sym_COLON, + ACTIONS(7998), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179902] = 4, - ACTIONS(7617), 1, - anon_sym_PIPE, - STATE(4290), 1, - aux_sym_union_pattern_repeat1, + [179815] = 5, + ACTIONS(8000), 1, + sym_identifier, + ACTIONS(8002), 1, + anon_sym_COLON, + ACTIONS(8006), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7452), 3, - anon_sym_COMMA, + ACTIONS(8004), 2, + anon_sym_class, + anon_sym_struct, + [179833] = 6, + ACTIONS(6670), 1, anon_sym_as, - anon_sym_RBRACK, - [179918] = 2, + ACTIONS(6672), 1, + anon_sym_if, + ACTIONS(6674), 1, + anon_sym_and, + ACTIONS(6676), 1, + anon_sym_or, + ACTIONS(8008), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7517), 5, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [179930] = 4, - ACTIONS(7956), 1, - anon_sym_PIPE, - STATE(4377), 1, - aux_sym_union_pattern_repeat1, + [179853] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7452), 3, - anon_sym_RPAREN, + ACTIONS(7709), 5, anon_sym_COMMA, - anon_sym_as, - [179946] = 6, - ACTIONS(7674), 1, - anon_sym_pass, - ACTIONS(7676), 1, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [179865] = 5, + ACTIONS(8010), 1, + sym_identifier, + ACTIONS(8012), 1, + anon_sym_COLON, + ACTIONS(8016), 1, sym__newline, - ACTIONS(7678), 1, - sym__indent, - STATE(1197), 1, - sym_pass_statement, - STATE(1221), 1, - sym_extern_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179966] = 6, - ACTIONS(6539), 1, + ACTIONS(8014), 2, + anon_sym_class, + anon_sym_struct, + [179883] = 6, + ACTIONS(6670), 1, anon_sym_as, - ACTIONS(6541), 1, + ACTIONS(6672), 1, anon_sym_if, - ACTIONS(6543), 1, + ACTIONS(6674), 1, anon_sym_and, - ACTIONS(6545), 1, + ACTIONS(6676), 1, anon_sym_or, - ACTIONS(7974), 1, - anon_sym_COLON, + ACTIONS(8018), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179986] = 6, - ACTIONS(7628), 1, + [179903] = 6, + ACTIONS(7701), 1, anon_sym_pass, - ACTIONS(7630), 1, + ACTIONS(7703), 1, sym__newline, - ACTIONS(7632), 1, + ACTIONS(7705), 1, sym__indent, - STATE(565), 1, - sym_pass_statement, - STATE(610), 1, + STATE(2972), 1, sym_extern_suite, + STATE(3001), 1, + sym_pass_statement, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180006] = 6, - ACTIONS(7724), 1, + [179923] = 6, + ACTIONS(7691), 1, anon_sym_pass, - ACTIONS(7726), 1, + ACTIONS(7693), 1, sym__newline, - ACTIONS(7728), 1, + ACTIONS(7695), 1, sym__indent, - STATE(2956), 1, + STATE(1166), 1, sym_extern_suite, - STATE(3007), 1, + STATE(1318), 1, sym_pass_statement, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180026] = 2, + [179943] = 5, + ACTIONS(8020), 1, + anon_sym_COMMA, + ACTIONS(8022), 1, + anon_sym_RBRACE, + STATE(5013), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7976), 5, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, + ACTIONS(6921), 2, anon_sym_COLON, anon_sym_PIPE, - [180038] = 4, - ACTIONS(7978), 1, + [179961] = 5, + ACTIONS(8024), 1, anon_sym_COMMA, - STATE(4320), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(8026), 1, + anon_sym_RBRACE, + STATE(4866), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3077), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - [180054] = 6, - ACTIONS(7674), 1, + ACTIONS(6921), 2, + anon_sym_COLON, + anon_sym_PIPE, + [179979] = 6, + ACTIONS(7691), 1, anon_sym_pass, - ACTIONS(7676), 1, + ACTIONS(7693), 1, sym__newline, - ACTIONS(7678), 1, + ACTIONS(7695), 1, sym__indent, - STATE(1197), 1, + STATE(1318), 1, sym_pass_statement, - STATE(1311), 1, + STATE(1325), 1, sym_extern_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180074] = 4, - ACTIONS(7982), 1, - anon_sym_DOT, - STATE(4406), 1, - aux_sym_import_prefix_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7980), 3, - anon_sym_import, - anon_sym_cimport, - sym_identifier, - [180090] = 6, - ACTIONS(6539), 1, - anon_sym_as, - ACTIONS(6541), 1, - anon_sym_if, - ACTIONS(6543), 1, - anon_sym_and, - ACTIONS(6545), 1, - anon_sym_or, - ACTIONS(7984), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [180110] = 6, - ACTIONS(6539), 1, - anon_sym_as, - ACTIONS(6541), 1, - anon_sym_if, - ACTIONS(6543), 1, - anon_sym_and, - ACTIONS(6545), 1, - anon_sym_or, - ACTIONS(7986), 1, - anon_sym_else, + [179999] = 6, + ACTIONS(7763), 1, + anon_sym_pass, + ACTIONS(7805), 1, + sym__newline, + ACTIONS(7807), 1, + sym__indent, + STATE(637), 1, + sym_pass_statement, + STATE(681), 1, + sym_extern_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180130] = 6, - ACTIONS(7682), 1, - anon_sym_LBRACK, - ACTIONS(7988), 1, - anon_sym_COLON, - ACTIONS(7990), 1, + [180019] = 6, + ACTIONS(6810), 1, + anon_sym_with, + ACTIONS(6812), 1, anon_sym_nogil, - ACTIONS(7992), 1, + ACTIONS(8028), 1, + anon_sym_COLON, + ACTIONS(8030), 1, sym__newline, - STATE(4873), 1, - sym_template_params, + STATE(5375), 1, + sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180150] = 2, + [180039] = 6, + ACTIONS(6998), 1, + anon_sym_COMMA, + ACTIONS(7845), 1, + anon_sym_LPAREN, + ACTIONS(8032), 1, + anon_sym_EQ, + ACTIONS(8034), 1, + anon_sym_RBRACK, + STATE(4780), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7615), 5, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [180162] = 2, + [180059] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7534), 5, + ACTIONS(7459), 5, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, - [180174] = 6, - ACTIONS(6671), 1, - anon_sym_with, - ACTIONS(6673), 1, - anon_sym_nogil, - ACTIONS(6846), 1, - anon_sym_COLON, - ACTIONS(6848), 1, - sym__newline, - STATE(5208), 1, - sym_gil_spec, + [180071] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180194] = 4, - ACTIONS(7956), 1, - anon_sym_PIPE, - STATE(4447), 1, - aux_sym_union_pattern_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7456), 3, - anon_sym_RPAREN, + ACTIONS(8036), 5, anon_sym_COMMA, anon_sym_as, - [180210] = 5, - ACTIONS(7402), 1, - anon_sym_DOT, - ACTIONS(7624), 1, + anon_sym_if, anon_sym_COLON, - ACTIONS(7626), 1, anon_sym_PIPE, + [180083] = 6, + ACTIONS(7081), 1, + anon_sym_as, + ACTIONS(7083), 1, + anon_sym_if, + ACTIONS(7085), 1, + anon_sym_and, + ACTIONS(7087), 1, + anon_sym_or, + ACTIONS(8038), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7412), 2, - sym__newline, - anon_sym_SEMI, - [180228] = 6, - ACTIONS(6539), 1, + [180103] = 6, + ACTIONS(6670), 1, anon_sym_as, - ACTIONS(6541), 1, + ACTIONS(6672), 1, anon_sym_if, - ACTIONS(6543), 1, + ACTIONS(6674), 1, anon_sym_and, - ACTIONS(6545), 1, + ACTIONS(6676), 1, anon_sym_or, - ACTIONS(7994), 1, + ACTIONS(8040), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180248] = 2, + [180123] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7865), 4, - anon_sym_RPAREN, + ACTIONS(7817), 5, anon_sym_COMMA, - anon_sym_as, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [180135] = 5, + ACTIONS(7447), 1, + anon_sym_DOT, + ACTIONS(8044), 1, + anon_sym_COLON, + ACTIONS(8046), 1, anon_sym_PIPE, - [180259] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7640), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [180270] = 2, + ACTIONS(8042), 2, + sym__newline, + anon_sym_SEMI, + [180153] = 6, + ACTIONS(6810), 1, + anon_sym_with, + ACTIONS(6812), 1, + anon_sym_nogil, + ACTIONS(6875), 1, + anon_sym_COLON, + ACTIONS(6877), 1, + sym__newline, + STATE(5192), 1, + sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7672), 4, - anon_sym_COMMA, + [180173] = 6, + ACTIONS(6670), 1, anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [180281] = 2, + ACTIONS(6672), 1, + anon_sym_if, + ACTIONS(6674), 1, + anon_sym_and, + ACTIONS(6676), 1, + anon_sym_or, + ACTIONS(8048), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7722), 4, + [180193] = 6, + ACTIONS(4885), 1, + anon_sym_COLON, + ACTIONS(7419), 1, + anon_sym_if, + ACTIONS(8050), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [180292] = 2, + STATE(4488), 1, + aux_sym_case_clause_repeat1, + STATE(5564), 1, + sym_if_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7767), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, + [180213] = 5, + ACTIONS(7447), 1, + anon_sym_DOT, + ACTIONS(8044), 1, + anon_sym_COLON, + ACTIONS(8046), 1, anon_sym_PIPE, - [180303] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7739), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, + ACTIONS(7445), 2, + sym__newline, + anon_sym_SEMI, + [180231] = 6, + ACTIONS(7789), 1, + anon_sym_LBRACE, + ACTIONS(8052), 1, anon_sym_RBRACE, - [180314] = 2, - ACTIONS(3), 2, + ACTIONS(8054), 1, + aux_sym_format_specifier_token1, + STATE(4289), 1, + aux_sym_format_specifier_repeat1, + STATE(4809), 1, + sym_interpolation, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(7763), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [180325] = 2, + [180251] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7765), 4, + ACTIONS(7817), 5, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [180336] = 2, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [180263] = 6, + ACTIONS(7763), 1, + anon_sym_pass, + ACTIONS(7805), 1, + sym__newline, + ACTIONS(7807), 1, + sym__indent, + STATE(637), 1, + sym_pass_statement, + STATE(675), 1, + sym_extern_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7833), 4, - anon_sym_COMMA, + [180283] = 6, + ACTIONS(6670), 1, anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [180347] = 2, + ACTIONS(6672), 1, + anon_sym_if, + ACTIONS(6674), 1, + anon_sym_and, + ACTIONS(6676), 1, + anon_sym_or, + ACTIONS(8056), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7842), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [180358] = 2, + [180303] = 5, + ACTIONS(3766), 1, + sym_string_start, + ACTIONS(8060), 1, + anon_sym_EQ, + STATE(4996), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7847), 4, + ACTIONS(8058), 2, + sym__newline, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [180369] = 2, + [180321] = 4, + ACTIONS(8064), 1, + anon_sym_COMMA, + STATE(4567), 1, + aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7849), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [180380] = 2, + ACTIONS(8062), 2, + sym__newline, + anon_sym_SEMI, + [180336] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7853), 4, + ACTIONS(7915), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [180391] = 5, - ACTIONS(3839), 1, - anon_sym_LBRACK, - ACTIONS(7996), 1, - anon_sym_LPAREN, - STATE(5359), 1, - sym_parameters, - STATE(5365), 1, - sym_type_parameter, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [180408] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7865), 4, + [180347] = 5, + ACTIONS(8066), 1, + anon_sym_RPAREN, + ACTIONS(8068), 1, anon_sym_COMMA, + ACTIONS(8070), 1, anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [180419] = 2, + STATE(5066), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7877), 4, - anon_sym_COMMA, + [180364] = 3, + ACTIONS(7417), 1, anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [180430] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7881), 4, + ACTIONS(8072), 3, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [180441] = 2, + anon_sym_if, + anon_sym_COLON, + [180377] = 5, + ACTIONS(7839), 1, + anon_sym_LPAREN, + ACTIONS(8074), 1, + anon_sym_RPAREN, + ACTIONS(8076), 1, + anon_sym_COMMA, + STATE(4872), 1, + aux_sym_function_pointer_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7763), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [180452] = 2, + [180394] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7765), 4, + ACTIONS(8078), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [180463] = 4, - ACTIONS(7674), 1, + anon_sym_if, + anon_sym_COLON, + [180405] = 4, + ACTIONS(7763), 1, anon_sym_pass, - ACTIONS(7998), 1, + ACTIONS(8080), 1, sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1416), 2, + STATE(708), 2, sym_pass_statement, sym__cppclass_suite, - [180478] = 5, - ACTIONS(8000), 1, + [180420] = 5, + ACTIONS(7815), 1, anon_sym_RPAREN, - ACTIONS(8002), 1, - anon_sym_COMMA, - ACTIONS(8004), 1, - anon_sym_as, - STATE(4905), 1, - aux_sym_case_clause_repeat1, + ACTIONS(8082), 1, + sym_identifier, + STATE(4649), 1, + sym_dotted_name, + STATE(5314), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180495] = 4, - ACTIONS(8008), 1, + [180437] = 5, + ACTIONS(3766), 1, + sym_string_start, + ACTIONS(8084), 1, anon_sym_COLON, - ACTIONS(8010), 1, - anon_sym_EQ, + ACTIONS(8086), 1, + sym__newline, + STATE(5200), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8006), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [180510] = 2, + [180454] = 5, + ACTIONS(8088), 1, + anon_sym_case, + ACTIONS(8090), 1, + sym__dedent, + STATE(4511), 1, + aux_sym__match_block_repeat1, + STATE(5309), 1, + sym_case_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7767), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [180521] = 2, + [180471] = 5, + ACTIONS(7815), 1, + anon_sym_RPAREN, + ACTIONS(8082), 1, + sym_identifier, + STATE(4649), 1, + sym_dotted_name, + STATE(5314), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7767), 4, + [180488] = 4, + ACTIONS(8092), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [180532] = 2, + STATE(4488), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7775), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [180543] = 2, + ACTIONS(8072), 2, + anon_sym_if, + anon_sym_COLON, + [180503] = 5, + ACTIONS(8088), 1, + anon_sym_case, + ACTIONS(8095), 1, + sym__dedent, + STATE(4511), 1, + aux_sym__match_block_repeat1, + STATE(5309), 1, + sym_case_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7777), 4, + [180520] = 5, + ACTIONS(7845), 1, + anon_sym_LPAREN, + ACTIONS(8097), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [180554] = 2, + ACTIONS(8099), 1, + anon_sym_RBRACK, + STATE(5091), 1, + aux_sym_external_definition_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7875), 4, + [180537] = 5, + ACTIONS(7845), 1, + anon_sym_LPAREN, + ACTIONS(8097), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [180565] = 2, + ACTIONS(8101), 1, + anon_sym_RBRACK, + STATE(4687), 1, + aux_sym_external_definition_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7775), 4, + [180554] = 4, + ACTIONS(8105), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [180576] = 2, + STATE(4603), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7777), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [180587] = 2, + ACTIONS(8103), 2, + sym__newline, + anon_sym_SEMI, + [180569] = 4, + ACTIONS(7763), 1, + anon_sym_pass, + ACTIONS(8080), 1, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7775), 4, + STATE(711), 2, + sym_pass_statement, + sym__cppclass_suite, + [180584] = 5, + ACTIONS(7835), 1, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [180598] = 3, + ACTIONS(8082), 1, + sym_identifier, + STATE(4649), 1, + sym_dotted_name, + STATE(5314), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6904), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(8012), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [180611] = 2, + [180601] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7777), 4, + ACTIONS(7944), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [180622] = 2, + [180612] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7875), 4, + ACTIONS(7737), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [180633] = 4, - ACTIONS(8016), 1, - anon_sym_COMMA, - STATE(4572), 1, - aux_sym__import_list_repeat1, + [180623] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8014), 2, - sym__newline, - anon_sym_SEMI, - [180648] = 5, - ACTIONS(7964), 1, + ACTIONS(7964), 4, anon_sym_RPAREN, - ACTIONS(8018), 1, - sym_identifier, - STATE(5082), 1, - sym_dotted_name, - STATE(5318), 1, - sym_aliased_import, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [180634] = 4, + ACTIONS(7691), 1, + anon_sym_pass, + ACTIONS(8107), 1, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180665] = 5, - ACTIONS(6970), 1, - sym_identifier, - STATE(4390), 1, - sym_dotted_name, - STATE(4561), 1, - sym_aliased_import, - STATE(5157), 1, - sym__import_list, + STATE(1648), 2, + sym_pass_statement, + sym__cppclass_suite, + [180649] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180682] = 5, - ACTIONS(7964), 1, + ACTIONS(7976), 4, anon_sym_RPAREN, - ACTIONS(8018), 1, - sym_identifier, - STATE(5082), 1, - sym_dotted_name, - STATE(5318), 1, - sym_aliased_import, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [180699] = 4, - ACTIONS(7674), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [180660] = 4, + ACTIONS(7701), 1, anon_sym_pass, - ACTIONS(7998), 1, + ACTIONS(8109), 1, sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1558), 2, + STATE(3073), 2, sym_pass_statement, sym__cppclass_suite, - [180714] = 4, - ACTIONS(7628), 1, + [180675] = 4, + ACTIONS(8113), 1, + anon_sym_COMMA, + STATE(4501), 1, + aux_sym_global_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8111), 2, + sym__newline, + anon_sym_SEMI, + [180690] = 4, + ACTIONS(7763), 1, anon_sym_pass, - ACTIONS(8020), 1, + ACTIONS(8080), 1, sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(713), 2, + STATE(720), 2, sym_pass_statement, sym__cppclass_suite, - [180729] = 4, - ACTIONS(7749), 1, + [180705] = 5, + ACTIONS(3843), 1, + anon_sym_LBRACK, + ACTIONS(8116), 1, anon_sym_LPAREN, - ACTIONS(8022), 1, - anon_sym_EQ, + STATE(5265), 1, + sym_parameters, + STATE(5270), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3855), 2, - anon_sym_RPAREN, + [180722] = 4, + ACTIONS(8120), 1, anon_sym_COMMA, - [180744] = 3, - ACTIONS(7476), 1, - anon_sym_as, + STATE(4564), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8024), 3, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - [180757] = 5, - ACTIONS(8026), 1, - anon_sym_case, - ACTIONS(8028), 1, - sym__dedent, - STATE(4613), 1, - aux_sym__match_block_repeat1, - STATE(5345), 1, - sym_case_clause, + ACTIONS(8118), 2, + anon_sym_from, + anon_sym_in, + [180737] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180774] = 5, - ACTIONS(7700), 1, + ACTIONS(7443), 4, + anon_sym_DOT, anon_sym_COLON, - ACTIONS(8030), 1, - anon_sym_RBRACE, - ACTIONS(8032), 1, - sym_type_conversion, - STATE(5561), 1, - sym_format_specifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [180791] = 5, - ACTIONS(8026), 1, - anon_sym_case, - ACTIONS(8034), 1, - sym__dedent, - STATE(4562), 1, - aux_sym__match_block_repeat1, - STATE(5345), 1, - sym_case_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [180808] = 5, - ACTIONS(8004), 1, + anon_sym_EQ, + anon_sym_PIPE, + [180748] = 5, + ACTIONS(8070), 1, anon_sym_as, - ACTIONS(8036), 1, + ACTIONS(8122), 1, anon_sym_RPAREN, - ACTIONS(8038), 1, + ACTIONS(8124), 1, anon_sym_COMMA, - STATE(4665), 1, + STATE(4676), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180825] = 5, - ACTIONS(8040), 1, + [180765] = 5, + ACTIONS(8126), 1, anon_sym_COMMA, - ACTIONS(8042), 1, + ACTIONS(8128), 1, anon_sym_as, - ACTIONS(8044), 1, + ACTIONS(8130), 1, anon_sym_RBRACK, - STATE(4666), 1, + STATE(4678), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180842] = 4, - ACTIONS(8048), 1, - anon_sym_EQ, - STATE(5325), 1, - sym_template_default, + [180782] = 5, + ACTIONS(7839), 1, + anon_sym_LPAREN, + ACTIONS(8076), 1, + anon_sym_COMMA, + ACTIONS(8132), 1, + anon_sym_RPAREN, + STATE(4677), 1, + aux_sym_function_pointer_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8046), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [180857] = 2, + [180799] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7976), 4, + ACTIONS(7423), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [180868] = 2, + anon_sym_if, + anon_sym_COLON, + [180810] = 4, + ACTIONS(8120), 1, + anon_sym_COMMA, + STATE(4564), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7597), 4, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [180879] = 5, - ACTIONS(7412), 1, + ACTIONS(8134), 2, + anon_sym_from, + anon_sym_in, + [180825] = 5, + ACTIONS(8136), 1, + anon_sym_case, + ACTIONS(8139), 1, + sym__dedent, + STATE(4511), 1, + aux_sym__match_block_repeat1, + STATE(5309), 1, + sym_case_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [180842] = 5, + ACTIONS(7445), 1, anon_sym_EQ, - ACTIONS(8050), 1, + ACTIONS(8141), 1, anon_sym_DOT, - ACTIONS(8052), 1, + ACTIONS(8143), 1, anon_sym_COLON, - ACTIONS(8054), 1, + ACTIONS(8145), 1, anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180896] = 5, - ACTIONS(8050), 1, - anon_sym_DOT, - ACTIONS(8052), 1, - anon_sym_COLON, - ACTIONS(8054), 1, - anon_sym_PIPE, - ACTIONS(8056), 1, - anon_sym_EQ, + [180859] = 5, + ACTIONS(3843), 1, + anon_sym_LBRACK, + ACTIONS(8116), 1, + anon_sym_LPAREN, + STATE(5203), 1, + sym_parameters, + STATE(5346), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180913] = 4, - ACTIONS(6786), 1, + [180876] = 4, + ACTIONS(8064), 1, anon_sym_COMMA, - STATE(4320), 1, - aux_sym_assert_statement_repeat1, + STATE(4563), 1, + aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8058), 2, + ACTIONS(8147), 2, sym__newline, anon_sym_SEMI, - [180928] = 5, - ACTIONS(8004), 1, + [180891] = 5, + ACTIONS(8070), 1, anon_sym_as, - ACTIONS(8060), 1, + ACTIONS(8149), 1, anon_sym_RPAREN, - ACTIONS(8062), 1, + ACTIONS(8151), 1, anon_sym_COMMA, - STATE(4941), 1, + STATE(4705), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180945] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7640), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [180956] = 2, + [180908] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7529), 4, + ACTIONS(7453), 4, anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [180967] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7672), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [180978] = 2, + [180919] = 4, + ACTIONS(7839), 1, + anon_sym_LPAREN, + ACTIONS(8153), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8064), 4, + ACTIONS(3861), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, + [180934] = 5, + ACTIONS(3766), 1, + sym_string_start, + ACTIONS(8155), 1, anon_sym_COLON, - [180989] = 4, - ACTIONS(8068), 1, - anon_sym_COMMA, - STATE(4530), 1, - aux_sym__patterns_repeat1, + ACTIONS(8157), 1, + sym__newline, + STATE(5206), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8066), 2, - anon_sym_from, - anon_sym_in, - [181004] = 4, - ACTIONS(7724), 1, + [180951] = 4, + ACTIONS(7701), 1, anon_sym_pass, - ACTIONS(8070), 1, + ACTIONS(8109), 1, sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3056), 2, + STATE(3078), 2, sym_pass_statement, sym__cppclass_suite, - [181019] = 5, - ACTIONS(8042), 1, - anon_sym_as, - ACTIONS(8072), 1, + [180966] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7733), 4, anon_sym_COMMA, - ACTIONS(8074), 1, + anon_sym_as, anon_sym_RBRACK, - STATE(5103), 1, - aux_sym_case_clause_repeat1, + anon_sym_PIPE, + [180977] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181036] = 2, + ACTIONS(8036), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [180988] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7722), 4, + ACTIONS(7681), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [181047] = 5, - ACTIONS(3756), 1, - sym_string_start, - ACTIONS(8076), 1, - anon_sym_COLON, - ACTIONS(8078), 1, - sym__newline, - STATE(5266), 1, - sym_string, + [180999] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181064] = 5, - ACTIONS(8004), 1, + ACTIONS(7753), 4, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_as, - ACTIONS(8080), 1, + anon_sym_PIPE, + [181010] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7795), 4, anon_sym_RPAREN, - ACTIONS(8082), 1, anon_sym_COMMA, - STATE(4685), 1, - aux_sym_case_clause_repeat1, + anon_sym_as, + anon_sym_PIPE, + [181021] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181081] = 4, - ACTIONS(8086), 1, + ACTIONS(7707), 4, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(4528), 1, - aux_sym_global_statement_repeat1, + anon_sym_as, + anon_sym_PIPE, + [181032] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8084), 2, - sym__newline, - anon_sym_SEMI, - [181096] = 4, - ACTIONS(8089), 1, + ACTIONS(7733), 4, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(4529), 1, + anon_sym_as, + anon_sym_PIPE, + [181043] = 5, + ACTIONS(8070), 1, + anon_sym_as, + ACTIONS(8159), 1, + anon_sym_RPAREN, + ACTIONS(8161), 1, + anon_sym_COMMA, + STATE(4855), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8024), 2, - anon_sym_if, - anon_sym_COLON, - [181111] = 4, - ACTIONS(8092), 1, + [181060] = 5, + ACTIONS(8128), 1, + anon_sym_as, + ACTIONS(8163), 1, anon_sym_COMMA, - STATE(4558), 1, - aux_sym__patterns_repeat1, + ACTIONS(8165), 1, + anon_sym_RBRACK, + STATE(4858), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2747), 2, - anon_sym_from, - anon_sym_in, - [181126] = 5, - ACTIONS(3839), 1, - anon_sym_LBRACK, - ACTIONS(7996), 1, + [181077] = 5, + ACTIONS(7839), 1, anon_sym_LPAREN, - STATE(5195), 1, - sym_parameters, - STATE(5196), 1, - sym_type_parameter, + ACTIONS(8076), 1, + anon_sym_COMMA, + ACTIONS(8167), 1, + anon_sym_RPAREN, + STATE(4782), 1, + aux_sym_function_pointer_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181143] = 5, - ACTIONS(7749), 1, + [181094] = 5, + ACTIONS(7845), 1, anon_sym_LPAREN, - ACTIONS(8094), 1, - anon_sym_RPAREN, - ACTIONS(8096), 1, + ACTIONS(8097), 1, anon_sym_COMMA, - STATE(4771), 1, - aux_sym_function_pointer_type_repeat1, + ACTIONS(8169), 1, + anon_sym_RBRACK, + STATE(4786), 1, + aux_sym_external_definition_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181160] = 2, + [181111] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7875), 4, + ACTIONS(7735), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [181171] = 3, + [181122] = 5, + ACTIONS(8070), 1, + anon_sym_as, + ACTIONS(8171), 1, + anon_sym_RPAREN, + ACTIONS(8173), 1, + anon_sym_COMMA, + STATE(4793), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7051), 2, - anon_sym_RPAREN, + [181139] = 5, + ACTIONS(8128), 1, + anon_sym_as, + ACTIONS(8175), 1, anon_sym_COMMA, - ACTIONS(7055), 2, - anon_sym_not, - anon_sym_or, - [181184] = 5, - ACTIONS(7819), 1, - anon_sym_RPAREN, - ACTIONS(8018), 1, - sym_identifier, - STATE(5082), 1, - sym_dotted_name, - STATE(5318), 1, - sym_aliased_import, + ACTIONS(8177), 1, + anon_sym_RBRACK, + STATE(4795), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [181156] = 4, + ACTIONS(7890), 1, + anon_sym_COMMA, + STATE(4610), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181201] = 2, + ACTIONS(7888), 2, + sym__newline, + anon_sym_SEMI, + [181171] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -268212,7429 +268941,7339 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [181212] = 4, - ACTIONS(8100), 1, - anon_sym_COMMA, - STATE(4543), 1, - aux_sym_global_statement_repeat1, + [181182] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8098), 2, - sym__newline, - anon_sym_SEMI, - [181227] = 5, - ACTIONS(7650), 1, - anon_sym_LPAREN, - ACTIONS(8102), 1, + ACTIONS(7743), 4, anon_sym_COMMA, - ACTIONS(8104), 1, + anon_sym_as, anon_sym_RBRACK, - STATE(4690), 1, - aux_sym_external_definition_repeat1, + anon_sym_PIPE, + [181193] = 5, + ACTIONS(8070), 1, + anon_sym_as, + ACTIONS(8179), 1, + anon_sym_RPAREN, + ACTIONS(8181), 1, + anon_sym_COMMA, + STATE(4802), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181244] = 2, + [181210] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7833), 4, + ACTIONS(7745), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [181255] = 5, - ACTIONS(7700), 1, - anon_sym_COLON, - ACTIONS(8106), 1, - anon_sym_RBRACE, - ACTIONS(8108), 1, - sym_type_conversion, - STATE(5563), 1, - sym_format_specifier, + [181221] = 5, + ACTIONS(7888), 1, + anon_sym_RPAREN, + ACTIONS(8183), 1, + anon_sym_COMMA, + ACTIONS(8185), 1, + anon_sym_as, + STATE(5044), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181272] = 2, + [181238] = 5, + ACTIONS(7348), 1, + sym_identifier, + STATE(4393), 1, + sym_dotted_name, + STATE(4534), 1, + sym_aliased_import, + STATE(5236), 1, + sym__import_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8110), 4, - sym__newline, - anon_sym_COLON, - anon_sym_with, - anon_sym_nogil, - [181283] = 4, - ACTIONS(7724), 1, - anon_sym_pass, - ACTIONS(8070), 1, - sym__indent, + [181255] = 4, + ACTIONS(7845), 1, + anon_sym_LPAREN, + ACTIONS(8189), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3059), 2, - sym_pass_statement, - sym__cppclass_suite, - [181298] = 4, - ACTIONS(8100), 1, + ACTIONS(8187), 2, anon_sym_COMMA, - STATE(4528), 1, - aux_sym_global_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(8112), 2, - sym__newline, - anon_sym_SEMI, - [181313] = 2, + anon_sym_RBRACK, + [181270] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7833), 4, + ACTIONS(7735), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [181324] = 2, + [181281] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7842), 4, + ACTIONS(7739), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [181335] = 2, + [181292] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7847), 4, + ACTIONS(7743), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [181346] = 4, - ACTIONS(8100), 1, - anon_sym_COMMA, - STATE(4528), 1, - aux_sym_global_statement_repeat1, + [181303] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8114), 2, - sym__newline, - anon_sym_SEMI, - [181361] = 4, - ACTIONS(8100), 1, + ACTIONS(7745), 4, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(4547), 1, - aux_sym_global_statement_repeat1, + anon_sym_as, + anon_sym_PIPE, + [181314] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8116), 2, - sym__newline, - anon_sym_SEMI, - [181376] = 5, - ACTIONS(8004), 1, - anon_sym_as, - ACTIONS(8118), 1, + ACTIONS(7769), 4, anon_sym_RPAREN, - ACTIONS(8120), 1, anon_sym_COMMA, - STATE(5043), 1, - aux_sym_case_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [181393] = 5, - ACTIONS(3756), 1, - sym_string_start, - ACTIONS(8122), 1, - anon_sym_COLON, - ACTIONS(8124), 1, - sym__newline, - STATE(5240), 1, - sym_string, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [181410] = 2, + anon_sym_as, + anon_sym_PIPE, + [181325] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7849), 4, + ACTIONS(7779), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [181421] = 5, - ACTIONS(8042), 1, - anon_sym_as, - ACTIONS(8126), 1, - anon_sym_COMMA, - ACTIONS(8128), 1, - anon_sym_RBRACK, - STATE(5044), 1, - aux_sym_case_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [181438] = 5, - ACTIONS(3756), 1, - sym_string_start, - ACTIONS(8130), 1, - anon_sym_COLON, - ACTIONS(8132), 1, - sym__newline, - STATE(5203), 1, - sym_string, + [181336] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181455] = 2, + ACTIONS(7797), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [181347] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7842), 4, + ACTIONS(7799), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [181466] = 2, + [181358] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7853), 4, - anon_sym_RPAREN, + ACTIONS(7915), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - [181477] = 2, + [181369] = 5, + ACTIONS(8070), 1, + anon_sym_as, + ACTIONS(8191), 1, + anon_sym_RPAREN, + ACTIONS(8193), 1, + anon_sym_COMMA, + STATE(4930), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [181386] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7840), 4, + ACTIONS(7769), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [181488] = 2, + [181397] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7976), 4, + ACTIONS(7779), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [181499] = 4, - ACTIONS(8134), 1, - anon_sym_COMMA, - STATE(4558), 1, - aux_sym__patterns_repeat1, + [181408] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5488), 2, - anon_sym_from, - anon_sym_in, - [181514] = 4, - ACTIONS(8139), 1, + ACTIONS(7115), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(4559), 1, - aux_sym_print_statement_repeat1, + ACTIONS(7119), 2, + anon_sym_not, + anon_sym_or, + [181421] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8137), 2, - sym__newline, - anon_sym_SEMI, - [181529] = 2, + ACTIONS(7797), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [181432] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7881), 4, - anon_sym_RPAREN, + ACTIONS(7799), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - [181540] = 4, - ACTIONS(7871), 1, - anon_sym_COMMA, - STATE(4609), 1, - aux_sym__import_list_repeat1, + [181443] = 4, + ACTIONS(5213), 1, + sym_identifier, + STATE(5369), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7869), 2, - sym__newline, - anon_sym_SEMI, - [181555] = 5, - ACTIONS(8026), 1, - anon_sym_case, - ACTIONS(8142), 1, - sym__dedent, - STATE(4610), 1, - aux_sym__match_block_repeat1, - STATE(5345), 1, - sym_case_clause, + ACTIONS(8195), 2, + anon_sym_import, + anon_sym_cimport, + [181458] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181572] = 2, + ACTIONS(7721), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [181469] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7847), 4, + ACTIONS(7882), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [181583] = 5, - ACTIONS(7749), 1, - anon_sym_LPAREN, - ACTIONS(8096), 1, - anon_sym_COMMA, - ACTIONS(8144), 1, - anon_sym_RPAREN, - STATE(4957), 1, - aux_sym_function_pointer_type_repeat1, + [181480] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181600] = 2, + ACTIONS(7896), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [181491] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8146), 4, - sym_string_start, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym_identifier, - [181611] = 2, + ACTIONS(7801), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [181502] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7849), 4, + ACTIONS(7968), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [181622] = 3, - ACTIONS(7873), 1, - anon_sym_as, + [181513] = 4, + ACTIONS(8064), 1, + anon_sym_COMMA, + STATE(4501), 1, + aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8148), 3, + ACTIONS(8197), 2, sym__newline, anon_sym_SEMI, + [181528] = 4, + ACTIONS(8199), 1, anon_sym_COMMA, - [181635] = 2, + STATE(4586), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8150), 4, - sym_string_start, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym_identifier, - [181646] = 4, - ACTIONS(7674), 1, + ACTIONS(2715), 2, + anon_sym_from, + anon_sym_in, + [181543] = 4, + ACTIONS(7691), 1, anon_sym_pass, - ACTIONS(7998), 1, + ACTIONS(8107), 1, sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1789), 2, + STATE(1441), 2, sym_pass_statement, sym__cppclass_suite, - [181661] = 4, - ACTIONS(8154), 1, - anon_sym_COMMA, - STATE(4578), 1, - aux_sym_print_statement_repeat1, + [181558] = 4, + ACTIONS(8203), 1, + anon_sym_COLON, + ACTIONS(8205), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8152), 2, - sym__newline, - anon_sym_SEMI, - [181676] = 2, + ACTIONS(8201), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [181573] = 4, + ACTIONS(8064), 1, + anon_sym_COMMA, + STATE(4501), 1, + aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3875), 4, + ACTIONS(8207), 2, + sym__newline, + anon_sym_SEMI, + [181588] = 5, + ACTIONS(8141), 1, anon_sym_DOT, + ACTIONS(8143), 1, anon_sym_COLON, - anon_sym_EQ, + ACTIONS(8145), 1, anon_sym_PIPE, - [181687] = 4, - ACTIONS(8158), 1, - anon_sym_COMMA, - STATE(4572), 1, - aux_sym__import_list_repeat1, + ACTIONS(8209), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8156), 2, + [181605] = 5, + ACTIONS(3766), 1, + sym_string_start, + ACTIONS(8211), 1, + anon_sym_COLON, + ACTIONS(8213), 1, sym__newline, - anon_sym_SEMI, - [181702] = 4, - ACTIONS(7628), 1, - anon_sym_pass, - ACTIONS(8020), 1, - sym__indent, + STATE(5365), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(717), 2, - sym_pass_statement, - sym__cppclass_suite, - [181717] = 3, + [181622] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7051), 2, - anon_sym_COMMA, + ACTIONS(3920), 4, + anon_sym_DOT, anon_sym_COLON, - ACTIONS(7185), 2, - anon_sym_not, - anon_sym_or, - [181730] = 5, - ACTIONS(7749), 1, - anon_sym_LPAREN, - ACTIONS(8096), 1, + anon_sym_EQ, + anon_sym_PIPE, + [181633] = 4, + ACTIONS(6784), 1, anon_sym_COMMA, - ACTIONS(8161), 1, - anon_sym_RPAREN, - STATE(4753), 1, - aux_sym_function_pointer_type_repeat1, + STATE(4384), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181747] = 2, + ACTIONS(8215), 2, + sym__newline, + anon_sym_SEMI, + [181648] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7853), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [181758] = 5, - ACTIONS(7650), 1, + ACTIONS(8217), 4, + sym_string_start, anon_sym_LPAREN, - ACTIONS(8102), 1, - anon_sym_COMMA, - ACTIONS(8163), 1, - anon_sym_RBRACK, - STATE(4894), 1, - aux_sym_external_definition_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [181775] = 4, - ACTIONS(8167), 1, + anon_sym_LBRACK, + sym_identifier, + [181659] = 4, + ACTIONS(8219), 1, anon_sym_COMMA, - STATE(4559), 1, - aux_sym_print_statement_repeat1, + STATE(4384), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8165), 2, + ACTIONS(3315), 2, sym__newline, anon_sym_SEMI, - [181790] = 4, - ACTIONS(8171), 1, - anon_sym_COMMA, - STATE(4559), 1, - aux_sym_print_statement_repeat1, + [181674] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8169), 2, - sym__newline, - anon_sym_SEMI, - [181805] = 5, - ACTIONS(7650), 1, - anon_sym_LPAREN, - ACTIONS(8102), 1, + ACTIONS(8036), 4, anon_sym_COMMA, - ACTIONS(8173), 1, + anon_sym_as, anon_sym_RBRACK, - STATE(4759), 1, - aux_sym_external_definition_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [181822] = 4, - ACTIONS(5215), 1, - sym_identifier, - STATE(5155), 1, - sym_dotted_name, + anon_sym_PIPE, + [181685] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8175), 2, - anon_sym_import, - anon_sym_cimport, - [181837] = 5, - ACTIONS(8004), 1, - anon_sym_as, - ACTIONS(8177), 1, - anon_sym_RPAREN, - ACTIONS(8179), 1, + ACTIONS(7681), 4, anon_sym_COMMA, - STATE(5091), 1, - aux_sym_case_clause_repeat1, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [181696] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181854] = 4, - ACTIONS(6786), 1, + ACTIONS(7753), 4, anon_sym_COMMA, - STATE(4320), 1, - aux_sym_assert_statement_repeat1, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [181707] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8181), 2, - sym__newline, - anon_sym_SEMI, - [181869] = 5, - ACTIONS(3756), 1, + ACTIONS(7494), 4, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [181718] = 5, + ACTIONS(3766), 1, sym_string_start, - ACTIONS(8183), 1, + ACTIONS(8221), 1, anon_sym_COLON, - ACTIONS(8185), 1, + ACTIONS(8223), 1, sym__newline, - STATE(5218), 1, + STATE(5366), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181886] = 5, - ACTIONS(8018), 1, - sym_identifier, - STATE(4601), 1, - sym_dotted_name, - STATE(5081), 1, - sym_aliased_import, - STATE(5570), 1, - sym__import_list, + [181735] = 5, + ACTIONS(7845), 1, + anon_sym_LPAREN, + ACTIONS(8097), 1, + anon_sym_COMMA, + ACTIONS(8225), 1, + anon_sym_RBRACK, + STATE(4770), 1, + aux_sym_external_definition_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181903] = 2, + [181752] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7883), 4, + ACTIONS(7944), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [181914] = 2, + [181763] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7829), 4, + ACTIONS(7944), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [181925] = 2, + anon_sym_RBRACE, + [181774] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7887), 4, + ACTIONS(7964), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [181936] = 2, + anon_sym_RBRACE, + [181785] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7895), 4, + ACTIONS(7737), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [181947] = 2, + [181796] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7338), 4, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [181958] = 5, - ACTIONS(8004), 1, - anon_sym_as, - ACTIONS(8187), 1, - anon_sym_RPAREN, - ACTIONS(8189), 1, + ACTIONS(7976), 4, anon_sym_COMMA, - STATE(4766), 1, - aux_sym_case_clause_repeat1, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [181807] = 5, + ACTIONS(8088), 1, + anon_sym_case, + ACTIONS(8227), 1, + sym__dedent, + STATE(4489), 1, + aux_sym__match_block_repeat1, + STATE(5309), 1, + sym_case_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181975] = 5, - ACTIONS(8042), 1, - anon_sym_as, - ACTIONS(8191), 1, + [181824] = 4, + ACTIONS(8229), 1, anon_sym_COMMA, - ACTIONS(8193), 1, - anon_sym_RBRACK, - STATE(4768), 1, - aux_sym_case_clause_repeat1, + STATE(4586), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181992] = 2, + ACTIONS(5521), 2, + anon_sym_from, + anon_sym_in, + [181839] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6424), 4, - anon_sym_DOT, + ACTIONS(6921), 2, anon_sym_COLON, - anon_sym_EQ, anon_sym_PIPE, - [182003] = 2, + ACTIONS(8232), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [181852] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7883), 4, - anon_sym_RPAREN, + ACTIONS(7964), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - [182014] = 2, + [181863] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7829), 4, - anon_sym_RPAREN, + ACTIONS(8036), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [182025] = 2, + anon_sym_RBRACE, + [181874] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7887), 4, - anon_sym_RPAREN, + ACTIONS(7681), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [182036] = 2, + anon_sym_RBRACE, + [181885] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7865), 4, + ACTIONS(7753), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [182047] = 5, - ACTIONS(8004), 1, - anon_sym_as, - ACTIONS(8195), 1, - anon_sym_RPAREN, - ACTIONS(8197), 1, - anon_sym_COMMA, - STATE(4777), 1, - aux_sym_case_clause_repeat1, + anon_sym_RBRACE, + [181896] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182064] = 2, + ACTIONS(7795), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [181907] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7895), 4, - anon_sym_RPAREN, + ACTIONS(7707), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [182075] = 5, - ACTIONS(7650), 1, - anon_sym_LPAREN, - ACTIONS(8102), 1, - anon_sym_COMMA, - ACTIONS(8199), 1, - anon_sym_RBRACK, - STATE(5067), 1, - aux_sym_external_definition_repeat1, + anon_sym_RBRACE, + [181918] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182092] = 5, - ACTIONS(7869), 1, - anon_sym_RPAREN, - ACTIONS(8201), 1, + ACTIONS(7795), 4, anon_sym_COMMA, - ACTIONS(8203), 1, anon_sym_as, - STATE(4729), 1, - aux_sym__import_list_repeat1, + anon_sym_RBRACK, + anon_sym_PIPE, + [181929] = 5, + ACTIONS(7683), 1, + anon_sym_COLON, + ACTIONS(8234), 1, + anon_sym_RBRACE, + ACTIONS(8236), 1, + sym_type_conversion, + STATE(5694), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182109] = 2, + [181946] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7877), 4, + ACTIONS(7976), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [182120] = 5, - ACTIONS(3839), 1, - anon_sym_LBRACK, - ACTIONS(7996), 1, - anon_sym_LPAREN, - STATE(5204), 1, - sym_parameters, - STATE(5328), 1, - sym_type_parameter, + [181957] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182137] = 5, - ACTIONS(3839), 1, - anon_sym_LBRACK, - ACTIONS(7996), 1, - anon_sym_LPAREN, - STATE(5212), 1, - sym_parameters, - STATE(5332), 1, - sym_type_parameter, + ACTIONS(6385), 4, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [181968] = 4, + ACTIONS(7691), 1, + anon_sym_pass, + ACTIONS(8107), 1, + sym__indent, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1506), 2, + sym_pass_statement, + sym__cppclass_suite, + [181983] = 5, + ACTIONS(7683), 1, + anon_sym_COLON, + ACTIONS(8238), 1, + anon_sym_RBRACE, + ACTIONS(8240), 1, + sym_type_conversion, + STATE(5516), 1, + sym_format_specifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [182000] = 3, + ACTIONS(7892), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8242), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + [182013] = 4, + ACTIONS(8246), 1, + anon_sym_COMMA, + STATE(4601), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182154] = 2, + ACTIONS(8244), 2, + sym__newline, + anon_sym_SEMI, + [182028] = 5, + ACTIONS(8088), 1, + anon_sym_case, + ACTIONS(8249), 1, + sym__dedent, + STATE(4486), 1, + aux_sym__match_block_repeat1, + STATE(5309), 1, + sym_case_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [182045] = 4, + ACTIONS(8253), 1, + anon_sym_COMMA, + STATE(4623), 1, + aux_sym_print_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8251), 2, + sym__newline, + anon_sym_SEMI, + [182060] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7881), 4, + ACTIONS(7733), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [182165] = 2, + anon_sym_RBRACE, + [182071] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8255), 4, + sym_string_start, + anon_sym_LPAREN, + anon_sym_LBRACK, + sym_identifier, + [182082] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7493), 4, + ACTIONS(7115), 2, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, - [182176] = 2, + ACTIONS(7307), 2, + anon_sym_not, + anon_sym_or, + [182095] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7840), 4, + ACTIONS(7735), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [182187] = 4, - ACTIONS(5117), 1, - anon_sym_LBRACK, - STATE(3530), 1, - sym_type_index, + anon_sym_RBRACE, + [182106] = 4, + ACTIONS(8259), 1, + anon_sym_EQ, + STATE(5205), 1, + sym_template_default, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5955), 2, - anon_sym_DOT, - sym_identifier, - [182202] = 4, - ACTIONS(8205), 1, + ACTIONS(8257), 2, anon_sym_COMMA, - STATE(4572), 1, - aux_sym__import_list_repeat1, + anon_sym_RBRACK, + [182121] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8014), 2, - sym__newline, - anon_sym_SEMI, - [182217] = 5, - ACTIONS(8207), 1, - anon_sym_case, - ACTIONS(8210), 1, - sym__dedent, - STATE(4610), 1, - aux_sym__match_block_repeat1, - STATE(5345), 1, - sym_case_clause, + ACTIONS(7739), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [182132] = 4, + ACTIONS(8263), 1, + anon_sym_COMMA, + STATE(4601), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182234] = 4, - ACTIONS(7724), 1, - anon_sym_pass, - ACTIONS(8070), 1, - sym__indent, + ACTIONS(8261), 2, + sym__newline, + anon_sym_SEMI, + [182147] = 4, + ACTIONS(8265), 1, + anon_sym_COMMA, + STATE(4601), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3063), 2, - sym_pass_statement, - sym__cppclass_suite, - [182249] = 5, - ACTIONS(3756), 1, - sym_string_start, - ACTIONS(8212), 1, - anon_sym_COLON, - ACTIONS(8214), 1, + ACTIONS(8261), 2, sym__newline, - STATE(5314), 1, - sym_string, + anon_sym_SEMI, + [182162] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182266] = 5, - ACTIONS(8026), 1, - anon_sym_case, - ACTIONS(8216), 1, - sym__dedent, - STATE(4610), 1, - aux_sym__match_block_repeat1, - STATE(5345), 1, - sym_case_clause, + ACTIONS(7743), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [182173] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182283] = 2, + ACTIONS(7745), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [182184] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7883), 4, + ACTIONS(7769), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [182294] = 5, - ACTIONS(8018), 1, + [182195] = 5, + ACTIONS(8082), 1, sym_identifier, - STATE(4601), 1, + STATE(4539), 1, sym_dotted_name, - STATE(5081), 1, + STATE(4785), 1, sym_aliased_import, - STATE(5571), 1, + STATE(5574), 1, sym__import_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182311] = 5, - ACTIONS(3756), 1, + [182212] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8267), 4, + sym__newline, + anon_sym_COLON, + anon_sym_with, + anon_sym_nogil, + [182223] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7779), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [182234] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7707), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [182245] = 5, + ACTIONS(3766), 1, sym_string_start, - ACTIONS(8218), 1, + ACTIONS(8269), 1, anon_sym_COLON, - ACTIONS(8220), 1, + ACTIONS(8271), 1, sym__newline, - STATE(5186), 1, + STATE(5287), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182328] = 4, - ACTIONS(8068), 1, - anon_sym_COMMA, - STATE(4530), 1, - aux_sym__patterns_repeat1, + [182262] = 5, + ACTIONS(8082), 1, + sym_identifier, + STATE(4539), 1, + sym_dotted_name, + STATE(4785), 1, + sym_aliased_import, + STATE(5601), 1, + sym__import_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8222), 2, - anon_sym_from, - anon_sym_in, - [182343] = 2, + [182279] = 5, + ACTIONS(3843), 1, + anon_sym_LBRACK, + ACTIONS(8116), 1, + anon_sym_LPAREN, + STATE(5218), 1, + sym_parameters, + STATE(5345), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7887), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [182354] = 4, - ACTIONS(8224), 1, + [182296] = 5, + ACTIONS(3843), 1, + anon_sym_LBRACK, + ACTIONS(8116), 1, + anon_sym_LPAREN, + STATE(5227), 1, + sym_parameters, + STATE(5350), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [182313] = 4, + ACTIONS(8275), 1, anon_sym_COMMA, - STATE(4320), 1, - aux_sym_assert_statement_repeat1, + STATE(4623), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3323), 2, + ACTIONS(8273), 2, sym__newline, anon_sym_SEMI, - [182369] = 2, + [182328] = 5, + ACTIONS(8070), 1, + anon_sym_as, + ACTIONS(8278), 1, + anon_sym_RPAREN, + ACTIONS(8280), 1, + anon_sym_COMMA, + STATE(4790), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [182345] = 5, + ACTIONS(7839), 1, + anon_sym_LPAREN, + ACTIONS(8076), 1, + anon_sym_COMMA, + ACTIONS(8282), 1, + anon_sym_RPAREN, + STATE(5022), 1, + aux_sym_function_pointer_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [182362] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7895), 4, + ACTIONS(7797), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [182380] = 4, - ACTIONS(7628), 1, - anon_sym_pass, - ACTIONS(8020), 1, - sym__indent, + [182373] = 4, + ACTIONS(8286), 1, + anon_sym_COMMA, + STATE(4623), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(710), 2, - sym_pass_statement, - sym__cppclass_suite, - [182395] = 5, - ACTIONS(7749), 1, - anon_sym_LPAREN, - ACTIONS(8096), 1, + ACTIONS(8284), 2, + sym__newline, + anon_sym_SEMI, + [182388] = 5, + ACTIONS(8128), 1, + anon_sym_as, + ACTIONS(8288), 1, anon_sym_COMMA, - ACTIONS(8226), 1, - anon_sym_RPAREN, - STATE(4653), 1, - aux_sym_function_pointer_type_repeat1, + ACTIONS(8290), 1, + anon_sym_RBRACK, + STATE(4801), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182412] = 4, - ACTIONS(8068), 1, + [182405] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7799), 4, anon_sym_COMMA, - STATE(4530), 1, - aux_sym__patterns_repeat1, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [182416] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8228), 2, - anon_sym_from, - anon_sym_in, + ACTIONS(7721), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, [182427] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7763), 4, - anon_sym_RPAREN, + ACTIONS(7882), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, + anon_sym_RBRACE, [182438] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7840), 4, - anon_sym_RPAREN, + ACTIONS(7721), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, [182449] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7976), 4, - anon_sym_RPAREN, + ACTIONS(7882), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, [182460] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7640), 4, - anon_sym_RPAREN, + ACTIONS(7896), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - [182471] = 4, - ACTIONS(8068), 1, - anon_sym_COMMA, - STATE(4530), 1, - aux_sym__patterns_repeat1, + [182471] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8230), 2, - anon_sym_from, - anon_sym_in, - [182486] = 2, + ACTIONS(7896), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [182482] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7672), 4, - anon_sym_RPAREN, + ACTIONS(7801), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - [182497] = 2, + [182493] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7722), 4, - anon_sym_RPAREN, + ACTIONS(7968), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - [182508] = 4, - ACTIONS(7650), 1, - anon_sym_LPAREN, - ACTIONS(8234), 1, - anon_sym_EQ, + [182504] = 4, + ACTIONS(7701), 1, + anon_sym_pass, + ACTIONS(8109), 1, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8232), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [182523] = 2, + STATE(3071), 2, + sym_pass_statement, + sym__cppclass_suite, + [182519] = 4, + ACTIONS(5109), 1, + anon_sym_LBRACK, + STATE(3581), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7739), 4, - anon_sym_RPAREN, + ACTIONS(5988), 2, + anon_sym_DOT, + sym_identifier, + [182534] = 5, + ACTIONS(3766), 1, + sym_string_start, + ACTIONS(8292), 1, + anon_sym_COLON, + ACTIONS(8294), 1, + sym__newline, + STATE(5343), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [182551] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7801), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [182534] = 2, + anon_sym_RBRACE, + [182562] = 4, + ACTIONS(8120), 1, + anon_sym_COMMA, + STATE(4564), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7765), 4, - anon_sym_RPAREN, + ACTIONS(8296), 2, + anon_sym_from, + anon_sym_in, + [182577] = 4, + ACTIONS(8120), 1, + anon_sym_COMMA, + STATE(4564), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8298), 2, + anon_sym_from, + anon_sym_in, + [182592] = 4, + ACTIONS(6784), 1, + anon_sym_COMMA, + STATE(4384), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8300), 2, + sym__newline, + anon_sym_SEMI, + [182607] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7968), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [182545] = 2, + anon_sym_RBRACE, + [182618] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7877), 4, + ACTIONS(7915), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [182556] = 4, - ACTIONS(6256), 1, + [182629] = 4, + ACTIONS(5568), 1, + anon_sym_RPAREN, + ACTIONS(8302), 1, anon_sym_COMMA, - ACTIONS(8236), 1, - sym__newline, - STATE(4727), 1, - aux_sym_cvar_decl_repeat2, + STATE(4932), 1, + aux_sym__typedargslist_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182570] = 4, - ACTIONS(8006), 1, - anon_sym_RPAREN, - ACTIONS(8238), 1, + [182643] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - STATE(4636), 1, - aux_sym__typedargslist_repeat1, + ACTIONS(8304), 1, + sym__newline, + STATE(5056), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182584] = 3, - ACTIONS(7749), 1, - anon_sym_LPAREN, + [182657] = 3, + ACTIONS(8185), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8241), 2, + ACTIONS(8242), 2, anon_sym_RPAREN, anon_sym_COMMA, - [182596] = 4, - ACTIONS(8243), 1, + [182669] = 4, + ACTIONS(8306), 1, + anon_sym_LPAREN, + ACTIONS(8308), 1, anon_sym_COLON, - ACTIONS(8245), 1, - anon_sym_LBRACK, - STATE(5605), 1, - sym_external_definition, + ACTIONS(8310), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182610] = 4, - ACTIONS(8247), 1, + [182683] = 4, + ACTIONS(8312), 1, anon_sym_COMMA, - ACTIONS(8250), 1, - anon_sym_COLON, - STATE(4639), 1, - aux_sym__parameters_repeat1, + ACTIONS(8314), 1, + anon_sym_RBRACE, + STATE(4679), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182624] = 4, - ACTIONS(8252), 1, - anon_sym_SEMI, - ACTIONS(8254), 1, + [182697] = 4, + ACTIONS(6315), 1, + anon_sym_COMMA, + ACTIONS(8316), 1, sym__newline, - STATE(4701), 1, - aux_sym__simple_statements_repeat1, + STATE(5056), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182638] = 4, - ACTIONS(8256), 1, + [182711] = 4, + ACTIONS(8318), 1, anon_sym_COMMA, - ACTIONS(8258), 1, - anon_sym_RBRACE, - STATE(4667), 1, - aux_sym_dict_pattern_repeat1, + ACTIONS(8320), 1, + anon_sym_COLON, + STATE(4752), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182652] = 4, - ACTIONS(8260), 1, - anon_sym_LPAREN, - ACTIONS(8262), 1, - anon_sym_COLON, - ACTIONS(8264), 1, - sym__newline, + [182725] = 3, + ACTIONS(5829), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182666] = 4, - ACTIONS(8266), 1, + ACTIONS(5717), 2, + anon_sym_COMMA, + anon_sym_COLON, + [182737] = 4, + ACTIONS(8322), 1, + anon_sym_COLON, + ACTIONS(8324), 1, + anon_sym_nogil, + ACTIONS(8326), 1, sym__newline, - ACTIONS(8268), 1, - sym__indent, - STATE(1672), 1, - sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182680] = 4, - ACTIONS(6988), 1, + [182751] = 4, + ACTIONS(6998), 1, anon_sym_COMMA, - ACTIONS(8270), 1, + ACTIONS(8328), 1, anon_sym_RBRACK, - STATE(5031), 1, + STATE(4825), 1, aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182694] = 4, - ACTIONS(7468), 1, - anon_sym_LPAREN, - ACTIONS(8272), 1, - anon_sym_GT, - ACTIONS(8274), 1, - anon_sym_QMARK, + [182765] = 4, + ACTIONS(2987), 1, + anon_sym_RBRACK, + ACTIONS(8330), 1, + anon_sym_COMMA, + STATE(4823), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182708] = 4, - ACTIONS(8276), 1, + [182779] = 4, + ACTIONS(8332), 1, anon_sym_COMMA, - ACTIONS(8279), 1, + ACTIONS(8334), 1, anon_sym_RBRACK, - STATE(4646), 1, - aux_sym_template_params_repeat1, + STATE(5102), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182722] = 4, - ACTIONS(6284), 1, + [182793] = 4, + ACTIONS(8336), 1, anon_sym_COMMA, - ACTIONS(6353), 1, - anon_sym_RPAREN, - STATE(4715), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(8338), 1, + anon_sym_RBRACK, + STATE(5102), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182736] = 4, - ACTIONS(8260), 1, + [182807] = 4, + ACTIONS(8340), 1, anon_sym_LPAREN, - ACTIONS(8281), 1, + ACTIONS(8342), 1, anon_sym_COLON, - ACTIONS(8283), 1, + ACTIONS(8344), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182750] = 4, - ACTIONS(6256), 1, + [182821] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5670), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [182831] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(8285), 1, + ACTIONS(8346), 1, sym__newline, - STATE(4727), 1, + STATE(5056), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182764] = 4, - ACTIONS(6256), 1, + [182845] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(8287), 1, + ACTIONS(8348), 1, sym__newline, - STATE(4727), 1, + STATE(5056), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182778] = 4, - ACTIONS(6256), 1, + [182859] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(8289), 1, + ACTIONS(8350), 1, sym__newline, - STATE(4727), 1, + STATE(5056), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182792] = 4, - ACTIONS(6256), 1, + [182873] = 4, + ACTIONS(5530), 1, + anon_sym_RPAREN, + ACTIONS(8352), 1, anon_sym_COMMA, - ACTIONS(8291), 1, - sym__newline, - STATE(4727), 1, - aux_sym_cvar_decl_repeat2, + STATE(4932), 1, + aux_sym__typedargslist_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182806] = 4, - ACTIONS(8096), 1, + [182887] = 4, + ACTIONS(3794), 1, + anon_sym_RBRACK, + ACTIONS(8354), 1, anon_sym_COMMA, - ACTIONS(8293), 1, - anon_sym_RPAREN, - STATE(4656), 1, - aux_sym_function_pointer_type_repeat1, + STATE(5108), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182820] = 4, - ACTIONS(6256), 1, + [182901] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(8295), 1, + ACTIONS(8356), 1, sym__newline, - STATE(4727), 1, + STATE(5056), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182834] = 4, - ACTIONS(6256), 1, + [182915] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(8297), 1, + ACTIONS(8358), 1, sym__newline, - STATE(4727), 1, + STATE(5056), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182848] = 4, - ACTIONS(8241), 1, - anon_sym_RPAREN, - ACTIONS(8299), 1, - anon_sym_COMMA, - STATE(4656), 1, - aux_sym_function_pointer_type_repeat1, + [182929] = 4, + ACTIONS(8360), 1, + anon_sym_COLON, + ACTIONS(8362), 1, + anon_sym_LBRACK, + STATE(5560), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182862] = 4, - ACTIONS(6256), 1, + [182943] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(8302), 1, + ACTIONS(8364), 1, sym__newline, - STATE(4727), 1, + STATE(5056), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182876] = 4, - ACTIONS(6256), 1, + [182957] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(8304), 1, + ACTIONS(8366), 1, sym__newline, - STATE(4727), 1, + STATE(5056), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182890] = 4, - ACTIONS(6256), 1, + [182971] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(8306), 1, + ACTIONS(8368), 1, sym__newline, - STATE(4727), 1, + STATE(5056), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182904] = 4, - ACTIONS(6256), 1, - anon_sym_COMMA, - ACTIONS(8308), 1, - sym__newline, - STATE(4727), 1, - aux_sym_cvar_decl_repeat2, + [182985] = 3, + ACTIONS(8372), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182918] = 4, - ACTIONS(3077), 1, - anon_sym_RPAREN, - ACTIONS(8310), 1, + ACTIONS(8370), 2, + sym__newline, anon_sym_COMMA, - STATE(4687), 1, - aux_sym_assert_statement_repeat1, + [182997] = 4, + ACTIONS(8374), 1, + anon_sym_SEMI, + ACTIONS(8376), 1, + sym__newline, + STATE(4995), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182932] = 3, - ACTIONS(1490), 1, - anon_sym_except, + [183011] = 4, + ACTIONS(6315), 1, + anon_sym_COMMA, + ACTIONS(8378), 1, + sym__newline, + STATE(5056), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1492), 2, - anon_sym_except_STAR, - anon_sym_finally, - [182944] = 4, - ACTIONS(8312), 1, + [183025] = 4, + ACTIONS(5085), 1, anon_sym_RPAREN, - ACTIONS(8314), 1, + ACTIONS(8380), 1, anon_sym_COMMA, - STATE(4663), 1, - aux_sym_with_clause_repeat1, + STATE(4742), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182958] = 3, - ACTIONS(5756), 1, - anon_sym_EQ, + [183039] = 4, + ACTIONS(8076), 1, + anon_sym_COMMA, + ACTIONS(8382), 1, + anon_sym_RPAREN, + STATE(4850), 1, + aux_sym_function_pointer_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5719), 2, - anon_sym_COMMA, - anon_sym_COLON, - [182970] = 4, - ACTIONS(5071), 1, - anon_sym_RPAREN, - ACTIONS(8317), 1, + [183053] = 4, + ACTIONS(5087), 1, + anon_sym_RBRACK, + ACTIONS(8384), 1, anon_sym_COMMA, - STATE(5147), 1, + STATE(4815), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182984] = 4, - ACTIONS(5073), 1, - anon_sym_RBRACK, - ACTIONS(8319), 1, + [183067] = 4, + ACTIONS(8386), 1, anon_sym_COMMA, - STATE(4784), 1, - aux_sym_case_clause_repeat1, + ACTIONS(8388), 1, + anon_sym_RBRACE, + STATE(5049), 1, + aux_sym_dict_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [183081] = 4, + ACTIONS(3055), 1, + anon_sym_COLON, + ACTIONS(8390), 1, + anon_sym_COMMA, + STATE(5095), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182998] = 4, - ACTIONS(8321), 1, + [183095] = 4, + ACTIONS(8392), 1, anon_sym_COMMA, - ACTIONS(8323), 1, + ACTIONS(8394), 1, anon_sym_RBRACE, - STATE(4879), 1, + STATE(5049), 1, aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183012] = 4, - ACTIONS(6256), 1, + [183109] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(8325), 1, + ACTIONS(8396), 1, sym__newline, - STATE(4727), 1, + STATE(5056), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183026] = 4, - ACTIONS(8327), 1, + [183123] = 4, + ACTIONS(2839), 1, + anon_sym_RPAREN, + ACTIONS(8398), 1, + anon_sym_COMMA, + STATE(5090), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [183137] = 3, + ACTIONS(8402), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8400), 2, + sym__newline, + anon_sym_SEMI, + [183149] = 3, + ACTIONS(7498), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8404), 2, anon_sym_COMMA, - ACTIONS(8329), 1, + anon_sym_COLON, + [183161] = 4, + ACTIONS(7683), 1, + anon_sym_COLON, + ACTIONS(8406), 1, anon_sym_RBRACE, - STATE(4879), 1, - aux_sym_dict_pattern_repeat1, + STATE(5394), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183040] = 4, - ACTIONS(7785), 1, - anon_sym_RBRACK, - ACTIONS(8331), 1, + [183175] = 4, + ACTIONS(8097), 1, anon_sym_COMMA, - STATE(4760), 1, - aux_sym_type_index_repeat2, + ACTIONS(8408), 1, + anon_sym_RBRACK, + STATE(4897), 1, + aux_sym_external_definition_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183054] = 4, - ACTIONS(5926), 1, - sym_identifier, - ACTIONS(8333), 1, - anon_sym_DOT, - STATE(4764), 1, - aux_sym_type_qualifier_repeat1, + [183189] = 4, + ACTIONS(8340), 1, + anon_sym_LPAREN, + ACTIONS(8410), 1, + anon_sym_COLON, + ACTIONS(8412), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183068] = 4, - ACTIONS(8260), 1, + [183203] = 4, + ACTIONS(8340), 1, anon_sym_LPAREN, - ACTIONS(8335), 1, + ACTIONS(8414), 1, anon_sym_COLON, - ACTIONS(8337), 1, + ACTIONS(8416), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183082] = 4, - ACTIONS(6256), 1, + [183217] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(8339), 1, + ACTIONS(8418), 1, sym__newline, - STATE(4727), 1, + STATE(5056), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183096] = 4, - ACTIONS(6256), 1, + [183231] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(8341), 1, + ACTIONS(8420), 1, sym__newline, - STATE(4727), 1, + STATE(5056), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183110] = 4, - ACTIONS(6256), 1, + [183245] = 4, + ACTIONS(3794), 1, + anon_sym_RPAREN, + ACTIONS(8422), 1, + anon_sym_COMMA, + STATE(5088), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [183259] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(8343), 1, + ACTIONS(8424), 1, sym__newline, - STATE(4727), 1, + STATE(5056), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183124] = 4, - ACTIONS(6980), 1, + [183273] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(6982), 1, - anon_sym_RBRACE, - STATE(4736), 1, - aux_sym_dictionary_repeat1, + ACTIONS(8426), 1, + sym__newline, + STATE(5056), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183138] = 4, - ACTIONS(6256), 1, + [183287] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(8345), 1, + ACTIONS(8428), 1, sym__newline, - STATE(4727), 1, + STATE(5056), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183152] = 4, - ACTIONS(6256), 1, + [183301] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(8347), 1, + ACTIONS(8430), 1, sym__newline, - STATE(4727), 1, + STATE(5056), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183166] = 4, - ACTIONS(6256), 1, + [183315] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(8349), 1, + ACTIONS(8432), 1, sym__newline, - STATE(4727), 1, + STATE(5056), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183180] = 4, - ACTIONS(6256), 1, + [183329] = 4, + ACTIONS(6703), 1, + sym__newline, + ACTIONS(7324), 1, anon_sym_COMMA, - ACTIONS(8351), 1, + STATE(5106), 1, + aux_sym_cvar_def_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [183343] = 4, + ACTIONS(8310), 1, sym__newline, - STATE(4727), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(8434), 1, + sym_identifier, + ACTIONS(8436), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [183357] = 4, + ACTIONS(8141), 1, + anon_sym_DOT, + ACTIONS(8438), 1, + anon_sym_COLON, + ACTIONS(8440), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183194] = 4, - ACTIONS(8353), 1, + [183371] = 4, + ACTIONS(3055), 1, + anon_sym_RBRACK, + ACTIONS(8442), 1, anon_sym_COMMA, - ACTIONS(8355), 1, - anon_sym_RBRACE, - STATE(4879), 1, - aux_sym_dict_pattern_repeat1, + STATE(4783), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183208] = 4, - ACTIONS(7468), 1, - anon_sym_LPAREN, - ACTIONS(8357), 1, - anon_sym_GT, - ACTIONS(8359), 1, - anon_sym_QMARK, + [183385] = 4, + ACTIONS(6315), 1, + anon_sym_COMMA, + ACTIONS(8444), 1, + sym__newline, + STATE(5056), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183222] = 4, - ACTIONS(8361), 1, - anon_sym_RPAREN, - ACTIONS(8363), 1, + [183399] = 4, + ACTIONS(8446), 1, anon_sym_COMMA, - STATE(5051), 1, - aux_sym_argument_list_repeat1, + ACTIONS(8449), 1, + anon_sym_COLON, + STATE(4703), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183236] = 4, - ACTIONS(8365), 1, + [183413] = 4, + ACTIONS(8340), 1, anon_sym_LPAREN, - ACTIONS(8367), 1, + ACTIONS(8451), 1, anon_sym_COLON, - ACTIONS(8369), 1, + ACTIONS(8453), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183250] = 4, - ACTIONS(5079), 1, + [183427] = 4, + ACTIONS(5093), 1, anon_sym_RPAREN, - ACTIONS(8371), 1, + ACTIONS(8455), 1, anon_sym_COMMA, - STATE(5147), 1, + STATE(4742), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183264] = 2, + [183441] = 4, + ACTIONS(7865), 1, + anon_sym_COLON, + ACTIONS(7869), 1, + sym__newline, + ACTIONS(8457), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3899), 3, + [183455] = 4, + ACTIONS(7869), 1, + sym__newline, + ACTIONS(8459), 1, + anon_sym_LPAREN, + ACTIONS(8461), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [183469] = 4, + ACTIONS(6159), 1, anon_sym_RPAREN, + ACTIONS(6381), 1, anon_sym_COMMA, - anon_sym_EQ, - [183274] = 4, - ACTIONS(6552), 1, + STATE(4905), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [183483] = 4, + ACTIONS(8463), 1, anon_sym_RPAREN, - ACTIONS(8373), 1, + ACTIONS(8465), 1, anon_sym_COMMA, - STATE(4687), 1, - aux_sym_assert_statement_repeat1, + STATE(4732), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183288] = 4, - ACTIONS(8376), 1, - anon_sym_SEMI, - ACTIONS(8378), 1, + [183497] = 4, + ACTIONS(8340), 1, + anon_sym_LPAREN, + ACTIONS(8467), 1, + anon_sym_COLON, + ACTIONS(8469), 1, sym__newline, - STATE(5059), 1, - aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183302] = 4, - ACTIONS(8260), 1, - anon_sym_LPAREN, - ACTIONS(8380), 1, - anon_sym_COLON, - ACTIONS(8382), 1, + [183511] = 4, + ACTIONS(6653), 1, sym__newline, + ACTIONS(6980), 1, + anon_sym_COMMA, + STATE(5106), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183316] = 4, - ACTIONS(8102), 1, + [183525] = 4, + ACTIONS(6315), 1, + anon_sym_COMMA, + ACTIONS(8471), 1, + sym__newline, + STATE(5056), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [183539] = 4, + ACTIONS(6315), 1, + anon_sym_COMMA, + ACTIONS(8473), 1, + sym__newline, + STATE(5056), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [183553] = 4, + ACTIONS(6315), 1, + anon_sym_COMMA, + ACTIONS(8475), 1, + sym__newline, + STATE(5056), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [183567] = 4, + ACTIONS(6315), 1, + anon_sym_COMMA, + ACTIONS(8477), 1, + sym__newline, + STATE(5056), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [183581] = 3, + ACTIONS(8128), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8072), 2, anon_sym_COMMA, - ACTIONS(8384), 1, anon_sym_RBRACK, - STATE(5011), 1, - aux_sym_external_definition_repeat1, + [183593] = 4, + ACTIONS(6315), 1, + anon_sym_COMMA, + ACTIONS(8479), 1, + sym__newline, + STATE(5056), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183330] = 4, - ACTIONS(8386), 1, - anon_sym_COLON, - ACTIONS(8388), 1, - anon_sym_nogil, - ACTIONS(8390), 1, + [183607] = 4, + ACTIONS(6632), 1, sym__newline, + ACTIONS(7219), 1, + anon_sym_COMMA, + STATE(5106), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183344] = 4, - ACTIONS(6256), 1, + [183621] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(8392), 1, + ACTIONS(8481), 1, sym__newline, - STATE(4727), 1, + STATE(5056), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183358] = 4, - ACTIONS(6256), 1, - anon_sym_COMMA, - ACTIONS(8394), 1, - sym__newline, - STATE(4727), 1, - aux_sym_cvar_decl_repeat2, + [183635] = 3, + ACTIONS(7839), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183372] = 4, - ACTIONS(6256), 1, + ACTIONS(8404), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(8396), 1, + [183647] = 4, + ACTIONS(6561), 1, + anon_sym_COMMA, + ACTIONS(6567), 1, sym__newline, - STATE(4727), 1, - aux_sym_cvar_decl_repeat2, + STATE(5106), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183386] = 4, - ACTIONS(6256), 1, + [183661] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(8398), 1, + ACTIONS(8483), 1, sym__newline, - STATE(4727), 1, + STATE(5056), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183400] = 4, - ACTIONS(8400), 1, - anon_sym_COMMA, - ACTIONS(8402), 1, - anon_sym_RBRACK, - STATE(4797), 1, - aux_sym_template_params_repeat1, + [183675] = 4, + ACTIONS(8340), 1, + anon_sym_LPAREN, + ACTIONS(8485), 1, + anon_sym_COLON, + ACTIONS(8487), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183414] = 4, - ACTIONS(6256), 1, + [183689] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(8404), 1, + ACTIONS(8489), 1, sym__newline, - STATE(4727), 1, + STATE(5056), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183428] = 4, - ACTIONS(6256), 1, + [183703] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(8406), 1, + ACTIONS(8491), 1, sym__newline, - STATE(4727), 1, + STATE(5056), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183442] = 4, - ACTIONS(6256), 1, + [183717] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(8408), 1, + ACTIONS(8493), 1, sym__newline, - STATE(4727), 1, + STATE(5056), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183456] = 4, - ACTIONS(6570), 1, + [183731] = 4, + ACTIONS(6622), 1, sym__newline, - ACTIONS(8410), 1, + ACTIONS(8495), 1, anon_sym_COMMA, - STATE(4960), 1, + STATE(5106), 1, aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183470] = 4, - ACTIONS(1255), 1, + [183745] = 4, + ACTIONS(6315), 1, + anon_sym_COMMA, + ACTIONS(8497), 1, sym__newline, - ACTIONS(8412), 1, - anon_sym_SEMI, - STATE(5032), 1, - aux_sym__simple_statements_repeat1, + STATE(5056), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183484] = 4, - ACTIONS(8369), 1, + [183759] = 4, + ACTIONS(6315), 1, + anon_sym_COMMA, + ACTIONS(8499), 1, sym__newline, - ACTIONS(8414), 1, - sym_identifier, - ACTIONS(8416), 1, - anon_sym_COLON, + STATE(5056), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183498] = 4, - ACTIONS(6586), 1, - sym__newline, - ACTIONS(6968), 1, + [183773] = 4, + ACTIONS(3055), 1, + anon_sym_RPAREN, + ACTIONS(8501), 1, anon_sym_COMMA, - STATE(4960), 1, - aux_sym_cvar_def_repeat1, + STATE(5131), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183512] = 4, - ACTIONS(6256), 1, + [183787] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(8418), 1, + ACTIONS(8503), 1, sym__newline, - STATE(4727), 1, + STATE(5056), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183526] = 4, - ACTIONS(8260), 1, + [183801] = 4, + ACTIONS(3349), 1, + anon_sym_RPAREN, + ACTIONS(8505), 1, + anon_sym_COMMA, + STATE(5124), 1, + aux_sym_with_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [183815] = 4, + ACTIONS(8340), 1, anon_sym_LPAREN, - ACTIONS(8420), 1, + ACTIONS(8507), 1, anon_sym_COLON, - ACTIONS(8422), 1, + ACTIONS(8509), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183540] = 4, - ACTIONS(6256), 1, + [183829] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(8424), 1, + ACTIONS(8511), 1, sym__newline, - STATE(4727), 1, + STATE(5056), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183554] = 4, - ACTIONS(6256), 1, + [183843] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(8426), 1, + ACTIONS(8513), 1, sym__newline, - STATE(4727), 1, + STATE(5056), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183568] = 4, - ACTIONS(6256), 1, + [183857] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(8428), 1, + ACTIONS(8515), 1, sym__newline, - STATE(4727), 1, + STATE(5056), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183582] = 4, - ACTIONS(6256), 1, + [183871] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(8430), 1, + ACTIONS(8517), 1, sym__newline, - STATE(4727), 1, + STATE(5056), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183596] = 4, - ACTIONS(6256), 1, + [183885] = 4, + ACTIONS(8244), 1, + anon_sym_RPAREN, + ACTIONS(8519), 1, anon_sym_COMMA, - ACTIONS(8432), 1, - sym__newline, - STATE(4727), 1, - aux_sym_cvar_decl_repeat2, + STATE(4738), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183610] = 4, - ACTIONS(3057), 1, - anon_sym_RBRACE, - ACTIONS(8434), 1, + [183899] = 4, + ACTIONS(6946), 1, anon_sym_COMMA, - STATE(4940), 1, - aux_sym_dictionary_repeat1, + ACTIONS(6948), 1, + anon_sym_RBRACK, + STATE(4792), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183624] = 3, - ACTIONS(7749), 1, - anon_sym_LPAREN, + [183913] = 3, + ACTIONS(8070), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8436), 2, + ACTIONS(8072), 2, anon_sym_RPAREN, anon_sym_COMMA, - [183636] = 4, - ACTIONS(6256), 1, - anon_sym_COMMA, - ACTIONS(8438), 1, - sym__newline, - STATE(4727), 1, - aux_sym_cvar_decl_repeat2, + [183925] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183650] = 4, - ACTIONS(6284), 1, - anon_sym_COMMA, - ACTIONS(8440), 1, + ACTIONS(8078), 3, anon_sym_RPAREN, - STATE(4715), 1, - aux_sym__collection_elements_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [183664] = 4, - ACTIONS(2945), 1, + anon_sym_COMMA, + anon_sym_as, + [183935] = 4, + ACTIONS(8072), 1, anon_sym_RPAREN, - ACTIONS(8442), 1, + ACTIONS(8522), 1, anon_sym_COMMA, - STATE(4828), 1, - aux_sym__collection_elements_repeat1, + STATE(4742), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183678] = 4, - ACTIONS(6256), 1, + [183949] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(8444), 1, + ACTIONS(8525), 1, sym__newline, - STATE(4727), 1, + STATE(5056), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183692] = 4, - ACTIONS(2829), 1, - anon_sym_RPAREN, - ACTIONS(8446), 1, - anon_sym_COMMA, - STATE(4871), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [183706] = 4, - ACTIONS(6284), 1, + [183963] = 4, + ACTIONS(7837), 1, + anon_sym_RBRACK, + ACTIONS(8527), 1, anon_sym_COMMA, - ACTIONS(8448), 1, - anon_sym_RPAREN, - STATE(4715), 1, - aux_sym__collection_elements_repeat1, + STATE(4744), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183720] = 4, - ACTIONS(2831), 1, + [183977] = 4, + ACTIONS(2847), 1, anon_sym_RPAREN, - ACTIONS(8450), 1, + ACTIONS(8530), 1, anon_sym_COMMA, - STATE(4871), 1, + STATE(5090), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183734] = 4, - ACTIONS(8452), 1, - anon_sym_COMMA, - ACTIONS(8454), 1, - anon_sym_RBRACK, - STATE(4901), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [183748] = 4, - ACTIONS(8456), 1, - anon_sym_COMMA, - ACTIONS(8458), 1, - anon_sym_RBRACK, - STATE(4901), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [183762] = 4, - ACTIONS(7700), 1, - anon_sym_COLON, - ACTIONS(8460), 1, - anon_sym_RBRACE, - STATE(5558), 1, - sym_format_specifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [183776] = 4, - ACTIONS(6256), 1, + [183991] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(8462), 1, + ACTIONS(8532), 1, sym__newline, - STATE(4727), 1, + STATE(5056), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183790] = 4, - ACTIONS(8464), 1, + [184005] = 4, + ACTIONS(8534), 1, anon_sym_SEMI, - ACTIONS(8466), 1, + ACTIONS(8536), 1, sym__newline, - STATE(4733), 1, + STATE(4758), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183804] = 4, - ACTIONS(8014), 1, - anon_sym_RPAREN, - ACTIONS(8468), 1, - anon_sym_COMMA, - STATE(5087), 1, - aux_sym__import_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [183818] = 4, - ACTIONS(8250), 1, + [184019] = 4, + ACTIONS(8538), 1, anon_sym_RPAREN, - ACTIONS(8470), 1, + ACTIONS(8540), 1, anon_sym_COMMA, - STATE(4726), 1, - aux_sym__parameters_repeat1, + STATE(4692), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183832] = 4, - ACTIONS(8473), 1, + [184033] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(8476), 1, + ACTIONS(8542), 1, sym__newline, - STATE(4727), 1, + STATE(5056), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183846] = 4, - ACTIONS(6282), 1, - anon_sym_RPAREN, - ACTIONS(6284), 1, + [184047] = 4, + ACTIONS(6381), 1, anon_sym_COMMA, - STATE(4715), 1, + ACTIONS(6396), 1, + anon_sym_RPAREN, + STATE(4905), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183860] = 4, - ACTIONS(8014), 1, - anon_sym_RPAREN, - ACTIONS(8478), 1, + [184061] = 4, + ACTIONS(7498), 1, + anon_sym_LPAREN, + ACTIONS(8544), 1, + anon_sym_GT, + ACTIONS(8546), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [184075] = 4, + ACTIONS(3279), 1, + anon_sym_COLON, + ACTIONS(8548), 1, anon_sym_COMMA, - STATE(5087), 1, - aux_sym__import_list_repeat1, + STATE(4821), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183874] = 4, - ACTIONS(6952), 1, + [184089] = 4, + ACTIONS(8141), 1, + anon_sym_DOT, + ACTIONS(8440), 1, + anon_sym_PIPE, + ACTIONS(8550), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [184103] = 4, + ACTIONS(7125), 1, anon_sym_COMMA, - ACTIONS(6954), 1, + ACTIONS(7127), 1, anon_sym_RBRACE, - STATE(4735), 1, + STATE(4760), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183888] = 4, - ACTIONS(7468), 1, + [184117] = 4, + ACTIONS(8449), 1, + anon_sym_RPAREN, + ACTIONS(8552), 1, + anon_sym_COMMA, + STATE(4755), 1, + aux_sym__parameters_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [184131] = 4, + ACTIONS(7498), 1, anon_sym_LPAREN, - ACTIONS(8480), 1, + ACTIONS(8555), 1, anon_sym_GT, - ACTIONS(8482), 1, + ACTIONS(8557), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183902] = 4, - ACTIONS(6256), 1, + [184145] = 4, + ACTIONS(3099), 1, + anon_sym_RBRACE, + ACTIONS(8559), 1, anon_sym_COMMA, - ACTIONS(8484), 1, - sym__newline, - STATE(4727), 1, - aux_sym_cvar_decl_repeat2, + STATE(4773), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183916] = 4, - ACTIONS(1261), 1, + [184159] = 4, + ACTIONS(1257), 1, sym__newline, - ACTIONS(8486), 1, + ACTIONS(8561), 1, anon_sym_SEMI, - STATE(5032), 1, + STATE(4817), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183930] = 4, - ACTIONS(7654), 1, - anon_sym_RBRACK, - ACTIONS(8331), 1, - anon_sym_COMMA, - STATE(4921), 1, - aux_sym_type_index_repeat2, + [184173] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183944] = 4, - ACTIONS(3079), 1, + ACTIONS(7423), 3, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + [184183] = 4, + ACTIONS(3097), 1, anon_sym_RBRACE, - ACTIONS(8488), 1, + ACTIONS(8563), 1, anon_sym_COMMA, - STATE(4940), 1, + STATE(4773), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183958] = 4, - ACTIONS(3075), 1, - anon_sym_RBRACE, - ACTIONS(8490), 1, - anon_sym_COMMA, - STATE(4940), 1, - aux_sym_dictionary_repeat1, + [184197] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183972] = 3, - ACTIONS(8494), 1, + ACTIONS(3885), 3, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_EQ, + [184207] = 4, + ACTIONS(8362), 1, + anon_sym_LBRACK, + ACTIONS(8565), 1, + anon_sym_COLON, + STATE(5678), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8492), 2, + [184221] = 4, + ACTIONS(8567), 1, + anon_sym_SEMI, + ACTIONS(8569), 1, sym__newline, + STATE(4909), 1, + aux_sym__simple_statements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [184235] = 4, + ACTIONS(8120), 1, anon_sym_COMMA, - [183984] = 4, - ACTIONS(6298), 1, - anon_sym_RPAREN, - ACTIONS(6300), 1, - anon_sym_COMMA, - STATE(4747), 1, - aux_sym_argument_list_repeat1, + ACTIONS(8571), 1, + anon_sym_in, + STATE(4564), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [184249] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183998] = 4, - ACTIONS(8496), 1, + ACTIONS(8573), 3, + sym__newline, + anon_sym_COLON, + anon_sym_nogil, + [184259] = 4, + ACTIONS(6402), 1, anon_sym_RPAREN, - ACTIONS(8498), 1, + ACTIONS(6404), 1, anon_sym_COMMA, - STATE(4748), 1, + STATE(4774), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184012] = 4, - ACTIONS(6256), 1, + [184273] = 4, + ACTIONS(8575), 1, + anon_sym_RPAREN, + ACTIONS(8577), 1, anon_sym_COMMA, - ACTIONS(8500), 1, - sym__newline, - STATE(4727), 1, - aux_sym_cvar_decl_repeat2, + STATE(4775), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184026] = 4, - ACTIONS(8245), 1, - anon_sym_LBRACK, - ACTIONS(8502), 1, - anon_sym_COLON, - STATE(5702), 1, - sym_external_definition, + [184287] = 4, + ACTIONS(8579), 1, + anon_sym_COMMA, + ACTIONS(8581), 1, + anon_sym_RBRACE, + STATE(4862), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184040] = 4, - ACTIONS(6746), 1, + [184301] = 4, + ACTIONS(6895), 1, anon_sym_COMMA, - ACTIONS(6748), 1, + ACTIONS(6897), 1, anon_sym_RBRACK, - STATE(4750), 1, + STATE(4778), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184054] = 4, - ACTIONS(2675), 1, - anon_sym_RBRACK, - ACTIONS(8504), 1, + [184315] = 4, + ACTIONS(8097), 1, anon_sym_COMMA, - STATE(4959), 1, - aux_sym_type_parameter_repeat1, + ACTIONS(8583), 1, + anon_sym_RBRACK, + STATE(4897), 1, + aux_sym_external_definition_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184068] = 4, - ACTIONS(6135), 1, + [184329] = 4, + ACTIONS(8034), 1, + anon_sym_RBRACK, + ACTIONS(8585), 1, anon_sym_COMMA, - ACTIONS(6147), 1, - anon_sym_RBRACE, - STATE(5019), 1, - aux_sym__collection_elements_repeat1, + STATE(4781), 1, + aux_sym_type_index_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184082] = 4, - ACTIONS(6256), 1, + [184343] = 4, + ACTIONS(2829), 1, + anon_sym_RPAREN, + ACTIONS(8587), 1, anon_sym_COMMA, - ACTIONS(8506), 1, - sym__newline, - STATE(4727), 1, - aux_sym_cvar_decl_repeat2, + STATE(5090), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184096] = 4, - ACTIONS(7817), 1, - anon_sym_RBRACK, - ACTIONS(8331), 1, + [184357] = 4, + ACTIONS(8589), 1, anon_sym_COMMA, - STATE(4752), 1, - aux_sym_type_index_repeat2, + ACTIONS(8592), 1, + anon_sym_RBRACE, + STATE(4773), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184110] = 4, - ACTIONS(2839), 1, + [184371] = 4, + ACTIONS(2803), 1, anon_sym_RPAREN, - ACTIONS(8508), 1, + ACTIONS(8594), 1, anon_sym_COMMA, - STATE(4871), 1, + STATE(5090), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184124] = 4, + [184385] = 4, ACTIONS(2841), 1, anon_sym_RPAREN, - ACTIONS(8510), 1, + ACTIONS(8596), 1, anon_sym_COMMA, - STATE(4871), 1, + STATE(5090), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184138] = 4, - ACTIONS(8512), 1, + [184399] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8078), 3, anon_sym_COMMA, - ACTIONS(8514), 1, + anon_sym_as, + anon_sym_RBRACK, + [184409] = 4, + ACTIONS(8598), 1, + anon_sym_COMMA, + ACTIONS(8600), 1, anon_sym_RBRACK, - STATE(4901), 1, + STATE(5102), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184152] = 4, - ACTIONS(8516), 1, + [184423] = 4, + ACTIONS(8602), 1, anon_sym_COMMA, - ACTIONS(8518), 1, + ACTIONS(8604), 1, anon_sym_RBRACK, - STATE(4901), 1, + STATE(5102), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184166] = 4, - ACTIONS(6988), 1, + [184437] = 3, + ACTIONS(5721), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5717), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(8520), 1, + [184449] = 4, + ACTIONS(6998), 1, + anon_sym_COMMA, + ACTIONS(8606), 1, anon_sym_RBRACK, - STATE(5031), 1, + STATE(4825), 1, aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184180] = 4, - ACTIONS(8331), 1, + [184463] = 4, + ACTIONS(8585), 1, anon_sym_COMMA, - ACTIONS(8520), 1, + ACTIONS(8606), 1, anon_sym_RBRACK, - STATE(5050), 1, + STATE(4828), 1, aux_sym_type_index_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184194] = 4, - ACTIONS(8096), 1, + [184477] = 4, + ACTIONS(8076), 1, anon_sym_COMMA, - ACTIONS(8522), 1, + ACTIONS(8608), 1, anon_sym_RPAREN, - STATE(4656), 1, + STATE(4850), 1, aux_sym_function_pointer_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184208] = 4, - ACTIONS(6856), 1, - anon_sym_COMMA, - ACTIONS(6858), 1, + [184491] = 4, + ACTIONS(6695), 1, anon_sym_RBRACK, - STATE(5056), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [184222] = 4, - ACTIONS(8524), 1, + ACTIONS(8610), 1, anon_sym_COMMA, - ACTIONS(8526), 1, - anon_sym_COLON, - STATE(4980), 1, - aux_sym_with_clause_repeat1, + STATE(4783), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184236] = 4, - ACTIONS(6147), 1, + [184505] = 4, + ACTIONS(2831), 1, anon_sym_RPAREN, - ACTIONS(6284), 1, + ACTIONS(8613), 1, anon_sym_COMMA, - STATE(4715), 1, - aux_sym__collection_elements_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [184250] = 4, - ACTIONS(8260), 1, - anon_sym_LPAREN, - ACTIONS(8528), 1, - anon_sym_COLON, - ACTIONS(8530), 1, - sym__newline, + STATE(5090), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184264] = 4, - ACTIONS(6988), 1, + [184519] = 4, + ACTIONS(7888), 1, + anon_sym_RPAREN, + ACTIONS(8183), 1, anon_sym_COMMA, - ACTIONS(8532), 1, - anon_sym_RBRACK, - STATE(5031), 1, - aux_sym_type_index_repeat1, + STATE(5009), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184278] = 4, - ACTIONS(8102), 1, + [184533] = 4, + ACTIONS(8097), 1, anon_sym_COMMA, - ACTIONS(8534), 1, + ACTIONS(8615), 1, anon_sym_RBRACK, - STATE(5011), 1, + STATE(4897), 1, aux_sym_external_definition_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184292] = 4, - ACTIONS(8331), 1, + [184547] = 4, + ACTIONS(8617), 1, anon_sym_COMMA, - ACTIONS(8532), 1, + ACTIONS(8619), 1, anon_sym_RBRACK, - STATE(5050), 1, - aux_sym_type_index_repeat2, + STATE(5102), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184306] = 4, - ACTIONS(6256), 1, + [184561] = 4, + ACTIONS(8621), 1, anon_sym_COMMA, - ACTIONS(8536), 1, - sym__newline, - STATE(4727), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(8623), 1, + anon_sym_RBRACE, + STATE(4796), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184320] = 4, - ACTIONS(5057), 1, - anon_sym_RPAREN, - ACTIONS(8538), 1, + [184575] = 4, + ACTIONS(6381), 1, anon_sym_COMMA, - STATE(4726), 1, - aux_sym__parameters_repeat1, + ACTIONS(8625), 1, + anon_sym_RPAREN, + STATE(4905), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184334] = 4, - ACTIONS(8540), 1, + [184589] = 4, + ACTIONS(5077), 1, + anon_sym_RPAREN, + ACTIONS(8627), 1, anon_sym_COMMA, - ACTIONS(8542), 1, - anon_sym_RBRACE, - STATE(4770), 1, - aux_sym_dict_pattern_repeat1, + STATE(4742), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184348] = 4, - ACTIONS(5955), 1, - sym_identifier, - ACTIONS(8544), 1, - anon_sym_DOT, - STATE(4764), 1, - aux_sym_type_qualifier_repeat1, + [184603] = 4, + ACTIONS(6998), 1, + anon_sym_COMMA, + ACTIONS(8629), 1, + anon_sym_RBRACK, + STATE(4825), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184362] = 4, - ACTIONS(6988), 1, + [184617] = 4, + ACTIONS(8631), 1, anon_sym_COMMA, - ACTIONS(8547), 1, + ACTIONS(8633), 1, anon_sym_RBRACK, - STATE(5031), 1, - aux_sym_type_index_repeat1, + STATE(5102), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184376] = 4, - ACTIONS(5091), 1, + [184631] = 4, + ACTIONS(5123), 1, anon_sym_RPAREN, - ACTIONS(8549), 1, + ACTIONS(8635), 1, anon_sym_COMMA, - STATE(5147), 1, + STATE(4742), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184390] = 4, - ACTIONS(6256), 1, + [184645] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(8551), 1, + ACTIONS(8637), 1, sym__newline, - STATE(4727), 1, + STATE(5056), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184404] = 4, - ACTIONS(5093), 1, + [184659] = 4, + ACTIONS(5125), 1, anon_sym_RBRACK, - ACTIONS(8553), 1, + ACTIONS(8639), 1, anon_sym_COMMA, - STATE(4784), 1, + STATE(4815), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184418] = 4, - ACTIONS(8245), 1, - anon_sym_LBRACK, - ACTIONS(8555), 1, - anon_sym_COLON, - STATE(5633), 1, - sym_external_definition, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [184432] = 4, - ACTIONS(8557), 1, + [184673] = 4, + ACTIONS(8641), 1, anon_sym_COMMA, - ACTIONS(8559), 1, + ACTIONS(8643), 1, anon_sym_RBRACE, - STATE(4879), 1, + STATE(5049), 1, aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184446] = 4, - ACTIONS(8096), 1, - anon_sym_COMMA, - ACTIONS(8561), 1, - anon_sym_RPAREN, - STATE(4656), 1, - aux_sym_function_pointer_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [184460] = 4, - ACTIONS(8563), 1, + [184687] = 4, + ACTIONS(8645), 1, anon_sym_COMMA, - ACTIONS(8565), 1, + ACTIONS(8647), 1, anon_sym_RBRACE, - STATE(4879), 1, + STATE(5049), 1, aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184474] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(8064), 3, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - [184484] = 4, - ACTIONS(1251), 1, + [184701] = 4, + ACTIONS(8649), 1, sym__newline, - ACTIONS(8567), 1, - anon_sym_SEMI, - STATE(5032), 1, - aux_sym__simple_statements_repeat1, + ACTIONS(8651), 1, + sym__indent, + STATE(1546), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184498] = 4, - ACTIONS(7690), 1, + [184715] = 4, + ACTIONS(8362), 1, + anon_sym_LBRACK, + ACTIONS(8653), 1, anon_sym_COLON, - ACTIONS(7694), 1, - sym__newline, - ACTIONS(8569), 1, - sym_identifier, + STATE(5541), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184512] = 2, + [184729] = 4, + ACTIONS(6315), 1, + anon_sym_COMMA, + ACTIONS(8655), 1, + sym__newline, + STATE(5056), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7493), 3, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACE, - [184522] = 4, - ACTIONS(5099), 1, - anon_sym_RPAREN, - ACTIONS(8571), 1, + [184743] = 4, + ACTIONS(5097), 1, + anon_sym_RBRACK, + ACTIONS(8657), 1, anon_sym_COMMA, - STATE(5147), 1, + STATE(4815), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184536] = 4, - ACTIONS(6256), 1, + [184757] = 4, + ACTIONS(5133), 1, + anon_sym_RPAREN, + ACTIONS(8659), 1, anon_sym_COMMA, - ACTIONS(8573), 1, - sym__newline, - STATE(4727), 1, - aux_sym_cvar_decl_repeat2, + STATE(4742), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184550] = 4, - ACTIONS(6537), 1, - sym__newline, - ACTIONS(6608), 1, + [184771] = 4, + ACTIONS(6998), 1, anon_sym_COMMA, - STATE(4960), 1, - aux_sym_cvar_def_repeat1, + ACTIONS(8661), 1, + anon_sym_RBRACK, + STATE(4825), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184564] = 4, - ACTIONS(7694), 1, - sym__newline, - ACTIONS(8575), 1, - anon_sym_LPAREN, - ACTIONS(8577), 1, - anon_sym_COLON, + [184785] = 4, + ACTIONS(6379), 1, + anon_sym_RPAREN, + ACTIONS(6381), 1, + anon_sym_COMMA, + STATE(4905), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184578] = 4, - ACTIONS(3808), 1, - anon_sym_RPAREN, - ACTIONS(8579), 1, + [184799] = 4, + ACTIONS(2683), 1, + anon_sym_RBRACK, + ACTIONS(8663), 1, anon_sym_COMMA, - STATE(4944), 1, - aux_sym__patterns_repeat1, + STATE(4744), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184592] = 4, - ACTIONS(8260), 1, - anon_sym_LPAREN, - ACTIONS(8581), 1, - anon_sym_COLON, - ACTIONS(8583), 1, + [184813] = 4, + ACTIONS(6315), 1, + anon_sym_COMMA, + ACTIONS(8665), 1, sym__newline, + STATE(5056), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184606] = 4, - ACTIONS(8585), 1, + [184827] = 4, + ACTIONS(8667), 1, anon_sym_SEMI, - ACTIONS(8587), 1, + ACTIONS(8669), 1, sym__newline, - STATE(4791), 1, + STATE(4812), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184620] = 4, - ACTIONS(8024), 1, - anon_sym_RBRACK, - ACTIONS(8589), 1, - anon_sym_COMMA, - STATE(4784), 1, - aux_sym_case_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [184634] = 4, - ACTIONS(6531), 1, - sym__newline, - ACTIONS(6533), 1, - anon_sym_COMMA, - STATE(4960), 1, - aux_sym_cvar_def_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [184648] = 4, - ACTIONS(6284), 1, + [184841] = 4, + ACTIONS(6381), 1, anon_sym_COMMA, - ACTIONS(6309), 1, + ACTIONS(6414), 1, anon_sym_RPAREN, - STATE(4715), 1, + STATE(4905), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184662] = 3, - ACTIONS(1482), 1, - anon_sym_except, - ACTIONS(3), 2, + [184855] = 3, + ACTIONS(8673), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1484), 2, - anon_sym_except_STAR, - anon_sym_finally, - [184674] = 4, - ACTIONS(7000), 1, + ACTIONS(8671), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [184867] = 4, + ACTIONS(7144), 1, anon_sym_COMMA, - ACTIONS(7002), 1, + ACTIONS(7146), 1, anon_sym_RBRACE, - STATE(4792), 1, + STATE(4814), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184688] = 4, - ACTIONS(7468), 1, + [184881] = 4, + ACTIONS(7498), 1, anon_sym_LPAREN, - ACTIONS(8592), 1, + ACTIONS(8675), 1, anon_sym_GT, - ACTIONS(8594), 1, + ACTIONS(8677), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184702] = 4, - ACTIONS(8596), 1, - anon_sym_COMMA, - ACTIONS(8598), 1, - anon_sym_RBRACE, - STATE(4879), 1, - aux_sym_dict_pattern_repeat1, + [184895] = 4, + ACTIONS(1251), 1, + sym__newline, + ACTIONS(8679), 1, + anon_sym_SEMI, + STATE(4817), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184716] = 4, - ACTIONS(1265), 1, + [184909] = 4, + ACTIONS(8340), 1, + anon_sym_LPAREN, + ACTIONS(8681), 1, + anon_sym_COLON, + ACTIONS(8683), 1, sym__newline, - ACTIONS(8600), 1, - anon_sym_SEMI, - STATE(5032), 1, - aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184730] = 4, - ACTIONS(3067), 1, + [184923] = 4, + ACTIONS(3087), 1, anon_sym_RBRACE, - ACTIONS(8602), 1, + ACTIONS(8685), 1, anon_sym_COMMA, - STATE(4940), 1, + STATE(4773), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184744] = 4, - ACTIONS(6256), 1, + [184937] = 4, + ACTIONS(8072), 1, + anon_sym_RBRACK, + ACTIONS(8687), 1, anon_sym_COMMA, - ACTIONS(8604), 1, + STATE(4815), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [184951] = 4, + ACTIONS(6315), 1, + anon_sym_COMMA, + ACTIONS(8690), 1, sym__newline, - STATE(4727), 1, + STATE(5056), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184758] = 4, - ACTIONS(6311), 1, + [184965] = 4, + ACTIONS(8692), 1, + anon_sym_SEMI, + ACTIONS(8695), 1, + sym__newline, + STATE(4817), 1, + aux_sym__simple_statements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [184979] = 4, + ACTIONS(6416), 1, anon_sym_RPAREN, - ACTIONS(6313), 1, + ACTIONS(6418), 1, anon_sym_COMMA, - STATE(4800), 1, + STATE(4826), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184772] = 4, - ACTIONS(8606), 1, + [184993] = 4, + ACTIONS(8697), 1, anon_sym_RPAREN, - ACTIONS(8608), 1, + ACTIONS(8699), 1, anon_sym_COMMA, - STATE(4801), 1, + STATE(4827), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184786] = 4, - ACTIONS(6659), 1, - sym__newline, - ACTIONS(7094), 1, + [185007] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - STATE(4960), 1, - aux_sym_cvar_def_repeat1, + ACTIONS(8701), 1, + sym__newline, + STATE(5056), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184800] = 4, - ACTIONS(8400), 1, + [185021] = 4, + ACTIONS(8703), 1, anon_sym_COMMA, - ACTIONS(8610), 1, - anon_sym_RBRACK, - STATE(4646), 1, - aux_sym_template_params_repeat1, + ACTIONS(8706), 1, + anon_sym_COLON, + STATE(4821), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184814] = 4, - ACTIONS(6780), 1, + [185035] = 4, + ACTIONS(6857), 1, anon_sym_COMMA, - ACTIONS(6782), 1, + ACTIONS(6859), 1, anon_sym_RBRACK, - STATE(4804), 1, + STATE(4830), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184828] = 4, - ACTIONS(6256), 1, + [185049] = 4, + ACTIONS(7474), 1, + anon_sym_RBRACK, + ACTIONS(8708), 1, + anon_sym_COMMA, + STATE(4823), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [185063] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(8612), 1, + ACTIONS(8711), 1, sym__newline, - STATE(4727), 1, + STATE(5056), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184842] = 4, - ACTIONS(2851), 1, - anon_sym_RPAREN, - ACTIONS(8614), 1, + [185077] = 4, + ACTIONS(8187), 1, + anon_sym_RBRACK, + ACTIONS(8713), 1, anon_sym_COMMA, - STATE(4871), 1, - aux_sym_argument_list_repeat1, + STATE(4825), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184856] = 4, + [185091] = 4, ACTIONS(2853), 1, anon_sym_RPAREN, - ACTIONS(8616), 1, + ACTIONS(8716), 1, anon_sym_COMMA, - STATE(4871), 1, + STATE(5090), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184870] = 4, - ACTIONS(6418), 1, + [185105] = 4, + ACTIONS(2855), 1, anon_sym_RPAREN, - ACTIONS(6420), 1, + ACTIONS(8718), 1, anon_sym_COMMA, - STATE(4909), 1, + STATE(5090), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184884] = 4, - ACTIONS(8618), 1, + [185119] = 4, + ACTIONS(8720), 1, anon_sym_COMMA, - ACTIONS(8620), 1, + ACTIONS(8723), 1, anon_sym_RBRACK, - STATE(4901), 1, - aux_sym_subscript_repeat1, + STATE(4828), 1, + aux_sym_type_index_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184898] = 4, - ACTIONS(8622), 1, + [185133] = 4, + ACTIONS(8725), 1, anon_sym_COMMA, - ACTIONS(8624), 1, + ACTIONS(8727), 1, anon_sym_RBRACK, - STATE(4901), 1, + STATE(5102), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184912] = 4, - ACTIONS(8626), 1, - anon_sym_RPAREN, - ACTIONS(8628), 1, + [185147] = 4, + ACTIONS(8729), 1, anon_sym_COMMA, - STATE(4910), 1, - aux_sym_argument_list_repeat1, + ACTIONS(8731), 1, + anon_sym_RBRACK, + STATE(5102), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184926] = 4, - ACTIONS(6826), 1, + [185161] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(6828), 1, - anon_sym_RBRACK, - STATE(4914), 1, - aux_sym_subscript_repeat1, + ACTIONS(8733), 1, + sym__newline, + STATE(5056), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184940] = 4, - ACTIONS(8630), 1, - anon_sym_SEMI, - ACTIONS(8632), 1, + [185175] = 4, + ACTIONS(6315), 1, + anon_sym_COMMA, + ACTIONS(8735), 1, sym__newline, - STATE(4774), 1, - aux_sym__simple_statements_repeat1, + STATE(5056), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184954] = 2, + [185189] = 4, + ACTIONS(6315), 1, + anon_sym_COMMA, + ACTIONS(8737), 1, + sym__newline, + STATE(5056), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8064), 3, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACE, - [184964] = 4, - ACTIONS(6256), 1, + [185203] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(8634), 1, + ACTIONS(8739), 1, sym__newline, - STATE(4727), 1, + STATE(5056), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184978] = 4, - ACTIONS(6284), 1, + [185217] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(8636), 1, - anon_sym_RPAREN, - STATE(4715), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(8741), 1, + sym__newline, + STATE(5056), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184992] = 4, - ACTIONS(8638), 1, - anon_sym_SEMI, - ACTIONS(8640), 1, + [185231] = 4, + ACTIONS(8649), 1, sym__newline, - STATE(4821), 1, - aux_sym__simple_statements_repeat1, + ACTIONS(8651), 1, + sym__indent, + STATE(1704), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185006] = 4, - ACTIONS(2647), 1, - anon_sym_RBRACK, - ACTIONS(8642), 1, + [185245] = 4, + ACTIONS(6381), 1, anon_sym_COMMA, - STATE(4959), 1, - aux_sym_type_parameter_repeat1, + ACTIONS(6430), 1, + anon_sym_RPAREN, + STATE(4905), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185020] = 4, - ACTIONS(8644), 1, - anon_sym_RPAREN, - ACTIONS(8646), 1, + [185259] = 4, + ACTIONS(2687), 1, + anon_sym_RBRACK, + ACTIONS(8743), 1, anon_sym_COMMA, - STATE(5114), 1, - aux_sym_with_clause_repeat1, + STATE(4744), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185034] = 4, - ACTIONS(8583), 1, + [185273] = 4, + ACTIONS(8745), 1, + anon_sym_SEMI, + ACTIONS(8747), 1, sym__newline, - ACTIONS(8648), 1, - anon_sym_LPAREN, - ACTIONS(8650), 1, - anon_sym_COLON, + STATE(4847), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185048] = 4, - ACTIONS(6284), 1, + [185287] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(6319), 1, - anon_sym_RPAREN, - STATE(4715), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(8749), 1, + sym__newline, + STATE(5056), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185062] = 4, - ACTIONS(6284), 1, + [185301] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(6393), 1, - anon_sym_RPAREN, - STATE(4715), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(8751), 1, + sym__newline, + STATE(5056), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185076] = 4, - ACTIONS(6284), 1, + [185315] = 4, + ACTIONS(6381), 1, anon_sym_COMMA, - ACTIONS(8652), 1, + ACTIONS(6428), 1, anon_sym_RPAREN, - STATE(4715), 1, + STATE(4905), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185090] = 4, - ACTIONS(7025), 1, + [185329] = 4, + ACTIONS(7050), 1, anon_sym_COMMA, - ACTIONS(7027), 1, + ACTIONS(7052), 1, anon_sym_RBRACE, - STATE(4822), 1, + STATE(4982), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185104] = 4, - ACTIONS(7468), 1, - anon_sym_LPAREN, - ACTIONS(8654), 1, - anon_sym_GT, - ACTIONS(8656), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [185118] = 4, - ACTIONS(8266), 1, - sym__newline, - ACTIONS(8268), 1, - sym__indent, - STATE(1644), 1, - sym__match_block, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [185132] = 4, - ACTIONS(1271), 1, - sym__newline, - ACTIONS(8658), 1, - anon_sym_SEMI, - STATE(5032), 1, - aux_sym__simple_statements_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [185146] = 4, - ACTIONS(3107), 1, - anon_sym_RBRACE, - ACTIONS(8660), 1, + [185343] = 4, + ACTIONS(7174), 1, anon_sym_COMMA, - STATE(4940), 1, + ACTIONS(7176), 1, + anon_sym_RBRACE, + STATE(4849), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185160] = 4, - ACTIONS(7714), 1, - anon_sym_RBRACK, - ACTIONS(8331), 1, + [185357] = 4, + ACTIONS(6998), 1, anon_sym_COMMA, - STATE(4954), 1, - aux_sym_type_index_repeat2, + ACTIONS(8753), 1, + anon_sym_RBRACK, + STATE(4825), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185174] = 4, - ACTIONS(8662), 1, - anon_sym_COMMA, - ACTIONS(8664), 1, - anon_sym_COLON, - STATE(4924), 1, - aux_sym_match_statement_repeat1, + [185371] = 4, + ACTIONS(7498), 1, + anon_sym_LPAREN, + ACTIONS(8755), 1, + anon_sym_GT, + ACTIONS(8757), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185188] = 4, - ACTIONS(6321), 1, - anon_sym_RPAREN, - ACTIONS(6323), 1, - anon_sym_COMMA, - STATE(4831), 1, - aux_sym_argument_list_repeat1, + [185385] = 4, + ACTIONS(1263), 1, + sym__newline, + ACTIONS(8759), 1, + anon_sym_SEMI, + STATE(4817), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185202] = 4, - ACTIONS(8666), 1, - anon_sym_RPAREN, - ACTIONS(8668), 1, - anon_sym_COMMA, - STATE(4833), 1, - aux_sym_argument_list_repeat1, + [185399] = 3, + ACTIONS(7839), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185216] = 4, - ACTIONS(6788), 1, + ACTIONS(8761), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(6790), 1, - anon_sym_RBRACK, - STATE(4835), 1, - aux_sym_subscript_repeat1, + [185411] = 4, + ACTIONS(3105), 1, + anon_sym_RBRACE, + ACTIONS(8763), 1, + anon_sym_COMMA, + STATE(4773), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185230] = 4, - ACTIONS(7382), 1, + [185425] = 4, + ACTIONS(8761), 1, anon_sym_RPAREN, - ACTIONS(8670), 1, + ACTIONS(8765), 1, anon_sym_COMMA, - STATE(4828), 1, - aux_sym__collection_elements_repeat1, + STATE(4850), 1, + aux_sym_function_pointer_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185244] = 4, - ACTIONS(6988), 1, - anon_sym_COMMA, - ACTIONS(8673), 1, - anon_sym_RBRACK, - STATE(5031), 1, - aux_sym_type_index_repeat1, + [185439] = 3, + ACTIONS(1482), 1, + anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185258] = 4, - ACTIONS(2945), 1, - anon_sym_RBRACK, - ACTIONS(8675), 1, + ACTIONS(1484), 2, + anon_sym_except_STAR, + anon_sym_finally, + [185451] = 4, + ACTIONS(8768), 1, anon_sym_COMMA, - STATE(5148), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(8770), 1, + anon_sym_RBRACK, + STATE(4948), 1, + aux_sym_template_params_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185272] = 4, - ACTIONS(2863), 1, + [185465] = 4, + ACTIONS(6432), 1, anon_sym_RPAREN, - ACTIONS(8677), 1, + ACTIONS(6434), 1, anon_sym_COMMA, - STATE(4871), 1, + STATE(4859), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185286] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5609), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [185296] = 4, - ACTIONS(2923), 1, + [185479] = 4, + ACTIONS(8772), 1, anon_sym_RPAREN, - ACTIONS(8679), 1, + ACTIONS(8774), 1, anon_sym_COMMA, - STATE(4871), 1, + STATE(4861), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185310] = 4, - ACTIONS(8681), 1, + [185493] = 4, + ACTIONS(5041), 1, + anon_sym_RPAREN, + ACTIONS(8776), 1, anon_sym_COMMA, - ACTIONS(8683), 1, - anon_sym_RBRACK, - STATE(4901), 1, - aux_sym_subscript_repeat1, + STATE(4742), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185324] = 4, - ACTIONS(8685), 1, + [185507] = 4, + ACTIONS(6732), 1, anon_sym_COMMA, - ACTIONS(8687), 1, + ACTIONS(6734), 1, anon_sym_RBRACK, - STATE(4901), 1, + STATE(4864), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185338] = 4, - ACTIONS(6256), 1, + [185521] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(8689), 1, + ACTIONS(8778), 1, sym__newline, - STATE(4727), 1, + STATE(5056), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185352] = 4, - ACTIONS(6256), 1, + [185535] = 4, + ACTIONS(5043), 1, + anon_sym_RBRACK, + ACTIONS(8780), 1, anon_sym_COMMA, - ACTIONS(8691), 1, - sym__newline, - STATE(4727), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [185366] = 3, - ACTIONS(1486), 1, - anon_sym_except, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1488), 2, - anon_sym_except_STAR, - anon_sym_finally, - [185378] = 4, - ACTIONS(8050), 1, - anon_sym_DOT, - ACTIONS(8693), 1, - anon_sym_COLON, - ACTIONS(8695), 1, - anon_sym_PIPE, + STATE(4815), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185392] = 4, - ACTIONS(6256), 1, + [185549] = 4, + ACTIONS(2865), 1, + anon_sym_RPAREN, + ACTIONS(8782), 1, anon_sym_COMMA, - ACTIONS(8697), 1, - sym__newline, - STATE(4727), 1, - aux_sym_cvar_decl_repeat2, + STATE(5090), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185406] = 4, - ACTIONS(6256), 1, + [185563] = 4, + ACTIONS(6159), 1, + anon_sym_RBRACK, + ACTIONS(6359), 1, anon_sym_COMMA, - ACTIONS(8699), 1, - sym__newline, - STATE(4727), 1, - aux_sym_cvar_decl_repeat2, + STATE(4657), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185420] = 3, - ACTIONS(8703), 1, - anon_sym_as, + [185577] = 4, + ACTIONS(2867), 1, + anon_sym_RPAREN, + ACTIONS(8784), 1, + anon_sym_COMMA, + STATE(5090), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8701), 2, + [185591] = 4, + ACTIONS(8786), 1, anon_sym_COMMA, + ACTIONS(8788), 1, anon_sym_RBRACE, - [185432] = 4, - ACTIONS(6256), 1, - anon_sym_COMMA, - ACTIONS(8705), 1, - sym__newline, - STATE(4727), 1, - aux_sym_cvar_decl_repeat2, + STATE(5049), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185446] = 4, - ACTIONS(6256), 1, + [185605] = 4, + ACTIONS(8790), 1, anon_sym_COMMA, - ACTIONS(8707), 1, - sym__newline, - STATE(4727), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(8792), 1, + anon_sym_RBRACK, + STATE(5102), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185460] = 4, - ACTIONS(8709), 1, - anon_sym_SEMI, - ACTIONS(8711), 1, - sym__newline, - STATE(4854), 1, - aux_sym__simple_statements_repeat1, + [185619] = 4, + ACTIONS(8794), 1, + anon_sym_COMMA, + ACTIONS(8796), 1, + anon_sym_RBRACK, + STATE(5102), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185474] = 4, - ACTIONS(8713), 1, + [185633] = 4, + ACTIONS(7498), 1, anon_sym_LPAREN, - ACTIONS(8715), 1, - anon_sym_COLON, - ACTIONS(8717), 1, - sym__newline, + ACTIONS(8798), 1, + anon_sym_GT, + ACTIONS(8800), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185488] = 4, - ACTIONS(6284), 1, + [185647] = 4, + ACTIONS(8802), 1, anon_sym_COMMA, - ACTIONS(6329), 1, - anon_sym_RPAREN, - STATE(4715), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(8804), 1, + anon_sym_RBRACE, + STATE(5049), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185502] = 4, - ACTIONS(8719), 1, - anon_sym_LPAREN, - ACTIONS(8721), 1, - anon_sym_COLON, - ACTIONS(8723), 1, - sym__newline, + [185661] = 4, + ACTIONS(8585), 1, + anon_sym_COMMA, + ACTIONS(8753), 1, + anon_sym_RBRACK, + STATE(4828), 1, + aux_sym_type_index_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185516] = 4, - ACTIONS(6256), 1, + [185675] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(8725), 1, + ACTIONS(8806), 1, sym__newline, - STATE(4727), 1, + STATE(5056), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185530] = 4, - ACTIONS(7057), 1, + [185689] = 4, + ACTIONS(5053), 1, + anon_sym_RPAREN, + ACTIONS(8808), 1, anon_sym_COMMA, - ACTIONS(7059), 1, - anon_sym_RBRACE, - STATE(4857), 1, - aux_sym_dictionary_repeat1, + STATE(4755), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185544] = 4, - ACTIONS(6284), 1, + [185703] = 4, + ACTIONS(8538), 1, + anon_sym_RBRACK, + ACTIONS(8810), 1, anon_sym_COMMA, - ACTIONS(6432), 1, - anon_sym_RPAREN, - STATE(4715), 1, - aux_sym__collection_elements_repeat1, + STATE(4666), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185558] = 4, - ACTIONS(7468), 1, - anon_sym_LPAREN, - ACTIONS(8727), 1, - anon_sym_GT, - ACTIONS(8729), 1, - anon_sym_QMARK, + [185717] = 4, + ACTIONS(8362), 1, + anon_sym_LBRACK, + ACTIONS(8812), 1, + anon_sym_COLON, + STATE(5628), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185572] = 3, - ACTIONS(7489), 1, + [185731] = 4, + ACTIONS(8076), 1, + anon_sym_COMMA, + ACTIONS(8814), 1, + anon_sym_RPAREN, + STATE(4850), 1, + aux_sym_function_pointer_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [185745] = 3, + ACTIONS(7566), 1, aux_sym_format_specifier_token1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(7491), 2, + ACTIONS(7568), 2, anon_sym_LBRACE, anon_sym_RBRACE, - [185584] = 4, - ACTIONS(1273), 1, - sym__newline, - ACTIONS(8731), 1, + [185757] = 3, + ACTIONS(1478), 1, + anon_sym_except, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1480), 2, + anon_sym_except_STAR, + anon_sym_finally, + [185769] = 4, + ACTIONS(8816), 1, anon_sym_SEMI, - STATE(5032), 1, + ACTIONS(8818), 1, + sym__newline, + STATE(4883), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185598] = 3, - ACTIONS(7505), 1, + [185783] = 3, + ACTIONS(7532), 1, aux_sym_format_specifier_token1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(7507), 2, + ACTIONS(7534), 2, anon_sym_LBRACE, anon_sym_RBRACE, - [185610] = 3, - ACTIONS(7509), 1, + [185795] = 4, + ACTIONS(6381), 1, + anon_sym_COMMA, + ACTIONS(6442), 1, + anon_sym_RPAREN, + STATE(4905), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [185809] = 3, + ACTIONS(7584), 1, aux_sym_format_specifier_token1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(7511), 2, + ACTIONS(7586), 2, anon_sym_LBRACE, anon_sym_RBRACE, - [185622] = 4, - ACTIONS(3059), 1, - anon_sym_RBRACE, - ACTIONS(8733), 1, + [185821] = 4, + ACTIONS(7205), 1, anon_sym_COMMA, - STATE(4940), 1, + ACTIONS(7207), 1, + anon_sym_RBRACE, + STATE(4884), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185636] = 4, - ACTIONS(8018), 1, + [185835] = 3, + ACTIONS(7619), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7621), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [185847] = 4, + ACTIONS(7498), 1, + anon_sym_LPAREN, + ACTIONS(8820), 1, + anon_sym_GT, + ACTIONS(8822), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [185861] = 4, + ACTIONS(8082), 1, sym_identifier, - STATE(5082), 1, + STATE(4649), 1, sym_dotted_name, - STATE(5318), 1, + STATE(5314), 1, sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185650] = 4, - ACTIONS(3808), 1, - anon_sym_RBRACK, - ACTIONS(8735), 1, - anon_sym_COMMA, - STATE(5078), 1, - aux_sym__patterns_repeat1, + [185875] = 4, + ACTIONS(1273), 1, + sym__newline, + ACTIONS(8824), 1, + anon_sym_SEMI, + STATE(4817), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185664] = 4, - ACTIONS(6331), 1, - anon_sym_RPAREN, - ACTIONS(6333), 1, + [185889] = 4, + ACTIONS(3051), 1, + anon_sym_RBRACE, + ACTIONS(8826), 1, anon_sym_COMMA, - STATE(4865), 1, - aux_sym_argument_list_repeat1, + STATE(4773), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185678] = 4, - ACTIONS(8737), 1, + [185903] = 4, + ACTIONS(8362), 1, + anon_sym_LBRACK, + ACTIONS(8828), 1, + anon_sym_COLON, + STATE(5631), 1, + sym_external_definition, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [185917] = 4, + ACTIONS(8340), 1, + anon_sym_LPAREN, + ACTIONS(8830), 1, + anon_sym_COLON, + ACTIONS(8832), 1, + sym__newline, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [185931] = 4, + ACTIONS(6444), 1, anon_sym_RPAREN, - ACTIONS(8739), 1, + ACTIONS(6446), 1, anon_sym_COMMA, - STATE(4866), 1, + STATE(4891), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185692] = 4, - ACTIONS(6256), 1, + [185945] = 4, + ACTIONS(8834), 1, + anon_sym_RPAREN, + ACTIONS(8836), 1, anon_sym_COMMA, - ACTIONS(8741), 1, - sym__newline, - STATE(4727), 1, - aux_sym_cvar_decl_repeat2, + STATE(4893), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185706] = 4, - ACTIONS(6792), 1, + [185959] = 4, + ACTIONS(6850), 1, anon_sym_COMMA, - ACTIONS(6794), 1, + ACTIONS(6852), 1, anon_sym_RBRACK, - STATE(4868), 1, + STATE(4895), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185720] = 4, - ACTIONS(8743), 1, - anon_sym_COLON, - ACTIONS(8745), 1, - anon_sym_nogil, - ACTIONS(8747), 1, + [185973] = 4, + ACTIONS(6315), 1, + anon_sym_COMMA, + ACTIONS(8838), 1, sym__newline, + STATE(5056), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185734] = 4, + [185987] = 4, ACTIONS(2875), 1, anon_sym_RPAREN, - ACTIONS(8749), 1, + ACTIONS(8840), 1, anon_sym_COMMA, - STATE(4871), 1, + STATE(5090), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185748] = 4, + [186001] = 4, + ACTIONS(6315), 1, + anon_sym_COMMA, + ACTIONS(8842), 1, + sym__newline, + STATE(5056), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [186015] = 4, ACTIONS(2877), 1, anon_sym_RPAREN, - ACTIONS(8751), 1, + ACTIONS(8844), 1, anon_sym_COMMA, - STATE(4871), 1, + STATE(5090), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185762] = 4, - ACTIONS(8753), 1, + [186029] = 4, + ACTIONS(8846), 1, anon_sym_COMMA, - ACTIONS(8755), 1, + ACTIONS(8848), 1, anon_sym_RBRACK, - STATE(4901), 1, + STATE(5102), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185776] = 4, - ACTIONS(8757), 1, + [186043] = 4, + ACTIONS(8850), 1, anon_sym_COMMA, - ACTIONS(8759), 1, + ACTIONS(8852), 1, anon_sym_RBRACK, - STATE(4901), 1, + STATE(5102), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185790] = 4, - ACTIONS(8266), 1, + [186057] = 4, + ACTIONS(6315), 1, + anon_sym_COMMA, + ACTIONS(8854), 1, sym__newline, - ACTIONS(8268), 1, - sym__indent, - STATE(1698), 1, - sym__match_block, + STATE(5056), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185804] = 4, - ACTIONS(8761), 1, - anon_sym_LPAREN, - ACTIONS(8763), 1, - anon_sym_COLON, - ACTIONS(8765), 1, - sym__newline, + [186071] = 4, + ACTIONS(8856), 1, + anon_sym_COMMA, + ACTIONS(8859), 1, + anon_sym_RBRACK, + STATE(4897), 1, + aux_sym_external_definition_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185818] = 4, - ACTIONS(7360), 1, - anon_sym_RPAREN, - ACTIONS(8767), 1, - anon_sym_COMMA, - STATE(4871), 1, - aux_sym_argument_list_repeat1, + [186085] = 4, + ACTIONS(8340), 1, + anon_sym_LPAREN, + ACTIONS(8861), 1, + anon_sym_COLON, + ACTIONS(8863), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185832] = 4, - ACTIONS(6256), 1, + [186099] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(8770), 1, + ACTIONS(8865), 1, sym__newline, - STATE(4727), 1, + STATE(5056), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185846] = 4, - ACTIONS(8772), 1, + [186113] = 4, + ACTIONS(8340), 1, + anon_sym_LPAREN, + ACTIONS(8867), 1, anon_sym_COLON, - ACTIONS(8774), 1, - anon_sym_nogil, - ACTIONS(8776), 1, + ACTIONS(8869), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185860] = 4, - ACTIONS(8778), 1, + [186127] = 4, + ACTIONS(8871), 1, anon_sym_SEMI, - ACTIONS(8780), 1, + ACTIONS(8873), 1, sym__newline, - STATE(4880), 1, + STATE(4910), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185874] = 4, - ACTIONS(8782), 1, + [186141] = 4, + ACTIONS(6315), 1, + anon_sym_COMMA, + ACTIONS(8875), 1, sym__newline, - ACTIONS(8784), 1, - sym__indent, - STATE(1375), 1, - sym__match_block, + STATE(5056), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185888] = 4, - ACTIONS(6284), 1, + [186155] = 4, + ACTIONS(6381), 1, anon_sym_COMMA, - ACTIONS(6339), 1, + ACTIONS(6455), 1, anon_sym_RPAREN, - STATE(4715), 1, + STATE(4905), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185902] = 4, - ACTIONS(7084), 1, + [186169] = 4, + ACTIONS(7913), 1, + anon_sym_RBRACK, + ACTIONS(8585), 1, anon_sym_COMMA, - ACTIONS(7086), 1, - anon_sym_RBRACE, - STATE(4881), 1, - aux_sym_dictionary_repeat1, + STATE(4867), 1, + aux_sym_type_index_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185916] = 4, - ACTIONS(7468), 1, - anon_sym_LPAREN, - ACTIONS(8786), 1, - anon_sym_GT, - ACTIONS(8788), 1, - anon_sym_QMARK, + [186183] = 4, + ACTIONS(2987), 1, + anon_sym_RPAREN, + ACTIONS(8877), 1, + anon_sym_COMMA, + STATE(4985), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185930] = 4, - ACTIONS(8790), 1, + [186197] = 4, + ACTIONS(7221), 1, anon_sym_COMMA, - ACTIONS(8793), 1, + ACTIONS(7223), 1, anon_sym_RBRACE, - STATE(4879), 1, - aux_sym_dict_pattern_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [185944] = 4, - ACTIONS(1277), 1, - sym__newline, - ACTIONS(8795), 1, - anon_sym_SEMI, - STATE(5032), 1, - aux_sym__simple_statements_repeat1, + STATE(4912), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185958] = 4, - ACTIONS(3081), 1, - anon_sym_RBRACE, - ACTIONS(8797), 1, + [186211] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - STATE(4940), 1, - aux_sym_dictionary_repeat1, + ACTIONS(8879), 1, + sym__newline, + STATE(5056), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185972] = 4, - ACTIONS(7468), 1, + [186225] = 4, + ACTIONS(7498), 1, anon_sym_LPAREN, - ACTIONS(8799), 1, + ACTIONS(8881), 1, anon_sym_GT, - ACTIONS(8801), 1, + ACTIONS(8883), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185986] = 4, - ACTIONS(6964), 1, - anon_sym_RPAREN, - ACTIONS(6966), 1, - anon_sym_COMMA, - STATE(4887), 1, - aux_sym_argument_list_repeat1, + [186239] = 4, + ACTIONS(1279), 1, + sym__newline, + ACTIONS(8885), 1, + anon_sym_SEMI, + STATE(4817), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186000] = 4, - ACTIONS(8803), 1, - anon_sym_RPAREN, - ACTIONS(8805), 1, - anon_sym_COMMA, - STATE(4889), 1, - aux_sym_argument_list_repeat1, + [186253] = 4, + ACTIONS(1267), 1, + sym__newline, + ACTIONS(8887), 1, + anon_sym_SEMI, + STATE(4817), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186014] = 4, - ACTIONS(6912), 1, + [186267] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(6914), 1, - anon_sym_RBRACK, - STATE(4891), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [186028] = 4, - ACTIONS(8723), 1, + ACTIONS(8889), 1, sym__newline, - ACTIONS(8807), 1, - sym_identifier, - ACTIONS(8809), 1, - anon_sym_COLON, + STATE(5056), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186042] = 4, - ACTIONS(2891), 1, - anon_sym_RPAREN, - ACTIONS(8811), 1, + [186281] = 4, + ACTIONS(3075), 1, + anon_sym_RBRACE, + ACTIONS(8891), 1, anon_sym_COMMA, - STATE(4871), 1, - aux_sym_argument_list_repeat1, + STATE(4773), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186056] = 3, - ACTIONS(8815), 1, - anon_sym_EQ, + [186295] = 4, + ACTIONS(6315), 1, + anon_sym_COMMA, + ACTIONS(8893), 1, + sym__newline, + STATE(5056), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8813), 2, - sym__newline, - anon_sym_COMMA, - [186068] = 4, - ACTIONS(2893), 1, - anon_sym_RPAREN, - ACTIONS(8817), 1, + [186309] = 4, + ACTIONS(2679), 1, + anon_sym_RBRACK, + ACTIONS(8895), 1, anon_sym_COMMA, - STATE(4871), 1, - aux_sym_argument_list_repeat1, + STATE(4744), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186082] = 4, - ACTIONS(8819), 1, + [186323] = 4, + ACTIONS(7129), 1, + anon_sym_RPAREN, + ACTIONS(7131), 1, anon_sym_COMMA, - ACTIONS(8821), 1, - anon_sym_RBRACK, - STATE(4901), 1, - aux_sym_subscript_repeat1, + STATE(4923), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186096] = 4, - ACTIONS(8823), 1, + [186337] = 4, + ACTIONS(8897), 1, + anon_sym_RPAREN, + ACTIONS(8899), 1, anon_sym_COMMA, - ACTIONS(8825), 1, - anon_sym_RBRACK, - STATE(4901), 1, - aux_sym_subscript_repeat1, + STATE(4924), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186110] = 4, - ACTIONS(6550), 1, + [186351] = 4, + ACTIONS(8901), 1, sym__newline, - ACTIONS(7187), 1, - anon_sym_COMMA, - STATE(4960), 1, - aux_sym_cvar_def_repeat1, + ACTIONS(8903), 1, + sym__indent, + STATE(1494), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186124] = 4, - ACTIONS(3065), 1, + [186365] = 4, + ACTIONS(7683), 1, + anon_sym_COLON, + ACTIONS(8905), 1, anon_sym_RBRACE, - ACTIONS(8827), 1, - anon_sym_COMMA, - STATE(4940), 1, - aux_sym_dictionary_repeat1, + STATE(5396), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186138] = 4, - ACTIONS(8102), 1, + [186379] = 4, + ACTIONS(6905), 1, anon_sym_COMMA, - ACTIONS(8829), 1, + ACTIONS(6907), 1, anon_sym_RBRACK, - STATE(5011), 1, - aux_sym_external_definition_repeat1, + STATE(4926), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186152] = 4, - ACTIONS(6256), 1, - anon_sym_COMMA, - ACTIONS(8831), 1, - sym__newline, - STATE(4727), 1, - aux_sym_cvar_decl_repeat2, + [186393] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186166] = 4, - ACTIONS(8400), 1, + ACTIONS(3885), 3, anon_sym_COMMA, - ACTIONS(8833), 1, - anon_sym_RBRACK, - STATE(5102), 1, - aux_sym_template_params_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [186180] = 4, - ACTIONS(7468), 1, - anon_sym_LPAREN, - ACTIONS(8835), 1, - anon_sym_GT, - ACTIONS(8837), 1, - anon_sym_QMARK, + anon_sym_COLON, + anon_sym_EQ, + [186403] = 4, + ACTIONS(6315), 1, + anon_sym_COMMA, + ACTIONS(8907), 1, + sym__newline, + STATE(5056), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186194] = 4, - ACTIONS(3077), 1, + [186417] = 4, + ACTIONS(7988), 1, anon_sym_RBRACK, - ACTIONS(8839), 1, + ACTIONS(8585), 1, anon_sym_COMMA, - STATE(4925), 1, - aux_sym_assert_statement_repeat1, + STATE(5045), 1, + aux_sym_type_index_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186208] = 4, - ACTIONS(6341), 1, + [186431] = 4, + ACTIONS(2889), 1, anon_sym_RPAREN, - ACTIONS(6343), 1, + ACTIONS(8909), 1, anon_sym_COMMA, - STATE(4903), 1, + STATE(5090), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186222] = 4, - ACTIONS(8841), 1, + [186445] = 4, + ACTIONS(2891), 1, anon_sym_RPAREN, - ACTIONS(8843), 1, + ACTIONS(8911), 1, anon_sym_COMMA, - STATE(4904), 1, + STATE(5090), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186236] = 4, - ACTIONS(8845), 1, + [186459] = 4, + ACTIONS(8913), 1, anon_sym_COMMA, - ACTIONS(8848), 1, + ACTIONS(8915), 1, anon_sym_RBRACK, - STATE(4901), 1, + STATE(5102), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186250] = 4, - ACTIONS(6818), 1, + [186473] = 4, + ACTIONS(8917), 1, anon_sym_COMMA, - ACTIONS(6820), 1, + ACTIONS(8919), 1, anon_sym_RBRACK, - STATE(4907), 1, + STATE(5102), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186264] = 4, - ACTIONS(2899), 1, - anon_sym_RPAREN, - ACTIONS(8850), 1, + [186487] = 4, + ACTIONS(6998), 1, anon_sym_COMMA, - STATE(4871), 1, - aux_sym_argument_list_repeat1, + ACTIONS(8921), 1, + anon_sym_RBRACK, + STATE(4825), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186278] = 4, - ACTIONS(2901), 1, - anon_sym_RPAREN, - ACTIONS(8852), 1, + [186501] = 4, + ACTIONS(8649), 1, + sym__newline, + ACTIONS(8651), 1, + sym__indent, + STATE(1699), 1, + sym__match_block, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [186515] = 4, + ACTIONS(6655), 1, + sym__newline, + ACTIONS(6990), 1, anon_sym_COMMA, - STATE(4871), 1, - aux_sym_argument_list_repeat1, + STATE(5106), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186292] = 4, - ACTIONS(5105), 1, + [186529] = 4, + ACTIONS(5047), 1, anon_sym_RPAREN, - ACTIONS(8854), 1, + ACTIONS(8923), 1, anon_sym_COMMA, - STATE(5147), 1, + STATE(4742), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186306] = 4, - ACTIONS(8856), 1, + [186543] = 4, + ACTIONS(8925), 1, anon_sym_COMMA, - ACTIONS(8858), 1, - anon_sym_RBRACK, - STATE(4901), 1, - aux_sym_subscript_repeat1, + ACTIONS(8927), 1, + anon_sym_RBRACE, + STATE(5049), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186320] = 4, - ACTIONS(8860), 1, + [186557] = 4, + ACTIONS(8201), 1, + anon_sym_RPAREN, + ACTIONS(8929), 1, anon_sym_COMMA, - ACTIONS(8862), 1, - anon_sym_RBRACK, - STATE(4901), 1, - aux_sym_subscript_repeat1, + STATE(4932), 1, + aux_sym__typedargslist_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186334] = 4, - ACTIONS(8260), 1, + [186571] = 4, + ACTIONS(7498), 1, anon_sym_LPAREN, - ACTIONS(8864), 1, - anon_sym_COLON, - ACTIONS(8866), 1, - sym__newline, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [186348] = 4, - ACTIONS(2819), 1, - anon_sym_RPAREN, - ACTIONS(8868), 1, - anon_sym_COMMA, - STATE(4871), 1, - aux_sym_argument_list_repeat1, + ACTIONS(8932), 1, + anon_sym_GT, + ACTIONS(8934), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186362] = 4, - ACTIONS(2821), 1, - anon_sym_RPAREN, - ACTIONS(8870), 1, + [186585] = 4, + ACTIONS(8936), 1, anon_sym_COMMA, - STATE(4871), 1, - aux_sym_argument_list_repeat1, + ACTIONS(8938), 1, + anon_sym_COLON, + STATE(5092), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186376] = 4, - ACTIONS(8872), 1, - anon_sym_COMMA, - ACTIONS(8874), 1, - anon_sym_RBRACK, - STATE(4901), 1, - aux_sym_subscript_repeat1, + [186599] = 4, + ACTIONS(8940), 1, + anon_sym_LPAREN, + ACTIONS(8942), 1, + anon_sym_COLON, + ACTIONS(8944), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186390] = 4, - ACTIONS(7074), 1, + [186613] = 4, + ACTIONS(6457), 1, anon_sym_RPAREN, - ACTIONS(7076), 1, + ACTIONS(6459), 1, anon_sym_COMMA, - STATE(4917), 1, + STATE(4941), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186404] = 4, - ACTIONS(8876), 1, + [186627] = 4, + ACTIONS(8946), 1, anon_sym_RPAREN, - ACTIONS(8878), 1, + ACTIONS(8948), 1, anon_sym_COMMA, - STATE(4918), 1, + STATE(4943), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186418] = 4, - ACTIONS(8880), 1, + [186641] = 4, + ACTIONS(6917), 1, anon_sym_COMMA, - ACTIONS(8882), 1, + ACTIONS(6919), 1, anon_sym_RBRACK, - STATE(4901), 1, + STATE(4945), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186432] = 4, - ACTIONS(6822), 1, + [186655] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(6824), 1, - anon_sym_RBRACK, - STATE(4920), 1, - aux_sym_subscript_repeat1, + ACTIONS(8950), 1, + sym__newline, + STATE(5056), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186446] = 2, + [186669] = 4, + ACTIONS(6381), 1, + anon_sym_COMMA, + ACTIONS(8952), 1, + anon_sym_RPAREN, + STATE(4905), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7493), 3, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - [186456] = 4, - ACTIONS(2907), 1, + [186683] = 4, + ACTIONS(2897), 1, anon_sym_RPAREN, - ACTIONS(8884), 1, + ACTIONS(8954), 1, anon_sym_COMMA, - STATE(4871), 1, + STATE(5090), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186470] = 4, - ACTIONS(2909), 1, + [186697] = 4, + ACTIONS(8901), 1, + sym__newline, + ACTIONS(8903), 1, + sym__indent, + STATE(1469), 1, + sym__match_block, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [186711] = 4, + ACTIONS(2899), 1, anon_sym_RPAREN, - ACTIONS(8886), 1, + ACTIONS(8956), 1, anon_sym_COMMA, - STATE(4871), 1, + STATE(5090), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186484] = 4, - ACTIONS(8888), 1, + [186725] = 4, + ACTIONS(8958), 1, anon_sym_COMMA, - ACTIONS(8890), 1, + ACTIONS(8960), 1, anon_sym_RBRACK, - STATE(4901), 1, + STATE(5102), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186498] = 4, - ACTIONS(8892), 1, + [186739] = 4, + ACTIONS(8962), 1, anon_sym_COMMA, - ACTIONS(8894), 1, + ACTIONS(8964), 1, anon_sym_RBRACK, - STATE(4901), 1, + STATE(5102), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186512] = 4, - ACTIONS(8331), 1, - anon_sym_COMMA, - ACTIONS(8673), 1, - anon_sym_RBRACK, - STATE(5050), 1, - aux_sym_type_index_repeat2, + [186753] = 4, + ACTIONS(8340), 1, + anon_sym_LPAREN, + ACTIONS(8966), 1, + anon_sym_COLON, + ACTIONS(8968), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186526] = 3, - ACTIONS(1478), 1, - anon_sym_except, + [186767] = 4, + ACTIONS(8141), 1, + anon_sym_DOT, + ACTIONS(8440), 1, + anon_sym_PIPE, + ACTIONS(8970), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1480), 2, - anon_sym_except_STAR, - anon_sym_finally, - [186538] = 4, - ACTIONS(8782), 1, - sym__newline, - ACTIONS(8784), 1, - sym__indent, - STATE(1485), 1, - sym__match_block, + [186781] = 4, + ACTIONS(8972), 1, + anon_sym_COMMA, + ACTIONS(8975), 1, + anon_sym_RBRACK, + STATE(4948), 1, + aux_sym_template_params_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186552] = 4, - ACTIONS(8896), 1, + [186795] = 4, + ACTIONS(5717), 1, anon_sym_COMMA, - ACTIONS(8899), 1, + ACTIONS(5827), 1, anon_sym_COLON, - STATE(4924), 1, - aux_sym_match_statement_repeat1, + ACTIONS(5829), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186566] = 4, - ACTIONS(6552), 1, - anon_sym_RBRACK, + [186809] = 4, ACTIONS(8901), 1, - anon_sym_COMMA, - STATE(4925), 1, - aux_sym_assert_statement_repeat1, + sym__newline, + ACTIONS(8903), 1, + sym__indent, + STATE(1450), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186580] = 4, - ACTIONS(6256), 1, + [186823] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(8904), 1, + ACTIONS(8977), 1, sym__newline, - STATE(4727), 1, + STATE(5056), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186594] = 4, - ACTIONS(7454), 1, - anon_sym_PIPE, - ACTIONS(8906), 1, - anon_sym_COLON, - STATE(4208), 1, - aux_sym_union_pattern_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [186608] = 4, - ACTIONS(6625), 1, - sym__newline, - ACTIONS(8908), 1, - anon_sym_COMMA, - STATE(4960), 1, - aux_sym_cvar_def_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [186622] = 4, - ACTIONS(2673), 1, - anon_sym_RBRACK, - ACTIONS(8910), 1, + [186837] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - STATE(4959), 1, - aux_sym_type_parameter_repeat1, + ACTIONS(8979), 1, + sym__newline, + STATE(5056), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186636] = 4, - ACTIONS(7114), 1, + [186851] = 4, + ACTIONS(7215), 1, anon_sym_RPAREN, - ACTIONS(7116), 1, + ACTIONS(7217), 1, anon_sym_COMMA, - STATE(4935), 1, + STATE(4958), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186650] = 4, - ACTIONS(8912), 1, + [186865] = 4, + ACTIONS(8981), 1, anon_sym_RPAREN, - ACTIONS(8914), 1, + ACTIONS(8983), 1, anon_sym_COMMA, - STATE(4937), 1, + STATE(4960), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186664] = 4, - ACTIONS(6256), 1, + [186879] = 4, + ACTIONS(8985), 1, anon_sym_COMMA, - ACTIONS(8916), 1, - sym__newline, - STATE(4727), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(8987), 1, + anon_sym_COLON, + STATE(5077), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186678] = 4, - ACTIONS(6836), 1, + [186893] = 4, + ACTIONS(6938), 1, anon_sym_COMMA, - ACTIONS(6838), 1, + ACTIONS(6940), 1, anon_sym_RBRACK, - STATE(4939), 1, + STATE(4963), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186692] = 4, - ACTIONS(8918), 1, + [186907] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(8920), 1, - anon_sym_RBRACE, - STATE(4681), 1, - aux_sym_dict_pattern_repeat1, + ACTIONS(8989), 1, + sym__newline, + STATE(5056), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186706] = 4, - ACTIONS(2915), 1, + [186921] = 4, + ACTIONS(2905), 1, anon_sym_RPAREN, - ACTIONS(8922), 1, + ACTIONS(8991), 1, anon_sym_COMMA, - STATE(4871), 1, + STATE(5090), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186720] = 4, - ACTIONS(6256), 1, + [186935] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(8924), 1, + ACTIONS(8993), 1, sym__newline, - STATE(4727), 1, + STATE(5056), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186734] = 4, - ACTIONS(2917), 1, + [186949] = 4, + ACTIONS(2907), 1, anon_sym_RPAREN, - ACTIONS(8926), 1, + ACTIONS(8995), 1, anon_sym_COMMA, - STATE(4871), 1, + STATE(5090), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186748] = 4, - ACTIONS(8928), 1, - anon_sym_COMMA, - ACTIONS(8930), 1, - anon_sym_RBRACK, - STATE(4901), 1, - aux_sym_subscript_repeat1, + [186963] = 4, + ACTIONS(8340), 1, + anon_sym_LPAREN, + ACTIONS(8997), 1, + anon_sym_COLON, + ACTIONS(8999), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186762] = 4, - ACTIONS(8932), 1, + [186977] = 4, + ACTIONS(9001), 1, anon_sym_COMMA, - ACTIONS(8934), 1, + ACTIONS(9003), 1, anon_sym_RBRACK, - STATE(4901), 1, + STATE(5102), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186776] = 4, - ACTIONS(8936), 1, - anon_sym_COMMA, - ACTIONS(8939), 1, - anon_sym_RBRACE, - STATE(4940), 1, - aux_sym_dictionary_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [186790] = 4, - ACTIONS(5083), 1, - anon_sym_RPAREN, - ACTIONS(8941), 1, + [186991] = 4, + ACTIONS(9005), 1, anon_sym_COMMA, - STATE(5147), 1, - aux_sym_case_clause_repeat1, + ACTIONS(9007), 1, + anon_sym_RBRACK, + STATE(5102), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186804] = 4, - ACTIONS(6256), 1, + [187005] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(8943), 1, + ACTIONS(9009), 1, sym__newline, - STATE(4727), 1, + STATE(5056), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186818] = 4, - ACTIONS(6256), 1, + [187019] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(8945), 1, + ACTIONS(9011), 1, sym__newline, - STATE(4727), 1, + STATE(5056), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186832] = 4, - ACTIONS(5488), 1, - anon_sym_RPAREN, - ACTIONS(8947), 1, - anon_sym_COMMA, - STATE(4944), 1, - aux_sym__patterns_repeat1, + [187033] = 4, + ACTIONS(8362), 1, + anon_sym_LBRACK, + ACTIONS(9013), 1, + anon_sym_COLON, + STATE(5411), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186846] = 4, - ACTIONS(6256), 1, + [187047] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(8950), 1, + ACTIONS(9015), 1, sym__newline, - STATE(4727), 1, + STATE(5056), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186860] = 4, - ACTIONS(6840), 1, + [187061] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(6842), 1, - anon_sym_RBRACK, - STATE(4949), 1, - aux_sym_subscript_repeat1, + ACTIONS(9017), 1, + sym__newline, + STATE(5056), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186874] = 4, - ACTIONS(3077), 1, - anon_sym_COLON, - ACTIONS(8952), 1, + [187075] = 4, + ACTIONS(6475), 1, + anon_sym_RPAREN, + ACTIONS(6477), 1, anon_sym_COMMA, - STATE(4962), 1, - aux_sym_assert_statement_repeat1, + STATE(4683), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186888] = 4, - ACTIONS(8954), 1, + [187089] = 4, + ACTIONS(9019), 1, + anon_sym_RPAREN, + ACTIONS(9021), 1, anon_sym_COMMA, - ACTIONS(8956), 1, - anon_sym_RBRACK, - STATE(4901), 1, - aux_sym_subscript_repeat1, + STATE(4745), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186902] = 4, - ACTIONS(8958), 1, - anon_sym_COMMA, - ACTIONS(8960), 1, - anon_sym_RBRACK, - STATE(4901), 1, - aux_sym_subscript_repeat1, + [187103] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186916] = 4, - ACTIONS(6256), 1, + ACTIONS(7423), 3, anon_sym_COMMA, - ACTIONS(8962), 1, - sym__newline, - STATE(4727), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [186930] = 4, - ACTIONS(7382), 1, + anon_sym_as, anon_sym_RBRACE, - ACTIONS(8964), 1, - anon_sym_COMMA, - STATE(4951), 1, - aux_sym__collection_elements_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [186944] = 4, - ACTIONS(6988), 1, + [187113] = 4, + ACTIONS(7245), 1, + anon_sym_RPAREN, + ACTIONS(7247), 1, anon_sym_COMMA, - ACTIONS(8967), 1, - anon_sym_RBRACK, - STATE(5031), 1, - aux_sym_type_index_repeat1, + STATE(4976), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186958] = 4, - ACTIONS(6256), 1, + [187127] = 4, + ACTIONS(9023), 1, + anon_sym_RPAREN, + ACTIONS(9025), 1, anon_sym_COMMA, - ACTIONS(8969), 1, - sym__newline, - STATE(4727), 1, - aux_sym_cvar_decl_repeat2, + STATE(4978), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186972] = 4, - ACTIONS(8331), 1, + [187141] = 4, + ACTIONS(6718), 1, anon_sym_COMMA, - ACTIONS(8967), 1, + ACTIONS(6722), 1, anon_sym_RBRACK, - STATE(5050), 1, - aux_sym_type_index_repeat2, + STATE(4981), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186986] = 2, + [187155] = 3, + ACTIONS(1494), 1, + anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8971), 3, - sym__newline, - anon_sym_COLON, - anon_sym_nogil, - [186996] = 4, - ACTIONS(6256), 1, + ACTIONS(1496), 2, + anon_sym_except_STAR, + anon_sym_finally, + [187167] = 4, + ACTIONS(2913), 1, + anon_sym_RPAREN, + ACTIONS(9027), 1, anon_sym_COMMA, - ACTIONS(8973), 1, - sym__newline, - STATE(4727), 1, - aux_sym_cvar_decl_repeat2, + STATE(5090), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187010] = 4, - ACTIONS(8096), 1, + [187181] = 4, + ACTIONS(7299), 1, anon_sym_COMMA, - ACTIONS(8975), 1, - anon_sym_RPAREN, - STATE(4656), 1, - aux_sym_function_pointer_type_repeat1, + ACTIONS(7301), 1, + anon_sym_RBRACE, + STATE(4757), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187024] = 4, - ACTIONS(8068), 1, + [187195] = 4, + ACTIONS(2915), 1, + anon_sym_RPAREN, + ACTIONS(9029), 1, anon_sym_COMMA, - ACTIONS(8977), 1, - anon_sym_in, - STATE(4530), 1, - aux_sym__patterns_repeat1, + STATE(5090), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187038] = 4, - ACTIONS(7634), 1, - anon_sym_RBRACK, - ACTIONS(8979), 1, - anon_sym_COMMA, - STATE(4959), 1, - aux_sym_type_parameter_repeat1, + [187209] = 4, + ACTIONS(3766), 1, + sym_string_start, + ACTIONS(9031), 1, + anon_sym_LT, + STATE(5235), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187052] = 4, - ACTIONS(8813), 1, - sym__newline, - ACTIONS(8982), 1, + [187223] = 4, + ACTIONS(9033), 1, anon_sym_COMMA, - STATE(4960), 1, - aux_sym_cvar_def_repeat1, + ACTIONS(9035), 1, + anon_sym_RBRACK, + STATE(5102), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187066] = 4, - ACTIONS(7219), 1, + [187237] = 4, + ACTIONS(9037), 1, anon_sym_COMMA, - ACTIONS(7221), 1, - anon_sym_RBRACE, - STATE(4711), 1, - aux_sym_dictionary_repeat1, + ACTIONS(9039), 1, + anon_sym_RBRACK, + STATE(5102), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187080] = 4, - ACTIONS(6552), 1, - anon_sym_COLON, - ACTIONS(8985), 1, + [187251] = 4, + ACTIONS(3107), 1, + anon_sym_RBRACE, + ACTIONS(9041), 1, anon_sym_COMMA, - STATE(4962), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [187094] = 4, - ACTIONS(8050), 1, - anon_sym_DOT, - ACTIONS(8695), 1, - anon_sym_PIPE, - ACTIONS(8988), 1, - anon_sym_COLON, + STATE(4773), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187108] = 4, - ACTIONS(8260), 1, - anon_sym_LPAREN, - ACTIONS(8990), 1, - anon_sym_COLON, - ACTIONS(8992), 1, + [187265] = 4, + ACTIONS(6626), 1, sym__newline, + ACTIONS(9043), 1, + anon_sym_COMMA, + STATE(5106), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187122] = 4, - ACTIONS(8260), 1, + [187279] = 4, + ACTIONS(8340), 1, anon_sym_LPAREN, - ACTIONS(8994), 1, + ACTIONS(9045), 1, anon_sym_COLON, - ACTIONS(8996), 1, + ACTIONS(9047), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187136] = 4, - ACTIONS(8998), 1, + [187293] = 4, + ACTIONS(7474), 1, + anon_sym_RPAREN, + ACTIONS(9049), 1, anon_sym_COMMA, - ACTIONS(9000), 1, - anon_sym_RBRACE, - STATE(5048), 1, - aux_sym_dict_pattern_repeat1, + STATE(4985), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187150] = 4, - ACTIONS(8765), 1, + [187307] = 4, + ACTIONS(6315), 1, + anon_sym_COMMA, + ACTIONS(9052), 1, sym__newline, - ACTIONS(9002), 1, - sym_identifier, - ACTIONS(9004), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [187164] = 4, - ACTIONS(7700), 1, - anon_sym_COLON, - ACTIONS(9006), 1, - anon_sym_RBRACE, - STATE(5566), 1, - sym_format_specifier, + STATE(5056), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187178] = 3, - ACTIONS(7362), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7364), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [187190] = 4, - ACTIONS(6284), 1, + [187321] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(9008), 1, - anon_sym_RPAREN, - STATE(4715), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(9054), 1, + sym__newline, + STATE(5056), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187204] = 3, - ACTIONS(7366), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7368), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [187216] = 4, - ACTIONS(6256), 1, + [187335] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(9010), 1, + ACTIONS(9056), 1, sym__newline, - STATE(4727), 1, + STATE(5056), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187230] = 3, - ACTIONS(7376), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + [187349] = 4, + ACTIONS(6736), 1, + anon_sym_COMMA, + ACTIONS(6738), 1, + anon_sym_RBRACK, + STATE(4992), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7378), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [187242] = 4, - ACTIONS(6554), 1, - sym__newline, - ACTIONS(7090), 1, + [187363] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - STATE(4960), 1, - aux_sym_cvar_def_repeat1, + ACTIONS(9058), 1, + sym__newline, + STATE(5056), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187256] = 4, - ACTIONS(8245), 1, - anon_sym_LBRACK, - ACTIONS(9012), 1, - anon_sym_COLON, - STATE(5632), 1, - sym_external_definition, + [187377] = 4, + ACTIONS(9060), 1, + anon_sym_COMMA, + ACTIONS(9062), 1, + anon_sym_RBRACK, + STATE(5102), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187270] = 4, - ACTIONS(5939), 1, - sym_identifier, - ACTIONS(8333), 1, - anon_sym_DOT, - STATE(4671), 1, - aux_sym_type_qualifier_repeat1, + [187391] = 4, + ACTIONS(9064), 1, + anon_sym_COMMA, + ACTIONS(9066), 1, + anon_sym_RBRACK, + STATE(5102), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187284] = 4, - ACTIONS(6284), 1, + [187405] = 4, + ACTIONS(6147), 1, anon_sym_COMMA, - ACTIONS(9014), 1, - anon_sym_RPAREN, - STATE(4715), 1, + ACTIONS(6159), 1, + anon_sym_RBRACE, + STATE(5061), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187298] = 4, - ACTIONS(6623), 1, - sym__newline, - ACTIONS(7088), 1, + [187419] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - STATE(4960), 1, - aux_sym_cvar_def_repeat1, + ACTIONS(9068), 1, + sym__newline, + STATE(5056), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187312] = 4, - ACTIONS(6663), 1, - sym_string_start, - ACTIONS(9016), 1, - anon_sym_STAR, - STATE(2767), 1, - sym_string, + [187433] = 4, + ACTIONS(1265), 1, + sym__newline, + ACTIONS(9070), 1, + anon_sym_SEMI, + STATE(4817), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187326] = 4, - ACTIONS(3339), 1, - anon_sym_COLON, - ACTIONS(9018), 1, - anon_sym_COMMA, - STATE(5119), 1, - aux_sym_with_clause_repeat1, + [187447] = 3, + ACTIONS(9074), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187340] = 4, - ACTIONS(8245), 1, - anon_sym_LBRACK, - ACTIONS(9020), 1, - anon_sym_COLON, - STATE(5655), 1, - sym_external_definition, + ACTIONS(9072), 2, + sym__newline, + anon_sym_COMMA, + [187459] = 4, + ACTIONS(6998), 1, + anon_sym_COMMA, + ACTIONS(9076), 1, + anon_sym_RBRACK, + STATE(4825), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187354] = 4, - ACTIONS(7743), 1, - anon_sym_COLON, - ACTIONS(7747), 1, + [187473] = 4, + ACTIONS(6315), 1, + anon_sym_COMMA, + ACTIONS(9078), 1, sym__newline, - ACTIONS(9022), 1, - sym_identifier, + STATE(5056), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187368] = 4, - ACTIONS(8068), 1, + [187487] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(9024), 1, - anon_sym_in, - STATE(4530), 1, - aux_sym__patterns_repeat1, + ACTIONS(9080), 1, + sym__newline, + STATE(5056), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187382] = 4, - ACTIONS(8245), 1, - anon_sym_LBRACK, - ACTIONS(9026), 1, - anon_sym_COLON, - STATE(5700), 1, - sym_external_definition, + [187501] = 4, + ACTIONS(6315), 1, + anon_sym_COMMA, + ACTIONS(9082), 1, + sym__newline, + STATE(5056), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187396] = 4, - ACTIONS(8260), 1, - anon_sym_LPAREN, - ACTIONS(8717), 1, + [187515] = 4, + ACTIONS(8863), 1, sym__newline, - ACTIONS(9028), 1, + ACTIONS(9084), 1, + anon_sym_LPAREN, + ACTIONS(9086), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187410] = 2, + [187529] = 4, + ACTIONS(8585), 1, + anon_sym_COMMA, + ACTIONS(9076), 1, + anon_sym_RBRACK, + STATE(4828), 1, + aux_sym_type_index_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7493), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - [187420] = 4, - ACTIONS(8245), 1, + [187543] = 4, + ACTIONS(8362), 1, anon_sym_LBRACK, - ACTIONS(9030), 1, + ACTIONS(9088), 1, anon_sym_COLON, - STATE(5715), 1, + STATE(5428), 1, sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187434] = 4, - ACTIONS(8068), 1, - anon_sym_COMMA, - ACTIONS(9032), 1, - anon_sym_in, - STATE(4530), 1, - aux_sym__patterns_repeat1, + [187557] = 4, + ACTIONS(5988), 1, + sym_identifier, + ACTIONS(9090), 1, + anon_sym_DOT, + STATE(5004), 1, + aux_sym_type_qualifier_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187448] = 4, - ACTIONS(6988), 1, + [187571] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(9034), 1, - anon_sym_RBRACK, - STATE(5031), 1, - aux_sym_type_index_repeat1, + ACTIONS(9093), 1, + sym__newline, + STATE(5056), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [187585] = 3, + ACTIONS(6680), 1, + anon_sym_from, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187462] = 4, - ACTIONS(9036), 1, + ACTIONS(6678), 2, + sym__newline, + anon_sym_SEMI, + [187597] = 4, + ACTIONS(8938), 1, + anon_sym_RPAREN, + ACTIONS(9095), 1, anon_sym_COMMA, - ACTIONS(9038), 1, - anon_sym_COLON, - STATE(5026), 1, + STATE(4869), 1, aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187476] = 4, - ACTIONS(8050), 1, - anon_sym_DOT, - ACTIONS(8695), 1, - anon_sym_PIPE, - ACTIONS(9040), 1, + [187611] = 4, + ACTIONS(9097), 1, + anon_sym_LPAREN, + ACTIONS(9099), 1, anon_sym_COLON, + ACTIONS(9101), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187490] = 2, + [187625] = 4, + ACTIONS(8261), 1, + anon_sym_RPAREN, + ACTIONS(9103), 1, + anon_sym_COMMA, + STATE(4738), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3899), 3, + [187639] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [187500] = 4, - ACTIONS(8992), 1, + ACTIONS(9105), 1, sym__newline, - ACTIONS(9042), 1, - anon_sym_LPAREN, - ACTIONS(9044), 1, - anon_sym_COLON, + STATE(5056), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187514] = 4, - ACTIONS(8245), 1, - anon_sym_LBRACK, - ACTIONS(9046), 1, + [187653] = 4, + ACTIONS(7956), 1, anon_sym_COLON, - STATE(5388), 1, - sym_external_definition, + ACTIONS(7960), 1, + sym__newline, + ACTIONS(9107), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187528] = 4, - ACTIONS(7747), 1, + [187667] = 4, + ACTIONS(7960), 1, sym__newline, - ACTIONS(9048), 1, + ACTIONS(9109), 1, anon_sym_LPAREN, - ACTIONS(9050), 1, + ACTIONS(9111), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187542] = 4, - ACTIONS(8050), 1, - anon_sym_DOT, - ACTIONS(8695), 1, - anon_sym_PIPE, - ACTIONS(9052), 1, - anon_sym_COLON, + [187681] = 4, + ACTIONS(9113), 1, + anon_sym_COMMA, + ACTIONS(9115), 1, + anon_sym_RBRACE, + STATE(5049), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187556] = 4, - ACTIONS(8050), 1, - anon_sym_DOT, - ACTIONS(8695), 1, - anon_sym_PIPE, - ACTIONS(9054), 1, - anon_sym_COLON, + [187695] = 4, + ACTIONS(6315), 1, + anon_sym_COMMA, + ACTIONS(9117), 1, + sym__newline, + STATE(5056), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187570] = 4, - ACTIONS(8245), 1, - anon_sym_LBRACK, - ACTIONS(9056), 1, - anon_sym_COLON, - STATE(5392), 1, - sym_external_definition, + [187709] = 4, + ACTIONS(7348), 1, + sym_identifier, + STATE(4600), 1, + sym_dotted_name, + STATE(5078), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187584] = 2, + [187723] = 3, + ACTIONS(5719), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8148), 3, + ACTIONS(5717), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [187735] = 4, + ACTIONS(6608), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(6610), 1, anon_sym_COMMA, - [187594] = 4, - ACTIONS(8050), 1, - anon_sym_DOT, - ACTIONS(8695), 1, - anon_sym_PIPE, - ACTIONS(9058), 1, - anon_sym_COLON, + STATE(5106), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187608] = 4, - ACTIONS(8245), 1, - anon_sym_LBRACK, - ACTIONS(9060), 1, - anon_sym_COLON, - STATE(5401), 1, - sym_external_definition, + [187749] = 4, + ACTIONS(6315), 1, + anon_sym_COMMA, + ACTIONS(9119), 1, + sym__newline, + STATE(5056), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [187763] = 4, + ACTIONS(6315), 1, + anon_sym_COMMA, + ACTIONS(9121), 1, + sym__newline, + STATE(5056), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187622] = 3, - ACTIONS(7650), 1, - anon_sym_LPAREN, + [187777] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9062), 2, + ACTIONS(8111), 3, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - [187634] = 4, - ACTIONS(6256), 1, + [187787] = 4, + ACTIONS(6752), 1, anon_sym_COMMA, - ACTIONS(9064), 1, - sym__newline, - STATE(4727), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(6754), 1, + anon_sym_RBRACK, + STATE(5101), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187648] = 4, - ACTIONS(8245), 1, - anon_sym_LBRACK, - ACTIONS(9066), 1, - anon_sym_COLON, - STATE(5406), 1, - sym_external_definition, + [187801] = 4, + ACTIONS(8076), 1, + anon_sym_COMMA, + ACTIONS(9123), 1, + anon_sym_RPAREN, + STATE(4850), 1, + aux_sym_function_pointer_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187662] = 4, - ACTIONS(8260), 1, - anon_sym_LPAREN, - ACTIONS(9068), 1, + [187815] = 4, + ACTIONS(8362), 1, + anon_sym_LBRACK, + ACTIONS(9125), 1, anon_sym_COLON, - ACTIONS(9070), 1, - sym__newline, + STATE(5662), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187676] = 4, - ACTIONS(9072), 1, - anon_sym_RPAREN, - ACTIONS(9074), 1, - anon_sym_COMMA, - STATE(4781), 1, - aux_sym__patterns_repeat1, + [187829] = 4, + ACTIONS(5997), 1, + sym_identifier, + ACTIONS(9127), 1, + anon_sym_DOT, + STATE(5114), 1, + aux_sym_type_qualifier_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187690] = 4, - ACTIONS(6256), 1, + [187843] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(9076), 1, + ACTIONS(9129), 1, sym__newline, - STATE(4727), 1, + STATE(5056), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187704] = 4, - ACTIONS(8245), 1, - anon_sym_LBRACK, - ACTIONS(9078), 1, - anon_sym_COLON, - STATE(5409), 1, - sym_external_definition, + [187857] = 4, + ACTIONS(6816), 1, + sym_string_start, + ACTIONS(9131), 1, + anon_sym_STAR, + STATE(2781), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187718] = 4, - ACTIONS(6256), 1, - anon_sym_COMMA, - ACTIONS(9080), 1, - sym__newline, - STATE(4727), 1, - aux_sym_cvar_decl_repeat2, + [187871] = 3, + ACTIONS(9135), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187732] = 4, - ACTIONS(6256), 1, + ACTIONS(9133), 2, anon_sym_COMMA, - ACTIONS(9082), 1, + anon_sym_RBRACE, + [187883] = 4, + ACTIONS(6315), 1, + anon_sym_COMMA, + ACTIONS(9137), 1, sym__newline, - STATE(4727), 1, + STATE(5056), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187746] = 4, - ACTIONS(9084), 1, - anon_sym_COMMA, - ACTIONS(9087), 1, - anon_sym_RBRACK, - STATE(5011), 1, - aux_sym_external_definition_repeat1, + [187897] = 4, + ACTIONS(8141), 1, + anon_sym_DOT, + ACTIONS(8440), 1, + anon_sym_PIPE, + ACTIONS(9139), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187760] = 4, - ACTIONS(6256), 1, + [187911] = 4, + ACTIONS(8120), 1, anon_sym_COMMA, - ACTIONS(9089), 1, - sym__newline, - STATE(4727), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(9141), 1, + anon_sym_in, + STATE(4564), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187774] = 4, - ACTIONS(6256), 1, + [187925] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(9091), 1, + ACTIONS(9143), 1, sym__newline, - STATE(4727), 1, + STATE(5056), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187788] = 4, - ACTIONS(8245), 1, + [187939] = 4, + ACTIONS(8362), 1, anon_sym_LBRACK, - ACTIONS(9093), 1, + ACTIONS(9145), 1, anon_sym_COLON, - STATE(5521), 1, + STATE(5722), 1, sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187802] = 3, - ACTIONS(9097), 1, - anon_sym_in, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(9095), 2, - sym__newline, - anon_sym_SEMI, - [187814] = 4, - ACTIONS(6580), 1, + [187953] = 4, + ACTIONS(8340), 1, + anon_sym_LPAREN, + ACTIONS(8944), 1, sym__newline, - ACTIONS(6582), 1, - anon_sym_COMMA, - STATE(4960), 1, - aux_sym_cvar_def_repeat1, + ACTIONS(9147), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187828] = 4, - ACTIONS(6256), 1, + [187967] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(9099), 1, + ACTIONS(9149), 1, sym__newline, - STATE(4727), 1, + STATE(5056), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187842] = 4, - ACTIONS(6256), 1, + [187981] = 4, + ACTIONS(8362), 1, + anon_sym_LBRACK, + ACTIONS(9151), 1, + anon_sym_COLON, + STATE(5585), 1, + sym_external_definition, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [187995] = 4, + ACTIONS(8120), 1, anon_sym_COMMA, - ACTIONS(9101), 1, - sym__newline, - STATE(4727), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(9153), 1, + anon_sym_in, + STATE(4564), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187856] = 4, - ACTIONS(2945), 1, - anon_sym_RBRACE, - ACTIONS(9103), 1, + [188009] = 4, + ACTIONS(8120), 1, anon_sym_COMMA, - STATE(4951), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(9155), 1, + anon_sym_in, + STATE(4564), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187870] = 4, - ACTIONS(8245), 1, - anon_sym_LBRACK, - ACTIONS(9105), 1, + [188023] = 4, + ACTIONS(8141), 1, + anon_sym_DOT, + ACTIONS(8440), 1, + anon_sym_PIPE, + ACTIONS(9157), 1, anon_sym_COLON, - STATE(5449), 1, - sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187884] = 4, - ACTIONS(6256), 1, + [188037] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(9107), 1, + ACTIONS(9159), 1, sym__newline, - STATE(4727), 1, + STATE(5056), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187898] = 4, - ACTIONS(6663), 1, + [188051] = 4, + ACTIONS(6816), 1, sym_string_start, - ACTIONS(9109), 1, + ACTIONS(9161), 1, anon_sym_STAR, - STATE(2740), 1, + STATE(2751), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187912] = 4, - ACTIONS(6256), 1, - anon_sym_COMMA, - ACTIONS(9111), 1, - sym__newline, - STATE(4727), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, + [188065] = 3, + ACTIONS(7603), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [187926] = 4, - ACTIONS(8068), 1, + ACTIONS(7605), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [188077] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(9113), 1, - anon_sym_in, - STATE(4530), 1, - aux_sym__patterns_repeat1, + ACTIONS(9163), 1, + sym__newline, + STATE(5056), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187940] = 4, - ACTIONS(8245), 1, + [188091] = 4, + ACTIONS(8362), 1, anon_sym_LBRACK, - ACTIONS(9115), 1, + ACTIONS(9165), 1, anon_sym_COLON, - STATE(5460), 1, + STATE(5405), 1, sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187954] = 4, - ACTIONS(5057), 1, - anon_sym_COLON, - ACTIONS(9117), 1, + [188105] = 4, + ACTIONS(8261), 1, + anon_sym_RPAREN, + ACTIONS(9167), 1, anon_sym_COMMA, - STATE(4639), 1, - aux_sym__parameters_repeat1, + STATE(4738), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187968] = 4, - ACTIONS(6256), 1, + [188119] = 4, + ACTIONS(8585), 1, anon_sym_COMMA, - ACTIONS(9119), 1, - sym__newline, - STATE(4727), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(8921), 1, + anon_sym_RBRACK, + STATE(4828), 1, + aux_sym_type_index_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187982] = 4, - ACTIONS(6256), 1, - anon_sym_COMMA, - ACTIONS(9121), 1, - sym__newline, - STATE(4727), 1, - aux_sym_cvar_decl_repeat2, + [188133] = 4, + ACTIONS(8141), 1, + anon_sym_DOT, + ACTIONS(8440), 1, + anon_sym_PIPE, + ACTIONS(9169), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187996] = 4, - ACTIONS(8245), 1, - anon_sym_LBRACK, - ACTIONS(9123), 1, + [188147] = 4, + ACTIONS(8141), 1, + anon_sym_DOT, + ACTIONS(8440), 1, + anon_sym_PIPE, + ACTIONS(9171), 1, anon_sym_COLON, - STATE(5467), 1, - sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188010] = 4, - ACTIONS(8068), 1, - anon_sym_COMMA, - ACTIONS(9125), 1, - anon_sym_in, - STATE(4530), 1, - aux_sym__patterns_repeat1, + [188161] = 4, + ACTIONS(8362), 1, + anon_sym_LBRACK, + ACTIONS(9173), 1, + anon_sym_COLON, + STATE(5409), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188024] = 4, - ACTIONS(8232), 1, - anon_sym_RBRACK, - ACTIONS(9127), 1, + [188175] = 4, + ACTIONS(9175), 1, anon_sym_COMMA, - STATE(5031), 1, - aux_sym_type_index_repeat1, + ACTIONS(9178), 1, + anon_sym_RBRACE, + STATE(5049), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188038] = 4, - ACTIONS(9130), 1, - anon_sym_SEMI, - ACTIONS(9133), 1, - sym__newline, - STATE(5032), 1, - aux_sym__simple_statements_repeat1, + [188189] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188052] = 4, - ACTIONS(6256), 1, - anon_sym_COMMA, - ACTIONS(9135), 1, + ACTIONS(9180), 3, sym__newline, - STATE(4727), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [188066] = 4, - ACTIONS(8245), 1, - anon_sym_LBRACK, - ACTIONS(9137), 1, anon_sym_COLON, - STATE(5476), 1, - sym_external_definition, + anon_sym_nogil, + [188199] = 4, + ACTIONS(8141), 1, + anon_sym_DOT, + ACTIONS(8440), 1, + anon_sym_PIPE, + ACTIONS(9182), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188080] = 2, + [188213] = 3, + ACTIONS(1486), 1, + anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9139), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - [188090] = 4, - ACTIONS(8245), 1, + ACTIONS(1488), 2, + anon_sym_except_STAR, + anon_sym_finally, + [188225] = 4, + ACTIONS(8362), 1, anon_sym_LBRACK, - ACTIONS(9141), 1, + ACTIONS(9184), 1, anon_sym_COLON, - STATE(5381), 1, + STATE(5418), 1, sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188104] = 4, - ACTIONS(6256), 1, + [188239] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(9143), 1, + ACTIONS(9186), 1, sym__newline, - STATE(4727), 1, + STATE(5056), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188118] = 4, - ACTIONS(5552), 1, - anon_sym_RPAREN, - ACTIONS(9145), 1, - anon_sym_COMMA, - STATE(4636), 1, - aux_sym__typedargslist_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [188132] = 4, - ACTIONS(8245), 1, + [188253] = 4, + ACTIONS(8362), 1, anon_sym_LBRACK, - ACTIONS(9147), 1, + ACTIONS(9188), 1, anon_sym_COLON, - STATE(5487), 1, + STATE(5423), 1, sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188146] = 4, - ACTIONS(5719), 1, + [188267] = 4, + ACTIONS(9190), 1, anon_sym_COMMA, - ACTIONS(5754), 1, - anon_sym_COLON, - ACTIONS(5756), 1, - anon_sym_EQ, + ACTIONS(9193), 1, + sym__newline, + STATE(5056), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188160] = 4, - ACTIONS(6988), 1, + [188281] = 4, + ACTIONS(6375), 1, + anon_sym_RPAREN, + ACTIONS(6377), 1, anon_sym_COMMA, - ACTIONS(9149), 1, - anon_sym_RBRACK, - STATE(5031), 1, - aux_sym_type_index_repeat1, + STATE(5093), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188174] = 4, - ACTIONS(8245), 1, + [188295] = 4, + ACTIONS(8362), 1, anon_sym_LBRACK, - ACTIONS(9151), 1, + ACTIONS(9195), 1, anon_sym_COLON, - STATE(5492), 1, + STATE(5426), 1, sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188188] = 4, - ACTIONS(5089), 1, + [188309] = 4, + ACTIONS(9197), 1, anon_sym_RPAREN, - ACTIONS(9153), 1, + ACTIONS(9199), 1, anon_sym_COMMA, - STATE(5147), 1, - aux_sym_case_clause_repeat1, + STATE(5115), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188202] = 4, - ACTIONS(5025), 1, - anon_sym_RBRACK, - ACTIONS(9155), 1, + [188323] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - STATE(4784), 1, - aux_sym_case_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [188216] = 4, - ACTIONS(8245), 1, - anon_sym_LBRACK, - ACTIONS(9157), 1, - anon_sym_COLON, - STATE(5495), 1, - sym_external_definition, + ACTIONS(9201), 1, + sym__newline, + STATE(5056), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188230] = 3, - ACTIONS(7468), 1, - anon_sym_LPAREN, + [188337] = 4, + ACTIONS(2987), 1, + anon_sym_RBRACE, + ACTIONS(9203), 1, + anon_sym_COMMA, + STATE(5122), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8436), 2, - anon_sym_COMMA, - anon_sym_COLON, - [188242] = 4, - ACTIONS(2883), 1, - anon_sym_RPAREN, - ACTIONS(9159), 1, + [188351] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - STATE(4871), 1, - aux_sym_argument_list_repeat1, + ACTIONS(9205), 1, + sym__newline, + STATE(5056), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188256] = 4, - ACTIONS(9161), 1, + [188365] = 4, + ACTIONS(6381), 1, anon_sym_COMMA, - ACTIONS(9163), 1, - anon_sym_RBRACE, - STATE(4879), 1, - aux_sym_dict_pattern_repeat1, + ACTIONS(9207), 1, + anon_sym_RPAREN, + STATE(4905), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188270] = 4, - ACTIONS(9165), 1, + [188379] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(9167), 1, - anon_sym_RBRACE, - STATE(4879), 1, - aux_sym_dict_pattern_repeat1, + ACTIONS(9209), 1, + sym__newline, + STATE(5056), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188284] = 4, - ACTIONS(9169), 1, + [188393] = 4, + ACTIONS(6748), 1, anon_sym_COMMA, - ACTIONS(9172), 1, + ACTIONS(6750), 1, anon_sym_RBRACK, - STATE(5050), 1, - aux_sym_type_index_repeat2, + STATE(4659), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188298] = 4, - ACTIONS(2885), 1, + [188407] = 4, + ACTIONS(5065), 1, anon_sym_RPAREN, - ACTIONS(9174), 1, + ACTIONS(9211), 1, anon_sym_COMMA, - STATE(4871), 1, - aux_sym_argument_list_repeat1, + STATE(4742), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188312] = 2, - ACTIONS(3), 2, + [188421] = 3, + ACTIONS(7393), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(9176), 3, - sym__newline, - anon_sym_COLON, - anon_sym_nogil, - [188322] = 4, - ACTIONS(9178), 1, - anon_sym_COMMA, - ACTIONS(9180), 1, - anon_sym_RBRACK, - STATE(4901), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, + ACTIONS(7395), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [188433] = 3, + ACTIONS(7405), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [188336] = 3, - ACTIONS(1494), 1, - anon_sym_except, + ACTIONS(7407), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [188445] = 4, + ACTIONS(8362), 1, + anon_sym_LBRACK, + ACTIONS(9213), 1, + anon_sym_COLON, + STATE(5466), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1496), 2, - anon_sym_except_STAR, - anon_sym_finally, - [188348] = 3, - ACTIONS(7513), 1, + [188459] = 3, + ACTIONS(7437), 1, aux_sym_format_specifier_token1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(7515), 2, + ACTIONS(7439), 2, anon_sym_LBRACE, anon_sym_RBRACE, - [188360] = 4, - ACTIONS(9182), 1, - anon_sym_COMMA, - ACTIONS(9184), 1, - anon_sym_RBRACK, - STATE(4901), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [188374] = 3, - ACTIONS(9188), 1, - anon_sym_EQ, + [188471] = 4, + ACTIONS(6816), 1, + sym_string_start, + ACTIONS(9215), 1, + anon_sym_STAR, + STATE(2755), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9186), 2, - sym__newline, - anon_sym_COMMA, - [188386] = 4, - ACTIONS(8260), 1, - anon_sym_LPAREN, - ACTIONS(9190), 1, + [188485] = 4, + ACTIONS(7683), 1, anon_sym_COLON, - ACTIONS(9192), 1, - sym__newline, + ACTIONS(9217), 1, + anon_sym_RBRACE, + STATE(5502), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188400] = 4, - ACTIONS(1253), 1, - sym__newline, - ACTIONS(9194), 1, - anon_sym_SEMI, - STATE(5032), 1, - aux_sym__simple_statements_repeat1, + [188499] = 4, + ACTIONS(8120), 1, + anon_sym_COMMA, + ACTIONS(9219), 1, + anon_sym_in, + STATE(4564), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188414] = 4, - ACTIONS(8245), 1, + [188513] = 4, + ACTIONS(8362), 1, anon_sym_LBRACK, - ACTIONS(9196), 1, + ACTIONS(9221), 1, anon_sym_COLON, - STATE(5483), 1, + STATE(5477), 1, sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188428] = 3, - ACTIONS(6655), 1, - anon_sym_from, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6653), 2, - sym__newline, - anon_sym_SEMI, - [188440] = 4, - ACTIONS(6663), 1, - sym_string_start, - ACTIONS(9198), 1, - anon_sym_STAR, - STATE(2746), 1, - sym_string, + [188527] = 4, + ACTIONS(8362), 1, + anon_sym_LBRACK, + ACTIONS(9223), 1, + anon_sym_COLON, + STATE(5484), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188454] = 4, - ACTIONS(6256), 1, + [188541] = 4, + ACTIONS(8120), 1, anon_sym_COMMA, - ACTIONS(9200), 1, - sym__newline, - STATE(4727), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(9225), 1, + anon_sym_in, + STATE(4564), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188468] = 3, - ACTIONS(9204), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(9202), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [188480] = 4, - ACTIONS(6256), 1, + [188555] = 4, + ACTIONS(9227), 1, anon_sym_COMMA, - ACTIONS(9206), 1, - sym__newline, - STATE(4727), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(9230), 1, + anon_sym_COLON, + STATE(5077), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188494] = 4, - ACTIONS(6256), 1, - anon_sym_COMMA, - ACTIONS(9208), 1, - sym__newline, - STATE(4727), 1, - aux_sym_cvar_decl_repeat2, + [188569] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188508] = 4, - ACTIONS(8102), 1, + ACTIONS(8242), 3, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(9210), 1, - anon_sym_RBRACK, - STATE(5011), 1, - aux_sym_external_definition_repeat1, + [188579] = 4, + ACTIONS(7683), 1, + anon_sym_COLON, + ACTIONS(9232), 1, + anon_sym_RBRACE, + STATE(5482), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188522] = 4, - ACTIONS(5544), 1, - anon_sym_RPAREN, - ACTIONS(9212), 1, - anon_sym_COMMA, - STATE(4636), 1, - aux_sym__typedargslist_repeat1, + [188593] = 4, + ACTIONS(8362), 1, + anon_sym_LBRACK, + ACTIONS(9234), 1, + anon_sym_COLON, + STATE(5493), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188536] = 4, - ACTIONS(6256), 1, - anon_sym_COMMA, - ACTIONS(9214), 1, + [188607] = 4, + ACTIONS(9236), 1, + anon_sym_COLON, + ACTIONS(9238), 1, + anon_sym_nogil, + ACTIONS(9240), 1, sym__newline, - STATE(4727), 1, - aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188550] = 3, - ACTIONS(7552), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7554), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [188562] = 4, - ACTIONS(8260), 1, - anon_sym_LPAREN, - ACTIONS(9216), 1, + [188621] = 4, + ACTIONS(8362), 1, + anon_sym_LBRACK, + ACTIONS(9242), 1, anon_sym_COLON, - ACTIONS(9218), 1, - sym__newline, + STATE(5495), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188576] = 4, - ACTIONS(6521), 1, - sym__newline, - ACTIONS(7123), 1, - anon_sym_COMMA, - STATE(4960), 1, - aux_sym_cvar_def_repeat1, + [188635] = 4, + ACTIONS(8362), 1, + anon_sym_LBRACK, + ACTIONS(9244), 1, + anon_sym_COLON, + STATE(5504), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188590] = 4, - ACTIONS(6256), 1, - anon_sym_COMMA, - ACTIONS(9220), 1, - sym__newline, - STATE(4727), 1, - aux_sym_cvar_decl_repeat2, + [188649] = 4, + ACTIONS(8362), 1, + anon_sym_LBRACK, + ACTIONS(9246), 1, + anon_sym_COLON, + STATE(5509), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188604] = 4, - ACTIONS(6256), 1, - anon_sym_COMMA, - ACTIONS(9222), 1, - sym__newline, - STATE(4727), 1, - aux_sym_cvar_decl_repeat2, + [188663] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188618] = 4, - ACTIONS(6256), 1, + ACTIONS(9248), 3, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(9224), 1, + [188673] = 4, + ACTIONS(8901), 1, sym__newline, - STATE(4727), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(8903), 1, + sym__indent, + STATE(1467), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188632] = 4, - ACTIONS(8050), 1, - anon_sym_DOT, - ACTIONS(8695), 1, - anon_sym_PIPE, - ACTIONS(9226), 1, + [188687] = 4, + ACTIONS(8362), 1, + anon_sym_LBRACK, + ACTIONS(9250), 1, anon_sym_COLON, + STATE(5512), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188646] = 3, - ACTIONS(8042), 1, - anon_sym_as, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(8024), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [188658] = 4, - ACTIONS(5488), 1, - anon_sym_RBRACK, - ACTIONS(9228), 1, + [188701] = 4, + ACTIONS(5521), 1, + anon_sym_RPAREN, + ACTIONS(9252), 1, anon_sym_COMMA, - STATE(5078), 1, + STATE(5088), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188672] = 4, - ACTIONS(7700), 1, - anon_sym_COLON, - ACTIONS(9231), 1, - anon_sym_RBRACE, - STATE(5687), 1, - sym_format_specifier, + [188715] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188686] = 4, - ACTIONS(6450), 1, + ACTIONS(7423), 3, anon_sym_RPAREN, - ACTIONS(6452), 1, anon_sym_COMMA, - STATE(4717), 1, + anon_sym_as, + [188725] = 4, + ACTIONS(7601), 1, + anon_sym_RPAREN, + ACTIONS(9255), 1, + anon_sym_COMMA, + STATE(5090), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188700] = 4, - ACTIONS(7869), 1, - anon_sym_RPAREN, - ACTIONS(8201), 1, + [188739] = 4, + ACTIONS(8097), 1, anon_sym_COMMA, - STATE(4725), 1, - aux_sym__import_list_repeat1, + ACTIONS(9258), 1, + anon_sym_RBRACK, + STATE(4897), 1, + aux_sym_external_definition_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188714] = 3, - ACTIONS(8203), 1, - anon_sym_as, + [188753] = 4, + ACTIONS(5053), 1, + anon_sym_COLON, + ACTIONS(9260), 1, + anon_sym_COMMA, + STATE(4703), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8148), 2, + [188767] = 4, + ACTIONS(2871), 1, anon_sym_RPAREN, + ACTIONS(9262), 1, anon_sym_COMMA, - [188726] = 4, - ACTIONS(6970), 1, - sym_identifier, - STATE(4567), 1, - sym_dotted_name, - STATE(4999), 1, - sym_aliased_import, + STATE(5090), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188740] = 4, - ACTIONS(8260), 1, - anon_sym_LPAREN, - ACTIONS(9233), 1, - anon_sym_COLON, - ACTIONS(9235), 1, - sym__newline, + [188781] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188754] = 4, - ACTIONS(8068), 1, + ACTIONS(8078), 3, anon_sym_COMMA, - ACTIONS(9237), 1, - anon_sym_in, - STATE(4530), 1, - aux_sym__patterns_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [188768] = 4, - ACTIONS(6147), 1, - anon_sym_RBRACK, - ACTIONS(6362), 1, + anon_sym_as, + anon_sym_RBRACE, + [188791] = 4, + ACTIONS(6695), 1, + anon_sym_COLON, + ACTIONS(9264), 1, anon_sym_COMMA, - STATE(4830), 1, - aux_sym__collection_elements_repeat1, + STATE(5095), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188782] = 4, - ACTIONS(8156), 1, - anon_sym_RPAREN, - ACTIONS(9239), 1, + [188805] = 4, + ACTIONS(6998), 1, anon_sym_COMMA, - STATE(5087), 1, - aux_sym__import_list_repeat1, + ACTIONS(9267), 1, + anon_sym_RBRACK, + STATE(4825), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188796] = 4, - ACTIONS(9072), 1, - anon_sym_RBRACK, - ACTIONS(9242), 1, - anon_sym_COMMA, - STATE(4859), 1, - aux_sym__patterns_repeat1, + [188819] = 3, + ACTIONS(1490), 1, + anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188810] = 4, - ACTIONS(8260), 1, - anon_sym_LPAREN, - ACTIONS(9244), 1, - anon_sym_COLON, - ACTIONS(9246), 1, - sym__newline, + ACTIONS(1492), 2, + anon_sym_except_STAR, + anon_sym_finally, + [188831] = 3, + ACTIONS(9271), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188824] = 4, - ACTIONS(6256), 1, + ACTIONS(9269), 2, + sym__newline, anon_sym_COMMA, - ACTIONS(9248), 1, + [188843] = 4, + ACTIONS(8340), 1, + anon_sym_LPAREN, + ACTIONS(9273), 1, + anon_sym_COLON, + ACTIONS(9275), 1, sym__newline, - STATE(4727), 1, - aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188838] = 4, - ACTIONS(5041), 1, - anon_sym_RPAREN, - ACTIONS(9250), 1, + [188857] = 4, + ACTIONS(8768), 1, anon_sym_COMMA, - STATE(5147), 1, - aux_sym_case_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [188852] = 4, - ACTIONS(8050), 1, - anon_sym_DOT, - ACTIONS(8695), 1, - anon_sym_PIPE, - ACTIONS(9252), 1, - anon_sym_COLON, + ACTIONS(9277), 1, + anon_sym_RBRACK, + STATE(4852), 1, + aux_sym_template_params_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188866] = 4, - ACTIONS(5521), 1, - anon_sym_RPAREN, - ACTIONS(9254), 1, + [188871] = 4, + ACTIONS(9279), 1, anon_sym_COMMA, - STATE(4636), 1, - aux_sym__typedargslist_repeat1, + ACTIONS(9281), 1, + anon_sym_RBRACK, + STATE(5102), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188880] = 4, - ACTIONS(6916), 1, + [188885] = 4, + ACTIONS(9283), 1, anon_sym_COMMA, - ACTIONS(6918), 1, - anon_sym_RBRACE, - STATE(4893), 1, - aux_sym_dictionary_repeat1, + ACTIONS(9286), 1, + anon_sym_RBRACK, + STATE(5102), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188894] = 4, - ACTIONS(6256), 1, + [188899] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(9256), 1, + ACTIONS(9288), 1, sym__newline, - STATE(4727), 1, + STATE(5056), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188908] = 4, - ACTIONS(9258), 1, - anon_sym_RPAREN, - ACTIONS(9260), 1, + [188913] = 4, + ACTIONS(6580), 1, + sym__newline, + ACTIONS(6978), 1, anon_sym_COMMA, - STATE(4719), 1, - aux_sym_argument_list_repeat1, + STATE(5106), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188922] = 4, - ACTIONS(6256), 1, - anon_sym_COMMA, - ACTIONS(9262), 1, + [188927] = 4, + ACTIONS(8340), 1, + anon_sym_LPAREN, + ACTIONS(9290), 1, + anon_sym_COLON, + ACTIONS(9292), 1, sym__newline, - STATE(4727), 1, - aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188936] = 4, - ACTIONS(3756), 1, - sym_string_start, - ACTIONS(9264), 1, - anon_sym_LT, - STATE(5180), 1, - sym_string, + [188941] = 4, + ACTIONS(9269), 1, + sym__newline, + ACTIONS(9294), 1, + anon_sym_COMMA, + STATE(5106), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188950] = 4, - ACTIONS(8260), 1, + [188955] = 4, + ACTIONS(8340), 1, anon_sym_LPAREN, - ACTIONS(9266), 1, + ACTIONS(9297), 1, anon_sym_COLON, - ACTIONS(9268), 1, + ACTIONS(9299), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188964] = 4, - ACTIONS(6256), 1, + [188969] = 4, + ACTIONS(5521), 1, + anon_sym_RBRACK, + ACTIONS(9301), 1, anon_sym_COMMA, - ACTIONS(9270), 1, - sym__newline, - STATE(4727), 1, - aux_sym_cvar_decl_repeat2, + STATE(5108), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188978] = 4, - ACTIONS(6256), 1, - anon_sym_COMMA, - ACTIONS(9272), 1, + [188983] = 4, + ACTIONS(9304), 1, + anon_sym_SEMI, + ACTIONS(9306), 1, sym__newline, - STATE(4727), 1, - aux_sym_cvar_decl_repeat2, + STATE(5129), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188992] = 4, - ACTIONS(8400), 1, + [188997] = 4, + ACTIONS(8768), 1, anon_sym_COMMA, - ACTIONS(9274), 1, + ACTIONS(9308), 1, anon_sym_RBRACK, - STATE(4646), 1, + STATE(4948), 1, aux_sym_template_params_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189006] = 4, - ACTIONS(5103), 1, + [189011] = 4, + ACTIONS(7849), 1, anon_sym_RBRACK, - ACTIONS(9276), 1, + ACTIONS(8585), 1, anon_sym_COMMA, - STATE(4784), 1, - aux_sym_case_clause_repeat1, + STATE(5002), 1, + aux_sym_type_index_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189020] = 4, - ACTIONS(6256), 1, - anon_sym_COMMA, - ACTIONS(9278), 1, + [189025] = 4, + ACTIONS(9101), 1, sym__newline, - STATE(4727), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(9310), 1, + sym_identifier, + ACTIONS(9312), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189034] = 4, - ACTIONS(6552), 1, - anon_sym_RBRACE, - ACTIONS(9280), 1, + [189039] = 4, + ACTIONS(5517), 1, + anon_sym_RPAREN, + ACTIONS(9314), 1, anon_sym_COMMA, - STATE(5105), 1, - aux_sym_assert_statement_repeat1, + STATE(4932), 1, + aux_sym__typedargslist_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189048] = 4, - ACTIONS(6256), 1, - anon_sym_COMMA, - ACTIONS(9283), 1, - sym__newline, - STATE(4727), 1, - aux_sym_cvar_decl_repeat2, + [189053] = 4, + ACTIONS(6015), 1, + sym_identifier, + ACTIONS(9127), 1, + anon_sym_DOT, + STATE(5004), 1, + aux_sym_type_qualifier_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189062] = 4, - ACTIONS(8782), 1, - sym__newline, - ACTIONS(8784), 1, - sym__indent, - STATE(1641), 1, - sym__match_block, + [189067] = 4, + ACTIONS(2805), 1, + anon_sym_RPAREN, + ACTIONS(9316), 1, + anon_sym_COMMA, + STATE(5090), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189076] = 4, - ACTIONS(6256), 1, + [189081] = 4, + ACTIONS(6292), 1, + anon_sym_RPAREN, + ACTIONS(6381), 1, anon_sym_COMMA, - ACTIONS(9285), 1, - sym__newline, - STATE(4727), 1, - aux_sym_cvar_decl_repeat2, + STATE(4905), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189090] = 4, - ACTIONS(6256), 1, - anon_sym_COMMA, - ACTIONS(9287), 1, + [189095] = 4, + ACTIONS(6684), 1, sym__newline, - STATE(4727), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(7303), 1, + anon_sym_COMMA, + STATE(5106), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189104] = 4, - ACTIONS(6256), 1, - anon_sym_COMMA, - ACTIONS(9289), 1, + [189109] = 4, + ACTIONS(8649), 1, sym__newline, - STATE(4727), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(8651), 1, + sym__indent, + STATE(1526), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189118] = 4, - ACTIONS(6256), 1, + [189123] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(9291), 1, + ACTIONS(9318), 1, sym__newline, - STATE(4727), 1, + STATE(5056), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189132] = 4, - ACTIONS(8245), 1, - anon_sym_LBRACK, - ACTIONS(9293), 1, + [189137] = 4, + ACTIONS(8141), 1, + anon_sym_DOT, + ACTIONS(8440), 1, + anon_sym_PIPE, + ACTIONS(9320), 1, anon_sym_COLON, - STATE(5404), 1, - sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189146] = 4, - ACTIONS(6256), 1, + [189151] = 4, + ACTIONS(7326), 1, anon_sym_COMMA, - ACTIONS(9295), 1, - sym__newline, - STATE(4727), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(7328), 1, + anon_sym_RBRACE, + STATE(5136), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189160] = 4, - ACTIONS(3309), 1, + [189165] = 4, + ACTIONS(7474), 1, + anon_sym_RBRACE, + ACTIONS(9322), 1, + anon_sym_COMMA, + STATE(5122), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [189179] = 4, + ACTIONS(7498), 1, + anon_sym_LPAREN, + ACTIONS(9325), 1, + anon_sym_GT, + ACTIONS(9327), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [189193] = 4, + ACTIONS(8706), 1, anon_sym_RPAREN, - ACTIONS(9297), 1, + ACTIONS(9329), 1, anon_sym_COMMA, - STATE(4663), 1, + STATE(5124), 1, aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189174] = 4, - ACTIONS(6256), 1, + [189207] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(9299), 1, + ACTIONS(9332), 1, sym__newline, - STATE(4727), 1, + STATE(5056), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189188] = 4, - ACTIONS(8050), 1, - anon_sym_DOT, - ACTIONS(8695), 1, - anon_sym_PIPE, - ACTIONS(9301), 1, - anon_sym_COLON, + [189221] = 3, + ACTIONS(7845), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189202] = 4, - ACTIONS(6564), 1, - sym__newline, - ACTIONS(9303), 1, + ACTIONS(9334), 2, anon_sym_COMMA, - STATE(4960), 1, - aux_sym_cvar_def_repeat1, + anon_sym_RBRACK, + [189233] = 4, + ACTIONS(6695), 1, + anon_sym_RBRACE, + ACTIONS(9336), 1, + anon_sym_COMMA, + STATE(5127), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189216] = 4, - ACTIONS(6256), 1, - anon_sym_COMMA, - ACTIONS(9305), 1, + [189247] = 4, + ACTIONS(6686), 1, sym__newline, - STATE(4727), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(9339), 1, + anon_sym_COMMA, + STATE(5106), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189230] = 4, - ACTIONS(8312), 1, - anon_sym_COLON, - ACTIONS(9307), 1, - anon_sym_COMMA, - STATE(5119), 1, - aux_sym_with_clause_repeat1, + [189261] = 4, + ACTIONS(1275), 1, + sym__newline, + ACTIONS(9341), 1, + anon_sym_SEMI, + STATE(4817), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189244] = 4, - ACTIONS(6256), 1, + [189275] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(9310), 1, + ACTIONS(9343), 1, sym__newline, - STATE(4727), 1, + STATE(5056), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189258] = 4, - ACTIONS(6256), 1, + [189289] = 4, + ACTIONS(6695), 1, + anon_sym_RPAREN, + ACTIONS(9345), 1, anon_sym_COMMA, - ACTIONS(9312), 1, - sym__newline, - STATE(4727), 1, - aux_sym_cvar_decl_repeat2, + STATE(5131), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189272] = 4, - ACTIONS(7658), 1, + [189303] = 4, + ACTIONS(7425), 1, + anon_sym_PIPE, + ACTIONS(9348), 1, anon_sym_COLON, - ACTIONS(7662), 1, - sym__newline, - ACTIONS(9314), 1, - sym_identifier, + STATE(4175), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189286] = 4, - ACTIONS(7662), 1, - sym__newline, - ACTIONS(9316), 1, - anon_sym_LPAREN, - ACTIONS(9318), 1, - anon_sym_COLON, + [189317] = 4, + ACTIONS(6381), 1, + anon_sym_COMMA, + ACTIONS(9350), 1, + anon_sym_RPAREN, + STATE(4905), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [189331] = 4, + ACTIONS(6381), 1, + anon_sym_COMMA, + ACTIONS(9352), 1, + anon_sym_RPAREN, + STATE(4905), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189300] = 4, - ACTIONS(8245), 1, + [189345] = 4, + ACTIONS(8362), 1, anon_sym_LBRACK, - ACTIONS(9320), 1, + ACTIONS(9354), 1, anon_sym_COLON, - STATE(5491), 1, + STATE(5659), 1, sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189314] = 4, - ACTIONS(8782), 1, - sym__newline, - ACTIONS(8784), 1, - sym__indent, - STATE(1390), 1, - sym__match_block, + [189359] = 4, + ACTIONS(3093), 1, + anon_sym_RBRACE, + ACTIONS(9356), 1, + anon_sym_COMMA, + STATE(4773), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189328] = 4, - ACTIONS(6256), 1, + [189373] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(9322), 1, + ACTIONS(9358), 1, sym__newline, - STATE(4727), 1, + STATE(5056), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189342] = 4, - ACTIONS(6730), 1, + [189387] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(6734), 1, - anon_sym_RBRACK, - STATE(4721), 1, - aux_sym_subscript_repeat1, + ACTIONS(9360), 1, + sym__newline, + STATE(5056), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189356] = 4, - ACTIONS(8260), 1, + [189401] = 4, + ACTIONS(9362), 1, anon_sym_LPAREN, - ACTIONS(9324), 1, + ACTIONS(9364), 1, anon_sym_COLON, - ACTIONS(9326), 1, + ACTIONS(9366), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189370] = 4, - ACTIONS(6256), 1, + [189415] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(9328), 1, + ACTIONS(9368), 1, sym__newline, - STATE(4727), 1, + STATE(5056), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189384] = 4, - ACTIONS(6256), 1, - anon_sym_COMMA, - ACTIONS(9330), 1, + [189429] = 4, + ACTIONS(9275), 1, sym__newline, - STATE(4727), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(9370), 1, + anon_sym_LPAREN, + ACTIONS(9372), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189398] = 4, - ACTIONS(6256), 1, + [189443] = 4, + ACTIONS(9374), 1, anon_sym_COMMA, - ACTIONS(9332), 1, - sym__newline, - STATE(4727), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(9376), 1, + anon_sym_COLON, + STATE(5077), 1, + aux_sym_match_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [189457] = 4, + ACTIONS(9378), 1, + anon_sym_COMMA, + ACTIONS(9380), 1, + anon_sym_RBRACE, + STATE(4931), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189412] = 4, - ACTIONS(6256), 1, + [189471] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(9334), 1, + ACTIONS(9382), 1, sym__newline, - STATE(4727), 1, + STATE(5056), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189426] = 4, - ACTIONS(6256), 1, + [189485] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(9336), 1, + ACTIONS(9384), 1, sym__newline, - STATE(4727), 1, + STATE(5056), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189440] = 4, - ACTIONS(6256), 1, + [189499] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(9338), 1, + ACTIONS(9386), 1, sym__newline, - STATE(4727), 1, + STATE(5056), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189454] = 3, - ACTIONS(5723), 1, - anon_sym_EQ, + [189513] = 4, + ACTIONS(6315), 1, + anon_sym_COMMA, + ACTIONS(9388), 1, + sym__newline, + STATE(5056), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5719), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [189466] = 4, - ACTIONS(7700), 1, + [189527] = 4, + ACTIONS(8012), 1, anon_sym_COLON, - ACTIONS(9340), 1, - anon_sym_RBRACE, - STATE(5586), 1, - sym_format_specifier, + ACTIONS(8016), 1, + sym__newline, + ACTIONS(9390), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189480] = 4, - ACTIONS(6256), 1, - anon_sym_COMMA, - ACTIONS(9342), 1, + [189541] = 4, + ACTIONS(8016), 1, sym__newline, - STATE(4727), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(9392), 1, + anon_sym_LPAREN, + ACTIONS(9394), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189494] = 4, - ACTIONS(6256), 1, + [189555] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(9344), 1, + ACTIONS(9396), 1, sym__newline, - STATE(4727), 1, + STATE(5056), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189508] = 4, - ACTIONS(9346), 1, - anon_sym_COMMA, - ACTIONS(9348), 1, + [189569] = 4, + ACTIONS(9398), 1, anon_sym_COLON, - STATE(4924), 1, - aux_sym_match_statement_repeat1, + ACTIONS(9400), 1, + anon_sym_nogil, + ACTIONS(9402), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189522] = 4, - ACTIONS(6256), 1, + [189583] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - ACTIONS(9350), 1, + ACTIONS(9404), 1, sym__newline, - STATE(4727), 1, + STATE(5056), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189536] = 4, - ACTIONS(9038), 1, - anon_sym_RPAREN, - ACTIONS(9352), 1, - anon_sym_COMMA, - STATE(4762), 1, - aux_sym__parameters_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [189550] = 4, - ACTIONS(8266), 1, + [189597] = 4, + ACTIONS(6624), 1, sym__newline, - ACTIONS(8268), 1, - sym__indent, - STATE(1670), 1, - sym__match_block, + ACTIONS(6628), 1, + anon_sym_COMMA, + STATE(5106), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189564] = 3, - ACTIONS(8004), 1, - anon_sym_as, + [189611] = 4, + ACTIONS(8768), 1, + anon_sym_COMMA, + ACTIONS(9406), 1, + anon_sym_RBRACK, + STATE(5110), 1, + aux_sym_template_params_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8024), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [189576] = 4, - ACTIONS(3077), 1, - anon_sym_RBRACE, - ACTIONS(9354), 1, + [189625] = 4, + ACTIONS(9408), 1, anon_sym_COMMA, - STATE(5105), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(9410), 1, + anon_sym_RBRACK, + STATE(5102), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189590] = 3, - ACTIONS(5721), 1, - anon_sym_COLON, + [189639] = 4, + ACTIONS(6315), 1, + anon_sym_COMMA, + ACTIONS(9412), 1, + sym__newline, + STATE(5056), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5719), 2, - anon_sym_RPAREN, + [189653] = 4, + ACTIONS(3055), 1, + anon_sym_RBRACE, + ACTIONS(9414), 1, anon_sym_COMMA, - [189602] = 2, + STATE(5127), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8064), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - [189612] = 4, - ACTIONS(8024), 1, - anon_sym_RPAREN, - ACTIONS(9356), 1, + [189667] = 4, + ACTIONS(6315), 1, anon_sym_COMMA, - STATE(5147), 1, - aux_sym_case_clause_repeat1, + ACTIONS(9416), 1, + sym__newline, + STATE(5056), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189626] = 4, - ACTIONS(7382), 1, - anon_sym_RBRACK, - ACTIONS(9359), 1, - anon_sym_COMMA, - STATE(5148), 1, - aux_sym__collection_elements_repeat1, + [189681] = 4, + ACTIONS(9366), 1, + sym__newline, + ACTIONS(9418), 1, + sym_identifier, + ACTIONS(9420), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189640] = 2, + [189695] = 4, + ACTIONS(6329), 1, + anon_sym_RPAREN, + ACTIONS(6331), 1, + anon_sym_COMMA, + STATE(4772), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8084), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - [189650] = 4, - ACTIONS(6349), 1, + [189709] = 4, + ACTIONS(9422), 1, anon_sym_RPAREN, - ACTIONS(6351), 1, + ACTIONS(9424), 1, anon_sym_COMMA, - STATE(5047), 1, + STATE(4784), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189664] = 3, - ACTIONS(7749), 1, - anon_sym_LPAREN, - ACTIONS(9362), 1, + [189723] = 4, + ACTIONS(6381), 1, + anon_sym_COMMA, + ACTIONS(9426), 1, anon_sym_RPAREN, + STATE(4905), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189675] = 3, - ACTIONS(9364), 1, + [189737] = 3, + ACTIONS(9428), 1, anon_sym_LPAREN, - STATE(2083), 1, + STATE(3440), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189686] = 2, + [189748] = 3, + ACTIONS(9430), 1, + anon_sym_COMMA, + STATE(4186), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7382), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [189695] = 3, - ACTIONS(7749), 1, + [189759] = 3, + ACTIONS(9432), 1, anon_sym_LPAREN, - ACTIONS(9366), 1, - anon_sym_RPAREN, + STATE(2119), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189706] = 2, + [189770] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9368), 2, - anon_sym_import, - anon_sym_cimport, - [189715] = 2, + ACTIONS(9434), 2, + anon_sym__, + sym_identifier, + [189779] = 3, + ACTIONS(9436), 1, + anon_sym_LPAREN, + STATE(2339), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9370), 2, - sym__dedent, - anon_sym_case, - [189724] = 2, + [189790] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9372), 2, + ACTIONS(8695), 2, sym__newline, anon_sym_SEMI, - [189733] = 2, + [189799] = 3, + ACTIONS(9438), 1, + anon_sym_COLON, + ACTIONS(9440), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9374), 2, - sym__dedent, - anon_sym_case, - [189742] = 2, + [189810] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7382), 2, + ACTIONS(9442), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [189751] = 2, + anon_sym_RBRACK, + [189819] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8939), 2, + ACTIONS(8975), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [189760] = 3, - ACTIONS(9376), 1, - anon_sym_COLON, - ACTIONS(9378), 1, - sym__newline, + anon_sym_RBRACK, + [189828] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189771] = 3, - ACTIONS(8866), 1, - sym__newline, - ACTIONS(9380), 1, + ACTIONS(5717), 2, + anon_sym_COMMA, anon_sym_COLON, + [189837] = 3, + ACTIONS(7741), 1, + anon_sym_RPAREN, + ACTIONS(7839), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [189848] = 3, + ACTIONS(9444), 1, + anon_sym_LPAREN, + STATE(2553), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189782] = 2, + [189859] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9382), 2, - anon_sym_RPAREN, + ACTIONS(5717), 2, anon_sym_COMMA, - [189791] = 3, - ACTIONS(9384), 1, - anon_sym_LPAREN, - STATE(2400), 1, - sym_argument_list, + anon_sym_COLON, + [189868] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189802] = 3, - ACTIONS(9386), 1, + ACTIONS(8134), 2, + anon_sym_from, + anon_sym_in, + [189877] = 3, + ACTIONS(7917), 1, anon_sym_COLON, - ACTIONS(9388), 1, + ACTIONS(7919), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189813] = 3, - ACTIONS(6663), 1, - sym_string_start, - STATE(5505), 1, - sym_string, + [189888] = 3, + ACTIONS(9446), 1, + anon_sym_LPAREN, + STATE(2525), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189824] = 2, + [189899] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9390), 2, - sym__dedent, - anon_sym_case, - [189833] = 2, + ACTIONS(9448), 2, + anon_sym_COMMA, + anon_sym_COLON, + [189908] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8222), 2, - anon_sym_from, - anon_sym_in, - [189842] = 2, + ACTIONS(8449), 2, + anon_sym_COMMA, + anon_sym_COLON, + [189917] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8723), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [189926] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9392), 2, + ACTIONS(9450), 2, sym__dedent, anon_sym_case, - [189851] = 2, + [189935] = 3, + ACTIONS(9452), 1, + anon_sym_LPAREN, + STATE(2346), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7360), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [189860] = 3, - ACTIONS(7891), 1, - anon_sym_COLON, - ACTIONS(7893), 1, + [189946] = 3, + ACTIONS(8412), 1, sym__newline, + ACTIONS(9454), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189871] = 3, - ACTIONS(9394), 1, - anon_sym_LPAREN, - STATE(2382), 1, - sym_argument_list, + [189957] = 3, + ACTIONS(9456), 1, + sym_integer, + ACTIONS(9458), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189882] = 3, - ACTIONS(7749), 1, + [189968] = 3, + ACTIONS(7839), 1, anon_sym_LPAREN, - ACTIONS(9396), 1, + ACTIONS(9460), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189893] = 3, - ACTIONS(9398), 1, + [189979] = 3, + ACTIONS(9462), 1, anon_sym_COLON, - ACTIONS(9400), 1, + ACTIONS(9464), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189904] = 3, - ACTIONS(9402), 1, - anon_sym_LPAREN, - STATE(2262), 1, - sym_argument_list, + [189990] = 3, + ACTIONS(9466), 1, + anon_sym_COLON, + ACTIONS(9468), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189915] = 2, + [190001] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5488), 2, - anon_sym_RPAREN, + ACTIONS(3724), 2, anon_sym_COMMA, - [189924] = 2, + anon_sym_RBRACK, + [190010] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9404), 2, + ACTIONS(6550), 2, sym__newline, anon_sym_SEMI, - [189933] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(8250), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [189942] = 3, - ACTIONS(7749), 1, + [190019] = 3, + ACTIONS(7839), 1, anon_sym_LPAREN, - ACTIONS(9406), 1, + ACTIONS(9470), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189953] = 2, + [190030] = 3, + ACTIONS(7884), 1, + anon_sym_COLON, + ACTIONS(7886), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9408), 2, - sym__newline, - anon_sym_SEMI, - [189962] = 3, - ACTIONS(9410), 1, - sym_integer, - ACTIONS(9412), 1, - sym_float, + [190041] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189973] = 2, + ACTIONS(8118), 2, + anon_sym_from, + anon_sym_in, + [190050] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9414), 2, + ACTIONS(7607), 2, sym__newline, - anon_sym_SEMI, - [189982] = 3, - ACTIONS(7749), 1, + anon_sym_COLON, + [190059] = 3, + ACTIONS(7839), 1, anon_sym_LPAREN, - ACTIONS(9416), 1, + ACTIONS(7978), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189993] = 2, + [190070] = 3, + ACTIONS(9472), 1, + anon_sym_COLON, + ACTIONS(9474), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9418), 2, - anon_sym_nogil, - anon_sym_gil, - [190002] = 2, + [190081] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9420), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [190011] = 3, - ACTIONS(9422), 1, + ACTIONS(9476), 2, + sym__dedent, + anon_sym_case, + [190090] = 3, + ACTIONS(6834), 1, anon_sym_COLON, - ACTIONS(9424), 1, + ACTIONS(6836), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190022] = 2, + [190101] = 3, + ACTIONS(7839), 1, + anon_sym_LPAREN, + ACTIONS(9478), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9426), 2, + [190112] = 3, + ACTIONS(9480), 1, + anon_sym_COLON, + ACTIONS(9482), 1, sym__newline, - anon_sym_SEMI, - [190031] = 3, - ACTIONS(7749), 1, - anon_sym_LPAREN, - ACTIONS(9428), 1, - anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190042] = 2, + [190123] = 3, + ACTIONS(9484), 1, + sym_identifier, + STATE(5100), 1, + sym_template_param, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8312), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [190051] = 2, + [190134] = 3, + ACTIONS(6559), 1, + anon_sym_LPAREN, + STATE(3921), 1, + sym_c_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9430), 2, - sym__dedent, - anon_sym_case, - [190060] = 3, - ACTIONS(7749), 1, + [190145] = 3, + ACTIONS(9486), 1, + anon_sym_COLON, + ACTIONS(9488), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [190156] = 3, + ACTIONS(9490), 1, anon_sym_LPAREN, - ACTIONS(9432), 1, - anon_sym_RPAREN, + STATE(3837), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190071] = 2, + [190167] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7609), 2, - sym__newline, - anon_sym_COLON, - [190080] = 3, - ACTIONS(9434), 1, - anon_sym_RPAREN, - ACTIONS(9436), 1, + ACTIONS(9492), 2, anon_sym_COMMA, + anon_sym_RBRACK, + [190176] = 3, + ACTIONS(9494), 1, + anon_sym_COLON, + ACTIONS(9496), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190091] = 2, + [190187] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9438), 2, + ACTIONS(7474), 2, anon_sym_RPAREN, anon_sym_COMMA, - [190100] = 3, - ACTIONS(9440), 1, - anon_sym_COLON, - ACTIONS(9442), 1, - anon_sym_DASH_GT, + [190196] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190111] = 3, - ACTIONS(7996), 1, - anon_sym_LPAREN, - STATE(5174), 1, - sym_parameters, + ACTIONS(9498), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [190205] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9448), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [190214] = 3, + ACTIONS(9484), 1, + sym_identifier, + STATE(5171), 1, + sym_template_param, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190122] = 2, + [190225] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5488), 2, + ACTIONS(5717), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [190131] = 3, - ACTIONS(6800), 1, - anon_sym_COLON, - ACTIONS(6802), 1, - sym__newline, + [190234] = 3, + ACTIONS(9500), 1, + sym_integer, + ACTIONS(9502), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190142] = 3, - ACTIONS(9444), 1, - anon_sym_COLON, - ACTIONS(9446), 1, - sym__newline, + [190245] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190153] = 3, - ACTIONS(8996), 1, - sym__newline, - ACTIONS(9448), 1, - anon_sym_COLON, + ACTIONS(9504), 2, + anon_sym_type, + anon_sym_object, + [190254] = 3, + ACTIONS(7803), 1, + anon_sym_RPAREN, + ACTIONS(7839), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190164] = 3, - ACTIONS(9450), 1, + [190265] = 3, + ACTIONS(9506), 1, sym_integer, - ACTIONS(9452), 1, + ACTIONS(9508), 1, sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190175] = 2, + [190276] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9133), 2, - sym__newline, - anon_sym_SEMI, - [190184] = 3, - ACTIONS(9454), 1, - anon_sym_COLON, - ACTIONS(9456), 1, - sym__newline, + ACTIONS(6550), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [190285] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190195] = 3, - ACTIONS(9458), 1, + ACTIONS(6550), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [190294] = 3, + ACTIONS(9510), 1, anon_sym_COLON, - ACTIONS(9460), 1, + ACTIONS(9512), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190206] = 3, - ACTIONS(7749), 1, + [190305] = 3, + ACTIONS(7839), 1, anon_sym_LPAREN, - ACTIONS(9462), 1, + ACTIONS(9514), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190217] = 3, - ACTIONS(9464), 1, - anon_sym_LPAREN, - STATE(2440), 1, - sym_argument_list, + [190316] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190228] = 3, - ACTIONS(7749), 1, + ACTIONS(9516), 2, + anon_sym_COMMA, + anon_sym_COLON, + [190325] = 3, + ACTIONS(7839), 1, anon_sym_LPAREN, - ACTIONS(9466), 1, + ACTIONS(9518), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190239] = 3, - ACTIONS(7787), 1, - anon_sym_COLON, - ACTIONS(7789), 1, - sym__newline, + [190336] = 3, + ACTIONS(9520), 1, + sym_integer, + ACTIONS(9522), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190250] = 3, - ACTIONS(9468), 1, + [190347] = 3, + ACTIONS(9484), 1, sym_identifier, - STATE(4696), 1, + STATE(5154), 1, sym_template_param, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190261] = 3, - ACTIONS(6509), 1, + [190358] = 3, + ACTIONS(6559), 1, anon_sym_LPAREN, - STATE(3904), 1, + STATE(3945), 1, sym_c_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190272] = 2, + [190369] = 3, + ACTIONS(7839), 1, + anon_sym_LPAREN, + ACTIONS(9524), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9470), 2, - sym__newline, - anon_sym_SEMI, - [190281] = 3, - ACTIONS(9472), 1, + [190380] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5642), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [190389] = 3, + ACTIONS(9526), 1, anon_sym_COLON, - ACTIONS(9474), 1, + ACTIONS(9528), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190292] = 3, - ACTIONS(9476), 1, + [190400] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8706), 2, + anon_sym_COMMA, anon_sym_COLON, - ACTIONS(9478), 1, + [190409] = 3, + ACTIONS(6816), 1, + sym_string_start, + STATE(5552), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [190420] = 3, + ACTIONS(9530), 1, + anon_sym_COLON, + ACTIONS(9532), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190303] = 3, - ACTIONS(7749), 1, + [190431] = 3, + ACTIONS(7839), 1, anon_sym_LPAREN, - ACTIONS(9480), 1, + ACTIONS(9534), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190314] = 2, + [190442] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9482), 2, - sym__dedent, - anon_sym_case, - [190323] = 3, - ACTIONS(7749), 1, + ACTIONS(9536), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [190451] = 3, + ACTIONS(7839), 1, anon_sym_LPAREN, - ACTIONS(9484), 1, + ACTIONS(9538), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190334] = 3, - ACTIONS(6667), 1, - anon_sym_COLON, - ACTIONS(6677), 1, - sym__newline, + [190462] = 3, + ACTIONS(5612), 1, + anon_sym_RPAREN, + ACTIONS(9540), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190345] = 3, - ACTIONS(9486), 1, - anon_sym_COLON, - ACTIONS(9488), 1, + [190473] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9542), 2, sym__newline, + anon_sym_SEMI, + [190482] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190356] = 2, + ACTIONS(9544), 2, + sym__newline, + anon_sym_SEMI, + [190491] = 3, + ACTIONS(9546), 1, + anon_sym_COLON, + ACTIONS(9548), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9490), 2, - sym__dedent, - anon_sym_case, - [190365] = 3, - ACTIONS(9492), 1, - anon_sym_LPAREN, - STATE(3854), 1, - sym_argument_list, + [190502] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190376] = 3, - ACTIONS(9494), 1, - anon_sym_COLON, - ACTIONS(9496), 1, - anon_sym_DASH_GT, + ACTIONS(9550), 2, + anon_sym_import, + anon_sym_cimport, + [190511] = 3, + ACTIONS(7839), 1, + anon_sym_LPAREN, + ACTIONS(7980), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190387] = 3, - ACTIONS(7749), 1, + [190522] = 3, + ACTIONS(7839), 1, anon_sym_LPAREN, - ACTIONS(9498), 1, + ACTIONS(9552), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190398] = 3, - ACTIONS(6663), 1, + [190533] = 3, + ACTIONS(6816), 1, sym_string_start, - STATE(2791), 1, + STATE(2807), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190409] = 3, - ACTIONS(7749), 1, + [190544] = 3, + ACTIONS(7839), 1, anon_sym_LPAREN, - ACTIONS(9500), 1, + ACTIONS(9554), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190420] = 3, - ACTIONS(9070), 1, - sym__newline, - ACTIONS(9502), 1, - anon_sym_COLON, + [190555] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190431] = 2, + ACTIONS(9556), 2, + sym__dedent, + anon_sym_case, + [190564] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6422), 2, - sym__newline, - anon_sym_SEMI, - [190440] = 3, - ACTIONS(7749), 1, + ACTIONS(9558), 2, + sym__dedent, + anon_sym_case, + [190573] = 3, + ACTIONS(7839), 1, anon_sym_LPAREN, - ACTIONS(9504), 1, + ACTIONS(9560), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190451] = 2, + [190584] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2139), 2, + ACTIONS(6962), 2, sym__newline, anon_sym_SEMI, - [190460] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(9506), 2, + [190593] = 3, + ACTIONS(8416), 1, sym__newline, - anon_sym_SEMI, - [190469] = 3, - ACTIONS(7749), 1, - anon_sym_LPAREN, - ACTIONS(9508), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [190480] = 3, - ACTIONS(7749), 1, - anon_sym_LPAREN, - ACTIONS(9510), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [190491] = 3, - ACTIONS(7749), 1, - anon_sym_LPAREN, - ACTIONS(9512), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [190502] = 3, - ACTIONS(7749), 1, - anon_sym_LPAREN, - ACTIONS(9514), 1, - anon_sym_RPAREN, + ACTIONS(9562), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190513] = 3, - ACTIONS(7749), 1, + [190604] = 3, + ACTIONS(7839), 1, anon_sym_LPAREN, - ACTIONS(9516), 1, + ACTIONS(9564), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190524] = 2, + [190615] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9518), 2, + ACTIONS(9566), 2, sym__newline, anon_sym_SEMI, - [190533] = 2, + [190624] = 3, + ACTIONS(7839), 1, + anon_sym_LPAREN, + ACTIONS(9568), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9520), 2, - sym__newline, - anon_sym_SEMI, - [190542] = 3, - ACTIONS(9522), 1, - anon_sym_COLON, - ACTIONS(9524), 1, - sym__newline, + [190635] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190553] = 3, - ACTIONS(7749), 1, + ACTIONS(9570), 2, + anon_sym__, + sym_identifier, + [190644] = 3, + ACTIONS(7839), 1, anon_sym_LPAREN, - ACTIONS(9526), 1, + ACTIONS(9572), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190564] = 3, - ACTIONS(7749), 1, - anon_sym_LPAREN, - ACTIONS(9528), 1, - anon_sym_RPAREN, + [190655] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190575] = 3, - ACTIONS(9530), 1, - anon_sym_COLON, - ACTIONS(9532), 1, + ACTIONS(7476), 2, sym__newline, + anon_sym_COLON, + [190664] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190586] = 3, - ACTIONS(8386), 1, + ACTIONS(9574), 2, anon_sym_COLON, - ACTIONS(8390), 1, - sym__newline, + anon_sym_DASH_GT, + [190673] = 3, + ACTIONS(9576), 1, + sym_integer, + ACTIONS(9578), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190597] = 3, - ACTIONS(9534), 1, + [190684] = 3, + ACTIONS(9580), 1, anon_sym_LPAREN, - STATE(2518), 1, + STATE(2666), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190608] = 3, - ACTIONS(9536), 1, + [190695] = 3, + ACTIONS(9582), 1, anon_sym_LPAREN, - STATE(3084), 1, + STATE(2523), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190619] = 3, - ACTIONS(9538), 1, + [190706] = 3, + ACTIONS(9584), 1, anon_sym_LPAREN, - STATE(2440), 1, + STATE(3094), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190630] = 3, - ACTIONS(9540), 1, + [190717] = 3, + ACTIONS(9586), 1, anon_sym_LPAREN, - STATE(2382), 1, + STATE(2525), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190641] = 3, - ACTIONS(9542), 1, + [190728] = 3, + ACTIONS(9588), 1, anon_sym_LPAREN, - STATE(3854), 1, + STATE(2339), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190652] = 3, - ACTIONS(9544), 1, + [190739] = 3, + ACTIONS(9590), 1, anon_sym_LPAREN, - STATE(2668), 1, + STATE(3837), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190663] = 3, - ACTIONS(9546), 1, + [190750] = 3, + ACTIONS(9592), 1, anon_sym_LPAREN, - STATE(2617), 1, + STATE(2666), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190674] = 2, + [190761] = 3, + ACTIONS(9594), 1, + anon_sym_LPAREN, + STATE(2624), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9548), 2, - sym__newline, - anon_sym_SEMI, - [190683] = 2, + [190772] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5601), 2, + ACTIONS(3724), 2, anon_sym_RPAREN, anon_sym_COMMA, - [190692] = 3, - ACTIONS(9550), 1, + [190781] = 3, + ACTIONS(9596), 1, anon_sym_COLON, - ACTIONS(9552), 1, - sym__newline, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [190703] = 3, - ACTIONS(7749), 1, - anon_sym_LPAREN, - ACTIONS(9554), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [190714] = 3, - ACTIONS(7749), 1, - anon_sym_LPAREN, - ACTIONS(9556), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [190725] = 3, - ACTIONS(9558), 1, - anon_sym_LPAREN, - STATE(3417), 1, - sym_argument_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [190736] = 3, - ACTIONS(7749), 1, - anon_sym_LPAREN, - ACTIONS(9560), 1, - anon_sym_RPAREN, + ACTIONS(9598), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190747] = 2, + [190792] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7450), 2, + ACTIONS(9600), 2, sym__newline, - anon_sym_COLON, - [190756] = 2, + anon_sym_SEMI, + [190801] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9562), 2, + ACTIONS(9602), 2, sym__dedent, anon_sym_case, - [190765] = 3, - ACTIONS(7749), 1, - anon_sym_LPAREN, - ACTIONS(9564), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [190776] = 3, - ACTIONS(9566), 1, - sym_integer, - ACTIONS(9568), 1, - sym_float, + [190810] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190787] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5609), 2, + ACTIONS(5670), 2, anon_sym_COMMA, anon_sym_RBRACK, - [190796] = 3, - ACTIONS(6509), 1, - anon_sym_LPAREN, - STATE(3949), 1, - sym_c_parameters, + [190819] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190807] = 3, - ACTIONS(7749), 1, + ACTIONS(9604), 2, + sym__dedent, + anon_sym_case, + [190828] = 3, + ACTIONS(8116), 1, anon_sym_LPAREN, - ACTIONS(9570), 1, - anon_sym_RPAREN, + STATE(5196), 1, + sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190818] = 2, + [190839] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9572), 2, - anon_sym_RPAREN, + ACTIONS(9606), 2, anon_sym_COMMA, - [190827] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6466), 2, - sym__newline, - anon_sym_SEMI, - [190836] = 3, - ACTIONS(7749), 1, + anon_sym_RBRACK, + [190848] = 3, + ACTIONS(7839), 1, anon_sym_LPAREN, - ACTIONS(9574), 1, + ACTIONS(9608), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190847] = 3, - ACTIONS(9576), 1, - anon_sym_COLON, - ACTIONS(9578), 1, - sym__newline, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [190858] = 3, - ACTIONS(5556), 1, - anon_sym_RPAREN, - ACTIONS(9580), 1, - anon_sym_COMMA, + [190859] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190869] = 2, + ACTIONS(9610), 2, + anon_sym__, + sym_identifier, + [190868] = 3, + ACTIONS(6559), 1, + anon_sym_LPAREN, + STATE(3893), 1, + sym_c_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9582), 2, - anon_sym_COMMA, - anon_sym_COLON, - [190878] = 2, + [190879] = 3, + ACTIONS(9612), 1, + sym_integer, + ACTIONS(9614), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8279), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [190887] = 3, - ACTIONS(7749), 1, + [190890] = 3, + ACTIONS(7839), 1, anon_sym_LPAREN, - ACTIONS(9584), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [190898] = 3, - ACTIONS(3820), 1, + ACTIONS(9616), 1, anon_sym_RPAREN, - ACTIONS(9586), 1, - anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190909] = 3, - ACTIONS(6663), 1, - sym_string_start, - STATE(2779), 1, - sym_string, + [190901] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190920] = 3, - ACTIONS(7749), 1, + ACTIONS(9618), 2, + sym__dedent, + anon_sym_case, + [190910] = 3, + ACTIONS(7839), 1, anon_sym_LPAREN, - ACTIONS(9588), 1, + ACTIONS(9620), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190931] = 2, + [190921] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9590), 2, + ACTIONS(9622), 2, sym__dedent, anon_sym_case, - [190940] = 3, - ACTIONS(9468), 1, - sym_identifier, - STATE(4896), 1, - sym_template_param, + [190930] = 3, + ACTIONS(9236), 1, + anon_sym_COLON, + ACTIONS(9240), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190951] = 3, - ACTIONS(7749), 1, - anon_sym_LPAREN, - ACTIONS(9592), 1, + [190941] = 3, + ACTIONS(7729), 1, anon_sym_RPAREN, + ACTIONS(7839), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190962] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(9172), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [190971] = 3, - ACTIONS(7749), 1, - anon_sym_LPAREN, - ACTIONS(9594), 1, - anon_sym_RPAREN, + [190952] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190982] = 3, - ACTIONS(7749), 1, + ACTIONS(9624), 2, + sym__newline, + anon_sym_SEMI, + [190961] = 3, + ACTIONS(7839), 1, anon_sym_LPAREN, - ACTIONS(9596), 1, + ACTIONS(9626), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190993] = 3, - ACTIONS(7749), 1, - anon_sym_LPAREN, - ACTIONS(9598), 1, - anon_sym_RPAREN, + [190972] = 3, + ACTIONS(6816), 1, + sym_string_start, + STATE(2788), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191004] = 3, - ACTIONS(7749), 1, + [190983] = 3, + ACTIONS(7839), 1, anon_sym_LPAREN, - ACTIONS(9600), 1, + ACTIONS(9628), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191015] = 3, - ACTIONS(7749), 1, + [190994] = 3, + ACTIONS(7839), 1, anon_sym_LPAREN, - ACTIONS(9602), 1, + ACTIONS(9630), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191026] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5719), 2, - anon_sym_COMMA, + [191005] = 3, + ACTIONS(9632), 1, anon_sym_COLON, - [191035] = 3, - ACTIONS(9604), 1, - sym_integer, - ACTIONS(9606), 1, - sym_float, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [191046] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6880), 2, + ACTIONS(9634), 1, sym__newline, - anon_sym_SEMI, - [191055] = 3, - ACTIONS(9384), 1, - anon_sym_LPAREN, - STATE(3084), 1, - sym_argument_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [191066] = 3, - ACTIONS(9608), 1, - anon_sym_LPAREN, - STATE(2668), 1, - sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191077] = 3, - ACTIONS(8260), 1, - anon_sym_LPAREN, - ACTIONS(9610), 1, + [191016] = 3, + ACTIONS(8832), 1, sym__newline, + ACTIONS(9636), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191088] = 3, - ACTIONS(9612), 1, + [191027] = 3, + ACTIONS(7839), 1, anon_sym_LPAREN, - STATE(2518), 1, - sym_argument_list, + ACTIONS(9638), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191099] = 2, + [191038] = 3, + ACTIONS(9640), 1, + sym_integer, + ACTIONS(9642), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9382), 2, - anon_sym_COMMA, - anon_sym_COLON, - [191108] = 3, - ACTIONS(3830), 1, + [191049] = 3, + ACTIONS(7839), 1, + anon_sym_LPAREN, + ACTIONS(9644), 1, anon_sym_RPAREN, - ACTIONS(9614), 1, - anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191119] = 3, - ACTIONS(6663), 1, - sym_string_start, - STATE(2787), 1, - sym_string, + [191060] = 3, + ACTIONS(7839), 1, + anon_sym_LPAREN, + ACTIONS(9646), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191130] = 2, + [191071] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6882), 2, + ACTIONS(6960), 2, sym__newline, anon_sym_SEMI, - [191139] = 3, - ACTIONS(9235), 1, - sym__newline, - ACTIONS(9616), 1, - anon_sym_COLON, + [191080] = 3, + ACTIONS(7839), 1, + anon_sym_LPAREN, + ACTIONS(9648), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191150] = 2, + [191091] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3720), 2, + ACTIONS(5521), 2, anon_sym_RPAREN, anon_sym_COMMA, - [191159] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(9618), 2, - anon_sym__, - sym_identifier, - [191168] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(9620), 2, - anon_sym_import, - anon_sym_cimport, - [191177] = 3, - ACTIONS(9622), 1, - sym_integer, - ACTIONS(9624), 1, - sym_float, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [191188] = 2, + [191100] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8066), 2, - anon_sym_from, - anon_sym_in, - [191197] = 3, - ACTIONS(6509), 1, + ACTIONS(5642), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [191109] = 3, + ACTIONS(7839), 1, anon_sym_LPAREN, - STATE(3924), 1, - sym_c_parameters, + ACTIONS(9650), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191208] = 2, + [191120] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9626), 2, - anon_sym__, - sym_identifier, - [191217] = 3, - ACTIONS(9628), 1, - sym_integer, - ACTIONS(9630), 1, - sym_float, + ACTIONS(9652), 2, + sym__newline, + anon_sym_SEMI, + [191129] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191228] = 3, - ACTIONS(7749), 1, + ACTIONS(7601), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [191138] = 3, + ACTIONS(7839), 1, anon_sym_LPAREN, - ACTIONS(9632), 1, + ACTIONS(9654), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191239] = 3, - ACTIONS(9192), 1, + [191149] = 3, + ACTIONS(8344), 1, sym__newline, - ACTIONS(9634), 1, + ACTIONS(9656), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191250] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(9636), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [191259] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(9638), 2, - anon_sym_type, - anon_sym_object, - [191268] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(9640), 2, - anon_sym_type, - anon_sym_object, - [191277] = 3, - ACTIONS(7749), 1, - anon_sym_LPAREN, - ACTIONS(9642), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [191288] = 3, - ACTIONS(9644), 1, + [191160] = 3, + ACTIONS(9444), 1, anon_sym_LPAREN, - STATE(3084), 1, + STATE(3094), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191299] = 2, + [191171] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9646), 2, + ACTIONS(9658), 2, sym__newline, anon_sym_SEMI, - [191308] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(9648), 2, - anon_sym_nogil, - anon_sym_gil, - [191317] = 3, - ACTIONS(8743), 1, - anon_sym_COLON, - ACTIONS(8747), 1, - sym__newline, + [191180] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191328] = 3, - ACTIONS(5544), 1, + ACTIONS(9248), 2, anon_sym_RPAREN, - ACTIONS(9650), 1, - anon_sym_COMMA, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [191339] = 3, - ACTIONS(9652), 1, - anon_sym_COLON, - ACTIONS(9654), 1, - sym__newline, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [191350] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5601), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [191359] = 3, - ACTIONS(9656), 1, - sym_integer, - ACTIONS(9658), 1, - sym_float, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [191370] = 2, + [191189] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(9660), 2, - sym__newline, - anon_sym_SEMI, - [191379] = 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [191198] = 3, + ACTIONS(6816), 1, + sym_string_start, + STATE(2794), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8148), 2, + [191209] = 3, + ACTIONS(3836), 1, anon_sym_RPAREN, + ACTIONS(9662), 1, anon_sym_COMMA, - [191388] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9662), 2, - anon_sym__, - sym_identifier, - [191397] = 3, - ACTIONS(6846), 1, - anon_sym_COLON, - ACTIONS(6848), 1, - sym__newline, + [191220] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191408] = 3, - ACTIONS(9664), 1, - sym_integer, - ACTIONS(9666), 1, - sym_float, + ACTIONS(9664), 2, + sym__newline, + anon_sym_SEMI, + [191229] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191419] = 3, + ACTIONS(9666), 2, + sym__dedent, + anon_sym_case, + [191238] = 3, ACTIONS(9668), 1, anon_sym_COLON, ACTIONS(9670), 1, @@ -275642,7189 +276281,7421 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191430] = 3, - ACTIONS(7749), 1, + [191249] = 3, + ACTIONS(7839), 1, anon_sym_LPAREN, ACTIONS(9672), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191441] = 3, - ACTIONS(8264), 1, - sym__newline, + [191260] = 3, ACTIONS(9674), 1, - anon_sym_COLON, + sym_integer, + ACTIONS(9676), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191452] = 2, + [191271] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9676), 2, + ACTIONS(9678), 2, anon_sym_COMMA, anon_sym_RBRACK, - [191461] = 3, - ACTIONS(9678), 1, - anon_sym_LPAREN, - STATE(3417), 1, - sym_argument_list, + [191280] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191472] = 3, - ACTIONS(7749), 1, - anon_sym_LPAREN, - ACTIONS(9680), 1, + ACTIONS(8242), 2, anon_sym_RPAREN, + anon_sym_COMMA, + [191289] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191483] = 3, - ACTIONS(7996), 1, - anon_sym_LPAREN, - STATE(5213), 1, - sym_parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [191494] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(9682), 2, - anon_sym_type, - anon_sym_object, - [191503] = 3, - ACTIONS(8772), 1, + ACTIONS(9680), 2, anon_sym_COLON, - ACTIONS(8776), 1, - sym__newline, + anon_sym_DASH_GT, + [191298] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191514] = 3, - ACTIONS(9246), 1, + ACTIONS(9682), 2, sym__newline, + anon_sym_SEMI, + [191307] = 3, + ACTIONS(5568), 1, + anon_sym_RPAREN, ACTIONS(9684), 1, - anon_sym_COLON, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191525] = 3, - ACTIONS(7996), 1, - anon_sym_LPAREN, - STATE(5221), 1, - sym_parameters, + [191318] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191536] = 3, - ACTIONS(8283), 1, - sym__newline, + ACTIONS(7311), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [191327] = 3, ACTIONS(9686), 1, anon_sym_COLON, + ACTIONS(9688), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191547] = 3, - ACTIONS(9468), 1, - sym_identifier, - STATE(5269), 1, - sym_template_param, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [191558] = 2, + [191338] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9688), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [191567] = 2, + ACTIONS(6383), 2, + sym__newline, + anon_sym_SEMI, + [191347] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9139), 2, + ACTIONS(9690), 2, + anon_sym_nogil, + anon_sym_gil, + [191356] = 3, + ACTIONS(7839), 1, + anon_sym_LPAREN, + ACTIONS(9692), 1, anon_sym_RPAREN, - anon_sym_COMMA, - [191576] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9690), 2, - anon_sym__, - sym_identifier, - [191585] = 2, + [191367] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9438), 2, + ACTIONS(7474), 2, anon_sym_COMMA, anon_sym_RBRACK, - [191594] = 3, - ACTIONS(5521), 1, - anon_sym_RPAREN, - ACTIONS(9692), 1, - anon_sym_COMMA, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [191605] = 3, - ACTIONS(7749), 1, - anon_sym_LPAREN, - ACTIONS(9694), 1, - anon_sym_RPAREN, + [191376] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191616] = 2, + ACTIONS(9694), 2, + sym__newline, + anon_sym_SEMI, + [191385] = 3, + ACTIONS(8869), 1, + sym__newline, + ACTIONS(9696), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9688), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [191625] = 3, - ACTIONS(9696), 1, - sym_integer, + [191396] = 3, + ACTIONS(7839), 1, + anon_sym_LPAREN, ACTIONS(9698), 1, - sym_float, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191636] = 3, - ACTIONS(9700), 1, - sym_integer, - ACTIONS(9702), 1, - sym_float, + [191407] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191647] = 2, + ACTIONS(9700), 2, + sym__dedent, + anon_sym_case, + [191416] = 3, + ACTIONS(7839), 1, + anon_sym_LPAREN, + ACTIONS(9702), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9572), 2, - anon_sym_COMMA, - anon_sym_COLON, - [191656] = 2, + [191427] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(9704), 2, sym__dedent, anon_sym_case, - [191665] = 2, + [191436] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7382), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [191674] = 3, - ACTIONS(9706), 1, - anon_sym_LPAREN, - STATE(2617), 1, - sym_argument_list, + ACTIONS(9706), 2, + sym__newline, + anon_sym_SEMI, + [191445] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191685] = 3, - ACTIONS(8337), 1, + ACTIONS(5521), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [191454] = 3, + ACTIONS(9292), 1, sym__newline, ACTIONS(9708), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191696] = 3, - ACTIONS(7755), 1, + [191465] = 3, + ACTIONS(9710), 1, + anon_sym_LPAREN, + STATE(2523), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [191476] = 3, + ACTIONS(8322), 1, anon_sym_COLON, - ACTIONS(7757), 1, + ACTIONS(8326), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191707] = 3, - ACTIONS(5353), 1, + [191487] = 3, + ACTIONS(8453), 1, + sym__newline, + ACTIONS(9712), 1, anon_sym_COLON, - STATE(5277), 1, - sym_memory_view_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191718] = 2, + [191498] = 3, + ACTIONS(5517), 1, + anon_sym_RPAREN, + ACTIONS(9714), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9710), 2, - sym__newline, - anon_sym_SEMI, - [191727] = 3, - ACTIONS(9712), 1, - sym_integer, - ACTIONS(9714), 1, - sym_float, + [191509] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191738] = 2, + ACTIONS(9716), 2, + sym__newline, + anon_sym_SEMI, + [191518] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8312), 2, - anon_sym_COMMA, - anon_sym_COLON, - [191747] = 3, - ACTIONS(7749), 1, - anon_sym_LPAREN, - ACTIONS(9716), 1, + ACTIONS(9678), 2, anon_sym_RPAREN, + anon_sym_COMMA, + [191527] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191758] = 2, + ACTIONS(9718), 2, + sym__newline, + anon_sym_SEMI, + [191536] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6466), 2, + ACTIONS(8706), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [191767] = 2, + [191545] = 3, + ACTIONS(9720), 1, + anon_sym_LPAREN, + STATE(3440), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9718), 2, - anon_sym_COLON, - anon_sym_DASH_GT, - [191776] = 2, + [191556] = 3, + ACTIONS(7839), 1, + anon_sym_LPAREN, + ACTIONS(9722), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9720), 2, - anon_sym_type, - anon_sym_object, - [191785] = 3, - ACTIONS(9722), 1, - sym_integer, + [191567] = 3, ACTIONS(9724), 1, - sym_float, + anon_sym_COLON, + ACTIONS(9726), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191796] = 3, - ACTIONS(9726), 1, - anon_sym_COLON, - ACTIONS(9728), 1, - anon_sym_DASH_GT, + [191578] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191807] = 2, + ACTIONS(9516), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [191587] = 3, + ACTIONS(8116), 1, + anon_sym_LPAREN, + STATE(5230), 1, + sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9730), 2, - anon_sym_type, - anon_sym_object, - [191816] = 2, + [191598] = 3, + ACTIONS(8116), 1, + anon_sym_LPAREN, + STATE(5187), 1, + sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7110), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [191825] = 2, + [191609] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8228), 2, - anon_sym_from, - anon_sym_in, - [191834] = 2, + ACTIONS(9728), 2, + anon_sym_type, + anon_sym_object, + [191618] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3720), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [191843] = 2, + ACTIONS(9730), 2, + sym__newline, + anon_sym_SEMI, + [191627] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6466), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [191852] = 3, - ACTIONS(7996), 1, + ACTIONS(9732), 2, + anon_sym_type, + anon_sym_object, + [191636] = 3, + ACTIONS(8116), 1, anon_sym_LPAREN, - STATE(5369), 1, + STATE(5237), 1, sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191863] = 2, + [191647] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8230), 2, - anon_sym_from, - anon_sym_in, - [191872] = 2, + ACTIONS(9606), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [191656] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9732), 2, - sym__newline, - anon_sym_SEMI, - [191881] = 2, + ACTIONS(9678), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [191665] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5719), 2, + ACTIONS(7474), 2, anon_sym_COMMA, - anon_sym_COLON, - [191890] = 3, + anon_sym_RBRACE, + [191674] = 3, ACTIONS(9734), 1, - anon_sym_COLON, - ACTIONS(9736), 1, - anon_sym_DASH_GT, + anon_sym_LPAREN, + STATE(2624), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191901] = 2, + [191685] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9582), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [191910] = 3, - ACTIONS(9738), 1, - anon_sym_COMMA, - STATE(4223), 1, - aux_sym__patterns_repeat1, + ACTIONS(9736), 2, + anon_sym__, + sym_identifier, + [191694] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191921] = 2, + ACTIONS(9738), 2, + sym__dedent, + anon_sym_case, + [191703] = 3, + ACTIONS(8028), 1, + anon_sym_COLON, + ACTIONS(8030), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9438), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [191930] = 2, + [191714] = 3, + ACTIONS(9740), 1, + anon_sym_LPAREN, + STATE(3094), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9740), 2, - sym__dedent, - anon_sym_case, - [191939] = 2, + [191725] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8250), 2, + ACTIONS(8592), 2, anon_sym_COMMA, + anon_sym_RBRACE, + [191734] = 3, + ACTIONS(9742), 1, anon_sym_COLON, - [191948] = 2, + ACTIONS(9744), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9742), 2, - sym__dedent, - anon_sym_case, - [191957] = 2, + [191745] = 3, + ACTIONS(7809), 1, + anon_sym_RPAREN, + ACTIONS(7839), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [191756] = 3, + ACTIONS(6875), 1, + anon_sym_COLON, + ACTIONS(6877), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5719), 2, + [191767] = 3, + ACTIONS(7839), 1, + anon_sym_LPAREN, + ACTIONS(9746), 1, anon_sym_RPAREN, - anon_sym_COMMA, - [191966] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9744), 2, + [191778] = 3, + ACTIONS(6899), 1, anon_sym_COLON, - anon_sym_DASH_GT, - [191975] = 2, + ACTIONS(6901), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9746), 2, - sym__dedent, - anon_sym_case, - [191984] = 2, + [191789] = 3, + ACTIONS(9748), 1, + anon_sym_COLON, + ACTIONS(9750), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9688), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [191993] = 2, + [191800] = 3, + ACTIONS(9752), 1, + anon_sym_COLON, + ACTIONS(9754), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9748), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [192002] = 2, - ACTIONS(9750), 1, + [191811] = 3, + ACTIONS(8683), 1, + sym__newline, + ACTIONS(9756), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192010] = 2, - ACTIONS(9752), 1, - anon_sym_RBRACE, + [191822] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192018] = 2, - ACTIONS(9754), 1, - anon_sym_RBRACE, + ACTIONS(9758), 2, + anon_sym_type, + anon_sym_object, + [191831] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192026] = 2, - ACTIONS(9756), 1, - anon_sym_RPAREN, + ACTIONS(9760), 2, + anon_sym_import, + anon_sym_cimport, + [191840] = 3, + ACTIONS(8999), 1, + sym__newline, + ACTIONS(9762), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192034] = 2, - ACTIONS(9758), 1, - sym_identifier, + [191851] = 3, + ACTIONS(9764), 1, + sym_integer, + ACTIONS(9766), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192042] = 2, - ACTIONS(9760), 1, - anon_sym_RBRACE, + [191862] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192050] = 2, - ACTIONS(9762), 1, - anon_sym_COLON_EQ, + ACTIONS(9768), 2, + sym__dedent, + anon_sym_case, + [191871] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192058] = 2, - ACTIONS(9764), 1, - anon_sym_COLON, + ACTIONS(9770), 2, + anon_sym_type, + anon_sym_object, + [191880] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192066] = 2, - ACTIONS(9766), 1, + ACTIONS(8296), 2, + anon_sym_from, + anon_sym_in, + [191889] = 3, + ACTIONS(9772), 1, anon_sym_COLON, + ACTIONS(9774), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192074] = 2, - ACTIONS(9768), 1, - anon_sym_GT, + [191900] = 3, + ACTIONS(9776), 1, + sym_integer, + ACTIONS(9778), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192082] = 2, - ACTIONS(9770), 1, - anon_sym_RPAREN, + [191911] = 3, + ACTIONS(8340), 1, + anon_sym_LPAREN, + ACTIONS(9780), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192090] = 2, - ACTIONS(9772), 1, + [191922] = 3, + ACTIONS(9398), 1, anon_sym_COLON, + ACTIONS(9402), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192098] = 2, - ACTIONS(9774), 1, - anon_sym_RBRACK, + [191933] = 3, + ACTIONS(7839), 1, + anon_sym_LPAREN, + ACTIONS(9782), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192106] = 2, - ACTIONS(9776), 1, - sym_identifier, + [191944] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192114] = 2, - ACTIONS(9778), 1, - anon_sym_COLON, + ACTIONS(8298), 2, + anon_sym_from, + anon_sym_in, + [191953] = 3, + ACTIONS(9784), 1, + sym_integer, + ACTIONS(9786), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192122] = 2, - ACTIONS(6311), 1, - anon_sym_RPAREN, + [191964] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192130] = 2, - ACTIONS(9780), 1, - sym_identifier, + ACTIONS(9606), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [191973] = 3, + ACTIONS(7839), 1, + anon_sym_LPAREN, + ACTIONS(7974), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192138] = 2, - ACTIONS(9782), 1, - sym_identifier, + [191984] = 3, + ACTIONS(3826), 1, + anon_sym_RPAREN, + ACTIONS(9788), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192146] = 2, - ACTIONS(9784), 1, - sym_identifier, + [191995] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192154] = 2, - ACTIONS(9786), 1, - anon_sym_RBRACE, + ACTIONS(2315), 2, + sym__newline, + anon_sym_SEMI, + [192004] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192162] = 2, - ACTIONS(9788), 1, - anon_sym_COLON, + ACTIONS(9790), 2, + anon_sym_nogil, + anon_sym_gil, + [192013] = 3, + ACTIONS(9792), 1, + anon_sym_RPAREN, + ACTIONS(9794), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192170] = 2, - ACTIONS(6321), 1, + [192024] = 3, + ACTIONS(7839), 1, + anon_sym_LPAREN, + ACTIONS(8038), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192178] = 2, - ACTIONS(9790), 1, - anon_sym_RBRACE, + [192035] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192186] = 2, - ACTIONS(9792), 1, + ACTIONS(9498), 2, + anon_sym_COMMA, + anon_sym_COLON, + [192044] = 3, + ACTIONS(5357), 1, anon_sym_COLON, + STATE(5181), 1, + sym_memory_view_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192194] = 2, - ACTIONS(9794), 1, - anon_sym_COLON_EQ, + [192055] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192202] = 2, + ACTIONS(8449), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [192064] = 3, ACTIONS(9796), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [192210] = 2, + sym_integer, ACTIONS(9798), 1, - anon_sym_COLON, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192218] = 2, + [192075] = 2, ACTIONS(9800), 1, - sym_identifier, + anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192226] = 2, + [192083] = 2, ACTIONS(9802), 1, - anon_sym_COLON, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192234] = 2, + [192091] = 2, ACTIONS(9804), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [192242] = 2, - ACTIONS(1509), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192250] = 2, + [192099] = 2, ACTIONS(9806), 1, - anon_sym_RPAREN, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192258] = 2, + [192107] = 2, ACTIONS(9808), 1, - sym_identifier, + anon_sym_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192266] = 2, + [192115] = 2, ACTIONS(9810), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192274] = 2, + [192123] = 2, ACTIONS(9812), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [192282] = 2, - ACTIONS(3820), 1, - anon_sym_RPAREN, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192290] = 2, - ACTIONS(7074), 1, - anon_sym_RPAREN, + [192131] = 2, + ACTIONS(8573), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192298] = 2, + [192139] = 2, ACTIONS(9814), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192306] = 2, + [192147] = 2, ACTIONS(9816), 1, - anon_sym_COLON, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [192155] = 2, + ACTIONS(4066), 1, + sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192314] = 2, + [192163] = 2, ACTIONS(9818), 1, - sym_identifier, + anon_sym_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192322] = 2, + [192171] = 2, ACTIONS(9820), 1, - anon_sym_GT, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192330] = 2, + [192179] = 2, ACTIONS(9822), 1, - sym_identifier, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192338] = 2, + [192187] = 2, ACTIONS(9824), 1, - anon_sym_COLON, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [192195] = 2, + ACTIONS(4070), 1, + sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192346] = 2, + [192203] = 2, ACTIONS(9826), 1, - sym_identifier, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192354] = 2, + [192211] = 2, ACTIONS(9828), 1, - sym_identifier, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192362] = 2, + [192219] = 2, ACTIONS(9830), 1, - anon_sym_COLON_EQ, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192370] = 2, + [192227] = 2, ACTIONS(9832), 1, - anon_sym_COLON, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192378] = 2, + [192235] = 2, ACTIONS(9834), 1, - sym_identifier, + anon_sym_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192386] = 2, + [192243] = 2, ACTIONS(9836), 1, - sym_identifier, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192394] = 2, - ACTIONS(9838), 1, - anon_sym_GT, + [192251] = 2, + ACTIONS(6375), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192402] = 2, - ACTIONS(9840), 1, + [192259] = 2, + ACTIONS(9838), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192410] = 2, - ACTIONS(9842), 1, + [192267] = 2, + ACTIONS(7207), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192418] = 2, - ACTIONS(9844), 1, - anon_sym_RPAREN, + [192275] = 2, + ACTIONS(9840), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192426] = 2, - ACTIONS(9846), 1, + [192283] = 2, + ACTIONS(9842), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192434] = 2, - ACTIONS(6298), 1, - anon_sym_RPAREN, + [192291] = 2, + ACTIONS(9844), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192442] = 2, - ACTIONS(9848), 1, + [192299] = 2, + ACTIONS(9846), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192450] = 2, - ACTIONS(9850), 1, - anon_sym_RPAREN, + [192307] = 2, + ACTIONS(9848), 1, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192458] = 2, - ACTIONS(9852), 1, - anon_sym_RBRACE, + [192315] = 2, + ACTIONS(9850), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192466] = 2, - ACTIONS(7650), 1, - anon_sym_LPAREN, + [192323] = 2, + ACTIONS(9852), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192474] = 2, - ACTIONS(6418), 1, - anon_sym_RPAREN, + [192331] = 2, + ACTIONS(5315), 1, + sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192482] = 2, + [192339] = 2, ACTIONS(9854), 1, - anon_sym_EQ, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192490] = 2, + [192347] = 2, ACTIONS(9856), 1, - anon_sym_COLON_EQ, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192498] = 2, + [192355] = 2, ACTIONS(9858), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192506] = 2, + [192363] = 2, ACTIONS(9860), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192514] = 2, + [192371] = 2, ACTIONS(9862), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [192522] = 2, - ACTIONS(9113), 1, - anon_sym_in, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192530] = 2, - ACTIONS(3784), 1, - anon_sym_def, + [192379] = 2, + ACTIONS(6475), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192538] = 2, + [192387] = 2, ACTIONS(9864), 1, - anon_sym_RPAREN, + anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192546] = 2, + [192395] = 2, ACTIONS(9866), 1, - anon_sym_COLON, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192554] = 2, + [192403] = 2, ACTIONS(9868), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192562] = 2, + [192411] = 2, ACTIONS(9870), 1, - anon_sym_COLON, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192570] = 2, + [192419] = 2, ACTIONS(9872), 1, - anon_sym_GT, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192578] = 2, + [192427] = 2, ACTIONS(9874), 1, - sym__indent, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192586] = 2, + [192435] = 2, ACTIONS(9876), 1, - anon_sym_COLON_EQ, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192594] = 2, + [192443] = 2, ACTIONS(9878), 1, - anon_sym_RPAREN, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192602] = 2, + [192451] = 2, ACTIONS(9880), 1, - anon_sym_COLON, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192610] = 2, + [192459] = 2, ACTIONS(9882), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [192618] = 2, - ACTIONS(9125), 1, - anon_sym_in, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [192626] = 2, - ACTIONS(4116), 1, - sym__dedent, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192634] = 2, + [192467] = 2, ACTIONS(9884), 1, - anon_sym_COLON, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192642] = 2, + [192475] = 2, ACTIONS(9886), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [192650] = 2, - ACTIONS(9434), 1, - anon_sym_RPAREN, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192658] = 2, + [192483] = 2, ACTIONS(9888), 1, - anon_sym_RBRACK, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192666] = 2, - ACTIONS(7817), 1, - anon_sym_RBRACK, + [192491] = 2, + ACTIONS(9890), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192674] = 2, - ACTIONS(9890), 1, - anon_sym_RBRACE, + [192499] = 2, + ACTIONS(9892), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192682] = 2, - ACTIONS(9892), 1, - anon_sym_COLON_EQ, + [192507] = 2, + ACTIONS(3836), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192690] = 2, + [192515] = 2, ACTIONS(9894), 1, - anon_sym_COLON, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192698] = 2, + [192523] = 2, ACTIONS(9896), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192706] = 2, + [192531] = 2, ACTIONS(9898), 1, - anon_sym_COLON_EQ, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192714] = 2, + [192539] = 2, ACTIONS(9900), 1, - anon_sym_COLON, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192722] = 2, + [192547] = 2, ACTIONS(9902), 1, - anon_sym_RBRACK, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192730] = 2, - ACTIONS(9904), 1, - sym_identifier, + [192555] = 2, + ACTIONS(7176), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192738] = 2, - ACTIONS(6496), 1, - sym_identifier, + [192563] = 2, + ACTIONS(9904), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192746] = 2, + [192571] = 2, ACTIONS(9906), 1, - anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [192579] = 2, + ACTIONS(7845), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192754] = 2, + [192587] = 2, ACTIONS(9908), 1, - sym__indent, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192762] = 2, + [192595] = 2, ACTIONS(9910), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192770] = 2, + [192603] = 2, ACTIONS(9912), 1, - anon_sym_COLON, + anon_sym_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192778] = 2, + [192611] = 2, ACTIONS(9914), 1, - anon_sym_COLON_EQ, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192786] = 2, + [192619] = 2, ACTIONS(9916), 1, - sym__indent, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [192627] = 2, + ACTIONS(6457), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [192635] = 2, + ACTIONS(9219), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192794] = 2, + [192643] = 2, ACTIONS(9918), 1, - anon_sym_import, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192802] = 2, + [192651] = 2, ACTIONS(9920), 1, - anon_sym_RBRACK, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192810] = 2, + [192659] = 2, ACTIONS(9922), 1, - sym_identifier, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192818] = 2, + [192667] = 2, ACTIONS(9924), 1, - anon_sym_COLON, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192826] = 2, + [192675] = 2, ACTIONS(9926), 1, - anon_sym_RBRACE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192834] = 2, + [192683] = 2, ACTIONS(9928), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [192842] = 2, - ACTIONS(7059), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192850] = 2, + [192691] = 2, ACTIONS(9930), 1, - anon_sym_COLON, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192858] = 2, - ACTIONS(5556), 1, + [192699] = 2, + ACTIONS(6402), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192866] = 2, + [192707] = 2, ACTIONS(9932), 1, - anon_sym_RBRACK, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192874] = 2, + [192715] = 2, ACTIONS(9934), 1, - sym_identifier, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192882] = 2, + [192723] = 2, ACTIONS(9936), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192890] = 2, + [192731] = 2, + ACTIONS(9225), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [192739] = 2, ACTIONS(9938), 1, - anon_sym_COLON, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192898] = 2, + [192747] = 2, ACTIONS(9940), 1, - anon_sym_RBRACE, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192906] = 2, + [192755] = 2, ACTIONS(9942), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192914] = 2, + [192763] = 2, ACTIONS(9944), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192922] = 2, + [192771] = 2, ACTIONS(9946), 1, - anon_sym_COLON_EQ, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [192779] = 2, + ACTIONS(6444), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192930] = 2, + [192787] = 2, ACTIONS(9948), 1, - anon_sym_COLON, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [192795] = 2, + ACTIONS(7215), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192938] = 2, + [192803] = 2, ACTIONS(9950), 1, - ts_builtin_sym_end, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192946] = 2, + [192811] = 2, ACTIONS(9952), 1, - anon_sym_COLON, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192954] = 2, + [192819] = 2, ACTIONS(9954), 1, - anon_sym_RBRACK, + anon_sym_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [192827] = 2, + ACTIONS(6996), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192962] = 2, + [192835] = 2, ACTIONS(9956), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192970] = 2, + [192843] = 2, ACTIONS(9958), 1, - anon_sym_COLON, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192978] = 2, + [192851] = 2, ACTIONS(9960), 1, - anon_sym_RBRACE, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192986] = 2, + [192859] = 2, ACTIONS(9962), 1, - sym_identifier, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192994] = 2, + [192867] = 2, ACTIONS(9964), 1, - anon_sym_GT, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193002] = 2, + [192875] = 2, ACTIONS(9966), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [193010] = 2, - ACTIONS(8260), 1, - anon_sym_LPAREN, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193018] = 2, + [192883] = 2, ACTIONS(9968), 1, - sym_identifier, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193026] = 2, - ACTIONS(7145), 1, + [192891] = 2, + ACTIONS(9970), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193034] = 2, - ACTIONS(9970), 1, + [192899] = 2, + ACTIONS(9972), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193042] = 2, - ACTIONS(7002), 1, - anon_sym_RBRACE, + [192907] = 2, + ACTIONS(9974), 1, + anon_sym_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193050] = 2, - ACTIONS(9972), 1, - sym__indent, + [192915] = 2, + ACTIONS(9976), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193058] = 2, - ACTIONS(6954), 1, - anon_sym_RBRACE, + [192923] = 2, + ACTIONS(6416), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193066] = 2, - ACTIONS(9974), 1, - anon_sym_COLON, + [192931] = 2, + ACTIONS(7498), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193074] = 2, - ACTIONS(9976), 1, - anon_sym_RBRACK, + [192939] = 2, + ACTIONS(9155), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193082] = 2, + [192947] = 2, ACTIONS(9978), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193090] = 2, + [192955] = 2, ACTIONS(9980), 1, - sym__indent, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193098] = 2, + [192963] = 2, ACTIONS(9982), 1, - anon_sym_RPAREN, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193106] = 2, + [192971] = 2, ACTIONS(9984), 1, - anon_sym_COLON_EQ, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193114] = 2, + [192979] = 2, ACTIONS(9986), 1, - anon_sym_RBRACK, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [192987] = 2, + ACTIONS(5317), 1, + sym__dedent, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [192995] = 2, + ACTIONS(7127), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193122] = 2, + [193003] = 2, ACTIONS(9988), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193130] = 2, + [193011] = 2, ACTIONS(9990), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193138] = 2, - ACTIONS(8977), 1, - anon_sym_in, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [193146] = 2, - ACTIONS(7785), 1, - anon_sym_RBRACK, + [193019] = 2, + ACTIONS(3351), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193154] = 2, + [193027] = 2, ACTIONS(9992), 1, - anon_sym_RBRACK, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193162] = 2, + [193035] = 2, ACTIONS(9994), 1, - anon_sym_RBRACE, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193170] = 2, + [193043] = 2, ACTIONS(9996), 1, - anon_sym_RBRACE, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193178] = 2, + [193051] = 2, ACTIONS(9998), 1, - anon_sym_GT, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193186] = 2, + [193059] = 2, ACTIONS(10000), 1, - anon_sym_COLON, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193194] = 2, - ACTIONS(6918), 1, - anon_sym_RBRACE, + [193067] = 2, + ACTIONS(7180), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193202] = 2, + [193075] = 2, ACTIONS(10002), 1, - aux_sym_run_directive_token1, - ACTIONS(5), 2, + sym_identifier, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193210] = 2, - ACTIONS(10004), 1, + [193083] = 2, + ACTIONS(6540), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193218] = 2, - ACTIONS(10006), 1, - anon_sym_COLON, + [193091] = 2, + ACTIONS(10004), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193226] = 2, - ACTIONS(5544), 1, + [193099] = 2, + ACTIONS(10006), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193234] = 2, + [193107] = 2, ACTIONS(10008), 1, - sym_identifier, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193242] = 2, + [193115] = 2, ACTIONS(10010), 1, - sym_identifier, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193250] = 2, - ACTIONS(6341), 1, - anon_sym_RPAREN, + [193123] = 2, + ACTIONS(8340), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193258] = 2, + [193131] = 2, ACTIONS(10012), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193266] = 2, - ACTIONS(6331), 1, + [193139] = 2, + ACTIONS(10014), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193274] = 2, - ACTIONS(10014), 1, - anon_sym_RBRACK, + [193147] = 2, + ACTIONS(7267), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193282] = 2, + [193155] = 2, ACTIONS(10016), 1, - anon_sym_RBRACE, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193290] = 2, + [193163] = 2, ACTIONS(10018), 1, - sym_identifier, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193298] = 2, + [193171] = 2, ACTIONS(10020), 1, - sym_identifier, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193306] = 2, + [193179] = 2, ACTIONS(10022), 1, - anon_sym_RBRACE, + anon_sym_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193314] = 2, + [193187] = 2, ACTIONS(10024), 1, - sym_identifier, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193322] = 2, - ACTIONS(7654), 1, - anon_sym_RBRACK, + [193195] = 2, + ACTIONS(6972), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193330] = 2, + [193203] = 2, ACTIONS(10026), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [193211] = 2, + ACTIONS(10028), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193338] = 2, - ACTIONS(7221), 1, + [193219] = 2, + ACTIONS(10030), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193346] = 2, - ACTIONS(10028), 1, - anon_sym_RBRACK, + [193227] = 2, + ACTIONS(10032), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193354] = 2, - ACTIONS(7161), 1, - anon_sym_COLON, + [193235] = 2, + ACTIONS(9180), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193362] = 2, - ACTIONS(10030), 1, + [193243] = 2, + ACTIONS(10034), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193370] = 2, - ACTIONS(10032), 1, - anon_sym_RBRACE, + [193251] = 2, + ACTIONS(7988), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193378] = 2, - ACTIONS(10034), 1, - anon_sym_STAR, + [193259] = 2, + ACTIONS(10036), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193386] = 2, - ACTIONS(10036), 1, - anon_sym_COLON, + [193267] = 2, + ACTIONS(7301), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193394] = 2, + [193275] = 2, ACTIONS(10038), 1, - sym__indent, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193402] = 2, + [193283] = 2, ACTIONS(10040), 1, - anon_sym_COLON, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193410] = 2, + [193291] = 2, ACTIONS(10042), 1, - anon_sym_COLON_EQ, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193418] = 2, + [193299] = 2, ACTIONS(10044), 1, - anon_sym_RBRACE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193426] = 2, - ACTIONS(6450), 1, - anon_sym_RPAREN, + [193307] = 2, + ACTIONS(10046), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193434] = 2, - ACTIONS(10046), 1, - sym_identifier, + [193315] = 2, + ACTIONS(4068), 1, + sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193442] = 2, + [193323] = 2, ACTIONS(10048), 1, - anon_sym_RBRACE, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193450] = 2, + [193331] = 2, + ACTIONS(5287), 1, + sym__dedent, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [193339] = 2, ACTIONS(10050), 1, - anon_sym_COLON, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193458] = 2, + [193347] = 2, ACTIONS(10052), 1, - anon_sym_RBRACE, + anon_sym_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193466] = 2, + [193355] = 2, ACTIONS(10054), 1, - anon_sym_COLON_EQ, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [193363] = 2, + ACTIONS(1509), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193474] = 2, + [193371] = 2, ACTIONS(10056), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193482] = 2, + [193379] = 2, ACTIONS(10058), 1, - anon_sym_RBRACE, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193490] = 2, + [193387] = 2, ACTIONS(10060), 1, - anon_sym_COLON, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193498] = 2, - ACTIONS(5317), 1, - sym__dedent, + [193395] = 2, + ACTIONS(6432), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193506] = 2, + [193403] = 2, ACTIONS(10062), 1, - sym_identifier, + ts_builtin_sym_end, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193514] = 2, + [193411] = 2, ACTIONS(10064), 1, - anon_sym_RPAREN, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193522] = 2, + [193419] = 2, ACTIONS(10066), 1, - anon_sym_RPAREN, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193530] = 2, + [193427] = 2, ACTIONS(10068), 1, - anon_sym_RPAREN, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193538] = 2, + [193435] = 2, ACTIONS(10070), 1, - sym__newline, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193546] = 2, + [193443] = 2, ACTIONS(10072), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193554] = 2, + [193451] = 2, ACTIONS(10074), 1, - sym_identifier, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193562] = 2, + [193459] = 2, ACTIONS(10076), 1, - sym_identifier, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193570] = 2, + [193467] = 2, ACTIONS(10078), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193578] = 2, - ACTIONS(5283), 1, - sym__dedent, + [193475] = 2, + ACTIONS(10080), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193586] = 2, - ACTIONS(5521), 1, - anon_sym_RPAREN, + [193483] = 2, + ACTIONS(10082), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193594] = 2, - ACTIONS(10080), 1, - sym_identifier, + [193491] = 2, + ACTIONS(7269), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193602] = 2, - ACTIONS(10082), 1, - sym_identifier, + [193499] = 2, + ACTIONS(7849), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193610] = 2, + [193507] = 2, ACTIONS(10084), 1, - anon_sym_EQ, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193618] = 2, + [193515] = 2, ACTIONS(10086), 1, sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193626] = 2, + [193523] = 2, ACTIONS(10088), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193634] = 2, - ACTIONS(9237), 1, - anon_sym_in, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [193642] = 2, + [193531] = 2, ACTIONS(10090), 1, - anon_sym_RBRACE, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193650] = 2, - ACTIONS(7468), 1, - anon_sym_LPAREN, + [193539] = 2, + ACTIONS(8571), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193658] = 2, - ACTIONS(1513), 1, - anon_sym_COLON, + [193547] = 2, + ACTIONS(10092), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193666] = 2, - ACTIONS(10092), 1, - anon_sym_GT, + [193555] = 2, + ACTIONS(8034), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193674] = 2, + [193563] = 2, ACTIONS(10094), 1, - sym_identifier, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193682] = 2, + [193571] = 2, ACTIONS(10096), 1, - anon_sym_COLON, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193690] = 2, + [193579] = 2, ACTIONS(10098), 1, - sym_identifier, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193698] = 2, + [193587] = 2, ACTIONS(10100), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193706] = 2, - ACTIONS(5313), 1, - sym__dedent, + [193595] = 2, + ACTIONS(5517), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193714] = 2, + [193603] = 2, ACTIONS(10102), 1, - sym__indent, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193722] = 2, + [193611] = 2, ACTIONS(10104), 1, - sym__indent, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193730] = 2, + [193619] = 2, ACTIONS(10106), 1, - anon_sym_COLON, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193738] = 2, + [193627] = 2, ACTIONS(10108), 1, - anon_sym_None, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193746] = 2, + [193635] = 2, ACTIONS(10110), 1, - anon_sym_COLON_EQ, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [193643] = 2, + ACTIONS(7223), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193754] = 2, + [193651] = 2, ACTIONS(10112), 1, - sym_identifier, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193762] = 2, + [193659] = 2, ACTIONS(10114), 1, - anon_sym_RBRACK, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193770] = 2, + [193667] = 2, ACTIONS(10116), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193778] = 2, + [193675] = 2, ACTIONS(10118), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193786] = 2, - ACTIONS(7027), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [193794] = 2, + [193683] = 2, ACTIONS(10120), 1, - anon_sym_COLON, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193802] = 2, + [193691] = 2, ACTIONS(10122), 1, - sym__indent, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193810] = 2, + [193699] = 2, ACTIONS(10124), 1, - sym__indent, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193818] = 2, - ACTIONS(10126), 1, - anon_sym_COLON, + [193707] = 2, + ACTIONS(7839), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193826] = 2, - ACTIONS(10128), 1, - anon_sym_COLON_EQ, + [193715] = 2, + ACTIONS(10126), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193834] = 2, - ACTIONS(9024), 1, - anon_sym_in, + [193723] = 2, + ACTIONS(10128), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193842] = 2, + [193731] = 2, ACTIONS(10130), 1, - anon_sym_RBRACK, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193850] = 2, + [193739] = 2, ACTIONS(10132), 1, - anon_sym_COLON, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193858] = 2, + [193747] = 2, ACTIONS(10134), 1, - anon_sym_GT, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193866] = 2, - ACTIONS(7169), 1, - anon_sym_COLON, + [193755] = 2, + ACTIONS(10136), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193874] = 2, - ACTIONS(10136), 1, - anon_sym_RPAREN, + [193763] = 2, + ACTIONS(10138), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193882] = 2, - ACTIONS(6504), 1, + [193771] = 2, + ACTIONS(10140), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193890] = 2, - ACTIONS(3321), 1, + [193779] = 2, + ACTIONS(10142), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193898] = 2, - ACTIONS(10138), 1, + [193787] = 2, + ACTIONS(10144), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [193795] = 2, + ACTIONS(10146), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193906] = 2, - ACTIONS(10140), 1, - sym__indent, + [193803] = 2, + ACTIONS(10148), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193914] = 2, - ACTIONS(10142), 1, + [193811] = 2, + ACTIONS(10150), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193922] = 2, - ACTIONS(7217), 1, + [193819] = 2, + ACTIONS(10152), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [193827] = 2, + ACTIONS(10154), 1, + sym__indent, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [193835] = 2, + ACTIONS(10156), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [193843] = 2, + ACTIONS(10158), 1, + sym__indent, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [193851] = 2, + ACTIONS(10160), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193930] = 2, - ACTIONS(10144), 1, + [193859] = 2, + ACTIONS(10162), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [193867] = 2, + ACTIONS(10164), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [193875] = 2, + ACTIONS(10166), 1, + anon_sym_None, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [193883] = 2, + ACTIONS(10168), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193938] = 2, - ACTIONS(10146), 1, + [193891] = 2, + ACTIONS(10170), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193946] = 2, - ACTIONS(8971), 1, - anon_sym_LPAREN, + [193899] = 2, + ACTIONS(10172), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193954] = 2, - ACTIONS(7086), 1, - anon_sym_RBRACE, + [193907] = 2, + ACTIONS(10174), 1, + anon_sym_None, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193962] = 2, - ACTIONS(10148), 1, - anon_sym_COLON, + [193915] = 2, + ACTIONS(10176), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193970] = 2, - ACTIONS(10150), 1, - sym_identifier, + [193923] = 2, + ACTIONS(10178), 1, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193978] = 2, - ACTIONS(10152), 1, + [193931] = 2, + ACTIONS(10180), 1, + sym__indent, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [193939] = 2, + ACTIONS(10182), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [193947] = 2, + ACTIONS(9141), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [193955] = 2, + ACTIONS(10184), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [193963] = 2, + ACTIONS(7328), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193986] = 2, - ACTIONS(10154), 1, + [193971] = 2, + ACTIONS(10186), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193994] = 2, - ACTIONS(5754), 1, + [193979] = 2, + ACTIONS(10188), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194002] = 2, - ACTIONS(10156), 1, + [193987] = 2, + ACTIONS(7275), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194010] = 2, - ACTIONS(10158), 1, + [193995] = 2, + ACTIONS(10190), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194018] = 2, - ACTIONS(10160), 1, - anon_sym_COLON, + [194003] = 2, + ACTIONS(10192), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194026] = 2, - ACTIONS(4114), 1, - sym__dedent, + [194011] = 2, + ACTIONS(10194), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194034] = 2, - ACTIONS(10162), 1, + [194019] = 2, + ACTIONS(3772), 1, + anon_sym_def, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [194027] = 2, + ACTIONS(10196), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [194035] = 2, + ACTIONS(10198), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194042] = 2, - ACTIONS(10164), 1, - anon_sym_None, + [194043] = 2, + ACTIONS(10200), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194050] = 2, - ACTIONS(10166), 1, - anon_sym_RPAREN, + [194051] = 2, + ACTIONS(10202), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194058] = 2, - ACTIONS(10168), 1, + [194059] = 2, + ACTIONS(10204), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194066] = 2, - ACTIONS(7300), 1, - anon_sym_COLON, + [194067] = 2, + ACTIONS(10206), 1, + anon_sym_None, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194074] = 2, - ACTIONS(7114), 1, + [194075] = 2, + ACTIONS(5568), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194082] = 2, - ACTIONS(10170), 1, + [194083] = 2, + ACTIONS(10208), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [194091] = 2, + ACTIONS(10210), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194090] = 2, - ACTIONS(10172), 1, + [194099] = 2, + ACTIONS(10212), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [194107] = 2, + ACTIONS(10214), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194098] = 2, - ACTIONS(10174), 1, + [194115] = 2, + ACTIONS(10216), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194106] = 2, - ACTIONS(10176), 1, + [194123] = 2, + ACTIONS(10218), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [194131] = 2, + ACTIONS(10220), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [194139] = 2, + ACTIONS(10222), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [194147] = 2, + ACTIONS(10224), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [194155] = 2, + ACTIONS(10226), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [194163] = 2, + ACTIONS(10228), 1, + anon_sym_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [194171] = 2, + ACTIONS(10230), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [194179] = 2, + ACTIONS(10232), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194114] = 2, - ACTIONS(6349), 1, + [194187] = 2, + ACTIONS(10234), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194122] = 2, - ACTIONS(10178), 1, - sym__indent, + [194195] = 2, + ACTIONS(10236), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194130] = 2, - ACTIONS(4082), 1, - sym__dedent, + [194203] = 2, + ACTIONS(10238), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194138] = 2, - ACTIONS(10180), 1, - anon_sym_RBRACE, + [194211] = 2, + ACTIONS(10240), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194146] = 2, - ACTIONS(10182), 1, - anon_sym_RBRACE, + [194219] = 2, + ACTIONS(10242), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194154] = 2, - ACTIONS(10184), 1, + [194227] = 2, + ACTIONS(10244), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [194235] = 2, + ACTIONS(10246), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [194243] = 2, + ACTIONS(10248), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194162] = 2, - ACTIONS(10186), 1, - anon_sym_COLON_EQ, + [194251] = 2, + ACTIONS(10250), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194170] = 2, - ACTIONS(10188), 1, + [194259] = 2, + ACTIONS(1513), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194178] = 2, - ACTIONS(10190), 1, - anon_sym_GT, + [194267] = 2, + ACTIONS(7245), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194186] = 2, - ACTIONS(10192), 1, + [194275] = 2, + ACTIONS(10252), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194194] = 2, - ACTIONS(10194), 1, + [194283] = 2, + ACTIONS(10254), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [194291] = 2, + ACTIONS(10256), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194202] = 2, - ACTIONS(10196), 1, + [194299] = 2, + ACTIONS(10258), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [194307] = 2, + ACTIONS(10260), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [194315] = 2, + ACTIONS(10262), 1, + aux_sym_run_directive_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + [194323] = 2, + ACTIONS(7129), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194210] = 2, - ACTIONS(10198), 1, + [194331] = 2, + ACTIONS(10264), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194218] = 2, - ACTIONS(10200), 1, + [194339] = 2, + ACTIONS(10266), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194226] = 2, - ACTIONS(10202), 1, - sym_identifier, + [194347] = 2, + ACTIONS(10268), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194234] = 2, - ACTIONS(10204), 1, + [194355] = 2, + ACTIONS(10270), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194242] = 2, - ACTIONS(6982), 1, - anon_sym_RBRACE, + [194363] = 2, + ACTIONS(10272), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194250] = 2, - ACTIONS(10206), 1, + [194371] = 2, + ACTIONS(10274), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194258] = 2, - ACTIONS(6964), 1, - anon_sym_RPAREN, + [194379] = 2, + ACTIONS(10276), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194266] = 2, - ACTIONS(9176), 1, - anon_sym_LPAREN, + [194387] = 2, + ACTIONS(10278), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194274] = 2, - ACTIONS(9032), 1, - anon_sym_in, + [194395] = 2, + ACTIONS(10280), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194282] = 2, - ACTIONS(7298), 1, - anon_sym_COLON, + [194403] = 2, + ACTIONS(10282), 1, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194290] = 2, - ACTIONS(10208), 1, + [194411] = 2, + ACTIONS(10284), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194298] = 2, - ACTIONS(10210), 1, - anon_sym_LPAREN, + [194419] = 2, + ACTIONS(10286), 1, + anon_sym_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194306] = 2, - ACTIONS(10212), 1, - anon_sym_for, + [194427] = 2, + ACTIONS(10288), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194314] = 2, - ACTIONS(10214), 1, - anon_sym_COLON, + [194435] = 2, + ACTIONS(10290), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194322] = 2, - ACTIONS(10216), 1, - anon_sym_RPAREN, + [194443] = 2, + ACTIONS(10292), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194330] = 2, - ACTIONS(10218), 1, - anon_sym_RBRACK, + [194451] = 2, + ACTIONS(10294), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194338] = 2, - ACTIONS(10220), 1, - anon_sym_COLON, + [194459] = 2, + ACTIONS(10296), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194346] = 2, - ACTIONS(7171), 1, - anon_sym_COLON, + [194467] = 2, + ACTIONS(10298), 1, + anon_sym_None, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194354] = 2, - ACTIONS(10222), 1, + [194475] = 2, + ACTIONS(10300), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194362] = 2, - ACTIONS(10224), 1, - anon_sym_RBRACK, + [194483] = 2, + ACTIONS(10302), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194370] = 2, - ACTIONS(10226), 1, + [194491] = 2, + ACTIONS(10304), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194378] = 2, - ACTIONS(10228), 1, + [194499] = 2, + ACTIONS(10306), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194386] = 2, - ACTIONS(10230), 1, + [194507] = 2, + ACTIONS(10308), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194394] = 2, - ACTIONS(10232), 1, + [194515] = 2, + ACTIONS(10310), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194402] = 2, - ACTIONS(10234), 1, - anon_sym_RPAREN, + [194523] = 2, + ACTIONS(7354), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194410] = 2, - ACTIONS(10236), 1, + [194531] = 2, + ACTIONS(10312), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194418] = 2, - ACTIONS(10238), 1, + [194539] = 2, + ACTIONS(10314), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194426] = 2, - ACTIONS(10240), 1, - anon_sym_COLON, + [194547] = 2, + ACTIONS(10316), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194434] = 2, - ACTIONS(10242), 1, + [194555] = 2, + ACTIONS(10318), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194442] = 2, - ACTIONS(10244), 1, + [194563] = 2, + ACTIONS(10320), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194450] = 2, - ACTIONS(10246), 1, - anon_sym_RBRACE, + [194571] = 2, + ACTIONS(9153), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194458] = 2, - ACTIONS(10248), 1, - anon_sym_COLON_EQ, + [194579] = 2, + ACTIONS(10322), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194466] = 2, - ACTIONS(10250), 1, - sym_identifier, + [194587] = 2, + ACTIONS(7277), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194474] = 2, - ACTIONS(10252), 1, + [194595] = 2, + ACTIONS(10324), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194482] = 2, - ACTIONS(10254), 1, - anon_sym_RPAREN, + [194603] = 2, + ACTIONS(10326), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194490] = 2, - ACTIONS(10256), 1, + [194611] = 2, + ACTIONS(10328), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194498] = 2, - ACTIONS(10258), 1, - anon_sym_RBRACK, + [194619] = 2, + ACTIONS(10330), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194506] = 2, - ACTIONS(10260), 1, - anon_sym_RPAREN, + [194627] = 2, + ACTIONS(10332), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194514] = 2, - ACTIONS(10262), 1, - anon_sym_COLON, + [194635] = 2, + ACTIONS(10334), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194522] = 2, - ACTIONS(10264), 1, + [194643] = 2, + ACTIONS(10336), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194530] = 2, + [194651] = 2, ACTIONS(3762), 1, anon_sym_def, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194538] = 2, - ACTIONS(10266), 1, + [194659] = 2, + ACTIONS(10338), 1, anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194546] = 2, - ACTIONS(10268), 1, - anon_sym_RBRACE, + [194667] = 2, + ACTIONS(10340), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194554] = 2, - ACTIONS(10270), 1, - anon_sym_COLON, + [194675] = 2, + ACTIONS(10342), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194562] = 2, - ACTIONS(10272), 1, - sym_identifier, + [194683] = 2, + ACTIONS(10344), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194570] = 2, - ACTIONS(10274), 1, - anon_sym_COLON, + [194691] = 2, + ACTIONS(10346), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194578] = 2, - ACTIONS(10276), 1, + [194699] = 2, + ACTIONS(10348), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194586] = 2, - ACTIONS(10278), 1, + [194707] = 2, + ACTIONS(10350), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194594] = 2, - ACTIONS(10280), 1, - sym_identifier, + [194715] = 2, + ACTIONS(5612), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194602] = 2, - ACTIONS(7102), 1, + [194723] = 2, + ACTIONS(10352), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194610] = 2, - ACTIONS(10282), 1, + [194731] = 2, + ACTIONS(7052), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194618] = 2, - ACTIONS(10284), 1, + [194739] = 2, + ACTIONS(10354), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194626] = 2, - ACTIONS(10286), 1, + [194747] = 2, + ACTIONS(10356), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194634] = 2, - ACTIONS(10288), 1, - anon_sym_GT, + [194755] = 2, + ACTIONS(9792), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194642] = 2, - ACTIONS(7714), 1, - anon_sym_RBRACK, + [194763] = 2, + ACTIONS(10358), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194650] = 2, - ACTIONS(10290), 1, - anon_sym_RPAREN, + [194771] = 2, + ACTIONS(10360), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194658] = 2, - ACTIONS(10292), 1, - sym_identifier, + [194779] = 2, + ACTIONS(10362), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194666] = 2, - ACTIONS(10294), 1, - anon_sym_in, + [194787] = 2, + ACTIONS(7913), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194674] = 2, - ACTIONS(10296), 1, + [194795] = 2, + ACTIONS(5827), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194682] = 2, - ACTIONS(10298), 1, - anon_sym_RPAREN, + [194803] = 2, + ACTIONS(10364), 1, + anon_sym_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194690] = 2, - ACTIONS(10300), 1, - anon_sym_RBRACE, + [194811] = 2, + ACTIONS(10366), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194698] = 2, - ACTIONS(10302), 1, + [194819] = 2, + ACTIONS(10368), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194706] = 2, - ACTIONS(10304), 1, - anon_sym_for, + [194827] = 2, + ACTIONS(10370), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194714] = 2, - ACTIONS(10306), 1, - anon_sym_None, + [194835] = 2, + ACTIONS(6329), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194722] = 2, - ACTIONS(10308), 1, - anon_sym_None, + [194843] = 2, + ACTIONS(7146), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194730] = 2, - ACTIONS(10310), 1, + [194851] = 2, + ACTIONS(10372), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194738] = 2, - ACTIONS(10312), 1, + [194859] = 2, + ACTIONS(10374), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194746] = 2, - ACTIONS(10314), 1, - anon_sym_RBRACK, + [194867] = 2, + ACTIONS(10376), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194754] = 2, - ACTIONS(10316), 1, - sym_identifier, + [194875] = 2, + ACTIONS(10378), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194762] = 2, - ACTIONS(7749), 1, - anon_sym_LPAREN, + [194883] = 2, + ACTIONS(6538), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(1054)] = 0, - [SMALL_STATE(1055)] = 119, - [SMALL_STATE(1056)] = 194, - [SMALL_STATE(1057)] = 269, - [SMALL_STATE(1058)] = 344, - [SMALL_STATE(1059)] = 419, - [SMALL_STATE(1060)] = 494, - [SMALL_STATE(1061)] = 567, - [SMALL_STATE(1062)] = 642, - [SMALL_STATE(1063)] = 715, - [SMALL_STATE(1064)] = 790, - [SMALL_STATE(1065)] = 909, - [SMALL_STATE(1066)] = 984, - [SMALL_STATE(1067)] = 1103, - [SMALL_STATE(1068)] = 1178, - [SMALL_STATE(1069)] = 1299, - [SMALL_STATE(1070)] = 1370, - [SMALL_STATE(1071)] = 1443, - [SMALL_STATE(1072)] = 1514, - [SMALL_STATE(1073)] = 1633, - [SMALL_STATE(1074)] = 1754, - [SMALL_STATE(1075)] = 1873, - [SMALL_STATE(1076)] = 1944, - [SMALL_STATE(1077)] = 2019, - [SMALL_STATE(1078)] = 2138, - [SMALL_STATE(1079)] = 2259, - [SMALL_STATE(1080)] = 2334, - [SMALL_STATE(1081)] = 2409, - [SMALL_STATE(1082)] = 2480, - [SMALL_STATE(1083)] = 2553, - [SMALL_STATE(1084)] = 2672, - [SMALL_STATE(1085)] = 2747, - [SMALL_STATE(1086)] = 2868, - [SMALL_STATE(1087)] = 2941, - [SMALL_STATE(1088)] = 3016, - [SMALL_STATE(1089)] = 3135, - [SMALL_STATE(1090)] = 3206, - [SMALL_STATE(1091)] = 3281, - [SMALL_STATE(1092)] = 3352, - [SMALL_STATE(1093)] = 3473, - [SMALL_STATE(1094)] = 3592, - [SMALL_STATE(1095)] = 3667, - [SMALL_STATE(1096)] = 3786, - [SMALL_STATE(1097)] = 3861, - [SMALL_STATE(1098)] = 3936, - [SMALL_STATE(1099)] = 4009, - [SMALL_STATE(1100)] = 4084, - [SMALL_STATE(1101)] = 4203, - [SMALL_STATE(1102)] = 4322, - [SMALL_STATE(1103)] = 4441, - [SMALL_STATE(1104)] = 4516, - [SMALL_STATE(1105)] = 4591, - [SMALL_STATE(1106)] = 4710, - [SMALL_STATE(1107)] = 4819, - [SMALL_STATE(1108)] = 4938, - [SMALL_STATE(1109)] = 5057, - [SMALL_STATE(1110)] = 5176, - [SMALL_STATE(1111)] = 5295, - [SMALL_STATE(1112)] = 5366, - [SMALL_STATE(1113)] = 5441, - [SMALL_STATE(1114)] = 5560, - [SMALL_STATE(1115)] = 5679, - [SMALL_STATE(1116)] = 5798, - [SMALL_STATE(1117)] = 5919, - [SMALL_STATE(1118)] = 5992, - [SMALL_STATE(1119)] = 6111, - [SMALL_STATE(1120)] = 6230, - [SMALL_STATE(1121)] = 6351, - [SMALL_STATE(1122)] = 6472, - [SMALL_STATE(1123)] = 6583, - [SMALL_STATE(1124)] = 6704, - [SMALL_STATE(1125)] = 6779, - [SMALL_STATE(1126)] = 6900, - [SMALL_STATE(1127)] = 7021, - [SMALL_STATE(1128)] = 7142, - [SMALL_STATE(1129)] = 7263, - [SMALL_STATE(1130)] = 7384, - [SMALL_STATE(1131)] = 7505, - [SMALL_STATE(1132)] = 7626, - [SMALL_STATE(1133)] = 7747, - [SMALL_STATE(1134)] = 7868, - [SMALL_STATE(1135)] = 7987, - [SMALL_STATE(1136)] = 8108, - [SMALL_STATE(1137)] = 8227, - [SMALL_STATE(1138)] = 8348, - [SMALL_STATE(1139)] = 8457, - [SMALL_STATE(1140)] = 8532, - [SMALL_STATE(1141)] = 8653, - [SMALL_STATE(1142)] = 8726, - [SMALL_STATE(1143)] = 8845, - [SMALL_STATE(1144)] = 8964, - [SMALL_STATE(1145)] = 9083, - [SMALL_STATE(1146)] = 9202, - [SMALL_STATE(1147)] = 9321, - [SMALL_STATE(1148)] = 9440, - [SMALL_STATE(1149)] = 9559, - [SMALL_STATE(1150)] = 9630, - [SMALL_STATE(1151)] = 9741, - [SMALL_STATE(1152)] = 9859, - [SMALL_STATE(1153)] = 9929, - [SMALL_STATE(1154)] = 9999, - [SMALL_STATE(1155)] = 10069, - [SMALL_STATE(1156)] = 10139, - [SMALL_STATE(1157)] = 10209, - [SMALL_STATE(1158)] = 10279, - [SMALL_STATE(1159)] = 10349, - [SMALL_STATE(1160)] = 10419, - [SMALL_STATE(1161)] = 10489, - [SMALL_STATE(1162)] = 10559, - [SMALL_STATE(1163)] = 10629, - [SMALL_STATE(1164)] = 10699, - [SMALL_STATE(1165)] = 10769, - [SMALL_STATE(1166)] = 10839, - [SMALL_STATE(1167)] = 10909, - [SMALL_STATE(1168)] = 10979, - [SMALL_STATE(1169)] = 11049, - [SMALL_STATE(1170)] = 11119, - [SMALL_STATE(1171)] = 11189, - [SMALL_STATE(1172)] = 11259, - [SMALL_STATE(1173)] = 11377, - [SMALL_STATE(1174)] = 11447, - [SMALL_STATE(1175)] = 11517, - [SMALL_STATE(1176)] = 11587, - [SMALL_STATE(1177)] = 11657, - [SMALL_STATE(1178)] = 11727, - [SMALL_STATE(1179)] = 11797, - [SMALL_STATE(1180)] = 11867, - [SMALL_STATE(1181)] = 11985, - [SMALL_STATE(1182)] = 12103, - [SMALL_STATE(1183)] = 12173, - [SMALL_STATE(1184)] = 12243, - [SMALL_STATE(1185)] = 12313, - [SMALL_STATE(1186)] = 12383, - [SMALL_STATE(1187)] = 12453, - [SMALL_STATE(1188)] = 12523, - [SMALL_STATE(1189)] = 12593, - [SMALL_STATE(1190)] = 12663, - [SMALL_STATE(1191)] = 12733, - [SMALL_STATE(1192)] = 12803, - [SMALL_STATE(1193)] = 12873, - [SMALL_STATE(1194)] = 12943, - [SMALL_STATE(1195)] = 13061, - [SMALL_STATE(1196)] = 13131, - [SMALL_STATE(1197)] = 13201, - [SMALL_STATE(1198)] = 13271, - [SMALL_STATE(1199)] = 13341, - [SMALL_STATE(1200)] = 13459, - [SMALL_STATE(1201)] = 13529, - [SMALL_STATE(1202)] = 13599, - [SMALL_STATE(1203)] = 13669, - [SMALL_STATE(1204)] = 13739, - [SMALL_STATE(1205)] = 13809, - [SMALL_STATE(1206)] = 13879, - [SMALL_STATE(1207)] = 13949, - [SMALL_STATE(1208)] = 14019, - [SMALL_STATE(1209)] = 14089, - [SMALL_STATE(1210)] = 14159, - [SMALL_STATE(1211)] = 14229, - [SMALL_STATE(1212)] = 14299, - [SMALL_STATE(1213)] = 14369, - [SMALL_STATE(1214)] = 14439, - [SMALL_STATE(1215)] = 14509, - [SMALL_STATE(1216)] = 14579, - [SMALL_STATE(1217)] = 14649, - [SMALL_STATE(1218)] = 14719, - [SMALL_STATE(1219)] = 14789, - [SMALL_STATE(1220)] = 14859, - [SMALL_STATE(1221)] = 14929, - [SMALL_STATE(1222)] = 14999, - [SMALL_STATE(1223)] = 15069, - [SMALL_STATE(1224)] = 15139, - [SMALL_STATE(1225)] = 15209, - [SMALL_STATE(1226)] = 15279, - [SMALL_STATE(1227)] = 15349, - [SMALL_STATE(1228)] = 15419, - [SMALL_STATE(1229)] = 15489, - [SMALL_STATE(1230)] = 15559, - [SMALL_STATE(1231)] = 15629, - [SMALL_STATE(1232)] = 15747, - [SMALL_STATE(1233)] = 15817, - [SMALL_STATE(1234)] = 15887, - [SMALL_STATE(1235)] = 15957, - [SMALL_STATE(1236)] = 16027, - [SMALL_STATE(1237)] = 16097, - [SMALL_STATE(1238)] = 16167, - [SMALL_STATE(1239)] = 16237, - [SMALL_STATE(1240)] = 16309, - [SMALL_STATE(1241)] = 16379, - [SMALL_STATE(1242)] = 16449, - [SMALL_STATE(1243)] = 16519, - [SMALL_STATE(1244)] = 16589, - [SMALL_STATE(1245)] = 16659, - [SMALL_STATE(1246)] = 16729, - [SMALL_STATE(1247)] = 16799, - [SMALL_STATE(1248)] = 16909, - [SMALL_STATE(1249)] = 16979, - [SMALL_STATE(1250)] = 17049, - [SMALL_STATE(1251)] = 17119, - [SMALL_STATE(1252)] = 17189, - [SMALL_STATE(1253)] = 17259, - [SMALL_STATE(1254)] = 17329, - [SMALL_STATE(1255)] = 17439, - [SMALL_STATE(1256)] = 17509, - [SMALL_STATE(1257)] = 17579, - [SMALL_STATE(1258)] = 17649, - [SMALL_STATE(1259)] = 17719, - [SMALL_STATE(1260)] = 17789, - [SMALL_STATE(1261)] = 17859, - [SMALL_STATE(1262)] = 17929, - [SMALL_STATE(1263)] = 17999, - [SMALL_STATE(1264)] = 18069, - [SMALL_STATE(1265)] = 18139, - [SMALL_STATE(1266)] = 18209, - [SMALL_STATE(1267)] = 18281, - [SMALL_STATE(1268)] = 18351, - [SMALL_STATE(1269)] = 18421, - [SMALL_STATE(1270)] = 18491, - [SMALL_STATE(1271)] = 18561, - [SMALL_STATE(1272)] = 18631, - [SMALL_STATE(1273)] = 18749, - [SMALL_STATE(1274)] = 18819, - [SMALL_STATE(1275)] = 18889, - [SMALL_STATE(1276)] = 18959, - [SMALL_STATE(1277)] = 19077, - [SMALL_STATE(1278)] = 19147, - [SMALL_STATE(1279)] = 19217, - [SMALL_STATE(1280)] = 19287, - [SMALL_STATE(1281)] = 19357, - [SMALL_STATE(1282)] = 19427, - [SMALL_STATE(1283)] = 19497, - [SMALL_STATE(1284)] = 19567, - [SMALL_STATE(1285)] = 19637, - [SMALL_STATE(1286)] = 19757, - [SMALL_STATE(1287)] = 19827, - [SMALL_STATE(1288)] = 19897, - [SMALL_STATE(1289)] = 19967, - [SMALL_STATE(1290)] = 20037, - [SMALL_STATE(1291)] = 20107, - [SMALL_STATE(1292)] = 20177, - [SMALL_STATE(1293)] = 20247, - [SMALL_STATE(1294)] = 20317, - [SMALL_STATE(1295)] = 20387, - [SMALL_STATE(1296)] = 20457, - [SMALL_STATE(1297)] = 20527, - [SMALL_STATE(1298)] = 20597, - [SMALL_STATE(1299)] = 20667, - [SMALL_STATE(1300)] = 20737, - [SMALL_STATE(1301)] = 20807, - [SMALL_STATE(1302)] = 20877, - [SMALL_STATE(1303)] = 20947, - [SMALL_STATE(1304)] = 21017, - [SMALL_STATE(1305)] = 21087, - [SMALL_STATE(1306)] = 21157, - [SMALL_STATE(1307)] = 21227, - [SMALL_STATE(1308)] = 21297, - [SMALL_STATE(1309)] = 21367, - [SMALL_STATE(1310)] = 21437, - [SMALL_STATE(1311)] = 21507, - [SMALL_STATE(1312)] = 21577, - [SMALL_STATE(1313)] = 21647, - [SMALL_STATE(1314)] = 21717, - [SMALL_STATE(1315)] = 21787, - [SMALL_STATE(1316)] = 21857, - [SMALL_STATE(1317)] = 21927, - [SMALL_STATE(1318)] = 21997, - [SMALL_STATE(1319)] = 22067, - [SMALL_STATE(1320)] = 22137, - [SMALL_STATE(1321)] = 22207, - [SMALL_STATE(1322)] = 22277, - [SMALL_STATE(1323)] = 22347, - [SMALL_STATE(1324)] = 22417, - [SMALL_STATE(1325)] = 22487, - [SMALL_STATE(1326)] = 22557, - [SMALL_STATE(1327)] = 22627, - [SMALL_STATE(1328)] = 22697, - [SMALL_STATE(1329)] = 22767, - [SMALL_STATE(1330)] = 22885, - [SMALL_STATE(1331)] = 22955, - [SMALL_STATE(1332)] = 23025, - [SMALL_STATE(1333)] = 23143, - [SMALL_STATE(1334)] = 23213, - [SMALL_STATE(1335)] = 23283, - [SMALL_STATE(1336)] = 23353, - [SMALL_STATE(1337)] = 23471, - [SMALL_STATE(1338)] = 23541, - [SMALL_STATE(1339)] = 23611, - [SMALL_STATE(1340)] = 23681, - [SMALL_STATE(1341)] = 23751, - [SMALL_STATE(1342)] = 23821, - [SMALL_STATE(1343)] = 23891, - [SMALL_STATE(1344)] = 23961, - [SMALL_STATE(1345)] = 24031, - [SMALL_STATE(1346)] = 24101, - [SMALL_STATE(1347)] = 24171, - [SMALL_STATE(1348)] = 24241, - [SMALL_STATE(1349)] = 24311, - [SMALL_STATE(1350)] = 24381, - [SMALL_STATE(1351)] = 24451, - [SMALL_STATE(1352)] = 24521, - [SMALL_STATE(1353)] = 24591, - [SMALL_STATE(1354)] = 24709, - [SMALL_STATE(1355)] = 24779, - [SMALL_STATE(1356)] = 24849, - [SMALL_STATE(1357)] = 24967, - [SMALL_STATE(1358)] = 25037, - [SMALL_STATE(1359)] = 25107, - [SMALL_STATE(1360)] = 25177, - [SMALL_STATE(1361)] = 25247, - [SMALL_STATE(1362)] = 25317, - [SMALL_STATE(1363)] = 25387, - [SMALL_STATE(1364)] = 25457, - [SMALL_STATE(1365)] = 25527, - [SMALL_STATE(1366)] = 25597, - [SMALL_STATE(1367)] = 25667, - [SMALL_STATE(1368)] = 25737, - [SMALL_STATE(1369)] = 25807, - [SMALL_STATE(1370)] = 25877, - [SMALL_STATE(1371)] = 25947, - [SMALL_STATE(1372)] = 26017, - [SMALL_STATE(1373)] = 26087, - [SMALL_STATE(1374)] = 26157, - [SMALL_STATE(1375)] = 26275, - [SMALL_STATE(1376)] = 26344, - [SMALL_STATE(1377)] = 26459, - [SMALL_STATE(1378)] = 26574, - [SMALL_STATE(1379)] = 26643, - [SMALL_STATE(1380)] = 26712, - [SMALL_STATE(1381)] = 26781, - [SMALL_STATE(1382)] = 26850, - [SMALL_STATE(1383)] = 26965, - [SMALL_STATE(1384)] = 27034, - [SMALL_STATE(1385)] = 27103, - [SMALL_STATE(1386)] = 27218, - [SMALL_STATE(1387)] = 27333, - [SMALL_STATE(1388)] = 27448, - [SMALL_STATE(1389)] = 27563, - [SMALL_STATE(1390)] = 27632, - [SMALL_STATE(1391)] = 27701, - [SMALL_STATE(1392)] = 27816, - [SMALL_STATE(1393)] = 27931, - [SMALL_STATE(1394)] = 28046, - [SMALL_STATE(1395)] = 28115, - [SMALL_STATE(1396)] = 28184, - [SMALL_STATE(1397)] = 28253, - [SMALL_STATE(1398)] = 28322, - [SMALL_STATE(1399)] = 28391, - [SMALL_STATE(1400)] = 28460, - [SMALL_STATE(1401)] = 28529, - [SMALL_STATE(1402)] = 28598, - [SMALL_STATE(1403)] = 28667, - [SMALL_STATE(1404)] = 28736, - [SMALL_STATE(1405)] = 28805, - [SMALL_STATE(1406)] = 28874, - [SMALL_STATE(1407)] = 28943, - [SMALL_STATE(1408)] = 29012, - [SMALL_STATE(1409)] = 29081, - [SMALL_STATE(1410)] = 29150, - [SMALL_STATE(1411)] = 29219, - [SMALL_STATE(1412)] = 29288, - [SMALL_STATE(1413)] = 29357, - [SMALL_STATE(1414)] = 29472, - [SMALL_STATE(1415)] = 29587, - [SMALL_STATE(1416)] = 29656, - [SMALL_STATE(1417)] = 29725, - [SMALL_STATE(1418)] = 29840, - [SMALL_STATE(1419)] = 29955, - [SMALL_STATE(1420)] = 30070, - [SMALL_STATE(1421)] = 30185, - [SMALL_STATE(1422)] = 30300, - [SMALL_STATE(1423)] = 30415, - [SMALL_STATE(1424)] = 30530, - [SMALL_STATE(1425)] = 30645, - [SMALL_STATE(1426)] = 30760, - [SMALL_STATE(1427)] = 30875, - [SMALL_STATE(1428)] = 30944, - [SMALL_STATE(1429)] = 31059, - [SMALL_STATE(1430)] = 31168, - [SMALL_STATE(1431)] = 31283, - [SMALL_STATE(1432)] = 31352, - [SMALL_STATE(1433)] = 31467, - [SMALL_STATE(1434)] = 31582, - [SMALL_STATE(1435)] = 31697, - [SMALL_STATE(1436)] = 31766, - [SMALL_STATE(1437)] = 31881, - [SMALL_STATE(1438)] = 31996, - [SMALL_STATE(1439)] = 32111, - [SMALL_STATE(1440)] = 32226, - [SMALL_STATE(1441)] = 32341, - [SMALL_STATE(1442)] = 32456, - [SMALL_STATE(1443)] = 32571, - [SMALL_STATE(1444)] = 32686, - [SMALL_STATE(1445)] = 32801, - [SMALL_STATE(1446)] = 32870, - [SMALL_STATE(1447)] = 32939, - [SMALL_STATE(1448)] = 33054, - [SMALL_STATE(1449)] = 33123, - [SMALL_STATE(1450)] = 33192, - [SMALL_STATE(1451)] = 33261, - [SMALL_STATE(1452)] = 33330, - [SMALL_STATE(1453)] = 33399, - [SMALL_STATE(1454)] = 33514, - [SMALL_STATE(1455)] = 33629, - [SMALL_STATE(1456)] = 33744, - [SMALL_STATE(1457)] = 33859, - [SMALL_STATE(1458)] = 33928, - [SMALL_STATE(1459)] = 34043, - [SMALL_STATE(1460)] = 34158, - [SMALL_STATE(1461)] = 34273, - [SMALL_STATE(1462)] = 34388, - [SMALL_STATE(1463)] = 34503, - [SMALL_STATE(1464)] = 34618, - [SMALL_STATE(1465)] = 34733, - [SMALL_STATE(1466)] = 34848, - [SMALL_STATE(1467)] = 34963, - [SMALL_STATE(1468)] = 35032, - [SMALL_STATE(1469)] = 35147, - [SMALL_STATE(1470)] = 35262, - [SMALL_STATE(1471)] = 35377, - [SMALL_STATE(1472)] = 35492, - [SMALL_STATE(1473)] = 35607, - [SMALL_STATE(1474)] = 35722, - [SMALL_STATE(1475)] = 35837, - [SMALL_STATE(1476)] = 35952, - [SMALL_STATE(1477)] = 36067, - [SMALL_STATE(1478)] = 36136, - [SMALL_STATE(1479)] = 36251, - [SMALL_STATE(1480)] = 36366, - [SMALL_STATE(1481)] = 36481, - [SMALL_STATE(1482)] = 36596, - [SMALL_STATE(1483)] = 36711, - [SMALL_STATE(1484)] = 36780, - [SMALL_STATE(1485)] = 36895, - [SMALL_STATE(1486)] = 36964, - [SMALL_STATE(1487)] = 37079, - [SMALL_STATE(1488)] = 37194, - [SMALL_STATE(1489)] = 37309, - [SMALL_STATE(1490)] = 37424, - [SMALL_STATE(1491)] = 37539, - [SMALL_STATE(1492)] = 37654, - [SMALL_STATE(1493)] = 37769, - [SMALL_STATE(1494)] = 37884, - [SMALL_STATE(1495)] = 37999, - [SMALL_STATE(1496)] = 38114, - [SMALL_STATE(1497)] = 38229, - [SMALL_STATE(1498)] = 38298, - [SMALL_STATE(1499)] = 38413, - [SMALL_STATE(1500)] = 38528, - [SMALL_STATE(1501)] = 38643, - [SMALL_STATE(1502)] = 38758, - [SMALL_STATE(1503)] = 38873, - [SMALL_STATE(1504)] = 38988, - [SMALL_STATE(1505)] = 39103, - [SMALL_STATE(1506)] = 39218, - [SMALL_STATE(1507)] = 39333, - [SMALL_STATE(1508)] = 39402, - [SMALL_STATE(1509)] = 39517, - [SMALL_STATE(1510)] = 39632, - [SMALL_STATE(1511)] = 39747, - [SMALL_STATE(1512)] = 39816, - [SMALL_STATE(1513)] = 39931, - [SMALL_STATE(1514)] = 40046, - [SMALL_STATE(1515)] = 40161, - [SMALL_STATE(1516)] = 40276, - [SMALL_STATE(1517)] = 40391, - [SMALL_STATE(1518)] = 40506, - [SMALL_STATE(1519)] = 40621, - [SMALL_STATE(1520)] = 40736, - [SMALL_STATE(1521)] = 40853, - [SMALL_STATE(1522)] = 40922, - [SMALL_STATE(1523)] = 41037, - [SMALL_STATE(1524)] = 41152, - [SMALL_STATE(1525)] = 41221, - [SMALL_STATE(1526)] = 41336, - [SMALL_STATE(1527)] = 41405, - [SMALL_STATE(1528)] = 41522, - [SMALL_STATE(1529)] = 41591, - [SMALL_STATE(1530)] = 41660, - [SMALL_STATE(1531)] = 41775, - [SMALL_STATE(1532)] = 41890, - [SMALL_STATE(1533)] = 41959, - [SMALL_STATE(1534)] = 42074, - [SMALL_STATE(1535)] = 42189, - [SMALL_STATE(1536)] = 42304, - [SMALL_STATE(1537)] = 42419, - [SMALL_STATE(1538)] = 42534, - [SMALL_STATE(1539)] = 42603, - [SMALL_STATE(1540)] = 42672, - [SMALL_STATE(1541)] = 42787, - [SMALL_STATE(1542)] = 42902, - [SMALL_STATE(1543)] = 43017, - [SMALL_STATE(1544)] = 43132, - [SMALL_STATE(1545)] = 43247, - [SMALL_STATE(1546)] = 43362, - [SMALL_STATE(1547)] = 43477, - [SMALL_STATE(1548)] = 43592, - [SMALL_STATE(1549)] = 43707, - [SMALL_STATE(1550)] = 43822, - [SMALL_STATE(1551)] = 43937, - [SMALL_STATE(1552)] = 44052, - [SMALL_STATE(1553)] = 44167, - [SMALL_STATE(1554)] = 44236, - [SMALL_STATE(1555)] = 44305, - [SMALL_STATE(1556)] = 44374, - [SMALL_STATE(1557)] = 44489, - [SMALL_STATE(1558)] = 44558, - [SMALL_STATE(1559)] = 44627, - [SMALL_STATE(1560)] = 44742, - [SMALL_STATE(1561)] = 44857, - [SMALL_STATE(1562)] = 44972, - [SMALL_STATE(1563)] = 45087, - [SMALL_STATE(1564)] = 45202, - [SMALL_STATE(1565)] = 45317, - [SMALL_STATE(1566)] = 45432, - [SMALL_STATE(1567)] = 45547, - [SMALL_STATE(1568)] = 45662, - [SMALL_STATE(1569)] = 45731, - [SMALL_STATE(1570)] = 45840, - [SMALL_STATE(1571)] = 45955, - [SMALL_STATE(1572)] = 46070, - [SMALL_STATE(1573)] = 46185, - [SMALL_STATE(1574)] = 46254, - [SMALL_STATE(1575)] = 46369, - [SMALL_STATE(1576)] = 46484, - [SMALL_STATE(1577)] = 46599, - [SMALL_STATE(1578)] = 46714, - [SMALL_STATE(1579)] = 46829, - [SMALL_STATE(1580)] = 46944, - [SMALL_STATE(1581)] = 47059, - [SMALL_STATE(1582)] = 47174, - [SMALL_STATE(1583)] = 47289, - [SMALL_STATE(1584)] = 47404, - [SMALL_STATE(1585)] = 47519, - [SMALL_STATE(1586)] = 47634, - [SMALL_STATE(1587)] = 47749, - [SMALL_STATE(1588)] = 47864, - [SMALL_STATE(1589)] = 47979, - [SMALL_STATE(1590)] = 48094, - [SMALL_STATE(1591)] = 48209, - [SMALL_STATE(1592)] = 48324, - [SMALL_STATE(1593)] = 48439, - [SMALL_STATE(1594)] = 48554, - [SMALL_STATE(1595)] = 48669, - [SMALL_STATE(1596)] = 48784, - [SMALL_STATE(1597)] = 48899, - [SMALL_STATE(1598)] = 49014, - [SMALL_STATE(1599)] = 49129, - [SMALL_STATE(1600)] = 49244, - [SMALL_STATE(1601)] = 49359, - [SMALL_STATE(1602)] = 49474, - [SMALL_STATE(1603)] = 49589, - [SMALL_STATE(1604)] = 49704, - [SMALL_STATE(1605)] = 49819, - [SMALL_STATE(1606)] = 49934, - [SMALL_STATE(1607)] = 50049, - [SMALL_STATE(1608)] = 50164, - [SMALL_STATE(1609)] = 50279, - [SMALL_STATE(1610)] = 50394, - [SMALL_STATE(1611)] = 50509, - [SMALL_STATE(1612)] = 50624, - [SMALL_STATE(1613)] = 50739, - [SMALL_STATE(1614)] = 50854, - [SMALL_STATE(1615)] = 50969, - [SMALL_STATE(1616)] = 51084, - [SMALL_STATE(1617)] = 51199, - [SMALL_STATE(1618)] = 51314, - [SMALL_STATE(1619)] = 51429, - [SMALL_STATE(1620)] = 51544, - [SMALL_STATE(1621)] = 51659, - [SMALL_STATE(1622)] = 51774, - [SMALL_STATE(1623)] = 51889, - [SMALL_STATE(1624)] = 52004, - [SMALL_STATE(1625)] = 52119, - [SMALL_STATE(1626)] = 52234, - [SMALL_STATE(1627)] = 52349, - [SMALL_STATE(1628)] = 52464, - [SMALL_STATE(1629)] = 52579, - [SMALL_STATE(1630)] = 52694, - [SMALL_STATE(1631)] = 52809, - [SMALL_STATE(1632)] = 52924, - [SMALL_STATE(1633)] = 53041, - [SMALL_STATE(1634)] = 53110, - [SMALL_STATE(1635)] = 53225, - [SMALL_STATE(1636)] = 53340, - [SMALL_STATE(1637)] = 53409, - [SMALL_STATE(1638)] = 53478, - [SMALL_STATE(1639)] = 53593, - [SMALL_STATE(1640)] = 53708, - [SMALL_STATE(1641)] = 53777, - [SMALL_STATE(1642)] = 53846, - [SMALL_STATE(1643)] = 53915, - [SMALL_STATE(1644)] = 53984, - [SMALL_STATE(1645)] = 54053, - [SMALL_STATE(1646)] = 54122, - [SMALL_STATE(1647)] = 54191, - [SMALL_STATE(1648)] = 54260, - [SMALL_STATE(1649)] = 54329, - [SMALL_STATE(1650)] = 54398, - [SMALL_STATE(1651)] = 54513, - [SMALL_STATE(1652)] = 54582, - [SMALL_STATE(1653)] = 54651, - [SMALL_STATE(1654)] = 54766, - [SMALL_STATE(1655)] = 54881, - [SMALL_STATE(1656)] = 54996, - [SMALL_STATE(1657)] = 55111, - [SMALL_STATE(1658)] = 55226, - [SMALL_STATE(1659)] = 55341, - [SMALL_STATE(1660)] = 55456, - [SMALL_STATE(1661)] = 55571, - [SMALL_STATE(1662)] = 55686, - [SMALL_STATE(1663)] = 55801, - [SMALL_STATE(1664)] = 55918, - [SMALL_STATE(1665)] = 56033, - [SMALL_STATE(1666)] = 56148, - [SMALL_STATE(1667)] = 56263, - [SMALL_STATE(1668)] = 56332, - [SMALL_STATE(1669)] = 56447, - [SMALL_STATE(1670)] = 56562, - [SMALL_STATE(1671)] = 56631, - [SMALL_STATE(1672)] = 56700, - [SMALL_STATE(1673)] = 56769, - [SMALL_STATE(1674)] = 56838, - [SMALL_STATE(1675)] = 56907, - [SMALL_STATE(1676)] = 56976, - [SMALL_STATE(1677)] = 57045, - [SMALL_STATE(1678)] = 57114, - [SMALL_STATE(1679)] = 57229, - [SMALL_STATE(1680)] = 57346, - [SMALL_STATE(1681)] = 57415, - [SMALL_STATE(1682)] = 57484, - [SMALL_STATE(1683)] = 57553, - [SMALL_STATE(1684)] = 57622, - [SMALL_STATE(1685)] = 57691, - [SMALL_STATE(1686)] = 57760, - [SMALL_STATE(1687)] = 57829, - [SMALL_STATE(1688)] = 57898, - [SMALL_STATE(1689)] = 58013, - [SMALL_STATE(1690)] = 58130, - [SMALL_STATE(1691)] = 58199, - [SMALL_STATE(1692)] = 58268, - [SMALL_STATE(1693)] = 58337, - [SMALL_STATE(1694)] = 58452, - [SMALL_STATE(1695)] = 58567, - [SMALL_STATE(1696)] = 58636, - [SMALL_STATE(1697)] = 58705, - [SMALL_STATE(1698)] = 58774, - [SMALL_STATE(1699)] = 58843, - [SMALL_STATE(1700)] = 58912, - [SMALL_STATE(1701)] = 58981, - [SMALL_STATE(1702)] = 59096, - [SMALL_STATE(1703)] = 59165, - [SMALL_STATE(1704)] = 59234, - [SMALL_STATE(1705)] = 59303, - [SMALL_STATE(1706)] = 59372, - [SMALL_STATE(1707)] = 59441, - [SMALL_STATE(1708)] = 59510, - [SMALL_STATE(1709)] = 59579, - [SMALL_STATE(1710)] = 59648, - [SMALL_STATE(1711)] = 59763, - [SMALL_STATE(1712)] = 59832, - [SMALL_STATE(1713)] = 59901, - [SMALL_STATE(1714)] = 59970, - [SMALL_STATE(1715)] = 60085, - [SMALL_STATE(1716)] = 60200, - [SMALL_STATE(1717)] = 60269, - [SMALL_STATE(1718)] = 60384, - [SMALL_STATE(1719)] = 60499, - [SMALL_STATE(1720)] = 60614, - [SMALL_STATE(1721)] = 60729, - [SMALL_STATE(1722)] = 60844, - [SMALL_STATE(1723)] = 60959, - [SMALL_STATE(1724)] = 61028, - [SMALL_STATE(1725)] = 61143, - [SMALL_STATE(1726)] = 61212, - [SMALL_STATE(1727)] = 61327, - [SMALL_STATE(1728)] = 61442, - [SMALL_STATE(1729)] = 61511, - [SMALL_STATE(1730)] = 61580, - [SMALL_STATE(1731)] = 61695, - [SMALL_STATE(1732)] = 61810, - [SMALL_STATE(1733)] = 61925, - [SMALL_STATE(1734)] = 62040, - [SMALL_STATE(1735)] = 62155, - [SMALL_STATE(1736)] = 62270, - [SMALL_STATE(1737)] = 62385, - [SMALL_STATE(1738)] = 62500, - [SMALL_STATE(1739)] = 62615, - [SMALL_STATE(1740)] = 62730, - [SMALL_STATE(1741)] = 62845, - [SMALL_STATE(1742)] = 62960, - [SMALL_STATE(1743)] = 63075, - [SMALL_STATE(1744)] = 63190, - [SMALL_STATE(1745)] = 63305, - [SMALL_STATE(1746)] = 63420, - [SMALL_STATE(1747)] = 63535, - [SMALL_STATE(1748)] = 63650, - [SMALL_STATE(1749)] = 63765, - [SMALL_STATE(1750)] = 63834, - [SMALL_STATE(1751)] = 63949, - [SMALL_STATE(1752)] = 64064, - [SMALL_STATE(1753)] = 64179, - [SMALL_STATE(1754)] = 64294, - [SMALL_STATE(1755)] = 64409, - [SMALL_STATE(1756)] = 64524, - [SMALL_STATE(1757)] = 64639, - [SMALL_STATE(1758)] = 64754, - [SMALL_STATE(1759)] = 64869, - [SMALL_STATE(1760)] = 64984, - [SMALL_STATE(1761)] = 65099, - [SMALL_STATE(1762)] = 65214, - [SMALL_STATE(1763)] = 65329, - [SMALL_STATE(1764)] = 65444, - [SMALL_STATE(1765)] = 65559, - [SMALL_STATE(1766)] = 65674, - [SMALL_STATE(1767)] = 65789, - [SMALL_STATE(1768)] = 65904, - [SMALL_STATE(1769)] = 66019, - [SMALL_STATE(1770)] = 66134, - [SMALL_STATE(1771)] = 66249, - [SMALL_STATE(1772)] = 66364, - [SMALL_STATE(1773)] = 66479, - [SMALL_STATE(1774)] = 66548, - [SMALL_STATE(1775)] = 66663, - [SMALL_STATE(1776)] = 66732, - [SMALL_STATE(1777)] = 66847, - [SMALL_STATE(1778)] = 66916, - [SMALL_STATE(1779)] = 67031, - [SMALL_STATE(1780)] = 67100, - [SMALL_STATE(1781)] = 67215, - [SMALL_STATE(1782)] = 67284, - [SMALL_STATE(1783)] = 67399, - [SMALL_STATE(1784)] = 67514, - [SMALL_STATE(1785)] = 67629, - [SMALL_STATE(1786)] = 67744, - [SMALL_STATE(1787)] = 67859, - [SMALL_STATE(1788)] = 67974, - [SMALL_STATE(1789)] = 68089, - [SMALL_STATE(1790)] = 68158, - [SMALL_STATE(1791)] = 68273, - [SMALL_STATE(1792)] = 68388, - [SMALL_STATE(1793)] = 68503, - [SMALL_STATE(1794)] = 68618, - [SMALL_STATE(1795)] = 68733, - [SMALL_STATE(1796)] = 68848, - [SMALL_STATE(1797)] = 68963, - [SMALL_STATE(1798)] = 69078, - [SMALL_STATE(1799)] = 69193, - [SMALL_STATE(1800)] = 69308, - [SMALL_STATE(1801)] = 69423, - [SMALL_STATE(1802)] = 69492, - [SMALL_STATE(1803)] = 69607, - [SMALL_STATE(1804)] = 69676, - [SMALL_STATE(1805)] = 69791, - [SMALL_STATE(1806)] = 69906, - [SMALL_STATE(1807)] = 70021, - [SMALL_STATE(1808)] = 70136, - [SMALL_STATE(1809)] = 70251, - [SMALL_STATE(1810)] = 70366, - [SMALL_STATE(1811)] = 70481, - [SMALL_STATE(1812)] = 70596, - [SMALL_STATE(1813)] = 70711, - [SMALL_STATE(1814)] = 70826, - [SMALL_STATE(1815)] = 70941, - [SMALL_STATE(1816)] = 71056, - [SMALL_STATE(1817)] = 71171, - [SMALL_STATE(1818)] = 71286, - [SMALL_STATE(1819)] = 71401, - [SMALL_STATE(1820)] = 71516, - [SMALL_STATE(1821)] = 71631, - [SMALL_STATE(1822)] = 71746, - [SMALL_STATE(1823)] = 71861, - [SMALL_STATE(1824)] = 71976, - [SMALL_STATE(1825)] = 72091, - [SMALL_STATE(1826)] = 72206, - [SMALL_STATE(1827)] = 72321, - [SMALL_STATE(1828)] = 72427, - [SMALL_STATE(1829)] = 72533, - [SMALL_STATE(1830)] = 72639, - [SMALL_STATE(1831)] = 72745, - [SMALL_STATE(1832)] = 72847, - [SMALL_STATE(1833)] = 72922, - [SMALL_STATE(1834)] = 73014, - [SMALL_STATE(1835)] = 73081, - [SMALL_STATE(1836)] = 73186, - [SMALL_STATE(1837)] = 73291, - [SMALL_STATE(1838)] = 73358, - [SMALL_STATE(1839)] = 73433, - [SMALL_STATE(1840)] = 73510, - [SMALL_STATE(1841)] = 73585, - [SMALL_STATE(1842)] = 73688, - [SMALL_STATE(1843)] = 73791, - [SMALL_STATE(1844)] = 73866, - [SMALL_STATE(1845)] = 73964, - [SMALL_STATE(1846)] = 74066, - [SMALL_STATE(1847)] = 74166, - [SMALL_STATE(1848)] = 74268, - [SMALL_STATE(1849)] = 74370, - [SMALL_STATE(1850)] = 74472, - [SMALL_STATE(1851)] = 74574, - [SMALL_STATE(1852)] = 74676, - [SMALL_STATE(1853)] = 74778, - [SMALL_STATE(1854)] = 74880, - [SMALL_STATE(1855)] = 74982, - [SMALL_STATE(1856)] = 75084, - [SMALL_STATE(1857)] = 75183, - [SMALL_STATE(1858)] = 75284, - [SMALL_STATE(1859)] = 75383, - [SMALL_STATE(1860)] = 75482, - [SMALL_STATE(1861)] = 75583, - [SMALL_STATE(1862)] = 75682, - [SMALL_STATE(1863)] = 75781, - [SMALL_STATE(1864)] = 75854, - [SMALL_STATE(1865)] = 75953, - [SMALL_STATE(1866)] = 76019, - [SMALL_STATE(1867)] = 76087, - [SMALL_STATE(1868)] = 76183, - [SMALL_STATE(1869)] = 76279, - [SMALL_STATE(1870)] = 76345, - [SMALL_STATE(1871)] = 76441, - [SMALL_STATE(1872)] = 76537, - [SMALL_STATE(1873)] = 76628, - [SMALL_STATE(1874)] = 76685, - [SMALL_STATE(1875)] = 76746, - [SMALL_STATE(1876)] = 76811, - [SMALL_STATE(1877)] = 76874, - [SMALL_STATE(1878)] = 76965, - [SMALL_STATE(1879)] = 77026, - [SMALL_STATE(1880)] = 77089, - [SMALL_STATE(1881)] = 77180, - [SMALL_STATE(1882)] = 77237, - [SMALL_STATE(1883)] = 77300, - [SMALL_STATE(1884)] = 77357, - [SMALL_STATE(1885)] = 77448, - [SMALL_STATE(1886)] = 77505, - [SMALL_STATE(1887)] = 77562, - [SMALL_STATE(1888)] = 77625, - [SMALL_STATE(1889)] = 77716, - [SMALL_STATE(1890)] = 77807, - [SMALL_STATE(1891)] = 77870, - [SMALL_STATE(1892)] = 77933, - [SMALL_STATE(1893)] = 77990, - [SMALL_STATE(1894)] = 78053, - [SMALL_STATE(1895)] = 78144, - [SMALL_STATE(1896)] = 78201, - [SMALL_STATE(1897)] = 78264, - [SMALL_STATE(1898)] = 78355, - [SMALL_STATE(1899)] = 78443, - [SMALL_STATE(1900)] = 78531, - [SMALL_STATE(1901)] = 78619, - [SMALL_STATE(1902)] = 78707, - [SMALL_STATE(1903)] = 78795, - [SMALL_STATE(1904)] = 78883, - [SMALL_STATE(1905)] = 78971, - [SMALL_STATE(1906)] = 79059, - [SMALL_STATE(1907)] = 79147, - [SMALL_STATE(1908)] = 79235, - [SMALL_STATE(1909)] = 79323, - [SMALL_STATE(1910)] = 79411, - [SMALL_STATE(1911)] = 79499, - [SMALL_STATE(1912)] = 79587, - [SMALL_STATE(1913)] = 79675, - [SMALL_STATE(1914)] = 79763, - [SMALL_STATE(1915)] = 79851, - [SMALL_STATE(1916)] = 79939, - [SMALL_STATE(1917)] = 80027, - [SMALL_STATE(1918)] = 80115, - [SMALL_STATE(1919)] = 80207, - [SMALL_STATE(1920)] = 80295, - [SMALL_STATE(1921)] = 80383, - [SMALL_STATE(1922)] = 80471, - [SMALL_STATE(1923)] = 80559, - [SMALL_STATE(1924)] = 80647, - [SMALL_STATE(1925)] = 80735, - [SMALL_STATE(1926)] = 80823, - [SMALL_STATE(1927)] = 80911, - [SMALL_STATE(1928)] = 80999, - [SMALL_STATE(1929)] = 81087, - [SMALL_STATE(1930)] = 81179, - [SMALL_STATE(1931)] = 81267, - [SMALL_STATE(1932)] = 81355, - [SMALL_STATE(1933)] = 81447, - [SMALL_STATE(1934)] = 81535, - [SMALL_STATE(1935)] = 81623, - [SMALL_STATE(1936)] = 81711, - [SMALL_STATE(1937)] = 81799, - [SMALL_STATE(1938)] = 81887, - [SMALL_STATE(1939)] = 81975, - [SMALL_STATE(1940)] = 82063, - [SMALL_STATE(1941)] = 82151, - [SMALL_STATE(1942)] = 82243, - [SMALL_STATE(1943)] = 82331, - [SMALL_STATE(1944)] = 82423, - [SMALL_STATE(1945)] = 82515, - [SMALL_STATE(1946)] = 82607, - [SMALL_STATE(1947)] = 82699, - [SMALL_STATE(1948)] = 82791, - [SMALL_STATE(1949)] = 82879, - [SMALL_STATE(1950)] = 82971, - [SMALL_STATE(1951)] = 83063, - [SMALL_STATE(1952)] = 83151, - [SMALL_STATE(1953)] = 83239, - [SMALL_STATE(1954)] = 83331, - [SMALL_STATE(1955)] = 83419, - [SMALL_STATE(1956)] = 83507, - [SMALL_STATE(1957)] = 83595, - [SMALL_STATE(1958)] = 83683, - [SMALL_STATE(1959)] = 83771, - [SMALL_STATE(1960)] = 83859, - [SMALL_STATE(1961)] = 83951, - [SMALL_STATE(1962)] = 84039, - [SMALL_STATE(1963)] = 84127, - [SMALL_STATE(1964)] = 84215, - [SMALL_STATE(1965)] = 84303, - [SMALL_STATE(1966)] = 84391, - [SMALL_STATE(1967)] = 84483, - [SMALL_STATE(1968)] = 84571, - [SMALL_STATE(1969)] = 84663, - [SMALL_STATE(1970)] = 84755, - [SMALL_STATE(1971)] = 84847, - [SMALL_STATE(1972)] = 84939, - [SMALL_STATE(1973)] = 85031, - [SMALL_STATE(1974)] = 85123, - [SMALL_STATE(1975)] = 85215, - [SMALL_STATE(1976)] = 85307, - [SMALL_STATE(1977)] = 85411, - [SMALL_STATE(1978)] = 85515, - [SMALL_STATE(1979)] = 85603, - [SMALL_STATE(1980)] = 85707, - [SMALL_STATE(1981)] = 85795, - [SMALL_STATE(1982)] = 85883, - [SMALL_STATE(1983)] = 85971, - [SMALL_STATE(1984)] = 86059, - [SMALL_STATE(1985)] = 86147, - [SMALL_STATE(1986)] = 86235, - [SMALL_STATE(1987)] = 86323, - [SMALL_STATE(1988)] = 86411, - [SMALL_STATE(1989)] = 86499, - [SMALL_STATE(1990)] = 86587, - [SMALL_STATE(1991)] = 86675, - [SMALL_STATE(1992)] = 86763, - [SMALL_STATE(1993)] = 86851, - [SMALL_STATE(1994)] = 86939, - [SMALL_STATE(1995)] = 87027, - [SMALL_STATE(1996)] = 87115, - [SMALL_STATE(1997)] = 87203, - [SMALL_STATE(1998)] = 87291, - [SMALL_STATE(1999)] = 87379, - [SMALL_STATE(2000)] = 87467, - [SMALL_STATE(2001)] = 87555, - [SMALL_STATE(2002)] = 87643, - [SMALL_STATE(2003)] = 87731, - [SMALL_STATE(2004)] = 87823, - [SMALL_STATE(2005)] = 87924, - [SMALL_STATE(2006)] = 88025, - [SMALL_STATE(2007)] = 88128, - [SMALL_STATE(2008)] = 88231, - [SMALL_STATE(2009)] = 88332, - [SMALL_STATE(2010)] = 88433, - [SMALL_STATE(2011)] = 88532, - [SMALL_STATE(2012)] = 88631, - [SMALL_STATE(2013)] = 88730, - [SMALL_STATE(2014)] = 88829, - [SMALL_STATE(2015)] = 88928, - [SMALL_STATE(2016)] = 89027, - [SMALL_STATE(2017)] = 89126, - [SMALL_STATE(2018)] = 89225, - [SMALL_STATE(2019)] = 89324, - [SMALL_STATE(2020)] = 89423, - [SMALL_STATE(2021)] = 89522, - [SMALL_STATE(2022)] = 89618, - [SMALL_STATE(2023)] = 89714, - [SMALL_STATE(2024)] = 89810, - [SMALL_STATE(2025)] = 89898, - [SMALL_STATE(2026)] = 89994, - [SMALL_STATE(2027)] = 90090, - [SMALL_STATE(2028)] = 90186, - [SMALL_STATE(2029)] = 90282, - [SMALL_STATE(2030)] = 90378, - [SMALL_STATE(2031)] = 90474, - [SMALL_STATE(2032)] = 90570, - [SMALL_STATE(2033)] = 90658, - [SMALL_STATE(2034)] = 90712, - [SMALL_STATE(2035)] = 90766, - [SMALL_STATE(2036)] = 90836, - [SMALL_STATE(2037)] = 90908, - [SMALL_STATE(2038)] = 90962, - [SMALL_STATE(2039)] = 91024, - [SMALL_STATE(2040)] = 91078, - [SMALL_STATE(2041)] = 91163, - [SMALL_STATE(2042)] = 91222, - [SMALL_STATE(2043)] = 91293, - [SMALL_STATE(2044)] = 91364, - [SMALL_STATE(2045)] = 91423, - [SMALL_STATE(2046)] = 91496, - [SMALL_STATE(2047)] = 91581, - [SMALL_STATE(2048)] = 91640, - [SMALL_STATE(2049)] = 91705, - [SMALL_STATE(2050)] = 91774, - [SMALL_STATE(2051)] = 91841, - [SMALL_STATE(2052)] = 91926, - [SMALL_STATE(2053)] = 91985, - [SMALL_STATE(2054)] = 92040, - [SMALL_STATE(2055)] = 92125, - [SMALL_STATE(2056)] = 92188, - [SMALL_STATE(2057)] = 92259, - [SMALL_STATE(2058)] = 92341, - [SMALL_STATE(2059)] = 92425, - [SMALL_STATE(2060)] = 92473, - [SMALL_STATE(2061)] = 92557, - [SMALL_STATE(2062)] = 92641, - [SMALL_STATE(2063)] = 92725, - [SMALL_STATE(2064)] = 92809, - [SMALL_STATE(2065)] = 92857, - [SMALL_STATE(2066)] = 92907, - [SMALL_STATE(2067)] = 92957, - [SMALL_STATE(2068)] = 93041, - [SMALL_STATE(2069)] = 93088, - [SMALL_STATE(2070)] = 93135, - [SMALL_STATE(2071)] = 93186, - [SMALL_STATE(2072)] = 93271, - [SMALL_STATE(2073)] = 93326, - [SMALL_STATE(2074)] = 93377, - [SMALL_STATE(2075)] = 93424, - [SMALL_STATE(2076)] = 93471, - [SMALL_STATE(2077)] = 93518, - [SMALL_STATE(2078)] = 93599, - [SMALL_STATE(2079)] = 93646, - [SMALL_STATE(2080)] = 93693, - [SMALL_STATE(2081)] = 93744, - [SMALL_STATE(2082)] = 93791, - [SMALL_STATE(2083)] = 93842, - [SMALL_STATE(2084)] = 93889, - [SMALL_STATE(2085)] = 93936, - [SMALL_STATE(2086)] = 93983, - [SMALL_STATE(2087)] = 94030, - [SMALL_STATE(2088)] = 94077, - [SMALL_STATE(2089)] = 94124, - [SMALL_STATE(2090)] = 94175, - [SMALL_STATE(2091)] = 94222, - [SMALL_STATE(2092)] = 94281, - [SMALL_STATE(2093)] = 94328, - [SMALL_STATE(2094)] = 94375, - [SMALL_STATE(2095)] = 94424, - [SMALL_STATE(2096)] = 94471, - [SMALL_STATE(2097)] = 94518, - [SMALL_STATE(2098)] = 94569, - [SMALL_STATE(2099)] = 94616, - [SMALL_STATE(2100)] = 94697, - [SMALL_STATE(2101)] = 94744, - [SMALL_STATE(2102)] = 94799, - [SMALL_STATE(2103)] = 94846, - [SMALL_STATE(2104)] = 94897, - [SMALL_STATE(2105)] = 94944, - [SMALL_STATE(2106)] = 94995, - [SMALL_STATE(2107)] = 95042, - [SMALL_STATE(2108)] = 95093, - [SMALL_STATE(2109)] = 95140, - [SMALL_STATE(2110)] = 95187, - [SMALL_STATE(2111)] = 95234, - [SMALL_STATE(2112)] = 95281, - [SMALL_STATE(2113)] = 95328, - [SMALL_STATE(2114)] = 95375, - [SMALL_STATE(2115)] = 95422, - [SMALL_STATE(2116)] = 95477, - [SMALL_STATE(2117)] = 95524, - [SMALL_STATE(2118)] = 95571, - [SMALL_STATE(2119)] = 95624, - [SMALL_STATE(2120)] = 95675, - [SMALL_STATE(2121)] = 95722, - [SMALL_STATE(2122)] = 95773, - [SMALL_STATE(2123)] = 95820, - [SMALL_STATE(2124)] = 95867, - [SMALL_STATE(2125)] = 95914, - [SMALL_STATE(2126)] = 95961, - [SMALL_STATE(2127)] = 96020, - [SMALL_STATE(2128)] = 96067, - [SMALL_STATE(2129)] = 96114, - [SMALL_STATE(2130)] = 96161, - [SMALL_STATE(2131)] = 96211, - [SMALL_STATE(2132)] = 96281, - [SMALL_STATE(2133)] = 96331, - [SMALL_STATE(2134)] = 96381, - [SMALL_STATE(2135)] = 96437, - [SMALL_STATE(2136)] = 96487, - [SMALL_STATE(2137)] = 96543, - [SMALL_STATE(2138)] = 96593, - [SMALL_STATE(2139)] = 96651, - [SMALL_STATE(2140)] = 96709, - [SMALL_STATE(2141)] = 96759, - [SMALL_STATE(2142)] = 96815, - [SMALL_STATE(2143)] = 96877, - [SMALL_STATE(2144)] = 96947, - [SMALL_STATE(2145)] = 97003, - [SMALL_STATE(2146)] = 97063, - [SMALL_STATE(2147)] = 97131, - [SMALL_STATE(2148)] = 97197, - [SMALL_STATE(2149)] = 97261, - [SMALL_STATE(2150)] = 97317, - [SMALL_STATE(2151)] = 97367, - [SMALL_STATE(2152)] = 97447, - [SMALL_STATE(2153)] = 97527, - [SMALL_STATE(2154)] = 97583, - [SMALL_STATE(2155)] = 97663, - [SMALL_STATE(2156)] = 97713, - [SMALL_STATE(2157)] = 97771, - [SMALL_STATE(2158)] = 97821, - [SMALL_STATE(2159)] = 97873, - [SMALL_STATE(2160)] = 97923, - [SMALL_STATE(2161)] = 97979, - [SMALL_STATE(2162)] = 98041, - [SMALL_STATE(2163)] = 98097, - [SMALL_STATE(2164)] = 98157, - [SMALL_STATE(2165)] = 98225, - [SMALL_STATE(2166)] = 98291, - [SMALL_STATE(2167)] = 98355, - [SMALL_STATE(2168)] = 98405, - [SMALL_STATE(2169)] = 98485, - [SMALL_STATE(2170)] = 98537, - [SMALL_STATE(2171)] = 98587, - [SMALL_STATE(2172)] = 98667, - [SMALL_STATE(2173)] = 98734, - [SMALL_STATE(2174)] = 98789, - [SMALL_STATE(2175)] = 98836, - [SMALL_STATE(2176)] = 98915, - [SMALL_STATE(2177)] = 98960, - [SMALL_STATE(2178)] = 99029, - [SMALL_STATE(2179)] = 99090, - [SMALL_STATE(2180)] = 99159, - [SMALL_STATE(2181)] = 99214, - [SMALL_STATE(2182)] = 99269, - [SMALL_STATE(2183)] = 99328, - [SMALL_STATE(2184)] = 99395, - [SMALL_STATE(2185)] = 99460, - [SMALL_STATE(2186)] = 99523, - [SMALL_STATE(2187)] = 99584, - [SMALL_STATE(2188)] = 99639, - [SMALL_STATE(2189)] = 99694, - [SMALL_STATE(2190)] = 99745, - [SMALL_STATE(2191)] = 99796, - [SMALL_STATE(2192)] = 99841, - [SMALL_STATE(2193)] = 99890, - [SMALL_STATE(2194)] = 99939, - [SMALL_STATE(2195)] = 99988, - [SMALL_STATE(2196)] = 100039, - [SMALL_STATE(2197)] = 100096, - [SMALL_STATE(2198)] = 100147, - [SMALL_STATE(2199)] = 100202, - [SMALL_STATE(2200)] = 100261, - [SMALL_STATE(2201)] = 100310, - [SMALL_STATE(2202)] = 100389, - [SMALL_STATE(2203)] = 100454, - [SMALL_STATE(2204)] = 100517, - [SMALL_STATE(2205)] = 100572, - [SMALL_STATE(2206)] = 100627, - [SMALL_STATE(2207)] = 100676, - [SMALL_STATE(2208)] = 100721, - [SMALL_STATE(2209)] = 100770, - [SMALL_STATE(2210)] = 100849, - [SMALL_STATE(2211)] = 100900, - [SMALL_STATE(2212)] = 100979, - [SMALL_STATE(2213)] = 101034, - [SMALL_STATE(2214)] = 101083, - [SMALL_STATE(2215)] = 101128, - [SMALL_STATE(2216)] = 101207, - [SMALL_STATE(2217)] = 101262, - [SMALL_STATE(2218)] = 101341, - [SMALL_STATE(2219)] = 101390, - [SMALL_STATE(2220)] = 101437, - [SMALL_STATE(2221)] = 101484, - [SMALL_STATE(2222)] = 101531, - [SMALL_STATE(2223)] = 101586, - [SMALL_STATE(2224)] = 101647, - [SMALL_STATE(2225)] = 101716, - [SMALL_STATE(2226)] = 101771, - [SMALL_STATE(2227)] = 101830, - [SMALL_STATE(2228)] = 101897, - [SMALL_STATE(2229)] = 101962, - [SMALL_STATE(2230)] = 102025, - [SMALL_STATE(2231)] = 102076, - [SMALL_STATE(2232)] = 102120, - [SMALL_STATE(2233)] = 102164, - [SMALL_STATE(2234)] = 102208, - [SMALL_STATE(2235)] = 102252, - [SMALL_STATE(2236)] = 102296, - [SMALL_STATE(2237)] = 102340, - [SMALL_STATE(2238)] = 102386, - [SMALL_STATE(2239)] = 102432, - [SMALL_STATE(2240)] = 102480, - [SMALL_STATE(2241)] = 102526, - [SMALL_STATE(2242)] = 102570, - [SMALL_STATE(2243)] = 102614, - [SMALL_STATE(2244)] = 102658, - [SMALL_STATE(2245)] = 102702, - [SMALL_STATE(2246)] = 102748, - [SMALL_STATE(2247)] = 102792, - [SMALL_STATE(2248)] = 102846, - [SMALL_STATE(2249)] = 102890, - [SMALL_STATE(2250)] = 102934, - [SMALL_STATE(2251)] = 102986, - [SMALL_STATE(2252)] = 103030, - [SMALL_STATE(2253)] = 103078, - [SMALL_STATE(2254)] = 103124, - [SMALL_STATE(2255)] = 103174, - [SMALL_STATE(2256)] = 103218, - [SMALL_STATE(2257)] = 103266, - [SMALL_STATE(2258)] = 103312, - [SMALL_STATE(2259)] = 103364, - [SMALL_STATE(2260)] = 103416, - [SMALL_STATE(2261)] = 103476, - [SMALL_STATE(2262)] = 103522, - [SMALL_STATE(2263)] = 103566, - [SMALL_STATE(2264)] = 103612, - [SMALL_STATE(2265)] = 103664, - [SMALL_STATE(2266)] = 103742, - [SMALL_STATE(2267)] = 103796, - [SMALL_STATE(2268)] = 103842, - [SMALL_STATE(2269)] = 103886, - [SMALL_STATE(2270)] = 103930, - [SMALL_STATE(2271)] = 103974, - [SMALL_STATE(2272)] = 104018, - [SMALL_STATE(2273)] = 104062, - [SMALL_STATE(2274)] = 104106, - [SMALL_STATE(2275)] = 104150, - [SMALL_STATE(2276)] = 104194, - [SMALL_STATE(2277)] = 104238, - [SMALL_STATE(2278)] = 104282, - [SMALL_STATE(2279)] = 104326, - [SMALL_STATE(2280)] = 104370, - [SMALL_STATE(2281)] = 104414, - [SMALL_STATE(2282)] = 104458, - [SMALL_STATE(2283)] = 104506, - [SMALL_STATE(2284)] = 104550, - [SMALL_STATE(2285)] = 104594, - [SMALL_STATE(2286)] = 104638, - [SMALL_STATE(2287)] = 104682, - [SMALL_STATE(2288)] = 104726, - [SMALL_STATE(2289)] = 104774, - [SMALL_STATE(2290)] = 104818, - [SMALL_STATE(2291)] = 104862, - [SMALL_STATE(2292)] = 104906, - [SMALL_STATE(2293)] = 104950, - [SMALL_STATE(2294)] = 104994, - [SMALL_STATE(2295)] = 105044, - [SMALL_STATE(2296)] = 105088, - [SMALL_STATE(2297)] = 105132, - [SMALL_STATE(2298)] = 105176, - [SMALL_STATE(2299)] = 105220, - [SMALL_STATE(2300)] = 105264, - [SMALL_STATE(2301)] = 105308, - [SMALL_STATE(2302)] = 105352, - [SMALL_STATE(2303)] = 105400, - [SMALL_STATE(2304)] = 105444, - [SMALL_STATE(2305)] = 105502, - [SMALL_STATE(2306)] = 105568, - [SMALL_STATE(2307)] = 105616, - [SMALL_STATE(2308)] = 105660, - [SMALL_STATE(2309)] = 105706, - [SMALL_STATE(2310)] = 105750, - [SMALL_STATE(2311)] = 105796, - [SMALL_STATE(2312)] = 105840, - [SMALL_STATE(2313)] = 105884, - [SMALL_STATE(2314)] = 105932, - [SMALL_STATE(2315)] = 105980, - [SMALL_STATE(2316)] = 106024, - [SMALL_STATE(2317)] = 106088, - [SMALL_STATE(2318)] = 106132, - [SMALL_STATE(2319)] = 106194, - [SMALL_STATE(2320)] = 106240, - [SMALL_STATE(2321)] = 106284, - [SMALL_STATE(2322)] = 106352, - [SMALL_STATE(2323)] = 106396, - [SMALL_STATE(2324)] = 106444, - [SMALL_STATE(2325)] = 106488, - [SMALL_STATE(2326)] = 106532, - [SMALL_STATE(2327)] = 106576, - [SMALL_STATE(2328)] = 106628, - [SMALL_STATE(2329)] = 106672, - [SMALL_STATE(2330)] = 106720, - [SMALL_STATE(2331)] = 106764, - [SMALL_STATE(2332)] = 106808, - [SMALL_STATE(2333)] = 106852, - [SMALL_STATE(2334)] = 106896, - [SMALL_STATE(2335)] = 106940, - [SMALL_STATE(2336)] = 106988, - [SMALL_STATE(2337)] = 107036, - [SMALL_STATE(2338)] = 107080, - [SMALL_STATE(2339)] = 107124, - [SMALL_STATE(2340)] = 107168, - [SMALL_STATE(2341)] = 107212, - [SMALL_STATE(2342)] = 107260, - [SMALL_STATE(2343)] = 107308, - [SMALL_STATE(2344)] = 107352, - [SMALL_STATE(2345)] = 107396, - [SMALL_STATE(2346)] = 107440, - [SMALL_STATE(2347)] = 107484, - [SMALL_STATE(2348)] = 107528, - [SMALL_STATE(2349)] = 107572, - [SMALL_STATE(2350)] = 107616, - [SMALL_STATE(2351)] = 107660, - [SMALL_STATE(2352)] = 107704, - [SMALL_STATE(2353)] = 107748, - [SMALL_STATE(2354)] = 107792, - [SMALL_STATE(2355)] = 107836, - [SMALL_STATE(2356)] = 107884, - [SMALL_STATE(2357)] = 107928, - [SMALL_STATE(2358)] = 107972, - [SMALL_STATE(2359)] = 108016, - [SMALL_STATE(2360)] = 108060, - [SMALL_STATE(2361)] = 108112, - [SMALL_STATE(2362)] = 108166, - [SMALL_STATE(2363)] = 108210, - [SMALL_STATE(2364)] = 108264, - [SMALL_STATE(2365)] = 108308, - [SMALL_STATE(2366)] = 108356, - [SMALL_STATE(2367)] = 108402, - [SMALL_STATE(2368)] = 108446, - [SMALL_STATE(2369)] = 108502, - [SMALL_STATE(2370)] = 108546, - [SMALL_STATE(2371)] = 108590, - [SMALL_STATE(2372)] = 108634, - [SMALL_STATE(2373)] = 108678, - [SMALL_STATE(2374)] = 108726, - [SMALL_STATE(2375)] = 108770, - [SMALL_STATE(2376)] = 108814, - [SMALL_STATE(2377)] = 108858, - [SMALL_STATE(2378)] = 108902, - [SMALL_STATE(2379)] = 108952, - [SMALL_STATE(2380)] = 108996, - [SMALL_STATE(2381)] = 109040, - [SMALL_STATE(2382)] = 109088, - [SMALL_STATE(2383)] = 109132, - [SMALL_STATE(2384)] = 109182, - [SMALL_STATE(2385)] = 109226, - [SMALL_STATE(2386)] = 109270, - [SMALL_STATE(2387)] = 109314, - [SMALL_STATE(2388)] = 109362, - [SMALL_STATE(2389)] = 109407, - [SMALL_STATE(2390)] = 109450, - [SMALL_STATE(2391)] = 109497, - [SMALL_STATE(2392)] = 109540, - [SMALL_STATE(2393)] = 109587, - [SMALL_STATE(2394)] = 109630, - [SMALL_STATE(2395)] = 109675, - [SMALL_STATE(2396)] = 109720, - [SMALL_STATE(2397)] = 109765, - [SMALL_STATE(2398)] = 109810, - [SMALL_STATE(2399)] = 109853, - [SMALL_STATE(2400)] = 109904, - [SMALL_STATE(2401)] = 109947, - [SMALL_STATE(2402)] = 109996, - [SMALL_STATE(2403)] = 110043, - [SMALL_STATE(2404)] = 110086, - [SMALL_STATE(2405)] = 110131, - [SMALL_STATE(2406)] = 110182, - [SMALL_STATE(2407)] = 110233, - [SMALL_STATE(2408)] = 110280, - [SMALL_STATE(2409)] = 110323, - [SMALL_STATE(2410)] = 110366, - [SMALL_STATE(2411)] = 110409, - [SMALL_STATE(2412)] = 110452, - [SMALL_STATE(2413)] = 110495, - [SMALL_STATE(2414)] = 110538, - [SMALL_STATE(2415)] = 110581, - [SMALL_STATE(2416)] = 110624, - [SMALL_STATE(2417)] = 110667, - [SMALL_STATE(2418)] = 110710, - [SMALL_STATE(2419)] = 110753, - [SMALL_STATE(2420)] = 110798, - [SMALL_STATE(2421)] = 110841, - [SMALL_STATE(2422)] = 110884, - [SMALL_STATE(2423)] = 110929, - [SMALL_STATE(2424)] = 110974, - [SMALL_STATE(2425)] = 111023, - [SMALL_STATE(2426)] = 111068, - [SMALL_STATE(2427)] = 111113, - [SMALL_STATE(2428)] = 111158, - [SMALL_STATE(2429)] = 111201, - [SMALL_STATE(2430)] = 111244, - [SMALL_STATE(2431)] = 111287, - [SMALL_STATE(2432)] = 111366, - [SMALL_STATE(2433)] = 111409, - [SMALL_STATE(2434)] = 111452, - [SMALL_STATE(2435)] = 111495, - [SMALL_STATE(2436)] = 111538, - [SMALL_STATE(2437)] = 111581, - [SMALL_STATE(2438)] = 111624, - [SMALL_STATE(2439)] = 111667, - [SMALL_STATE(2440)] = 111710, - [SMALL_STATE(2441)] = 111753, - [SMALL_STATE(2442)] = 111796, - [SMALL_STATE(2443)] = 111839, - [SMALL_STATE(2444)] = 111882, - [SMALL_STATE(2445)] = 111925, - [SMALL_STATE(2446)] = 111968, - [SMALL_STATE(2447)] = 112011, - [SMALL_STATE(2448)] = 112054, - [SMALL_STATE(2449)] = 112097, - [SMALL_STATE(2450)] = 112140, - [SMALL_STATE(2451)] = 112183, - [SMALL_STATE(2452)] = 112226, - [SMALL_STATE(2453)] = 112269, - [SMALL_STATE(2454)] = 112312, - [SMALL_STATE(2455)] = 112355, - [SMALL_STATE(2456)] = 112398, - [SMALL_STATE(2457)] = 112441, - [SMALL_STATE(2458)] = 112484, - [SMALL_STATE(2459)] = 112527, - [SMALL_STATE(2460)] = 112570, - [SMALL_STATE(2461)] = 112615, - [SMALL_STATE(2462)] = 112658, - [SMALL_STATE(2463)] = 112703, - [SMALL_STATE(2464)] = 112746, - [SMALL_STATE(2465)] = 112789, - [SMALL_STATE(2466)] = 112834, - [SMALL_STATE(2467)] = 112883, - [SMALL_STATE(2468)] = 112926, - [SMALL_STATE(2469)] = 112971, - [SMALL_STATE(2470)] = 113014, - [SMALL_STATE(2471)] = 113057, - [SMALL_STATE(2472)] = 113100, - [SMALL_STATE(2473)] = 113145, - [SMALL_STATE(2474)] = 113188, - [SMALL_STATE(2475)] = 113231, - [SMALL_STATE(2476)] = 113274, - [SMALL_STATE(2477)] = 113319, - [SMALL_STATE(2478)] = 113362, - [SMALL_STATE(2479)] = 113413, - [SMALL_STATE(2480)] = 113456, - [SMALL_STATE(2481)] = 113505, - [SMALL_STATE(2482)] = 113552, - [SMALL_STATE(2483)] = 113597, - [SMALL_STATE(2484)] = 113648, - [SMALL_STATE(2485)] = 113709, - [SMALL_STATE(2486)] = 113752, - [SMALL_STATE(2487)] = 113803, - [SMALL_STATE(2488)] = 113852, - [SMALL_STATE(2489)] = 113899, - [SMALL_STATE(2490)] = 113944, - [SMALL_STATE(2491)] = 113995, - [SMALL_STATE(2492)] = 114046, - [SMALL_STATE(2493)] = 114089, - [SMALL_STATE(2494)] = 114132, - [SMALL_STATE(2495)] = 114175, - [SMALL_STATE(2496)] = 114218, - [SMALL_STATE(2497)] = 114261, - [SMALL_STATE(2498)] = 114304, - [SMALL_STATE(2499)] = 114347, - [SMALL_STATE(2500)] = 114390, - [SMALL_STATE(2501)] = 114433, - [SMALL_STATE(2502)] = 114476, - [SMALL_STATE(2503)] = 114519, - [SMALL_STATE(2504)] = 114562, - [SMALL_STATE(2505)] = 114605, - [SMALL_STATE(2506)] = 114648, - [SMALL_STATE(2507)] = 114691, - [SMALL_STATE(2508)] = 114734, - [SMALL_STATE(2509)] = 114777, - [SMALL_STATE(2510)] = 114820, - [SMALL_STATE(2511)] = 114863, - [SMALL_STATE(2512)] = 114914, - [SMALL_STATE(2513)] = 114957, - [SMALL_STATE(2514)] = 115000, - [SMALL_STATE(2515)] = 115043, - [SMALL_STATE(2516)] = 115086, - [SMALL_STATE(2517)] = 115129, - [SMALL_STATE(2518)] = 115172, - [SMALL_STATE(2519)] = 115215, - [SMALL_STATE(2520)] = 115258, - [SMALL_STATE(2521)] = 115301, - [SMALL_STATE(2522)] = 115348, - [SMALL_STATE(2523)] = 115395, - [SMALL_STATE(2524)] = 115438, - [SMALL_STATE(2525)] = 115481, - [SMALL_STATE(2526)] = 115530, - [SMALL_STATE(2527)] = 115573, - [SMALL_STATE(2528)] = 115616, - [SMALL_STATE(2529)] = 115659, - [SMALL_STATE(2530)] = 115702, - [SMALL_STATE(2531)] = 115745, - [SMALL_STATE(2532)] = 115788, - [SMALL_STATE(2533)] = 115831, - [SMALL_STATE(2534)] = 115874, - [SMALL_STATE(2535)] = 115917, - [SMALL_STATE(2536)] = 115960, - [SMALL_STATE(2537)] = 116003, - [SMALL_STATE(2538)] = 116046, - [SMALL_STATE(2539)] = 116091, - [SMALL_STATE(2540)] = 116134, - [SMALL_STATE(2541)] = 116177, - [SMALL_STATE(2542)] = 116220, - [SMALL_STATE(2543)] = 116263, - [SMALL_STATE(2544)] = 116306, - [SMALL_STATE(2545)] = 116349, - [SMALL_STATE(2546)] = 116392, - [SMALL_STATE(2547)] = 116435, - [SMALL_STATE(2548)] = 116478, - [SMALL_STATE(2549)] = 116521, - [SMALL_STATE(2550)] = 116564, - [SMALL_STATE(2551)] = 116613, - [SMALL_STATE(2552)] = 116660, - [SMALL_STATE(2553)] = 116705, - [SMALL_STATE(2554)] = 116750, - [SMALL_STATE(2555)] = 116803, - [SMALL_STATE(2556)] = 116856, - [SMALL_STATE(2557)] = 116899, - [SMALL_STATE(2558)] = 116942, - [SMALL_STATE(2559)] = 117021, - [SMALL_STATE(2560)] = 117088, - [SMALL_STATE(2561)] = 117141, - [SMALL_STATE(2562)] = 117200, - [SMALL_STATE(2563)] = 117253, - [SMALL_STATE(2564)] = 117310, - [SMALL_STATE(2565)] = 117375, - [SMALL_STATE(2566)] = 117438, - [SMALL_STATE(2567)] = 117489, - [SMALL_STATE(2568)] = 117531, - [SMALL_STATE(2569)] = 117585, - [SMALL_STATE(2570)] = 117627, - [SMALL_STATE(2571)] = 117669, - [SMALL_STATE(2572)] = 117711, - [SMALL_STATE(2573)] = 117753, - [SMALL_STATE(2574)] = 117795, - [SMALL_STATE(2575)] = 117837, - [SMALL_STATE(2576)] = 117881, - [SMALL_STATE(2577)] = 117925, - [SMALL_STATE(2578)] = 117967, - [SMALL_STATE(2579)] = 118009, - [SMALL_STATE(2580)] = 118053, - [SMALL_STATE(2581)] = 118097, - [SMALL_STATE(2582)] = 118143, - [SMALL_STATE(2583)] = 118185, - [SMALL_STATE(2584)] = 118227, - [SMALL_STATE(2585)] = 118271, - [SMALL_STATE(2586)] = 118315, - [SMALL_STATE(2587)] = 118359, - [SMALL_STATE(2588)] = 118407, - [SMALL_STATE(2589)] = 118451, - [SMALL_STATE(2590)] = 118493, - [SMALL_STATE(2591)] = 118535, - [SMALL_STATE(2592)] = 118577, - [SMALL_STATE(2593)] = 118623, - [SMALL_STATE(2594)] = 118673, - [SMALL_STATE(2595)] = 118715, - [SMALL_STATE(2596)] = 118757, - [SMALL_STATE(2597)] = 118799, - [SMALL_STATE(2598)] = 118847, - [SMALL_STATE(2599)] = 118893, - [SMALL_STATE(2600)] = 118939, - [SMALL_STATE(2601)] = 118985, - [SMALL_STATE(2602)] = 119027, - [SMALL_STATE(2603)] = 119069, - [SMALL_STATE(2604)] = 119111, - [SMALL_STATE(2605)] = 119153, - [SMALL_STATE(2606)] = 119195, - [SMALL_STATE(2607)] = 119241, - [SMALL_STATE(2608)] = 119283, - [SMALL_STATE(2609)] = 119325, - [SMALL_STATE(2610)] = 119367, - [SMALL_STATE(2611)] = 119409, - [SMALL_STATE(2612)] = 119451, - [SMALL_STATE(2613)] = 119493, - [SMALL_STATE(2614)] = 119535, - [SMALL_STATE(2615)] = 119577, - [SMALL_STATE(2616)] = 119619, - [SMALL_STATE(2617)] = 119661, - [SMALL_STATE(2618)] = 119703, - [SMALL_STATE(2619)] = 119745, - [SMALL_STATE(2620)] = 119789, - [SMALL_STATE(2621)] = 119839, - [SMALL_STATE(2622)] = 119889, - [SMALL_STATE(2623)] = 119935, - [SMALL_STATE(2624)] = 119977, - [SMALL_STATE(2625)] = 120019, - [SMALL_STATE(2626)] = 120061, - [SMALL_STATE(2627)] = 120103, - [SMALL_STATE(2628)] = 120145, - [SMALL_STATE(2629)] = 120187, - [SMALL_STATE(2630)] = 120229, - [SMALL_STATE(2631)] = 120271, - [SMALL_STATE(2632)] = 120313, - [SMALL_STATE(2633)] = 120392, - [SMALL_STATE(2634)] = 120433, - [SMALL_STATE(2635)] = 120512, - [SMALL_STATE(2636)] = 120561, - [SMALL_STATE(2637)] = 120604, - [SMALL_STATE(2638)] = 120651, - [SMALL_STATE(2639)] = 120728, - [SMALL_STATE(2640)] = 120769, - [SMALL_STATE(2641)] = 120814, - [SMALL_STATE(2642)] = 120857, - [SMALL_STATE(2643)] = 120900, - [SMALL_STATE(2644)] = 120941, - [SMALL_STATE(2645)] = 120990, - [SMALL_STATE(2646)] = 121031, - [SMALL_STATE(2647)] = 121072, - [SMALL_STATE(2648)] = 121151, - [SMALL_STATE(2649)] = 121200, - [SMALL_STATE(2650)] = 121245, - [SMALL_STATE(2651)] = 121324, - [SMALL_STATE(2652)] = 121403, - [SMALL_STATE(2653)] = 121482, - [SMALL_STATE(2654)] = 121523, - [SMALL_STATE(2655)] = 121564, - [SMALL_STATE(2656)] = 121605, - [SMALL_STATE(2657)] = 121646, - [SMALL_STATE(2658)] = 121725, - [SMALL_STATE(2659)] = 121804, - [SMALL_STATE(2660)] = 121845, - [SMALL_STATE(2661)] = 121886, - [SMALL_STATE(2662)] = 121965, - [SMALL_STATE(2663)] = 122014, - [SMALL_STATE(2664)] = 122055, - [SMALL_STATE(2665)] = 122134, - [SMALL_STATE(2666)] = 122175, - [SMALL_STATE(2667)] = 122216, - [SMALL_STATE(2668)] = 122257, - [SMALL_STATE(2669)] = 122298, - [SMALL_STATE(2670)] = 122339, - [SMALL_STATE(2671)] = 122380, - [SMALL_STATE(2672)] = 122421, - [SMALL_STATE(2673)] = 122464, - [SMALL_STATE(2674)] = 122505, - [SMALL_STATE(2675)] = 122584, - [SMALL_STATE(2676)] = 122625, - [SMALL_STATE(2677)] = 122666, - [SMALL_STATE(2678)] = 122707, - [SMALL_STATE(2679)] = 122748, - [SMALL_STATE(2680)] = 122789, - [SMALL_STATE(2681)] = 122830, - [SMALL_STATE(2682)] = 122871, - [SMALL_STATE(2683)] = 122912, - [SMALL_STATE(2684)] = 122991, - [SMALL_STATE(2685)] = 123032, - [SMALL_STATE(2686)] = 123073, - [SMALL_STATE(2687)] = 123114, - [SMALL_STATE(2688)] = 123155, - [SMALL_STATE(2689)] = 123234, - [SMALL_STATE(2690)] = 123275, - [SMALL_STATE(2691)] = 123316, - [SMALL_STATE(2692)] = 123357, - [SMALL_STATE(2693)] = 123436, - [SMALL_STATE(2694)] = 123515, - [SMALL_STATE(2695)] = 123556, - [SMALL_STATE(2696)] = 123597, - [SMALL_STATE(2697)] = 123642, - [SMALL_STATE(2698)] = 123721, - [SMALL_STATE(2699)] = 123800, - [SMALL_STATE(2700)] = 123879, - [SMALL_STATE(2701)] = 123956, - [SMALL_STATE(2702)] = 123997, - [SMALL_STATE(2703)] = 124038, - [SMALL_STATE(2704)] = 124079, - [SMALL_STATE(2705)] = 124158, - [SMALL_STATE(2706)] = 124201, - [SMALL_STATE(2707)] = 124242, - [SMALL_STATE(2708)] = 124283, - [SMALL_STATE(2709)] = 124362, - [SMALL_STATE(2710)] = 124441, - [SMALL_STATE(2711)] = 124482, - [SMALL_STATE(2712)] = 124561, - [SMALL_STATE(2713)] = 124602, - [SMALL_STATE(2714)] = 124643, - [SMALL_STATE(2715)] = 124684, - [SMALL_STATE(2716)] = 124725, - [SMALL_STATE(2717)] = 124766, - [SMALL_STATE(2718)] = 124807, - [SMALL_STATE(2719)] = 124850, - [SMALL_STATE(2720)] = 124893, - [SMALL_STATE(2721)] = 124936, - [SMALL_STATE(2722)] = 124977, - [SMALL_STATE(2723)] = 125056, - [SMALL_STATE(2724)] = 125097, - [SMALL_STATE(2725)] = 125169, - [SMALL_STATE(2726)] = 125241, - [SMALL_STATE(2727)] = 125313, - [SMALL_STATE(2728)] = 125357, - [SMALL_STATE(2729)] = 125429, - [SMALL_STATE(2730)] = 125501, - [SMALL_STATE(2731)] = 125573, - [SMALL_STATE(2732)] = 125649, - [SMALL_STATE(2733)] = 125721, - [SMALL_STATE(2734)] = 125792, - [SMALL_STATE(2735)] = 125863, - [SMALL_STATE(2736)] = 125934, - [SMALL_STATE(2737)] = 126005, - [SMALL_STATE(2738)] = 126076, - [SMALL_STATE(2739)] = 126147, - [SMALL_STATE(2740)] = 126220, - [SMALL_STATE(2741)] = 126293, - [SMALL_STATE(2742)] = 126364, - [SMALL_STATE(2743)] = 126437, - [SMALL_STATE(2744)] = 126508, - [SMALL_STATE(2745)] = 126579, - [SMALL_STATE(2746)] = 126650, - [SMALL_STATE(2747)] = 126723, - [SMALL_STATE(2748)] = 126794, - [SMALL_STATE(2749)] = 126865, - [SMALL_STATE(2750)] = 126936, - [SMALL_STATE(2751)] = 127007, - [SMALL_STATE(2752)] = 127078, - [SMALL_STATE(2753)] = 127151, - [SMALL_STATE(2754)] = 127222, - [SMALL_STATE(2755)] = 127293, - [SMALL_STATE(2756)] = 127364, - [SMALL_STATE(2757)] = 127435, - [SMALL_STATE(2758)] = 127506, - [SMALL_STATE(2759)] = 127577, - [SMALL_STATE(2760)] = 127648, - [SMALL_STATE(2761)] = 127719, - [SMALL_STATE(2762)] = 127790, - [SMALL_STATE(2763)] = 127861, - [SMALL_STATE(2764)] = 127932, - [SMALL_STATE(2765)] = 128003, - [SMALL_STATE(2766)] = 128074, - [SMALL_STATE(2767)] = 128155, - [SMALL_STATE(2768)] = 128228, - [SMALL_STATE(2769)] = 128299, - [SMALL_STATE(2770)] = 128370, - [SMALL_STATE(2771)] = 128441, - [SMALL_STATE(2772)] = 128512, - [SMALL_STATE(2773)] = 128583, - [SMALL_STATE(2774)] = 128656, - [SMALL_STATE(2775)] = 128727, - [SMALL_STATE(2776)] = 128798, - [SMALL_STATE(2777)] = 128869, - [SMALL_STATE(2778)] = 128907, - [SMALL_STATE(2779)] = 128977, - [SMALL_STATE(2780)] = 129047, - [SMALL_STATE(2781)] = 129117, - [SMALL_STATE(2782)] = 129187, - [SMALL_STATE(2783)] = 129255, - [SMALL_STATE(2784)] = 129325, - [SMALL_STATE(2785)] = 129363, - [SMALL_STATE(2786)] = 129431, - [SMALL_STATE(2787)] = 129499, - [SMALL_STATE(2788)] = 129569, - [SMALL_STATE(2789)] = 129637, - [SMALL_STATE(2790)] = 129705, - [SMALL_STATE(2791)] = 129775, - [SMALL_STATE(2792)] = 129845, - [SMALL_STATE(2793)] = 129883, - [SMALL_STATE(2794)] = 129951, - [SMALL_STATE(2795)] = 129989, - [SMALL_STATE(2796)] = 130057, - [SMALL_STATE(2797)] = 130127, - [SMALL_STATE(2798)] = 130195, - [SMALL_STATE(2799)] = 130233, - [SMALL_STATE(2800)] = 130271, - [SMALL_STATE(2801)] = 130339, - [SMALL_STATE(2802)] = 130376, - [SMALL_STATE(2803)] = 130413, - [SMALL_STATE(2804)] = 130450, - [SMALL_STATE(2805)] = 130487, - [SMALL_STATE(2806)] = 130524, - [SMALL_STATE(2807)] = 130561, - [SMALL_STATE(2808)] = 130598, - [SMALL_STATE(2809)] = 130635, - [SMALL_STATE(2810)] = 130672, - [SMALL_STATE(2811)] = 130739, - [SMALL_STATE(2812)] = 130776, - [SMALL_STATE(2813)] = 130815, - [SMALL_STATE(2814)] = 130852, - [SMALL_STATE(2815)] = 130889, - [SMALL_STATE(2816)] = 130926, - [SMALL_STATE(2817)] = 130993, - [SMALL_STATE(2818)] = 131030, - [SMALL_STATE(2819)] = 131099, - [SMALL_STATE(2820)] = 131168, - [SMALL_STATE(2821)] = 131237, - [SMALL_STATE(2822)] = 131306, - [SMALL_STATE(2823)] = 131375, - [SMALL_STATE(2824)] = 131442, - [SMALL_STATE(2825)] = 131511, - [SMALL_STATE(2826)] = 131548, - [SMALL_STATE(2827)] = 131585, - [SMALL_STATE(2828)] = 131622, - [SMALL_STATE(2829)] = 131691, - [SMALL_STATE(2830)] = 131760, - [SMALL_STATE(2831)] = 131797, - [SMALL_STATE(2832)] = 131834, - [SMALL_STATE(2833)] = 131903, - [SMALL_STATE(2834)] = 131972, - [SMALL_STATE(2835)] = 132041, - [SMALL_STATE(2836)] = 132078, - [SMALL_STATE(2837)] = 132117, - [SMALL_STATE(2838)] = 132156, - [SMALL_STATE(2839)] = 132221, - [SMALL_STATE(2840)] = 132258, - [SMALL_STATE(2841)] = 132327, - [SMALL_STATE(2842)] = 132364, - [SMALL_STATE(2843)] = 132433, - [SMALL_STATE(2844)] = 132502, - [SMALL_STATE(2845)] = 132571, - [SMALL_STATE(2846)] = 132608, - [SMALL_STATE(2847)] = 132677, - [SMALL_STATE(2848)] = 132746, - [SMALL_STATE(2849)] = 132783, - [SMALL_STATE(2850)] = 132820, - [SMALL_STATE(2851)] = 132857, - [SMALL_STATE(2852)] = 132894, - [SMALL_STATE(2853)] = 132931, - [SMALL_STATE(2854)] = 132968, - [SMALL_STATE(2855)] = 133005, - [SMALL_STATE(2856)] = 133042, - [SMALL_STATE(2857)] = 133111, - [SMALL_STATE(2858)] = 133148, - [SMALL_STATE(2859)] = 133187, - [SMALL_STATE(2860)] = 133226, - [SMALL_STATE(2861)] = 133295, - [SMALL_STATE(2862)] = 133332, - [SMALL_STATE(2863)] = 133369, - [SMALL_STATE(2864)] = 133406, - [SMALL_STATE(2865)] = 133473, - [SMALL_STATE(2866)] = 133510, - [SMALL_STATE(2867)] = 133547, - [SMALL_STATE(2868)] = 133614, - [SMALL_STATE(2869)] = 133651, - [SMALL_STATE(2870)] = 133688, - [SMALL_STATE(2871)] = 133725, - [SMALL_STATE(2872)] = 133762, - [SMALL_STATE(2873)] = 133799, - [SMALL_STATE(2874)] = 133836, - [SMALL_STATE(2875)] = 133873, - [SMALL_STATE(2876)] = 133910, - [SMALL_STATE(2877)] = 133947, - [SMALL_STATE(2878)] = 133984, - [SMALL_STATE(2879)] = 134021, - [SMALL_STATE(2880)] = 134058, - [SMALL_STATE(2881)] = 134095, - [SMALL_STATE(2882)] = 134132, - [SMALL_STATE(2883)] = 134169, - [SMALL_STATE(2884)] = 134206, - [SMALL_STATE(2885)] = 134245, - [SMALL_STATE(2886)] = 134310, - [SMALL_STATE(2887)] = 134379, - [SMALL_STATE(2888)] = 134416, - [SMALL_STATE(2889)] = 134453, - [SMALL_STATE(2890)] = 134490, - [SMALL_STATE(2891)] = 134555, - [SMALL_STATE(2892)] = 134592, - [SMALL_STATE(2893)] = 134629, - [SMALL_STATE(2894)] = 134666, - [SMALL_STATE(2895)] = 134703, - [SMALL_STATE(2896)] = 134740, - [SMALL_STATE(2897)] = 134777, - [SMALL_STATE(2898)] = 134814, - [SMALL_STATE(2899)] = 134851, - [SMALL_STATE(2900)] = 134888, - [SMALL_STATE(2901)] = 134925, - [SMALL_STATE(2902)] = 134962, - [SMALL_STATE(2903)] = 134999, - [SMALL_STATE(2904)] = 135036, - [SMALL_STATE(2905)] = 135073, - [SMALL_STATE(2906)] = 135110, - [SMALL_STATE(2907)] = 135147, - [SMALL_STATE(2908)] = 135184, - [SMALL_STATE(2909)] = 135221, - [SMALL_STATE(2910)] = 135260, - [SMALL_STATE(2911)] = 135297, - [SMALL_STATE(2912)] = 135334, - [SMALL_STATE(2913)] = 135371, - [SMALL_STATE(2914)] = 135408, - [SMALL_STATE(2915)] = 135445, - [SMALL_STATE(2916)] = 135512, - [SMALL_STATE(2917)] = 135549, - [SMALL_STATE(2918)] = 135588, - [SMALL_STATE(2919)] = 135625, - [SMALL_STATE(2920)] = 135662, - [SMALL_STATE(2921)] = 135699, - [SMALL_STATE(2922)] = 135735, - [SMALL_STATE(2923)] = 135771, - [SMALL_STATE(2924)] = 135807, - [SMALL_STATE(2925)] = 135843, - [SMALL_STATE(2926)] = 135879, - [SMALL_STATE(2927)] = 135915, - [SMALL_STATE(2928)] = 135951, - [SMALL_STATE(2929)] = 135987, - [SMALL_STATE(2930)] = 136023, - [SMALL_STATE(2931)] = 136059, - [SMALL_STATE(2932)] = 136095, - [SMALL_STATE(2933)] = 136131, - [SMALL_STATE(2934)] = 136167, - [SMALL_STATE(2935)] = 136203, - [SMALL_STATE(2936)] = 136239, - [SMALL_STATE(2937)] = 136275, - [SMALL_STATE(2938)] = 136311, - [SMALL_STATE(2939)] = 136347, - [SMALL_STATE(2940)] = 136383, - [SMALL_STATE(2941)] = 136419, - [SMALL_STATE(2942)] = 136455, - [SMALL_STATE(2943)] = 136491, - [SMALL_STATE(2944)] = 136527, - [SMALL_STATE(2945)] = 136563, - [SMALL_STATE(2946)] = 136599, - [SMALL_STATE(2947)] = 136635, - [SMALL_STATE(2948)] = 136671, - [SMALL_STATE(2949)] = 136707, - [SMALL_STATE(2950)] = 136743, - [SMALL_STATE(2951)] = 136779, - [SMALL_STATE(2952)] = 136815, - [SMALL_STATE(2953)] = 136851, - [SMALL_STATE(2954)] = 136887, - [SMALL_STATE(2955)] = 136923, - [SMALL_STATE(2956)] = 136959, - [SMALL_STATE(2957)] = 136995, - [SMALL_STATE(2958)] = 137031, - [SMALL_STATE(2959)] = 137067, - [SMALL_STATE(2960)] = 137103, - [SMALL_STATE(2961)] = 137165, - [SMALL_STATE(2962)] = 137201, - [SMALL_STATE(2963)] = 137237, - [SMALL_STATE(2964)] = 137303, - [SMALL_STATE(2965)] = 137339, - [SMALL_STATE(2966)] = 137375, - [SMALL_STATE(2967)] = 137411, - [SMALL_STATE(2968)] = 137447, - [SMALL_STATE(2969)] = 137483, - [SMALL_STATE(2970)] = 137519, - [SMALL_STATE(2971)] = 137555, - [SMALL_STATE(2972)] = 137591, - [SMALL_STATE(2973)] = 137627, - [SMALL_STATE(2974)] = 137663, - [SMALL_STATE(2975)] = 137699, - [SMALL_STATE(2976)] = 137737, - [SMALL_STATE(2977)] = 137773, - [SMALL_STATE(2978)] = 137809, - [SMALL_STATE(2979)] = 137871, - [SMALL_STATE(2980)] = 137907, - [SMALL_STATE(2981)] = 137943, - [SMALL_STATE(2982)] = 137979, - [SMALL_STATE(2983)] = 138015, - [SMALL_STATE(2984)] = 138051, - [SMALL_STATE(2985)] = 138087, - [SMALL_STATE(2986)] = 138149, - [SMALL_STATE(2987)] = 138197, - [SMALL_STATE(2988)] = 138233, - [SMALL_STATE(2989)] = 138269, - [SMALL_STATE(2990)] = 138305, - [SMALL_STATE(2991)] = 138341, - [SMALL_STATE(2992)] = 138377, - [SMALL_STATE(2993)] = 138413, - [SMALL_STATE(2994)] = 138449, - [SMALL_STATE(2995)] = 138485, - [SMALL_STATE(2996)] = 138521, - [SMALL_STATE(2997)] = 138557, - [SMALL_STATE(2998)] = 138593, - [SMALL_STATE(2999)] = 138629, - [SMALL_STATE(3000)] = 138665, - [SMALL_STATE(3001)] = 138703, - [SMALL_STATE(3002)] = 138739, - [SMALL_STATE(3003)] = 138775, - [SMALL_STATE(3004)] = 138811, - [SMALL_STATE(3005)] = 138847, - [SMALL_STATE(3006)] = 138909, - [SMALL_STATE(3007)] = 138945, - [SMALL_STATE(3008)] = 138981, - [SMALL_STATE(3009)] = 139017, - [SMALL_STATE(3010)] = 139053, - [SMALL_STATE(3011)] = 139089, - [SMALL_STATE(3012)] = 139125, - [SMALL_STATE(3013)] = 139161, - [SMALL_STATE(3014)] = 139197, - [SMALL_STATE(3015)] = 139233, - [SMALL_STATE(3016)] = 139269, - [SMALL_STATE(3017)] = 139305, - [SMALL_STATE(3018)] = 139341, - [SMALL_STATE(3019)] = 139377, - [SMALL_STATE(3020)] = 139413, - [SMALL_STATE(3021)] = 139449, - [SMALL_STATE(3022)] = 139485, - [SMALL_STATE(3023)] = 139521, - [SMALL_STATE(3024)] = 139557, - [SMALL_STATE(3025)] = 139593, - [SMALL_STATE(3026)] = 139629, - [SMALL_STATE(3027)] = 139665, - [SMALL_STATE(3028)] = 139701, - [SMALL_STATE(3029)] = 139737, - [SMALL_STATE(3030)] = 139773, - [SMALL_STATE(3031)] = 139809, - [SMALL_STATE(3032)] = 139845, - [SMALL_STATE(3033)] = 139881, - [SMALL_STATE(3034)] = 139917, - [SMALL_STATE(3035)] = 139953, - [SMALL_STATE(3036)] = 139989, - [SMALL_STATE(3037)] = 140025, - [SMALL_STATE(3038)] = 140061, - [SMALL_STATE(3039)] = 140109, - [SMALL_STATE(3040)] = 140145, - [SMALL_STATE(3041)] = 140181, - [SMALL_STATE(3042)] = 140217, - [SMALL_STATE(3043)] = 140253, - [SMALL_STATE(3044)] = 140289, - [SMALL_STATE(3045)] = 140325, - [SMALL_STATE(3046)] = 140361, - [SMALL_STATE(3047)] = 140397, - [SMALL_STATE(3048)] = 140433, - [SMALL_STATE(3049)] = 140469, - [SMALL_STATE(3050)] = 140505, - [SMALL_STATE(3051)] = 140541, - [SMALL_STATE(3052)] = 140577, - [SMALL_STATE(3053)] = 140613, - [SMALL_STATE(3054)] = 140649, - [SMALL_STATE(3055)] = 140710, - [SMALL_STATE(3056)] = 140745, - [SMALL_STATE(3057)] = 140780, - [SMALL_STATE(3058)] = 140841, - [SMALL_STATE(3059)] = 140876, - [SMALL_STATE(3060)] = 140911, - [SMALL_STATE(3061)] = 140946, - [SMALL_STATE(3062)] = 141007, - [SMALL_STATE(3063)] = 141068, - [SMALL_STATE(3064)] = 141103, - [SMALL_STATE(3065)] = 141164, - [SMALL_STATE(3066)] = 141225, - [SMALL_STATE(3067)] = 141286, - [SMALL_STATE(3068)] = 141321, - [SMALL_STATE(3069)] = 141382, - [SMALL_STATE(3070)] = 141417, - [SMALL_STATE(3071)] = 141452, - [SMALL_STATE(3072)] = 141487, - [SMALL_STATE(3073)] = 141547, - [SMALL_STATE(3074)] = 141607, - [SMALL_STATE(3075)] = 141667, - [SMALL_STATE(3076)] = 141727, - [SMALL_STATE(3077)] = 141760, - [SMALL_STATE(3078)] = 141793, - [SMALL_STATE(3079)] = 141826, - [SMALL_STATE(3080)] = 141881, - [SMALL_STATE(3081)] = 141914, - [SMALL_STATE(3082)] = 141947, - [SMALL_STATE(3083)] = 141980, - [SMALL_STATE(3084)] = 142013, - [SMALL_STATE(3085)] = 142046, - [SMALL_STATE(3086)] = 142099, - [SMALL_STATE(3087)] = 142143, - [SMALL_STATE(3088)] = 142187, - [SMALL_STATE(3089)] = 142246, - [SMALL_STATE(3090)] = 142289, - [SMALL_STATE(3091)] = 142332, - [SMALL_STATE(3092)] = 142375, - [SMALL_STATE(3093)] = 142416, - [SMALL_STATE(3094)] = 142457, - [SMALL_STATE(3095)] = 142500, - [SMALL_STATE(3096)] = 142530, - [SMALL_STATE(3097)] = 142562, - [SMALL_STATE(3098)] = 142604, - [SMALL_STATE(3099)] = 142636, - [SMALL_STATE(3100)] = 142668, - [SMALL_STATE(3101)] = 142724, - [SMALL_STATE(3102)] = 142780, - [SMALL_STATE(3103)] = 142836, - [SMALL_STATE(3104)] = 142878, - [SMALL_STATE(3105)] = 142910, - [SMALL_STATE(3106)] = 142940, - [SMALL_STATE(3107)] = 142982, - [SMALL_STATE(3108)] = 143014, - [SMALL_STATE(3109)] = 143044, - [SMALL_STATE(3110)] = 143074, - [SMALL_STATE(3111)] = 143104, - [SMALL_STATE(3112)] = 143134, - [SMALL_STATE(3113)] = 143166, - [SMALL_STATE(3114)] = 143198, - [SMALL_STATE(3115)] = 143230, - [SMALL_STATE(3116)] = 143260, - [SMALL_STATE(3117)] = 143292, - [SMALL_STATE(3118)] = 143324, - [SMALL_STATE(3119)] = 143366, - [SMALL_STATE(3120)] = 143422, - [SMALL_STATE(3121)] = 143454, - [SMALL_STATE(3122)] = 143486, - [SMALL_STATE(3123)] = 143523, - [SMALL_STATE(3124)] = 143556, - [SMALL_STATE(3125)] = 143593, - [SMALL_STATE(3126)] = 143624, - [SMALL_STATE(3127)] = 143655, - [SMALL_STATE(3128)] = 143692, - [SMALL_STATE(3129)] = 143723, - [SMALL_STATE(3130)] = 143760, - [SMALL_STATE(3131)] = 143797, - [SMALL_STATE(3132)] = 143852, - [SMALL_STATE(3133)] = 143883, - [SMALL_STATE(3134)] = 143918, - [SMALL_STATE(3135)] = 143955, - [SMALL_STATE(3136)] = 143986, - [SMALL_STATE(3137)] = 144023, - [SMALL_STATE(3138)] = 144053, - [SMALL_STATE(3139)] = 144103, - [SMALL_STATE(3140)] = 144153, - [SMALL_STATE(3141)] = 144203, - [SMALL_STATE(3142)] = 144255, - [SMALL_STATE(3143)] = 144305, - [SMALL_STATE(3144)] = 144357, - [SMALL_STATE(3145)] = 144407, - [SMALL_STATE(3146)] = 144457, - [SMALL_STATE(3147)] = 144509, - [SMALL_STATE(3148)] = 144539, - [SMALL_STATE(3149)] = 144571, - [SMALL_STATE(3150)] = 144609, - [SMALL_STATE(3151)] = 144639, - [SMALL_STATE(3152)] = 144669, - [SMALL_STATE(3153)] = 144721, - [SMALL_STATE(3154)] = 144771, - [SMALL_STATE(3155)] = 144801, - [SMALL_STATE(3156)] = 144853, - [SMALL_STATE(3157)] = 144903, - [SMALL_STATE(3158)] = 144953, - [SMALL_STATE(3159)] = 144983, - [SMALL_STATE(3160)] = 145033, - [SMALL_STATE(3161)] = 145083, - [SMALL_STATE(3162)] = 145133, - [SMALL_STATE(3163)] = 145185, - [SMALL_STATE(3164)] = 145235, - [SMALL_STATE(3165)] = 145287, - [SMALL_STATE(3166)] = 145339, - [SMALL_STATE(3167)] = 145389, - [SMALL_STATE(3168)] = 145441, - [SMALL_STATE(3169)] = 145471, - [SMALL_STATE(3170)] = 145523, - [SMALL_STATE(3171)] = 145561, - [SMALL_STATE(3172)] = 145608, - [SMALL_STATE(3173)] = 145655, - [SMALL_STATE(3174)] = 145684, - [SMALL_STATE(3175)] = 145713, - [SMALL_STATE(3176)] = 145742, - [SMALL_STATE(3177)] = 145767, - [SMALL_STATE(3178)] = 145808, - [SMALL_STATE(3179)] = 145835, - [SMALL_STATE(3180)] = 145872, - [SMALL_STATE(3181)] = 145911, - [SMALL_STATE(3182)] = 145958, - [SMALL_STATE(3183)] = 145987, - [SMALL_STATE(3184)] = 146034, - [SMALL_STATE(3185)] = 146075, - [SMALL_STATE(3186)] = 146120, - [SMALL_STATE(3187)] = 146163, - [SMALL_STATE(3188)] = 146188, - [SMALL_STATE(3189)] = 146223, - [SMALL_STATE(3190)] = 146270, - [SMALL_STATE(3191)] = 146307, - [SMALL_STATE(3192)] = 146354, - [SMALL_STATE(3193)] = 146379, - [SMALL_STATE(3194)] = 146426, - [SMALL_STATE(3195)] = 146455, - [SMALL_STATE(3196)] = 146502, - [SMALL_STATE(3197)] = 146549, - [SMALL_STATE(3198)] = 146596, - [SMALL_STATE(3199)] = 146643, - [SMALL_STATE(3200)] = 146668, - [SMALL_STATE(3201)] = 146715, - [SMALL_STATE(3202)] = 146762, - [SMALL_STATE(3203)] = 146791, - [SMALL_STATE(3204)] = 146838, - [SMALL_STATE(3205)] = 146867, - [SMALL_STATE(3206)] = 146914, - [SMALL_STATE(3207)] = 146961, - [SMALL_STATE(3208)] = 147008, - [SMALL_STATE(3209)] = 147055, - [SMALL_STATE(3210)] = 147102, - [SMALL_STATE(3211)] = 147149, - [SMALL_STATE(3212)] = 147174, - [SMALL_STATE(3213)] = 147221, - [SMALL_STATE(3214)] = 147268, - [SMALL_STATE(3215)] = 147315, - [SMALL_STATE(3216)] = 147344, - [SMALL_STATE(3217)] = 147369, - [SMALL_STATE(3218)] = 147416, - [SMALL_STATE(3219)] = 147463, - [SMALL_STATE(3220)] = 147510, - [SMALL_STATE(3221)] = 147557, - [SMALL_STATE(3222)] = 147582, - [SMALL_STATE(3223)] = 147623, - [SMALL_STATE(3224)] = 147648, - [SMALL_STATE(3225)] = 147685, - [SMALL_STATE(3226)] = 147714, - [SMALL_STATE(3227)] = 147761, - [SMALL_STATE(3228)] = 147790, - [SMALL_STATE(3229)] = 147837, - [SMALL_STATE(3230)] = 147874, - [SMALL_STATE(3231)] = 147918, - [SMALL_STATE(3232)] = 147962, - [SMALL_STATE(3233)] = 148006, - [SMALL_STATE(3234)] = 148050, - [SMALL_STATE(3235)] = 148078, - [SMALL_STATE(3236)] = 148110, - [SMALL_STATE(3237)] = 148154, - [SMALL_STATE(3238)] = 148198, - [SMALL_STATE(3239)] = 148242, - [SMALL_STATE(3240)] = 148286, - [SMALL_STATE(3241)] = 148330, - [SMALL_STATE(3242)] = 148374, - [SMALL_STATE(3243)] = 148418, - [SMALL_STATE(3244)] = 148462, - [SMALL_STATE(3245)] = 148506, - [SMALL_STATE(3246)] = 148552, - [SMALL_STATE(3247)] = 148596, - [SMALL_STATE(3248)] = 148624, - [SMALL_STATE(3249)] = 148668, - [SMALL_STATE(3250)] = 148712, - [SMALL_STATE(3251)] = 148756, - [SMALL_STATE(3252)] = 148800, - [SMALL_STATE(3253)] = 148844, - [SMALL_STATE(3254)] = 148888, - [SMALL_STATE(3255)] = 148932, - [SMALL_STATE(3256)] = 148976, - [SMALL_STATE(3257)] = 149020, - [SMALL_STATE(3258)] = 149064, - [SMALL_STATE(3259)] = 149108, - [SMALL_STATE(3260)] = 149152, - [SMALL_STATE(3261)] = 149196, - [SMALL_STATE(3262)] = 149240, - [SMALL_STATE(3263)] = 149284, - [SMALL_STATE(3264)] = 149328, - [SMALL_STATE(3265)] = 149372, - [SMALL_STATE(3266)] = 149416, - [SMALL_STATE(3267)] = 149460, - [SMALL_STATE(3268)] = 149504, - [SMALL_STATE(3269)] = 149548, - [SMALL_STATE(3270)] = 149592, - [SMALL_STATE(3271)] = 149636, - [SMALL_STATE(3272)] = 149680, - [SMALL_STATE(3273)] = 149724, - [SMALL_STATE(3274)] = 149768, - [SMALL_STATE(3275)] = 149812, - [SMALL_STATE(3276)] = 149856, - [SMALL_STATE(3277)] = 149888, - [SMALL_STATE(3278)] = 149932, - [SMALL_STATE(3279)] = 149962, - [SMALL_STATE(3280)] = 150006, - [SMALL_STATE(3281)] = 150050, - [SMALL_STATE(3282)] = 150094, - [SMALL_STATE(3283)] = 150138, - [SMALL_STATE(3284)] = 150182, - [SMALL_STATE(3285)] = 150226, - [SMALL_STATE(3286)] = 150270, - [SMALL_STATE(3287)] = 150314, - [SMALL_STATE(3288)] = 150358, - [SMALL_STATE(3289)] = 150402, - [SMALL_STATE(3290)] = 150446, - [SMALL_STATE(3291)] = 150490, - [SMALL_STATE(3292)] = 150518, - [SMALL_STATE(3293)] = 150562, - [SMALL_STATE(3294)] = 150606, - [SMALL_STATE(3295)] = 150650, - [SMALL_STATE(3296)] = 150694, - [SMALL_STATE(3297)] = 150738, - [SMALL_STATE(3298)] = 150782, - [SMALL_STATE(3299)] = 150826, - [SMALL_STATE(3300)] = 150856, - [SMALL_STATE(3301)] = 150900, - [SMALL_STATE(3302)] = 150928, - [SMALL_STATE(3303)] = 150972, - [SMALL_STATE(3304)] = 151016, - [SMALL_STATE(3305)] = 151060, - [SMALL_STATE(3306)] = 151104, - [SMALL_STATE(3307)] = 151148, - [SMALL_STATE(3308)] = 151192, - [SMALL_STATE(3309)] = 151236, - [SMALL_STATE(3310)] = 151280, - [SMALL_STATE(3311)] = 151308, - [SMALL_STATE(3312)] = 151338, - [SMALL_STATE(3313)] = 151386, - [SMALL_STATE(3314)] = 151430, - [SMALL_STATE(3315)] = 151474, - [SMALL_STATE(3316)] = 151515, - [SMALL_STATE(3317)] = 151556, - [SMALL_STATE(3318)] = 151599, - [SMALL_STATE(3319)] = 151640, - [SMALL_STATE(3320)] = 151683, - [SMALL_STATE(3321)] = 151726, - [SMALL_STATE(3322)] = 151753, - [SMALL_STATE(3323)] = 151800, - [SMALL_STATE(3324)] = 151841, - [SMALL_STATE(3325)] = 151884, - [SMALL_STATE(3326)] = 151911, - [SMALL_STATE(3327)] = 151950, - [SMALL_STATE(3328)] = 151991, - [SMALL_STATE(3329)] = 152032, - [SMALL_STATE(3330)] = 152073, - [SMALL_STATE(3331)] = 152114, - [SMALL_STATE(3332)] = 152139, - [SMALL_STATE(3333)] = 152180, - [SMALL_STATE(3334)] = 152205, - [SMALL_STATE(3335)] = 152248, - [SMALL_STATE(3336)] = 152291, - [SMALL_STATE(3337)] = 152316, - [SMALL_STATE(3338)] = 152357, - [SMALL_STATE(3339)] = 152384, - [SMALL_STATE(3340)] = 152429, - [SMALL_STATE(3341)] = 152454, - [SMALL_STATE(3342)] = 152483, - [SMALL_STATE(3343)] = 152510, - [SMALL_STATE(3344)] = 152543, - [SMALL_STATE(3345)] = 152584, - [SMALL_STATE(3346)] = 152611, - [SMALL_STATE(3347)] = 152638, - [SMALL_STATE(3348)] = 152681, - [SMALL_STATE(3349)] = 152724, - [SMALL_STATE(3350)] = 152763, - [SMALL_STATE(3351)] = 152801, - [SMALL_STATE(3352)] = 152827, - [SMALL_STATE(3353)] = 152865, - [SMALL_STATE(3354)] = 152889, - [SMALL_STATE(3355)] = 152927, - [SMALL_STATE(3356)] = 152965, - [SMALL_STATE(3357)] = 153003, - [SMALL_STATE(3358)] = 153037, - [SMALL_STATE(3359)] = 153075, - [SMALL_STATE(3360)] = 153113, - [SMALL_STATE(3361)] = 153137, - [SMALL_STATE(3362)] = 153175, - [SMALL_STATE(3363)] = 153215, - [SMALL_STATE(3364)] = 153239, - [SMALL_STATE(3365)] = 153263, - [SMALL_STATE(3366)] = 153299, - [SMALL_STATE(3367)] = 153337, - [SMALL_STATE(3368)] = 153375, - [SMALL_STATE(3369)] = 153411, - [SMALL_STATE(3370)] = 153447, - [SMALL_STATE(3371)] = 153487, - [SMALL_STATE(3372)] = 153511, - [SMALL_STATE(3373)] = 153549, - [SMALL_STATE(3374)] = 153587, - [SMALL_STATE(3375)] = 153611, - [SMALL_STATE(3376)] = 153649, - [SMALL_STATE(3377)] = 153687, - [SMALL_STATE(3378)] = 153725, - [SMALL_STATE(3379)] = 153765, - [SMALL_STATE(3380)] = 153793, - [SMALL_STATE(3381)] = 153817, - [SMALL_STATE(3382)] = 153855, - [SMALL_STATE(3383)] = 153893, - [SMALL_STATE(3384)] = 153917, - [SMALL_STATE(3385)] = 153953, - [SMALL_STATE(3386)] = 153991, - [SMALL_STATE(3387)] = 154029, - [SMALL_STATE(3388)] = 154067, - [SMALL_STATE(3389)] = 154105, - [SMALL_STATE(3390)] = 154129, - [SMALL_STATE(3391)] = 154167, - [SMALL_STATE(3392)] = 154193, - [SMALL_STATE(3393)] = 154231, - [SMALL_STATE(3394)] = 154269, - [SMALL_STATE(3395)] = 154293, - [SMALL_STATE(3396)] = 154321, - [SMALL_STATE(3397)] = 154357, - [SMALL_STATE(3398)] = 154395, - [SMALL_STATE(3399)] = 154429, - [SMALL_STATE(3400)] = 154467, - [SMALL_STATE(3401)] = 154503, - [SMALL_STATE(3402)] = 154543, - [SMALL_STATE(3403)] = 154581, - [SMALL_STATE(3404)] = 154619, - [SMALL_STATE(3405)] = 154646, - [SMALL_STATE(3406)] = 154669, - [SMALL_STATE(3407)] = 154702, - [SMALL_STATE(3408)] = 154729, - [SMALL_STATE(3409)] = 154762, - [SMALL_STATE(3410)] = 154789, - [SMALL_STATE(3411)] = 154814, - [SMALL_STATE(3412)] = 154853, - [SMALL_STATE(3413)] = 154876, - [SMALL_STATE(3414)] = 154915, - [SMALL_STATE(3415)] = 154936, - [SMALL_STATE(3416)] = 154959, - [SMALL_STATE(3417)] = 154980, - [SMALL_STATE(3418)] = 155001, - [SMALL_STATE(3419)] = 155034, - [SMALL_STATE(3420)] = 155057, - [SMALL_STATE(3421)] = 155084, - [SMALL_STATE(3422)] = 155111, - [SMALL_STATE(3423)] = 155138, - [SMALL_STATE(3424)] = 155163, - [SMALL_STATE(3425)] = 155186, - [SMALL_STATE(3426)] = 155219, - [SMALL_STATE(3427)] = 155258, - [SMALL_STATE(3428)] = 155285, - [SMALL_STATE(3429)] = 155312, - [SMALL_STATE(3430)] = 155333, - [SMALL_STATE(3431)] = 155368, - [SMALL_STATE(3432)] = 155401, - [SMALL_STATE(3433)] = 155436, - [SMALL_STATE(3434)] = 155469, - [SMALL_STATE(3435)] = 155506, - [SMALL_STATE(3436)] = 155533, - [SMALL_STATE(3437)] = 155566, - [SMALL_STATE(3438)] = 155599, - [SMALL_STATE(3439)] = 155622, - [SMALL_STATE(3440)] = 155661, - [SMALL_STATE(3441)] = 155684, - [SMALL_STATE(3442)] = 155717, - [SMALL_STATE(3443)] = 155744, - [SMALL_STATE(3444)] = 155770, - [SMALL_STATE(3445)] = 155808, - [SMALL_STATE(3446)] = 155846, - [SMALL_STATE(3447)] = 155884, - [SMALL_STATE(3448)] = 155924, - [SMALL_STATE(3449)] = 155954, - [SMALL_STATE(3450)] = 155988, - [SMALL_STATE(3451)] = 156020, - [SMALL_STATE(3452)] = 156048, - [SMALL_STATE(3453)] = 156078, - [SMALL_STATE(3454)] = 156112, - [SMALL_STATE(3455)] = 156134, - [SMALL_STATE(3456)] = 156160, - [SMALL_STATE(3457)] = 156192, - [SMALL_STATE(3458)] = 156232, - [SMALL_STATE(3459)] = 156258, - [SMALL_STATE(3460)] = 156280, - [SMALL_STATE(3461)] = 156306, - [SMALL_STATE(3462)] = 156328, - [SMALL_STATE(3463)] = 156350, - [SMALL_STATE(3464)] = 156372, - [SMALL_STATE(3465)] = 156402, - [SMALL_STATE(3466)] = 156432, - [SMALL_STATE(3467)] = 156466, - [SMALL_STATE(3468)] = 156498, - [SMALL_STATE(3469)] = 156526, - [SMALL_STATE(3470)] = 156554, - [SMALL_STATE(3471)] = 156584, - [SMALL_STATE(3472)] = 156620, - [SMALL_STATE(3473)] = 156660, - [SMALL_STATE(3474)] = 156692, - [SMALL_STATE(3475)] = 156724, - [SMALL_STATE(3476)] = 156748, - [SMALL_STATE(3477)] = 156788, - [SMALL_STATE(3478)] = 156820, - [SMALL_STATE(3479)] = 156846, - [SMALL_STATE(3480)] = 156876, - [SMALL_STATE(3481)] = 156914, - [SMALL_STATE(3482)] = 156936, - [SMALL_STATE(3483)] = 156966, - [SMALL_STATE(3484)] = 156990, - [SMALL_STATE(3485)] = 157012, - [SMALL_STATE(3486)] = 157050, - [SMALL_STATE(3487)] = 157072, - [SMALL_STATE(3488)] = 157104, - [SMALL_STATE(3489)] = 157138, - [SMALL_STATE(3490)] = 157160, - [SMALL_STATE(3491)] = 157190, - [SMALL_STATE(3492)] = 157228, - [SMALL_STATE(3493)] = 157260, - [SMALL_STATE(3494)] = 157290, - [SMALL_STATE(3495)] = 157328, - [SMALL_STATE(3496)] = 157360, - [SMALL_STATE(3497)] = 157392, - [SMALL_STATE(3498)] = 157424, - [SMALL_STATE(3499)] = 157454, - [SMALL_STATE(3500)] = 157478, - [SMALL_STATE(3501)] = 157510, - [SMALL_STATE(3502)] = 157542, - [SMALL_STATE(3503)] = 157572, - [SMALL_STATE(3504)] = 157612, - [SMALL_STATE(3505)] = 157636, - [SMALL_STATE(3506)] = 157676, - [SMALL_STATE(3507)] = 157698, - [SMALL_STATE(3508)] = 157730, - [SMALL_STATE(3509)] = 157762, - [SMALL_STATE(3510)] = 157791, - [SMALL_STATE(3511)] = 157820, - [SMALL_STATE(3512)] = 157841, - [SMALL_STATE(3513)] = 157870, - [SMALL_STATE(3514)] = 157899, - [SMALL_STATE(3515)] = 157928, - [SMALL_STATE(3516)] = 157957, - [SMALL_STATE(3517)] = 157978, - [SMALL_STATE(3518)] = 158007, - [SMALL_STATE(3519)] = 158036, - [SMALL_STATE(3520)] = 158065, - [SMALL_STATE(3521)] = 158096, - [SMALL_STATE(3522)] = 158127, - [SMALL_STATE(3523)] = 158156, - [SMALL_STATE(3524)] = 158187, - [SMALL_STATE(3525)] = 158218, - [SMALL_STATE(3526)] = 158259, - [SMALL_STATE(3527)] = 158280, - [SMALL_STATE(3528)] = 158309, - [SMALL_STATE(3529)] = 158330, - [SMALL_STATE(3530)] = 158359, - [SMALL_STATE(3531)] = 158380, - [SMALL_STATE(3532)] = 158409, - [SMALL_STATE(3533)] = 158430, - [SMALL_STATE(3534)] = 158459, - [SMALL_STATE(3535)] = 158488, - [SMALL_STATE(3536)] = 158517, - [SMALL_STATE(3537)] = 158546, - [SMALL_STATE(3538)] = 158575, - [SMALL_STATE(3539)] = 158604, - [SMALL_STATE(3540)] = 158633, - [SMALL_STATE(3541)] = 158654, - [SMALL_STATE(3542)] = 158675, - [SMALL_STATE(3543)] = 158706, - [SMALL_STATE(3544)] = 158729, - [SMALL_STATE(3545)] = 158758, - [SMALL_STATE(3546)] = 158779, - [SMALL_STATE(3547)] = 158812, - [SMALL_STATE(3548)] = 158841, - [SMALL_STATE(3549)] = 158864, - [SMALL_STATE(3550)] = 158893, - [SMALL_STATE(3551)] = 158922, - [SMALL_STATE(3552)] = 158953, - [SMALL_STATE(3553)] = 158982, - [SMALL_STATE(3554)] = 159013, - [SMALL_STATE(3555)] = 159044, - [SMALL_STATE(3556)] = 159073, - [SMALL_STATE(3557)] = 159102, - [SMALL_STATE(3558)] = 159133, - [SMALL_STATE(3559)] = 159164, - [SMALL_STATE(3560)] = 159193, - [SMALL_STATE(3561)] = 159222, - [SMALL_STATE(3562)] = 159251, - [SMALL_STATE(3563)] = 159280, - [SMALL_STATE(3564)] = 159309, - [SMALL_STATE(3565)] = 159342, - [SMALL_STATE(3566)] = 159371, - [SMALL_STATE(3567)] = 159402, - [SMALL_STATE(3568)] = 159431, - [SMALL_STATE(3569)] = 159460, - [SMALL_STATE(3570)] = 159489, - [SMALL_STATE(3571)] = 159520, - [SMALL_STATE(3572)] = 159551, - [SMALL_STATE(3573)] = 159580, - [SMALL_STATE(3574)] = 159611, - [SMALL_STATE(3575)] = 159640, - [SMALL_STATE(3576)] = 159669, - [SMALL_STATE(3577)] = 159700, - [SMALL_STATE(3578)] = 159729, - [SMALL_STATE(3579)] = 159758, - [SMALL_STATE(3580)] = 159787, - [SMALL_STATE(3581)] = 159816, - [SMALL_STATE(3582)] = 159845, - [SMALL_STATE(3583)] = 159874, - [SMALL_STATE(3584)] = 159895, - [SMALL_STATE(3585)] = 159924, - [SMALL_STATE(3586)] = 159955, - [SMALL_STATE(3587)] = 159986, - [SMALL_STATE(3588)] = 160015, - [SMALL_STATE(3589)] = 160044, - [SMALL_STATE(3590)] = 160073, - [SMALL_STATE(3591)] = 160104, - [SMALL_STATE(3592)] = 160135, - [SMALL_STATE(3593)] = 160176, - [SMALL_STATE(3594)] = 160205, - [SMALL_STATE(3595)] = 160236, - [SMALL_STATE(3596)] = 160267, - [SMALL_STATE(3597)] = 160298, - [SMALL_STATE(3598)] = 160327, - [SMALL_STATE(3599)] = 160368, - [SMALL_STATE(3600)] = 160399, - [SMALL_STATE(3601)] = 160428, - [SMALL_STATE(3602)] = 160457, - [SMALL_STATE(3603)] = 160486, - [SMALL_STATE(3604)] = 160515, - [SMALL_STATE(3605)] = 160544, - [SMALL_STATE(3606)] = 160585, - [SMALL_STATE(3607)] = 160614, - [SMALL_STATE(3608)] = 160643, - [SMALL_STATE(3609)] = 160684, - [SMALL_STATE(3610)] = 160725, - [SMALL_STATE(3611)] = 160754, - [SMALL_STATE(3612)] = 160795, - [SMALL_STATE(3613)] = 160836, - [SMALL_STATE(3614)] = 160865, - [SMALL_STATE(3615)] = 160894, - [SMALL_STATE(3616)] = 160923, - [SMALL_STATE(3617)] = 160952, - [SMALL_STATE(3618)] = 160983, - [SMALL_STATE(3619)] = 161013, - [SMALL_STATE(3620)] = 161037, - [SMALL_STATE(3621)] = 161065, - [SMALL_STATE(3622)] = 161097, - [SMALL_STATE(3623)] = 161115, - [SMALL_STATE(3624)] = 161149, - [SMALL_STATE(3625)] = 161173, - [SMALL_STATE(3626)] = 161201, - [SMALL_STATE(3627)] = 161233, - [SMALL_STATE(3628)] = 161263, - [SMALL_STATE(3629)] = 161293, - [SMALL_STATE(3630)] = 161323, - [SMALL_STATE(3631)] = 161353, - [SMALL_STATE(3632)] = 161391, - [SMALL_STATE(3633)] = 161419, - [SMALL_STATE(3634)] = 161457, - [SMALL_STATE(3635)] = 161481, - [SMALL_STATE(3636)] = 161511, - [SMALL_STATE(3637)] = 161531, - [SMALL_STATE(3638)] = 161561, - [SMALL_STATE(3639)] = 161591, - [SMALL_STATE(3640)] = 161629, - [SMALL_STATE(3641)] = 161667, - [SMALL_STATE(3642)] = 161697, - [SMALL_STATE(3643)] = 161727, - [SMALL_STATE(3644)] = 161765, - [SMALL_STATE(3645)] = 161803, - [SMALL_STATE(3646)] = 161833, - [SMALL_STATE(3647)] = 161863, - [SMALL_STATE(3648)] = 161901, - [SMALL_STATE(3649)] = 161939, - [SMALL_STATE(3650)] = 161969, - [SMALL_STATE(3651)] = 161999, - [SMALL_STATE(3652)] = 162037, - [SMALL_STATE(3653)] = 162075, - [SMALL_STATE(3654)] = 162105, - [SMALL_STATE(3655)] = 162135, - [SMALL_STATE(3656)] = 162173, - [SMALL_STATE(3657)] = 162211, - [SMALL_STATE(3658)] = 162241, - [SMALL_STATE(3659)] = 162271, - [SMALL_STATE(3660)] = 162309, - [SMALL_STATE(3661)] = 162339, - [SMALL_STATE(3662)] = 162369, - [SMALL_STATE(3663)] = 162399, - [SMALL_STATE(3664)] = 162429, - [SMALL_STATE(3665)] = 162467, - [SMALL_STATE(3666)] = 162497, - [SMALL_STATE(3667)] = 162525, - [SMALL_STATE(3668)] = 162563, - [SMALL_STATE(3669)] = 162587, - [SMALL_STATE(3670)] = 162619, - [SMALL_STATE(3671)] = 162649, - [SMALL_STATE(3672)] = 162687, - [SMALL_STATE(3673)] = 162717, - [SMALL_STATE(3674)] = 162749, - [SMALL_STATE(3675)] = 162783, - [SMALL_STATE(3676)] = 162813, - [SMALL_STATE(3677)] = 162851, - [SMALL_STATE(3678)] = 162883, - [SMALL_STATE(3679)] = 162917, - [SMALL_STATE(3680)] = 162955, - [SMALL_STATE(3681)] = 162993, - [SMALL_STATE(3682)] = 163025, - [SMALL_STATE(3683)] = 163057, - [SMALL_STATE(3684)] = 163085, - [SMALL_STATE(3685)] = 163113, - [SMALL_STATE(3686)] = 163151, - [SMALL_STATE(3687)] = 163183, - [SMALL_STATE(3688)] = 163217, - [SMALL_STATE(3689)] = 163255, - [SMALL_STATE(3690)] = 163283, - [SMALL_STATE(3691)] = 163313, - [SMALL_STATE(3692)] = 163351, - [SMALL_STATE(3693)] = 163385, - [SMALL_STATE(3694)] = 163415, - [SMALL_STATE(3695)] = 163443, - [SMALL_STATE(3696)] = 163481, - [SMALL_STATE(3697)] = 163513, - [SMALL_STATE(3698)] = 163551, - [SMALL_STATE(3699)] = 163579, - [SMALL_STATE(3700)] = 163607, - [SMALL_STATE(3701)] = 163637, - [SMALL_STATE(3702)] = 163667, - [SMALL_STATE(3703)] = 163695, - [SMALL_STATE(3704)] = 163725, - [SMALL_STATE(3705)] = 163755, - [SMALL_STATE(3706)] = 163785, - [SMALL_STATE(3707)] = 163823, - [SMALL_STATE(3708)] = 163857, - [SMALL_STATE(3709)] = 163887, - [SMALL_STATE(3710)] = 163916, - [SMALL_STATE(3711)] = 163941, - [SMALL_STATE(3712)] = 163960, - [SMALL_STATE(3713)] = 163989, - [SMALL_STATE(3714)] = 164012, - [SMALL_STATE(3715)] = 164043, - [SMALL_STATE(3716)] = 164066, - [SMALL_STATE(3717)] = 164095, - [SMALL_STATE(3718)] = 164124, - [SMALL_STATE(3719)] = 164149, - [SMALL_STATE(3720)] = 164178, - [SMALL_STATE(3721)] = 164207, - [SMALL_STATE(3722)] = 164232, - [SMALL_STATE(3723)] = 164255, - [SMALL_STATE(3724)] = 164274, - [SMALL_STATE(3725)] = 164293, - [SMALL_STATE(3726)] = 164312, - [SMALL_STATE(3727)] = 164337, - [SMALL_STATE(3728)] = 164366, - [SMALL_STATE(3729)] = 164385, - [SMALL_STATE(3730)] = 164414, - [SMALL_STATE(3731)] = 164431, - [SMALL_STATE(3732)] = 164452, - [SMALL_STATE(3733)] = 164469, - [SMALL_STATE(3734)] = 164488, - [SMALL_STATE(3735)] = 164517, - [SMALL_STATE(3736)] = 164536, - [SMALL_STATE(3737)] = 164561, - [SMALL_STATE(3738)] = 164590, - [SMALL_STATE(3739)] = 164615, - [SMALL_STATE(3740)] = 164646, - [SMALL_STATE(3741)] = 164677, - [SMALL_STATE(3742)] = 164696, - [SMALL_STATE(3743)] = 164725, - [SMALL_STATE(3744)] = 164744, - [SMALL_STATE(3745)] = 164763, - [SMALL_STATE(3746)] = 164792, - [SMALL_STATE(3747)] = 164821, - [SMALL_STATE(3748)] = 164850, - [SMALL_STATE(3749)] = 164871, - [SMALL_STATE(3750)] = 164890, - [SMALL_STATE(3751)] = 164919, - [SMALL_STATE(3752)] = 164944, - [SMALL_STATE(3753)] = 164973, - [SMALL_STATE(3754)] = 165002, - [SMALL_STATE(3755)] = 165031, - [SMALL_STATE(3756)] = 165060, - [SMALL_STATE(3757)] = 165077, - [SMALL_STATE(3758)] = 165100, - [SMALL_STATE(3759)] = 165119, - [SMALL_STATE(3760)] = 165144, - [SMALL_STATE(3761)] = 165173, - [SMALL_STATE(3762)] = 165202, - [SMALL_STATE(3763)] = 165225, - [SMALL_STATE(3764)] = 165242, - [SMALL_STATE(3765)] = 165271, - [SMALL_STATE(3766)] = 165300, - [SMALL_STATE(3767)] = 165329, - [SMALL_STATE(3768)] = 165354, - [SMALL_STATE(3769)] = 165385, - [SMALL_STATE(3770)] = 165408, - [SMALL_STATE(3771)] = 165439, - [SMALL_STATE(3772)] = 165460, - [SMALL_STATE(3773)] = 165491, - [SMALL_STATE(3774)] = 165510, - [SMALL_STATE(3775)] = 165541, - [SMALL_STATE(3776)] = 165558, - [SMALL_STATE(3777)] = 165577, - [SMALL_STATE(3778)] = 165600, - [SMALL_STATE(3779)] = 165621, - [SMALL_STATE(3780)] = 165650, - [SMALL_STATE(3781)] = 165669, - [SMALL_STATE(3782)] = 165694, - [SMALL_STATE(3783)] = 165717, - [SMALL_STATE(3784)] = 165738, - [SMALL_STATE(3785)] = 165757, - [SMALL_STATE(3786)] = 165782, - [SMALL_STATE(3787)] = 165799, - [SMALL_STATE(3788)] = 165815, - [SMALL_STATE(3789)] = 165847, - [SMALL_STATE(3790)] = 165875, - [SMALL_STATE(3791)] = 165899, - [SMALL_STATE(3792)] = 165927, - [SMALL_STATE(3793)] = 165959, - [SMALL_STATE(3794)] = 165987, - [SMALL_STATE(3795)] = 166005, - [SMALL_STATE(3796)] = 166029, - [SMALL_STATE(3797)] = 166053, - [SMALL_STATE(3798)] = 166075, - [SMALL_STATE(3799)] = 166103, - [SMALL_STATE(3800)] = 166133, - [SMALL_STATE(3801)] = 166157, - [SMALL_STATE(3802)] = 166177, - [SMALL_STATE(3803)] = 166195, - [SMALL_STATE(3804)] = 166223, - [SMALL_STATE(3805)] = 166253, - [SMALL_STATE(3806)] = 166283, - [SMALL_STATE(3807)] = 166311, - [SMALL_STATE(3808)] = 166341, - [SMALL_STATE(3809)] = 166369, - [SMALL_STATE(3810)] = 166397, - [SMALL_STATE(3811)] = 166415, - [SMALL_STATE(3812)] = 166447, - [SMALL_STATE(3813)] = 166475, - [SMALL_STATE(3814)] = 166507, - [SMALL_STATE(3815)] = 166525, - [SMALL_STATE(3816)] = 166541, - [SMALL_STATE(3817)] = 166557, - [SMALL_STATE(3818)] = 166581, - [SMALL_STATE(3819)] = 166609, - [SMALL_STATE(3820)] = 166627, - [SMALL_STATE(3821)] = 166645, - [SMALL_STATE(3822)] = 166663, - [SMALL_STATE(3823)] = 166693, - [SMALL_STATE(3824)] = 166709, - [SMALL_STATE(3825)] = 166727, - [SMALL_STATE(3826)] = 166757, - [SMALL_STATE(3827)] = 166787, - [SMALL_STATE(3828)] = 166803, - [SMALL_STATE(3829)] = 166819, - [SMALL_STATE(3830)] = 166841, - [SMALL_STATE(3831)] = 166871, - [SMALL_STATE(3832)] = 166895, - [SMALL_STATE(3833)] = 166927, - [SMALL_STATE(3834)] = 166957, - [SMALL_STATE(3835)] = 166987, - [SMALL_STATE(3836)] = 167011, - [SMALL_STATE(3837)] = 167033, - [SMALL_STATE(3838)] = 167055, - [SMALL_STATE(3839)] = 167075, - [SMALL_STATE(3840)] = 167099, - [SMALL_STATE(3841)] = 167123, - [SMALL_STATE(3842)] = 167151, - [SMALL_STATE(3843)] = 167179, - [SMALL_STATE(3844)] = 167201, - [SMALL_STATE(3845)] = 167225, - [SMALL_STATE(3846)] = 167255, - [SMALL_STATE(3847)] = 167271, - [SMALL_STATE(3848)] = 167303, - [SMALL_STATE(3849)] = 167319, - [SMALL_STATE(3850)] = 167349, - [SMALL_STATE(3851)] = 167373, - [SMALL_STATE(3852)] = 167397, - [SMALL_STATE(3853)] = 167425, - [SMALL_STATE(3854)] = 167449, - [SMALL_STATE(3855)] = 167465, - [SMALL_STATE(3856)] = 167487, - [SMALL_STATE(3857)] = 167507, - [SMALL_STATE(3858)] = 167523, - [SMALL_STATE(3859)] = 167541, - [SMALL_STATE(3860)] = 167563, - [SMALL_STATE(3861)] = 167587, - [SMALL_STATE(3862)] = 167609, - [SMALL_STATE(3863)] = 167633, - [SMALL_STATE(3864)] = 167653, - [SMALL_STATE(3865)] = 167681, - [SMALL_STATE(3866)] = 167711, - [SMALL_STATE(3867)] = 167729, - [SMALL_STATE(3868)] = 167747, - [SMALL_STATE(3869)] = 167775, - [SMALL_STATE(3870)] = 167804, - [SMALL_STATE(3871)] = 167827, - [SMALL_STATE(3872)] = 167846, - [SMALL_STATE(3873)] = 167875, - [SMALL_STATE(3874)] = 167904, - [SMALL_STATE(3875)] = 167925, - [SMALL_STATE(3876)] = 167940, - [SMALL_STATE(3877)] = 167969, - [SMALL_STATE(3878)] = 167984, - [SMALL_STATE(3879)] = 167999, - [SMALL_STATE(3880)] = 168024, - [SMALL_STATE(3881)] = 168049, - [SMALL_STATE(3882)] = 168078, - [SMALL_STATE(3883)] = 168101, - [SMALL_STATE(3884)] = 168124, - [SMALL_STATE(3885)] = 168145, - [SMALL_STATE(3886)] = 168166, - [SMALL_STATE(3887)] = 168185, - [SMALL_STATE(3888)] = 168208, - [SMALL_STATE(3889)] = 168231, - [SMALL_STATE(3890)] = 168246, - [SMALL_STATE(3891)] = 168275, - [SMALL_STATE(3892)] = 168304, - [SMALL_STATE(3893)] = 168331, - [SMALL_STATE(3894)] = 168360, - [SMALL_STATE(3895)] = 168389, - [SMALL_STATE(3896)] = 168418, - [SMALL_STATE(3897)] = 168443, - [SMALL_STATE(3898)] = 168466, - [SMALL_STATE(3899)] = 168485, - [SMALL_STATE(3900)] = 168514, - [SMALL_STATE(3901)] = 168529, - [SMALL_STATE(3902)] = 168552, - [SMALL_STATE(3903)] = 168567, - [SMALL_STATE(3904)] = 168596, - [SMALL_STATE(3905)] = 168625, - [SMALL_STATE(3906)] = 168654, - [SMALL_STATE(3907)] = 168683, - [SMALL_STATE(3908)] = 168706, - [SMALL_STATE(3909)] = 168727, - [SMALL_STATE(3910)] = 168750, - [SMALL_STATE(3911)] = 168779, - [SMALL_STATE(3912)] = 168808, - [SMALL_STATE(3913)] = 168837, - [SMALL_STATE(3914)] = 168866, - [SMALL_STATE(3915)] = 168893, - [SMALL_STATE(3916)] = 168922, - [SMALL_STATE(3917)] = 168943, - [SMALL_STATE(3918)] = 168972, - [SMALL_STATE(3919)] = 169001, - [SMALL_STATE(3920)] = 169028, - [SMALL_STATE(3921)] = 169057, - [SMALL_STATE(3922)] = 169080, - [SMALL_STATE(3923)] = 169103, - [SMALL_STATE(3924)] = 169124, - [SMALL_STATE(3925)] = 169153, - [SMALL_STATE(3926)] = 169182, - [SMALL_STATE(3927)] = 169211, - [SMALL_STATE(3928)] = 169240, - [SMALL_STATE(3929)] = 169269, - [SMALL_STATE(3930)] = 169298, - [SMALL_STATE(3931)] = 169327, - [SMALL_STATE(3932)] = 169348, - [SMALL_STATE(3933)] = 169377, - [SMALL_STATE(3934)] = 169400, - [SMALL_STATE(3935)] = 169421, - [SMALL_STATE(3936)] = 169448, - [SMALL_STATE(3937)] = 169477, - [SMALL_STATE(3938)] = 169496, - [SMALL_STATE(3939)] = 169521, - [SMALL_STATE(3940)] = 169542, - [SMALL_STATE(3941)] = 169571, - [SMALL_STATE(3942)] = 169592, - [SMALL_STATE(3943)] = 169621, - [SMALL_STATE(3944)] = 169642, - [SMALL_STATE(3945)] = 169671, - [SMALL_STATE(3946)] = 169692, - [SMALL_STATE(3947)] = 169715, - [SMALL_STATE(3948)] = 169742, - [SMALL_STATE(3949)] = 169769, - [SMALL_STATE(3950)] = 169798, - [SMALL_STATE(3951)] = 169827, - [SMALL_STATE(3952)] = 169854, - [SMALL_STATE(3953)] = 169881, - [SMALL_STATE(3954)] = 169902, - [SMALL_STATE(3955)] = 169931, - [SMALL_STATE(3956)] = 169960, - [SMALL_STATE(3957)] = 169989, - [SMALL_STATE(3958)] = 170012, - [SMALL_STATE(3959)] = 170041, - [SMALL_STATE(3960)] = 170060, - [SMALL_STATE(3961)] = 170085, - [SMALL_STATE(3962)] = 170106, - [SMALL_STATE(3963)] = 170129, - [SMALL_STATE(3964)] = 170150, - [SMALL_STATE(3965)] = 170169, - [SMALL_STATE(3966)] = 170186, - [SMALL_STATE(3967)] = 170209, - [SMALL_STATE(3968)] = 170232, - [SMALL_STATE(3969)] = 170253, - [SMALL_STATE(3970)] = 170274, - [SMALL_STATE(3971)] = 170303, - [SMALL_STATE(3972)] = 170321, - [SMALL_STATE(3973)] = 170347, - [SMALL_STATE(3974)] = 170369, - [SMALL_STATE(3975)] = 170395, - [SMALL_STATE(3976)] = 170421, - [SMALL_STATE(3977)] = 170447, - [SMALL_STATE(3978)] = 170473, - [SMALL_STATE(3979)] = 170499, - [SMALL_STATE(3980)] = 170523, - [SMALL_STATE(3981)] = 170547, - [SMALL_STATE(3982)] = 170571, - [SMALL_STATE(3983)] = 170597, - [SMALL_STATE(3984)] = 170619, - [SMALL_STATE(3985)] = 170645, - [SMALL_STATE(3986)] = 170669, - [SMALL_STATE(3987)] = 170687, - [SMALL_STATE(3988)] = 170711, - [SMALL_STATE(3989)] = 170737, - [SMALL_STATE(3990)] = 170763, - [SMALL_STATE(3991)] = 170789, - [SMALL_STATE(3992)] = 170815, - [SMALL_STATE(3993)] = 170841, - [SMALL_STATE(3994)] = 170863, - [SMALL_STATE(3995)] = 170889, - [SMALL_STATE(3996)] = 170911, - [SMALL_STATE(3997)] = 170937, - [SMALL_STATE(3998)] = 170961, - [SMALL_STATE(3999)] = 170987, - [SMALL_STATE(4000)] = 171009, - [SMALL_STATE(4001)] = 171033, - [SMALL_STATE(4002)] = 171047, - [SMALL_STATE(4003)] = 171065, - [SMALL_STATE(4004)] = 171079, - [SMALL_STATE(4005)] = 171097, - [SMALL_STATE(4006)] = 171121, - [SMALL_STATE(4007)] = 171145, - [SMALL_STATE(4008)] = 171169, - [SMALL_STATE(4009)] = 171195, - [SMALL_STATE(4010)] = 171221, - [SMALL_STATE(4011)] = 171247, - [SMALL_STATE(4012)] = 171273, - [SMALL_STATE(4013)] = 171297, - [SMALL_STATE(4014)] = 171323, - [SMALL_STATE(4015)] = 171343, - [SMALL_STATE(4016)] = 171365, - [SMALL_STATE(4017)] = 171389, - [SMALL_STATE(4018)] = 171415, - [SMALL_STATE(4019)] = 171441, - [SMALL_STATE(4020)] = 171465, - [SMALL_STATE(4021)] = 171491, - [SMALL_STATE(4022)] = 171515, - [SMALL_STATE(4023)] = 171539, - [SMALL_STATE(4024)] = 171563, - [SMALL_STATE(4025)] = 171587, - [SMALL_STATE(4026)] = 171611, - [SMALL_STATE(4027)] = 171629, - [SMALL_STATE(4028)] = 171651, - [SMALL_STATE(4029)] = 171677, - [SMALL_STATE(4030)] = 171697, - [SMALL_STATE(4031)] = 171721, - [SMALL_STATE(4032)] = 171743, - [SMALL_STATE(4033)] = 171769, - [SMALL_STATE(4034)] = 171793, - [SMALL_STATE(4035)] = 171817, - [SMALL_STATE(4036)] = 171843, - [SMALL_STATE(4037)] = 171869, - [SMALL_STATE(4038)] = 171887, - [SMALL_STATE(4039)] = 171913, - [SMALL_STATE(4040)] = 171939, - [SMALL_STATE(4041)] = 171965, - [SMALL_STATE(4042)] = 171991, - [SMALL_STATE(4043)] = 172017, - [SMALL_STATE(4044)] = 172041, - [SMALL_STATE(4045)] = 172067, - [SMALL_STATE(4046)] = 172093, - [SMALL_STATE(4047)] = 172117, - [SMALL_STATE(4048)] = 172141, - [SMALL_STATE(4049)] = 172167, - [SMALL_STATE(4050)] = 172193, - [SMALL_STATE(4051)] = 172219, - [SMALL_STATE(4052)] = 172245, - [SMALL_STATE(4053)] = 172261, - [SMALL_STATE(4054)] = 172285, - [SMALL_STATE(4055)] = 172311, - [SMALL_STATE(4056)] = 172335, - [SMALL_STATE(4057)] = 172361, - [SMALL_STATE(4058)] = 172385, - [SMALL_STATE(4059)] = 172403, - [SMALL_STATE(4060)] = 172429, - [SMALL_STATE(4061)] = 172455, - [SMALL_STATE(4062)] = 172473, - [SMALL_STATE(4063)] = 172497, - [SMALL_STATE(4064)] = 172523, - [SMALL_STATE(4065)] = 172549, - [SMALL_STATE(4066)] = 172575, - [SMALL_STATE(4067)] = 172593, - [SMALL_STATE(4068)] = 172619, - [SMALL_STATE(4069)] = 172645, - [SMALL_STATE(4070)] = 172671, - [SMALL_STATE(4071)] = 172697, - [SMALL_STATE(4072)] = 172723, - [SMALL_STATE(4073)] = 172749, - [SMALL_STATE(4074)] = 172773, - [SMALL_STATE(4075)] = 172797, - [SMALL_STATE(4076)] = 172821, - [SMALL_STATE(4077)] = 172845, - [SMALL_STATE(4078)] = 172869, - [SMALL_STATE(4079)] = 172895, - [SMALL_STATE(4080)] = 172921, - [SMALL_STATE(4081)] = 172947, - [SMALL_STATE(4082)] = 172971, - [SMALL_STATE(4083)] = 172997, - [SMALL_STATE(4084)] = 173021, - [SMALL_STATE(4085)] = 173039, - [SMALL_STATE(4086)] = 173065, - [SMALL_STATE(4087)] = 173087, - [SMALL_STATE(4088)] = 173111, - [SMALL_STATE(4089)] = 173135, - [SMALL_STATE(4090)] = 173161, - [SMALL_STATE(4091)] = 173187, - [SMALL_STATE(4092)] = 173209, - [SMALL_STATE(4093)] = 173231, - [SMALL_STATE(4094)] = 173257, - [SMALL_STATE(4095)] = 173283, - [SMALL_STATE(4096)] = 173309, - [SMALL_STATE(4097)] = 173335, - [SMALL_STATE(4098)] = 173359, - [SMALL_STATE(4099)] = 173383, - [SMALL_STATE(4100)] = 173407, - [SMALL_STATE(4101)] = 173433, - [SMALL_STATE(4102)] = 173457, - [SMALL_STATE(4103)] = 173481, - [SMALL_STATE(4104)] = 173505, - [SMALL_STATE(4105)] = 173531, - [SMALL_STATE(4106)] = 173557, - [SMALL_STATE(4107)] = 173581, - [SMALL_STATE(4108)] = 173607, - [SMALL_STATE(4109)] = 173633, - [SMALL_STATE(4110)] = 173659, - [SMALL_STATE(4111)] = 173675, - [SMALL_STATE(4112)] = 173701, - [SMALL_STATE(4113)] = 173727, - [SMALL_STATE(4114)] = 173753, - [SMALL_STATE(4115)] = 173779, - [SMALL_STATE(4116)] = 173803, - [SMALL_STATE(4117)] = 173829, - [SMALL_STATE(4118)] = 173855, - [SMALL_STATE(4119)] = 173879, - [SMALL_STATE(4120)] = 173901, - [SMALL_STATE(4121)] = 173927, - [SMALL_STATE(4122)] = 173953, - [SMALL_STATE(4123)] = 173973, - [SMALL_STATE(4124)] = 173995, - [SMALL_STATE(4125)] = 174021, - [SMALL_STATE(4126)] = 174047, - [SMALL_STATE(4127)] = 174073, - [SMALL_STATE(4128)] = 174099, - [SMALL_STATE(4129)] = 174125, - [SMALL_STATE(4130)] = 174149, - [SMALL_STATE(4131)] = 174175, - [SMALL_STATE(4132)] = 174201, - [SMALL_STATE(4133)] = 174227, - [SMALL_STATE(4134)] = 174251, - [SMALL_STATE(4135)] = 174275, - [SMALL_STATE(4136)] = 174299, - [SMALL_STATE(4137)] = 174325, - [SMALL_STATE(4138)] = 174351, - [SMALL_STATE(4139)] = 174373, - [SMALL_STATE(4140)] = 174399, - [SMALL_STATE(4141)] = 174425, - [SMALL_STATE(4142)] = 174451, - [SMALL_STATE(4143)] = 174477, - [SMALL_STATE(4144)] = 174503, - [SMALL_STATE(4145)] = 174529, - [SMALL_STATE(4146)] = 174544, - [SMALL_STATE(4147)] = 174559, - [SMALL_STATE(4148)] = 174580, - [SMALL_STATE(4149)] = 174601, - [SMALL_STATE(4150)] = 174614, - [SMALL_STATE(4151)] = 174637, - [SMALL_STATE(4152)] = 174660, - [SMALL_STATE(4153)] = 174681, - [SMALL_STATE(4154)] = 174694, - [SMALL_STATE(4155)] = 174715, - [SMALL_STATE(4156)] = 174732, - [SMALL_STATE(4157)] = 174753, - [SMALL_STATE(4158)] = 174776, - [SMALL_STATE(4159)] = 174797, - [SMALL_STATE(4160)] = 174810, - [SMALL_STATE(4161)] = 174833, - [SMALL_STATE(4162)] = 174850, - [SMALL_STATE(4163)] = 174865, - [SMALL_STATE(4164)] = 174882, - [SMALL_STATE(4165)] = 174903, - [SMALL_STATE(4166)] = 174920, - [SMALL_STATE(4167)] = 174943, - [SMALL_STATE(4168)] = 174964, - [SMALL_STATE(4169)] = 174985, - [SMALL_STATE(4170)] = 175006, - [SMALL_STATE(4171)] = 175023, - [SMALL_STATE(4172)] = 175040, - [SMALL_STATE(4173)] = 175061, - [SMALL_STATE(4174)] = 175084, - [SMALL_STATE(4175)] = 175101, - [SMALL_STATE(4176)] = 175122, - [SMALL_STATE(4177)] = 175143, - [SMALL_STATE(4178)] = 175160, - [SMALL_STATE(4179)] = 175181, - [SMALL_STATE(4180)] = 175202, - [SMALL_STATE(4181)] = 175223, - [SMALL_STATE(4182)] = 175244, - [SMALL_STATE(4183)] = 175265, - [SMALL_STATE(4184)] = 175286, - [SMALL_STATE(4185)] = 175309, - [SMALL_STATE(4186)] = 175332, - [SMALL_STATE(4187)] = 175353, - [SMALL_STATE(4188)] = 175374, - [SMALL_STATE(4189)] = 175395, - [SMALL_STATE(4190)] = 175414, - [SMALL_STATE(4191)] = 175435, - [SMALL_STATE(4192)] = 175450, - [SMALL_STATE(4193)] = 175471, - [SMALL_STATE(4194)] = 175494, - [SMALL_STATE(4195)] = 175515, - [SMALL_STATE(4196)] = 175530, - [SMALL_STATE(4197)] = 175547, - [SMALL_STATE(4198)] = 175570, - [SMALL_STATE(4199)] = 175593, - [SMALL_STATE(4200)] = 175610, - [SMALL_STATE(4201)] = 175627, - [SMALL_STATE(4202)] = 175642, - [SMALL_STATE(4203)] = 175659, - [SMALL_STATE(4204)] = 175682, - [SMALL_STATE(4205)] = 175695, - [SMALL_STATE(4206)] = 175716, - [SMALL_STATE(4207)] = 175737, - [SMALL_STATE(4208)] = 175750, - [SMALL_STATE(4209)] = 175767, - [SMALL_STATE(4210)] = 175784, - [SMALL_STATE(4211)] = 175807, - [SMALL_STATE(4212)] = 175830, - [SMALL_STATE(4213)] = 175851, - [SMALL_STATE(4214)] = 175866, - [SMALL_STATE(4215)] = 175889, - [SMALL_STATE(4216)] = 175906, - [SMALL_STATE(4217)] = 175923, - [SMALL_STATE(4218)] = 175940, - [SMALL_STATE(4219)] = 175957, - [SMALL_STATE(4220)] = 175974, - [SMALL_STATE(4221)] = 175995, - [SMALL_STATE(4222)] = 176016, - [SMALL_STATE(4223)] = 176037, - [SMALL_STATE(4224)] = 176054, - [SMALL_STATE(4225)] = 176069, - [SMALL_STATE(4226)] = 176086, - [SMALL_STATE(4227)] = 176103, - [SMALL_STATE(4228)] = 176120, - [SMALL_STATE(4229)] = 176133, - [SMALL_STATE(4230)] = 176156, - [SMALL_STATE(4231)] = 176177, - [SMALL_STATE(4232)] = 176200, - [SMALL_STATE(4233)] = 176213, - [SMALL_STATE(4234)] = 176230, - [SMALL_STATE(4235)] = 176253, - [SMALL_STATE(4236)] = 176274, - [SMALL_STATE(4237)] = 176295, - [SMALL_STATE(4238)] = 176316, - [SMALL_STATE(4239)] = 176329, - [SMALL_STATE(4240)] = 176342, - [SMALL_STATE(4241)] = 176363, - [SMALL_STATE(4242)] = 176376, - [SMALL_STATE(4243)] = 176399, - [SMALL_STATE(4244)] = 176420, - [SMALL_STATE(4245)] = 176441, - [SMALL_STATE(4246)] = 176464, - [SMALL_STATE(4247)] = 176481, - [SMALL_STATE(4248)] = 176502, - [SMALL_STATE(4249)] = 176523, - [SMALL_STATE(4250)] = 176546, - [SMALL_STATE(4251)] = 176559, - [SMALL_STATE(4252)] = 176580, - [SMALL_STATE(4253)] = 176597, - [SMALL_STATE(4254)] = 176616, - [SMALL_STATE(4255)] = 176637, - [SMALL_STATE(4256)] = 176654, - [SMALL_STATE(4257)] = 176673, - [SMALL_STATE(4258)] = 176690, - [SMALL_STATE(4259)] = 176705, - [SMALL_STATE(4260)] = 176726, - [SMALL_STATE(4261)] = 176747, - [SMALL_STATE(4262)] = 176762, - [SMALL_STATE(4263)] = 176783, - [SMALL_STATE(4264)] = 176800, - [SMALL_STATE(4265)] = 176821, - [SMALL_STATE(4266)] = 176838, - [SMALL_STATE(4267)] = 176855, - [SMALL_STATE(4268)] = 176876, - [SMALL_STATE(4269)] = 176897, - [SMALL_STATE(4270)] = 176914, - [SMALL_STATE(4271)] = 176931, - [SMALL_STATE(4272)] = 176954, - [SMALL_STATE(4273)] = 176971, - [SMALL_STATE(4274)] = 176992, - [SMALL_STATE(4275)] = 177009, - [SMALL_STATE(4276)] = 177026, - [SMALL_STATE(4277)] = 177039, - [SMALL_STATE(4278)] = 177062, - [SMALL_STATE(4279)] = 177083, - [SMALL_STATE(4280)] = 177100, - [SMALL_STATE(4281)] = 177121, - [SMALL_STATE(4282)] = 177142, - [SMALL_STATE(4283)] = 177155, - [SMALL_STATE(4284)] = 177178, - [SMALL_STATE(4285)] = 177192, - [SMALL_STATE(4286)] = 177204, - [SMALL_STATE(4287)] = 177216, - [SMALL_STATE(4288)] = 177228, - [SMALL_STATE(4289)] = 177244, - [SMALL_STATE(4290)] = 177258, - [SMALL_STATE(4291)] = 177274, - [SMALL_STATE(4292)] = 177292, - [SMALL_STATE(4293)] = 177312, - [SMALL_STATE(4294)] = 177324, - [SMALL_STATE(4295)] = 177342, - [SMALL_STATE(4296)] = 177354, - [SMALL_STATE(4297)] = 177374, - [SMALL_STATE(4298)] = 177386, - [SMALL_STATE(4299)] = 177404, - [SMALL_STATE(4300)] = 177424, - [SMALL_STATE(4301)] = 177442, - [SMALL_STATE(4302)] = 177460, - [SMALL_STATE(4303)] = 177472, - [SMALL_STATE(4304)] = 177492, - [SMALL_STATE(4305)] = 177512, - [SMALL_STATE(4306)] = 177532, - [SMALL_STATE(4307)] = 177550, - [SMALL_STATE(4308)] = 177570, - [SMALL_STATE(4309)] = 177590, - [SMALL_STATE(4310)] = 177610, - [SMALL_STATE(4311)] = 177630, - [SMALL_STATE(4312)] = 177650, - [SMALL_STATE(4313)] = 177670, - [SMALL_STATE(4314)] = 177690, - [SMALL_STATE(4315)] = 177710, - [SMALL_STATE(4316)] = 177722, - [SMALL_STATE(4317)] = 177734, - [SMALL_STATE(4318)] = 177754, - [SMALL_STATE(4319)] = 177774, - [SMALL_STATE(4320)] = 177794, - [SMALL_STATE(4321)] = 177810, - [SMALL_STATE(4322)] = 177822, - [SMALL_STATE(4323)] = 177840, - [SMALL_STATE(4324)] = 177852, - [SMALL_STATE(4325)] = 177872, - [SMALL_STATE(4326)] = 177890, - [SMALL_STATE(4327)] = 177902, - [SMALL_STATE(4328)] = 177922, - [SMALL_STATE(4329)] = 177934, - [SMALL_STATE(4330)] = 177954, - [SMALL_STATE(4331)] = 177972, - [SMALL_STATE(4332)] = 177984, - [SMALL_STATE(4333)] = 177996, - [SMALL_STATE(4334)] = 178008, - [SMALL_STATE(4335)] = 178020, - [SMALL_STATE(4336)] = 178036, - [SMALL_STATE(4337)] = 178048, - [SMALL_STATE(4338)] = 178060, - [SMALL_STATE(4339)] = 178078, - [SMALL_STATE(4340)] = 178090, - [SMALL_STATE(4341)] = 178110, - [SMALL_STATE(4342)] = 178122, - [SMALL_STATE(4343)] = 178142, - [SMALL_STATE(4344)] = 178162, - [SMALL_STATE(4345)] = 178174, - [SMALL_STATE(4346)] = 178194, - [SMALL_STATE(4347)] = 178214, - [SMALL_STATE(4348)] = 178226, - [SMALL_STATE(4349)] = 178246, - [SMALL_STATE(4350)] = 178266, - [SMALL_STATE(4351)] = 178286, - [SMALL_STATE(4352)] = 178302, - [SMALL_STATE(4353)] = 178322, - [SMALL_STATE(4354)] = 178342, - [SMALL_STATE(4355)] = 178362, - [SMALL_STATE(4356)] = 178382, - [SMALL_STATE(4357)] = 178402, - [SMALL_STATE(4358)] = 178414, - [SMALL_STATE(4359)] = 178432, - [SMALL_STATE(4360)] = 178450, - [SMALL_STATE(4361)] = 178462, - [SMALL_STATE(4362)] = 178476, - [SMALL_STATE(4363)] = 178492, - [SMALL_STATE(4364)] = 178512, - [SMALL_STATE(4365)] = 178524, - [SMALL_STATE(4366)] = 178536, - [SMALL_STATE(4367)] = 178556, - [SMALL_STATE(4368)] = 178568, - [SMALL_STATE(4369)] = 178584, - [SMALL_STATE(4370)] = 178604, - [SMALL_STATE(4371)] = 178616, - [SMALL_STATE(4372)] = 178632, - [SMALL_STATE(4373)] = 178646, - [SMALL_STATE(4374)] = 178662, - [SMALL_STATE(4375)] = 178682, - [SMALL_STATE(4376)] = 178694, - [SMALL_STATE(4377)] = 178706, - [SMALL_STATE(4378)] = 178722, - [SMALL_STATE(4379)] = 178734, - [SMALL_STATE(4380)] = 178754, - [SMALL_STATE(4381)] = 178766, - [SMALL_STATE(4382)] = 178786, - [SMALL_STATE(4383)] = 178806, - [SMALL_STATE(4384)] = 178818, - [SMALL_STATE(4385)] = 178838, - [SMALL_STATE(4386)] = 178858, - [SMALL_STATE(4387)] = 178878, - [SMALL_STATE(4388)] = 178898, - [SMALL_STATE(4389)] = 178910, - [SMALL_STATE(4390)] = 178930, - [SMALL_STATE(4391)] = 178948, - [SMALL_STATE(4392)] = 178960, - [SMALL_STATE(4393)] = 178972, - [SMALL_STATE(4394)] = 178992, - [SMALL_STATE(4395)] = 179004, - [SMALL_STATE(4396)] = 179016, - [SMALL_STATE(4397)] = 179028, - [SMALL_STATE(4398)] = 179042, - [SMALL_STATE(4399)] = 179058, - [SMALL_STATE(4400)] = 179070, - [SMALL_STATE(4401)] = 179090, - [SMALL_STATE(4402)] = 179102, - [SMALL_STATE(4403)] = 179122, - [SMALL_STATE(4404)] = 179134, - [SMALL_STATE(4405)] = 179154, - [SMALL_STATE(4406)] = 179174, - [SMALL_STATE(4407)] = 179190, - [SMALL_STATE(4408)] = 179208, - [SMALL_STATE(4409)] = 179226, - [SMALL_STATE(4410)] = 179246, - [SMALL_STATE(4411)] = 179266, - [SMALL_STATE(4412)] = 179286, - [SMALL_STATE(4413)] = 179306, - [SMALL_STATE(4414)] = 179326, - [SMALL_STATE(4415)] = 179346, - [SMALL_STATE(4416)] = 179366, - [SMALL_STATE(4417)] = 179386, - [SMALL_STATE(4418)] = 179406, - [SMALL_STATE(4419)] = 179426, - [SMALL_STATE(4420)] = 179446, - [SMALL_STATE(4421)] = 179466, - [SMALL_STATE(4422)] = 179486, - [SMALL_STATE(4423)] = 179504, - [SMALL_STATE(4424)] = 179524, - [SMALL_STATE(4425)] = 179544, - [SMALL_STATE(4426)] = 179560, - [SMALL_STATE(4427)] = 179580, - [SMALL_STATE(4428)] = 179600, - [SMALL_STATE(4429)] = 179614, - [SMALL_STATE(4430)] = 179630, - [SMALL_STATE(4431)] = 179650, - [SMALL_STATE(4432)] = 179662, - [SMALL_STATE(4433)] = 179682, - [SMALL_STATE(4434)] = 179702, - [SMALL_STATE(4435)] = 179720, - [SMALL_STATE(4436)] = 179740, - [SMALL_STATE(4437)] = 179758, - [SMALL_STATE(4438)] = 179778, - [SMALL_STATE(4439)] = 179798, - [SMALL_STATE(4440)] = 179818, - [SMALL_STATE(4441)] = 179838, - [SMALL_STATE(4442)] = 179850, - [SMALL_STATE(4443)] = 179862, - [SMALL_STATE(4444)] = 179882, - [SMALL_STATE(4445)] = 179902, - [SMALL_STATE(4446)] = 179918, - [SMALL_STATE(4447)] = 179930, - [SMALL_STATE(4448)] = 179946, - [SMALL_STATE(4449)] = 179966, - [SMALL_STATE(4450)] = 179986, - [SMALL_STATE(4451)] = 180006, - [SMALL_STATE(4452)] = 180026, - [SMALL_STATE(4453)] = 180038, - [SMALL_STATE(4454)] = 180054, - [SMALL_STATE(4455)] = 180074, - [SMALL_STATE(4456)] = 180090, - [SMALL_STATE(4457)] = 180110, - [SMALL_STATE(4458)] = 180130, - [SMALL_STATE(4459)] = 180150, - [SMALL_STATE(4460)] = 180162, - [SMALL_STATE(4461)] = 180174, - [SMALL_STATE(4462)] = 180194, - [SMALL_STATE(4463)] = 180210, - [SMALL_STATE(4464)] = 180228, - [SMALL_STATE(4465)] = 180248, - [SMALL_STATE(4466)] = 180259, - [SMALL_STATE(4467)] = 180270, - [SMALL_STATE(4468)] = 180281, - [SMALL_STATE(4469)] = 180292, - [SMALL_STATE(4470)] = 180303, - [SMALL_STATE(4471)] = 180314, - [SMALL_STATE(4472)] = 180325, - [SMALL_STATE(4473)] = 180336, - [SMALL_STATE(4474)] = 180347, - [SMALL_STATE(4475)] = 180358, - [SMALL_STATE(4476)] = 180369, - [SMALL_STATE(4477)] = 180380, - [SMALL_STATE(4478)] = 180391, - [SMALL_STATE(4479)] = 180408, - [SMALL_STATE(4480)] = 180419, - [SMALL_STATE(4481)] = 180430, - [SMALL_STATE(4482)] = 180441, - [SMALL_STATE(4483)] = 180452, - [SMALL_STATE(4484)] = 180463, - [SMALL_STATE(4485)] = 180478, - [SMALL_STATE(4486)] = 180495, - [SMALL_STATE(4487)] = 180510, - [SMALL_STATE(4488)] = 180521, - [SMALL_STATE(4489)] = 180532, - [SMALL_STATE(4490)] = 180543, - [SMALL_STATE(4491)] = 180554, - [SMALL_STATE(4492)] = 180565, - [SMALL_STATE(4493)] = 180576, - [SMALL_STATE(4494)] = 180587, - [SMALL_STATE(4495)] = 180598, - [SMALL_STATE(4496)] = 180611, - [SMALL_STATE(4497)] = 180622, - [SMALL_STATE(4498)] = 180633, - [SMALL_STATE(4499)] = 180648, - [SMALL_STATE(4500)] = 180665, - [SMALL_STATE(4501)] = 180682, - [SMALL_STATE(4502)] = 180699, - [SMALL_STATE(4503)] = 180714, - [SMALL_STATE(4504)] = 180729, - [SMALL_STATE(4505)] = 180744, - [SMALL_STATE(4506)] = 180757, - [SMALL_STATE(4507)] = 180774, - [SMALL_STATE(4508)] = 180791, - [SMALL_STATE(4509)] = 180808, - [SMALL_STATE(4510)] = 180825, - [SMALL_STATE(4511)] = 180842, - [SMALL_STATE(4512)] = 180857, - [SMALL_STATE(4513)] = 180868, - [SMALL_STATE(4514)] = 180879, - [SMALL_STATE(4515)] = 180896, - [SMALL_STATE(4516)] = 180913, - [SMALL_STATE(4517)] = 180928, - [SMALL_STATE(4518)] = 180945, - [SMALL_STATE(4519)] = 180956, - [SMALL_STATE(4520)] = 180967, - [SMALL_STATE(4521)] = 180978, - [SMALL_STATE(4522)] = 180989, - [SMALL_STATE(4523)] = 181004, - [SMALL_STATE(4524)] = 181019, - [SMALL_STATE(4525)] = 181036, - [SMALL_STATE(4526)] = 181047, - [SMALL_STATE(4527)] = 181064, - [SMALL_STATE(4528)] = 181081, - [SMALL_STATE(4529)] = 181096, - [SMALL_STATE(4530)] = 181111, - [SMALL_STATE(4531)] = 181126, - [SMALL_STATE(4532)] = 181143, - [SMALL_STATE(4533)] = 181160, - [SMALL_STATE(4534)] = 181171, - [SMALL_STATE(4535)] = 181184, - [SMALL_STATE(4536)] = 181201, - [SMALL_STATE(4537)] = 181212, - [SMALL_STATE(4538)] = 181227, - [SMALL_STATE(4539)] = 181244, - [SMALL_STATE(4540)] = 181255, - [SMALL_STATE(4541)] = 181272, - [SMALL_STATE(4542)] = 181283, - [SMALL_STATE(4543)] = 181298, - [SMALL_STATE(4544)] = 181313, - [SMALL_STATE(4545)] = 181324, - [SMALL_STATE(4546)] = 181335, - [SMALL_STATE(4547)] = 181346, - [SMALL_STATE(4548)] = 181361, - [SMALL_STATE(4549)] = 181376, - [SMALL_STATE(4550)] = 181393, - [SMALL_STATE(4551)] = 181410, - [SMALL_STATE(4552)] = 181421, - [SMALL_STATE(4553)] = 181438, - [SMALL_STATE(4554)] = 181455, - [SMALL_STATE(4555)] = 181466, - [SMALL_STATE(4556)] = 181477, - [SMALL_STATE(4557)] = 181488, - [SMALL_STATE(4558)] = 181499, - [SMALL_STATE(4559)] = 181514, - [SMALL_STATE(4560)] = 181529, - [SMALL_STATE(4561)] = 181540, - [SMALL_STATE(4562)] = 181555, - [SMALL_STATE(4563)] = 181572, - [SMALL_STATE(4564)] = 181583, - [SMALL_STATE(4565)] = 181600, - [SMALL_STATE(4566)] = 181611, - [SMALL_STATE(4567)] = 181622, - [SMALL_STATE(4568)] = 181635, - [SMALL_STATE(4569)] = 181646, - [SMALL_STATE(4570)] = 181661, - [SMALL_STATE(4571)] = 181676, - [SMALL_STATE(4572)] = 181687, - [SMALL_STATE(4573)] = 181702, - [SMALL_STATE(4574)] = 181717, - [SMALL_STATE(4575)] = 181730, - [SMALL_STATE(4576)] = 181747, - [SMALL_STATE(4577)] = 181758, - [SMALL_STATE(4578)] = 181775, - [SMALL_STATE(4579)] = 181790, - [SMALL_STATE(4580)] = 181805, - [SMALL_STATE(4581)] = 181822, - [SMALL_STATE(4582)] = 181837, - [SMALL_STATE(4583)] = 181854, - [SMALL_STATE(4584)] = 181869, - [SMALL_STATE(4585)] = 181886, - [SMALL_STATE(4586)] = 181903, - [SMALL_STATE(4587)] = 181914, - [SMALL_STATE(4588)] = 181925, - [SMALL_STATE(4589)] = 181936, - [SMALL_STATE(4590)] = 181947, - [SMALL_STATE(4591)] = 181958, - [SMALL_STATE(4592)] = 181975, - [SMALL_STATE(4593)] = 181992, - [SMALL_STATE(4594)] = 182003, - [SMALL_STATE(4595)] = 182014, - [SMALL_STATE(4596)] = 182025, - [SMALL_STATE(4597)] = 182036, - [SMALL_STATE(4598)] = 182047, - [SMALL_STATE(4599)] = 182064, - [SMALL_STATE(4600)] = 182075, - [SMALL_STATE(4601)] = 182092, - [SMALL_STATE(4602)] = 182109, - [SMALL_STATE(4603)] = 182120, - [SMALL_STATE(4604)] = 182137, - [SMALL_STATE(4605)] = 182154, - [SMALL_STATE(4606)] = 182165, - [SMALL_STATE(4607)] = 182176, - [SMALL_STATE(4608)] = 182187, - [SMALL_STATE(4609)] = 182202, - [SMALL_STATE(4610)] = 182217, - [SMALL_STATE(4611)] = 182234, - [SMALL_STATE(4612)] = 182249, - [SMALL_STATE(4613)] = 182266, - [SMALL_STATE(4614)] = 182283, - [SMALL_STATE(4615)] = 182294, - [SMALL_STATE(4616)] = 182311, - [SMALL_STATE(4617)] = 182328, - [SMALL_STATE(4618)] = 182343, - [SMALL_STATE(4619)] = 182354, - [SMALL_STATE(4620)] = 182369, - [SMALL_STATE(4621)] = 182380, - [SMALL_STATE(4622)] = 182395, - [SMALL_STATE(4623)] = 182412, - [SMALL_STATE(4624)] = 182427, - [SMALL_STATE(4625)] = 182438, - [SMALL_STATE(4626)] = 182449, - [SMALL_STATE(4627)] = 182460, - [SMALL_STATE(4628)] = 182471, - [SMALL_STATE(4629)] = 182486, - [SMALL_STATE(4630)] = 182497, - [SMALL_STATE(4631)] = 182508, - [SMALL_STATE(4632)] = 182523, - [SMALL_STATE(4633)] = 182534, - [SMALL_STATE(4634)] = 182545, - [SMALL_STATE(4635)] = 182556, - [SMALL_STATE(4636)] = 182570, - [SMALL_STATE(4637)] = 182584, - [SMALL_STATE(4638)] = 182596, - [SMALL_STATE(4639)] = 182610, - [SMALL_STATE(4640)] = 182624, - [SMALL_STATE(4641)] = 182638, - [SMALL_STATE(4642)] = 182652, - [SMALL_STATE(4643)] = 182666, - [SMALL_STATE(4644)] = 182680, - [SMALL_STATE(4645)] = 182694, - [SMALL_STATE(4646)] = 182708, - [SMALL_STATE(4647)] = 182722, - [SMALL_STATE(4648)] = 182736, - [SMALL_STATE(4649)] = 182750, - [SMALL_STATE(4650)] = 182764, - [SMALL_STATE(4651)] = 182778, - [SMALL_STATE(4652)] = 182792, - [SMALL_STATE(4653)] = 182806, - [SMALL_STATE(4654)] = 182820, - [SMALL_STATE(4655)] = 182834, - [SMALL_STATE(4656)] = 182848, - [SMALL_STATE(4657)] = 182862, - [SMALL_STATE(4658)] = 182876, - [SMALL_STATE(4659)] = 182890, - [SMALL_STATE(4660)] = 182904, - [SMALL_STATE(4661)] = 182918, - [SMALL_STATE(4662)] = 182932, - [SMALL_STATE(4663)] = 182944, - [SMALL_STATE(4664)] = 182958, - [SMALL_STATE(4665)] = 182970, - [SMALL_STATE(4666)] = 182984, - [SMALL_STATE(4667)] = 182998, - [SMALL_STATE(4668)] = 183012, - [SMALL_STATE(4669)] = 183026, - [SMALL_STATE(4670)] = 183040, - [SMALL_STATE(4671)] = 183054, - [SMALL_STATE(4672)] = 183068, - [SMALL_STATE(4673)] = 183082, - [SMALL_STATE(4674)] = 183096, - [SMALL_STATE(4675)] = 183110, - [SMALL_STATE(4676)] = 183124, - [SMALL_STATE(4677)] = 183138, - [SMALL_STATE(4678)] = 183152, - [SMALL_STATE(4679)] = 183166, - [SMALL_STATE(4680)] = 183180, - [SMALL_STATE(4681)] = 183194, - [SMALL_STATE(4682)] = 183208, - [SMALL_STATE(4683)] = 183222, - [SMALL_STATE(4684)] = 183236, - [SMALL_STATE(4685)] = 183250, - [SMALL_STATE(4686)] = 183264, - [SMALL_STATE(4687)] = 183274, - [SMALL_STATE(4688)] = 183288, - [SMALL_STATE(4689)] = 183302, - [SMALL_STATE(4690)] = 183316, - [SMALL_STATE(4691)] = 183330, - [SMALL_STATE(4692)] = 183344, - [SMALL_STATE(4693)] = 183358, - [SMALL_STATE(4694)] = 183372, - [SMALL_STATE(4695)] = 183386, - [SMALL_STATE(4696)] = 183400, - [SMALL_STATE(4697)] = 183414, - [SMALL_STATE(4698)] = 183428, - [SMALL_STATE(4699)] = 183442, - [SMALL_STATE(4700)] = 183456, - [SMALL_STATE(4701)] = 183470, - [SMALL_STATE(4702)] = 183484, - [SMALL_STATE(4703)] = 183498, - [SMALL_STATE(4704)] = 183512, - [SMALL_STATE(4705)] = 183526, - [SMALL_STATE(4706)] = 183540, - [SMALL_STATE(4707)] = 183554, - [SMALL_STATE(4708)] = 183568, - [SMALL_STATE(4709)] = 183582, - [SMALL_STATE(4710)] = 183596, - [SMALL_STATE(4711)] = 183610, - [SMALL_STATE(4712)] = 183624, - [SMALL_STATE(4713)] = 183636, - [SMALL_STATE(4714)] = 183650, - [SMALL_STATE(4715)] = 183664, - [SMALL_STATE(4716)] = 183678, - [SMALL_STATE(4717)] = 183692, - [SMALL_STATE(4718)] = 183706, - [SMALL_STATE(4719)] = 183720, - [SMALL_STATE(4720)] = 183734, - [SMALL_STATE(4721)] = 183748, - [SMALL_STATE(4722)] = 183762, - [SMALL_STATE(4723)] = 183776, - [SMALL_STATE(4724)] = 183790, - [SMALL_STATE(4725)] = 183804, - [SMALL_STATE(4726)] = 183818, - [SMALL_STATE(4727)] = 183832, - [SMALL_STATE(4728)] = 183846, - [SMALL_STATE(4729)] = 183860, - [SMALL_STATE(4730)] = 183874, - [SMALL_STATE(4731)] = 183888, - [SMALL_STATE(4732)] = 183902, - [SMALL_STATE(4733)] = 183916, - [SMALL_STATE(4734)] = 183930, - [SMALL_STATE(4735)] = 183944, - [SMALL_STATE(4736)] = 183958, - [SMALL_STATE(4737)] = 183972, - [SMALL_STATE(4738)] = 183984, - [SMALL_STATE(4739)] = 183998, - [SMALL_STATE(4740)] = 184012, - [SMALL_STATE(4741)] = 184026, - [SMALL_STATE(4742)] = 184040, - [SMALL_STATE(4743)] = 184054, - [SMALL_STATE(4744)] = 184068, - [SMALL_STATE(4745)] = 184082, - [SMALL_STATE(4746)] = 184096, - [SMALL_STATE(4747)] = 184110, - [SMALL_STATE(4748)] = 184124, - [SMALL_STATE(4749)] = 184138, - [SMALL_STATE(4750)] = 184152, - [SMALL_STATE(4751)] = 184166, - [SMALL_STATE(4752)] = 184180, - [SMALL_STATE(4753)] = 184194, - [SMALL_STATE(4754)] = 184208, - [SMALL_STATE(4755)] = 184222, - [SMALL_STATE(4756)] = 184236, - [SMALL_STATE(4757)] = 184250, - [SMALL_STATE(4758)] = 184264, - [SMALL_STATE(4759)] = 184278, - [SMALL_STATE(4760)] = 184292, - [SMALL_STATE(4761)] = 184306, - [SMALL_STATE(4762)] = 184320, - [SMALL_STATE(4763)] = 184334, - [SMALL_STATE(4764)] = 184348, - [SMALL_STATE(4765)] = 184362, - [SMALL_STATE(4766)] = 184376, - [SMALL_STATE(4767)] = 184390, - [SMALL_STATE(4768)] = 184404, - [SMALL_STATE(4769)] = 184418, - [SMALL_STATE(4770)] = 184432, - [SMALL_STATE(4771)] = 184446, - [SMALL_STATE(4772)] = 184460, - [SMALL_STATE(4773)] = 184474, - [SMALL_STATE(4774)] = 184484, - [SMALL_STATE(4775)] = 184498, - [SMALL_STATE(4776)] = 184512, - [SMALL_STATE(4777)] = 184522, - [SMALL_STATE(4778)] = 184536, - [SMALL_STATE(4779)] = 184550, - [SMALL_STATE(4780)] = 184564, - [SMALL_STATE(4781)] = 184578, - [SMALL_STATE(4782)] = 184592, - [SMALL_STATE(4783)] = 184606, - [SMALL_STATE(4784)] = 184620, - [SMALL_STATE(4785)] = 184634, - [SMALL_STATE(4786)] = 184648, - [SMALL_STATE(4787)] = 184662, - [SMALL_STATE(4788)] = 184674, - [SMALL_STATE(4789)] = 184688, - [SMALL_STATE(4790)] = 184702, - [SMALL_STATE(4791)] = 184716, - [SMALL_STATE(4792)] = 184730, - [SMALL_STATE(4793)] = 184744, - [SMALL_STATE(4794)] = 184758, - [SMALL_STATE(4795)] = 184772, - [SMALL_STATE(4796)] = 184786, - [SMALL_STATE(4797)] = 184800, - [SMALL_STATE(4798)] = 184814, - [SMALL_STATE(4799)] = 184828, - [SMALL_STATE(4800)] = 184842, - [SMALL_STATE(4801)] = 184856, - [SMALL_STATE(4802)] = 184870, - [SMALL_STATE(4803)] = 184884, - [SMALL_STATE(4804)] = 184898, - [SMALL_STATE(4805)] = 184912, - [SMALL_STATE(4806)] = 184926, - [SMALL_STATE(4807)] = 184940, - [SMALL_STATE(4808)] = 184954, - [SMALL_STATE(4809)] = 184964, - [SMALL_STATE(4810)] = 184978, - [SMALL_STATE(4811)] = 184992, - [SMALL_STATE(4812)] = 185006, - [SMALL_STATE(4813)] = 185020, - [SMALL_STATE(4814)] = 185034, - [SMALL_STATE(4815)] = 185048, - [SMALL_STATE(4816)] = 185062, - [SMALL_STATE(4817)] = 185076, - [SMALL_STATE(4818)] = 185090, - [SMALL_STATE(4819)] = 185104, - [SMALL_STATE(4820)] = 185118, - [SMALL_STATE(4821)] = 185132, - [SMALL_STATE(4822)] = 185146, - [SMALL_STATE(4823)] = 185160, - [SMALL_STATE(4824)] = 185174, - [SMALL_STATE(4825)] = 185188, - [SMALL_STATE(4826)] = 185202, - [SMALL_STATE(4827)] = 185216, - [SMALL_STATE(4828)] = 185230, - [SMALL_STATE(4829)] = 185244, - [SMALL_STATE(4830)] = 185258, - [SMALL_STATE(4831)] = 185272, - [SMALL_STATE(4832)] = 185286, - [SMALL_STATE(4833)] = 185296, - [SMALL_STATE(4834)] = 185310, - [SMALL_STATE(4835)] = 185324, - [SMALL_STATE(4836)] = 185338, - [SMALL_STATE(4837)] = 185352, - [SMALL_STATE(4838)] = 185366, - [SMALL_STATE(4839)] = 185378, - [SMALL_STATE(4840)] = 185392, - [SMALL_STATE(4841)] = 185406, - [SMALL_STATE(4842)] = 185420, - [SMALL_STATE(4843)] = 185432, - [SMALL_STATE(4844)] = 185446, - [SMALL_STATE(4845)] = 185460, - [SMALL_STATE(4846)] = 185474, - [SMALL_STATE(4847)] = 185488, - [SMALL_STATE(4848)] = 185502, - [SMALL_STATE(4849)] = 185516, - [SMALL_STATE(4850)] = 185530, - [SMALL_STATE(4851)] = 185544, - [SMALL_STATE(4852)] = 185558, - [SMALL_STATE(4853)] = 185572, - [SMALL_STATE(4854)] = 185584, - [SMALL_STATE(4855)] = 185598, - [SMALL_STATE(4856)] = 185610, - [SMALL_STATE(4857)] = 185622, - [SMALL_STATE(4858)] = 185636, - [SMALL_STATE(4859)] = 185650, - [SMALL_STATE(4860)] = 185664, - [SMALL_STATE(4861)] = 185678, - [SMALL_STATE(4862)] = 185692, - [SMALL_STATE(4863)] = 185706, - [SMALL_STATE(4864)] = 185720, - [SMALL_STATE(4865)] = 185734, - [SMALL_STATE(4866)] = 185748, - [SMALL_STATE(4867)] = 185762, - [SMALL_STATE(4868)] = 185776, - [SMALL_STATE(4869)] = 185790, - [SMALL_STATE(4870)] = 185804, - [SMALL_STATE(4871)] = 185818, - [SMALL_STATE(4872)] = 185832, - [SMALL_STATE(4873)] = 185846, - [SMALL_STATE(4874)] = 185860, - [SMALL_STATE(4875)] = 185874, - [SMALL_STATE(4876)] = 185888, - [SMALL_STATE(4877)] = 185902, - [SMALL_STATE(4878)] = 185916, - [SMALL_STATE(4879)] = 185930, - [SMALL_STATE(4880)] = 185944, - [SMALL_STATE(4881)] = 185958, - [SMALL_STATE(4882)] = 185972, - [SMALL_STATE(4883)] = 185986, - [SMALL_STATE(4884)] = 186000, - [SMALL_STATE(4885)] = 186014, - [SMALL_STATE(4886)] = 186028, - [SMALL_STATE(4887)] = 186042, - [SMALL_STATE(4888)] = 186056, - [SMALL_STATE(4889)] = 186068, - [SMALL_STATE(4890)] = 186082, - [SMALL_STATE(4891)] = 186096, - [SMALL_STATE(4892)] = 186110, - [SMALL_STATE(4893)] = 186124, - [SMALL_STATE(4894)] = 186138, - [SMALL_STATE(4895)] = 186152, - [SMALL_STATE(4896)] = 186166, - [SMALL_STATE(4897)] = 186180, - [SMALL_STATE(4898)] = 186194, - [SMALL_STATE(4899)] = 186208, - [SMALL_STATE(4900)] = 186222, - [SMALL_STATE(4901)] = 186236, - [SMALL_STATE(4902)] = 186250, - [SMALL_STATE(4903)] = 186264, - [SMALL_STATE(4904)] = 186278, - [SMALL_STATE(4905)] = 186292, - [SMALL_STATE(4906)] = 186306, - [SMALL_STATE(4907)] = 186320, - [SMALL_STATE(4908)] = 186334, - [SMALL_STATE(4909)] = 186348, - [SMALL_STATE(4910)] = 186362, - [SMALL_STATE(4911)] = 186376, - [SMALL_STATE(4912)] = 186390, - [SMALL_STATE(4913)] = 186404, - [SMALL_STATE(4914)] = 186418, - [SMALL_STATE(4915)] = 186432, - [SMALL_STATE(4916)] = 186446, - [SMALL_STATE(4917)] = 186456, - [SMALL_STATE(4918)] = 186470, - [SMALL_STATE(4919)] = 186484, - [SMALL_STATE(4920)] = 186498, - [SMALL_STATE(4921)] = 186512, - [SMALL_STATE(4922)] = 186526, - [SMALL_STATE(4923)] = 186538, - [SMALL_STATE(4924)] = 186552, - [SMALL_STATE(4925)] = 186566, - [SMALL_STATE(4926)] = 186580, - [SMALL_STATE(4927)] = 186594, - [SMALL_STATE(4928)] = 186608, - [SMALL_STATE(4929)] = 186622, - [SMALL_STATE(4930)] = 186636, - [SMALL_STATE(4931)] = 186650, - [SMALL_STATE(4932)] = 186664, - [SMALL_STATE(4933)] = 186678, - [SMALL_STATE(4934)] = 186692, - [SMALL_STATE(4935)] = 186706, - [SMALL_STATE(4936)] = 186720, - [SMALL_STATE(4937)] = 186734, - [SMALL_STATE(4938)] = 186748, - [SMALL_STATE(4939)] = 186762, - [SMALL_STATE(4940)] = 186776, - [SMALL_STATE(4941)] = 186790, - [SMALL_STATE(4942)] = 186804, - [SMALL_STATE(4943)] = 186818, - [SMALL_STATE(4944)] = 186832, - [SMALL_STATE(4945)] = 186846, - [SMALL_STATE(4946)] = 186860, - [SMALL_STATE(4947)] = 186874, - [SMALL_STATE(4948)] = 186888, - [SMALL_STATE(4949)] = 186902, - [SMALL_STATE(4950)] = 186916, - [SMALL_STATE(4951)] = 186930, - [SMALL_STATE(4952)] = 186944, - [SMALL_STATE(4953)] = 186958, - [SMALL_STATE(4954)] = 186972, - [SMALL_STATE(4955)] = 186986, - [SMALL_STATE(4956)] = 186996, - [SMALL_STATE(4957)] = 187010, - [SMALL_STATE(4958)] = 187024, - [SMALL_STATE(4959)] = 187038, - [SMALL_STATE(4960)] = 187052, - [SMALL_STATE(4961)] = 187066, - [SMALL_STATE(4962)] = 187080, - [SMALL_STATE(4963)] = 187094, - [SMALL_STATE(4964)] = 187108, - [SMALL_STATE(4965)] = 187122, - [SMALL_STATE(4966)] = 187136, - [SMALL_STATE(4967)] = 187150, - [SMALL_STATE(4968)] = 187164, - [SMALL_STATE(4969)] = 187178, - [SMALL_STATE(4970)] = 187190, - [SMALL_STATE(4971)] = 187204, - [SMALL_STATE(4972)] = 187216, - [SMALL_STATE(4973)] = 187230, - [SMALL_STATE(4974)] = 187242, - [SMALL_STATE(4975)] = 187256, - [SMALL_STATE(4976)] = 187270, - [SMALL_STATE(4977)] = 187284, - [SMALL_STATE(4978)] = 187298, - [SMALL_STATE(4979)] = 187312, - [SMALL_STATE(4980)] = 187326, - [SMALL_STATE(4981)] = 187340, - [SMALL_STATE(4982)] = 187354, - [SMALL_STATE(4983)] = 187368, - [SMALL_STATE(4984)] = 187382, - [SMALL_STATE(4985)] = 187396, - [SMALL_STATE(4986)] = 187410, - [SMALL_STATE(4987)] = 187420, - [SMALL_STATE(4988)] = 187434, - [SMALL_STATE(4989)] = 187448, - [SMALL_STATE(4990)] = 187462, - [SMALL_STATE(4991)] = 187476, - [SMALL_STATE(4992)] = 187490, - [SMALL_STATE(4993)] = 187500, - [SMALL_STATE(4994)] = 187514, - [SMALL_STATE(4995)] = 187528, - [SMALL_STATE(4996)] = 187542, - [SMALL_STATE(4997)] = 187556, - [SMALL_STATE(4998)] = 187570, - [SMALL_STATE(4999)] = 187584, - [SMALL_STATE(5000)] = 187594, - [SMALL_STATE(5001)] = 187608, - [SMALL_STATE(5002)] = 187622, - [SMALL_STATE(5003)] = 187634, - [SMALL_STATE(5004)] = 187648, - [SMALL_STATE(5005)] = 187662, - [SMALL_STATE(5006)] = 187676, - [SMALL_STATE(5007)] = 187690, - [SMALL_STATE(5008)] = 187704, - [SMALL_STATE(5009)] = 187718, - [SMALL_STATE(5010)] = 187732, - [SMALL_STATE(5011)] = 187746, - [SMALL_STATE(5012)] = 187760, - [SMALL_STATE(5013)] = 187774, - [SMALL_STATE(5014)] = 187788, - [SMALL_STATE(5015)] = 187802, - [SMALL_STATE(5016)] = 187814, - [SMALL_STATE(5017)] = 187828, - [SMALL_STATE(5018)] = 187842, - [SMALL_STATE(5019)] = 187856, - [SMALL_STATE(5020)] = 187870, - [SMALL_STATE(5021)] = 187884, - [SMALL_STATE(5022)] = 187898, - [SMALL_STATE(5023)] = 187912, - [SMALL_STATE(5024)] = 187926, - [SMALL_STATE(5025)] = 187940, - [SMALL_STATE(5026)] = 187954, - [SMALL_STATE(5027)] = 187968, - [SMALL_STATE(5028)] = 187982, - [SMALL_STATE(5029)] = 187996, - [SMALL_STATE(5030)] = 188010, - [SMALL_STATE(5031)] = 188024, - [SMALL_STATE(5032)] = 188038, - [SMALL_STATE(5033)] = 188052, - [SMALL_STATE(5034)] = 188066, - [SMALL_STATE(5035)] = 188080, - [SMALL_STATE(5036)] = 188090, - [SMALL_STATE(5037)] = 188104, - [SMALL_STATE(5038)] = 188118, - [SMALL_STATE(5039)] = 188132, - [SMALL_STATE(5040)] = 188146, - [SMALL_STATE(5041)] = 188160, - [SMALL_STATE(5042)] = 188174, - [SMALL_STATE(5043)] = 188188, - [SMALL_STATE(5044)] = 188202, - [SMALL_STATE(5045)] = 188216, - [SMALL_STATE(5046)] = 188230, - [SMALL_STATE(5047)] = 188242, - [SMALL_STATE(5048)] = 188256, - [SMALL_STATE(5049)] = 188270, - [SMALL_STATE(5050)] = 188284, - [SMALL_STATE(5051)] = 188298, - [SMALL_STATE(5052)] = 188312, - [SMALL_STATE(5053)] = 188322, - [SMALL_STATE(5054)] = 188336, - [SMALL_STATE(5055)] = 188348, - [SMALL_STATE(5056)] = 188360, - [SMALL_STATE(5057)] = 188374, - [SMALL_STATE(5058)] = 188386, - [SMALL_STATE(5059)] = 188400, - [SMALL_STATE(5060)] = 188414, - [SMALL_STATE(5061)] = 188428, - [SMALL_STATE(5062)] = 188440, - [SMALL_STATE(5063)] = 188454, - [SMALL_STATE(5064)] = 188468, - [SMALL_STATE(5065)] = 188480, - [SMALL_STATE(5066)] = 188494, - [SMALL_STATE(5067)] = 188508, - [SMALL_STATE(5068)] = 188522, - [SMALL_STATE(5069)] = 188536, - [SMALL_STATE(5070)] = 188550, - [SMALL_STATE(5071)] = 188562, - [SMALL_STATE(5072)] = 188576, - [SMALL_STATE(5073)] = 188590, - [SMALL_STATE(5074)] = 188604, - [SMALL_STATE(5075)] = 188618, - [SMALL_STATE(5076)] = 188632, - [SMALL_STATE(5077)] = 188646, - [SMALL_STATE(5078)] = 188658, - [SMALL_STATE(5079)] = 188672, - [SMALL_STATE(5080)] = 188686, - [SMALL_STATE(5081)] = 188700, - [SMALL_STATE(5082)] = 188714, - [SMALL_STATE(5083)] = 188726, - [SMALL_STATE(5084)] = 188740, - [SMALL_STATE(5085)] = 188754, - [SMALL_STATE(5086)] = 188768, - [SMALL_STATE(5087)] = 188782, - [SMALL_STATE(5088)] = 188796, - [SMALL_STATE(5089)] = 188810, - [SMALL_STATE(5090)] = 188824, - [SMALL_STATE(5091)] = 188838, - [SMALL_STATE(5092)] = 188852, - [SMALL_STATE(5093)] = 188866, - [SMALL_STATE(5094)] = 188880, - [SMALL_STATE(5095)] = 188894, - [SMALL_STATE(5096)] = 188908, - [SMALL_STATE(5097)] = 188922, - [SMALL_STATE(5098)] = 188936, - [SMALL_STATE(5099)] = 188950, - [SMALL_STATE(5100)] = 188964, - [SMALL_STATE(5101)] = 188978, - [SMALL_STATE(5102)] = 188992, - [SMALL_STATE(5103)] = 189006, - [SMALL_STATE(5104)] = 189020, - [SMALL_STATE(5105)] = 189034, - [SMALL_STATE(5106)] = 189048, - [SMALL_STATE(5107)] = 189062, - [SMALL_STATE(5108)] = 189076, - [SMALL_STATE(5109)] = 189090, - [SMALL_STATE(5110)] = 189104, - [SMALL_STATE(5111)] = 189118, - [SMALL_STATE(5112)] = 189132, - [SMALL_STATE(5113)] = 189146, - [SMALL_STATE(5114)] = 189160, - [SMALL_STATE(5115)] = 189174, - [SMALL_STATE(5116)] = 189188, - [SMALL_STATE(5117)] = 189202, - [SMALL_STATE(5118)] = 189216, - [SMALL_STATE(5119)] = 189230, - [SMALL_STATE(5120)] = 189244, - [SMALL_STATE(5121)] = 189258, - [SMALL_STATE(5122)] = 189272, - [SMALL_STATE(5123)] = 189286, - [SMALL_STATE(5124)] = 189300, - [SMALL_STATE(5125)] = 189314, - [SMALL_STATE(5126)] = 189328, - [SMALL_STATE(5127)] = 189342, - [SMALL_STATE(5128)] = 189356, - [SMALL_STATE(5129)] = 189370, - [SMALL_STATE(5130)] = 189384, - [SMALL_STATE(5131)] = 189398, - [SMALL_STATE(5132)] = 189412, - [SMALL_STATE(5133)] = 189426, - [SMALL_STATE(5134)] = 189440, - [SMALL_STATE(5135)] = 189454, - [SMALL_STATE(5136)] = 189466, - [SMALL_STATE(5137)] = 189480, - [SMALL_STATE(5138)] = 189494, - [SMALL_STATE(5139)] = 189508, - [SMALL_STATE(5140)] = 189522, - [SMALL_STATE(5141)] = 189536, - [SMALL_STATE(5142)] = 189550, - [SMALL_STATE(5143)] = 189564, - [SMALL_STATE(5144)] = 189576, - [SMALL_STATE(5145)] = 189590, - [SMALL_STATE(5146)] = 189602, - [SMALL_STATE(5147)] = 189612, - [SMALL_STATE(5148)] = 189626, - [SMALL_STATE(5149)] = 189640, - [SMALL_STATE(5150)] = 189650, - [SMALL_STATE(5151)] = 189664, - [SMALL_STATE(5152)] = 189675, - [SMALL_STATE(5153)] = 189686, - [SMALL_STATE(5154)] = 189695, - [SMALL_STATE(5155)] = 189706, - [SMALL_STATE(5156)] = 189715, - [SMALL_STATE(5157)] = 189724, - [SMALL_STATE(5158)] = 189733, - [SMALL_STATE(5159)] = 189742, - [SMALL_STATE(5160)] = 189751, - [SMALL_STATE(5161)] = 189760, - [SMALL_STATE(5162)] = 189771, - [SMALL_STATE(5163)] = 189782, - [SMALL_STATE(5164)] = 189791, - [SMALL_STATE(5165)] = 189802, - [SMALL_STATE(5166)] = 189813, - [SMALL_STATE(5167)] = 189824, - [SMALL_STATE(5168)] = 189833, - [SMALL_STATE(5169)] = 189842, - [SMALL_STATE(5170)] = 189851, - [SMALL_STATE(5171)] = 189860, - [SMALL_STATE(5172)] = 189871, - [SMALL_STATE(5173)] = 189882, - [SMALL_STATE(5174)] = 189893, - [SMALL_STATE(5175)] = 189904, - [SMALL_STATE(5176)] = 189915, - [SMALL_STATE(5177)] = 189924, - [SMALL_STATE(5178)] = 189933, - [SMALL_STATE(5179)] = 189942, - [SMALL_STATE(5180)] = 189953, - [SMALL_STATE(5181)] = 189962, - [SMALL_STATE(5182)] = 189973, - [SMALL_STATE(5183)] = 189982, - [SMALL_STATE(5184)] = 189993, - [SMALL_STATE(5185)] = 190002, - [SMALL_STATE(5186)] = 190011, - [SMALL_STATE(5187)] = 190022, - [SMALL_STATE(5188)] = 190031, - [SMALL_STATE(5189)] = 190042, - [SMALL_STATE(5190)] = 190051, - [SMALL_STATE(5191)] = 190060, - [SMALL_STATE(5192)] = 190071, - [SMALL_STATE(5193)] = 190080, - [SMALL_STATE(5194)] = 190091, - [SMALL_STATE(5195)] = 190100, - [SMALL_STATE(5196)] = 190111, - [SMALL_STATE(5197)] = 190122, - [SMALL_STATE(5198)] = 190131, - [SMALL_STATE(5199)] = 190142, - [SMALL_STATE(5200)] = 190153, - [SMALL_STATE(5201)] = 190164, - [SMALL_STATE(5202)] = 190175, - [SMALL_STATE(5203)] = 190184, - [SMALL_STATE(5204)] = 190195, - [SMALL_STATE(5205)] = 190206, - [SMALL_STATE(5206)] = 190217, - [SMALL_STATE(5207)] = 190228, - [SMALL_STATE(5208)] = 190239, - [SMALL_STATE(5209)] = 190250, - [SMALL_STATE(5210)] = 190261, - [SMALL_STATE(5211)] = 190272, - [SMALL_STATE(5212)] = 190281, - [SMALL_STATE(5213)] = 190292, - [SMALL_STATE(5214)] = 190303, - [SMALL_STATE(5215)] = 190314, - [SMALL_STATE(5216)] = 190323, - [SMALL_STATE(5217)] = 190334, - [SMALL_STATE(5218)] = 190345, - [SMALL_STATE(5219)] = 190356, - [SMALL_STATE(5220)] = 190365, - [SMALL_STATE(5221)] = 190376, - [SMALL_STATE(5222)] = 190387, - [SMALL_STATE(5223)] = 190398, - [SMALL_STATE(5224)] = 190409, - [SMALL_STATE(5225)] = 190420, - [SMALL_STATE(5226)] = 190431, - [SMALL_STATE(5227)] = 190440, - [SMALL_STATE(5228)] = 190451, - [SMALL_STATE(5229)] = 190460, - [SMALL_STATE(5230)] = 190469, - [SMALL_STATE(5231)] = 190480, - [SMALL_STATE(5232)] = 190491, - [SMALL_STATE(5233)] = 190502, - [SMALL_STATE(5234)] = 190513, - [SMALL_STATE(5235)] = 190524, - [SMALL_STATE(5236)] = 190533, - [SMALL_STATE(5237)] = 190542, - [SMALL_STATE(5238)] = 190553, - [SMALL_STATE(5239)] = 190564, - [SMALL_STATE(5240)] = 190575, - [SMALL_STATE(5241)] = 190586, - [SMALL_STATE(5242)] = 190597, - [SMALL_STATE(5243)] = 190608, - [SMALL_STATE(5244)] = 190619, - [SMALL_STATE(5245)] = 190630, - [SMALL_STATE(5246)] = 190641, - [SMALL_STATE(5247)] = 190652, - [SMALL_STATE(5248)] = 190663, - [SMALL_STATE(5249)] = 190674, - [SMALL_STATE(5250)] = 190683, - [SMALL_STATE(5251)] = 190692, - [SMALL_STATE(5252)] = 190703, - [SMALL_STATE(5253)] = 190714, - [SMALL_STATE(5254)] = 190725, - [SMALL_STATE(5255)] = 190736, - [SMALL_STATE(5256)] = 190747, - [SMALL_STATE(5257)] = 190756, - [SMALL_STATE(5258)] = 190765, - [SMALL_STATE(5259)] = 190776, - [SMALL_STATE(5260)] = 190787, - [SMALL_STATE(5261)] = 190796, - [SMALL_STATE(5262)] = 190807, - [SMALL_STATE(5263)] = 190818, - [SMALL_STATE(5264)] = 190827, - [SMALL_STATE(5265)] = 190836, - [SMALL_STATE(5266)] = 190847, - [SMALL_STATE(5267)] = 190858, - [SMALL_STATE(5268)] = 190869, - [SMALL_STATE(5269)] = 190878, - [SMALL_STATE(5270)] = 190887, - [SMALL_STATE(5271)] = 190898, - [SMALL_STATE(5272)] = 190909, - [SMALL_STATE(5273)] = 190920, - [SMALL_STATE(5274)] = 190931, - [SMALL_STATE(5275)] = 190940, - [SMALL_STATE(5276)] = 190951, - [SMALL_STATE(5277)] = 190962, - [SMALL_STATE(5278)] = 190971, - [SMALL_STATE(5279)] = 190982, - [SMALL_STATE(5280)] = 190993, - [SMALL_STATE(5281)] = 191004, - [SMALL_STATE(5282)] = 191015, - [SMALL_STATE(5283)] = 191026, - [SMALL_STATE(5284)] = 191035, - [SMALL_STATE(5285)] = 191046, - [SMALL_STATE(5286)] = 191055, - [SMALL_STATE(5287)] = 191066, - [SMALL_STATE(5288)] = 191077, - [SMALL_STATE(5289)] = 191088, - [SMALL_STATE(5290)] = 191099, - [SMALL_STATE(5291)] = 191108, - [SMALL_STATE(5292)] = 191119, - [SMALL_STATE(5293)] = 191130, - [SMALL_STATE(5294)] = 191139, - [SMALL_STATE(5295)] = 191150, - [SMALL_STATE(5296)] = 191159, - [SMALL_STATE(5297)] = 191168, - [SMALL_STATE(5298)] = 191177, - [SMALL_STATE(5299)] = 191188, - [SMALL_STATE(5300)] = 191197, - [SMALL_STATE(5301)] = 191208, - [SMALL_STATE(5302)] = 191217, - [SMALL_STATE(5303)] = 191228, - [SMALL_STATE(5304)] = 191239, - [SMALL_STATE(5305)] = 191250, - [SMALL_STATE(5306)] = 191259, - [SMALL_STATE(5307)] = 191268, - [SMALL_STATE(5308)] = 191277, - [SMALL_STATE(5309)] = 191288, - [SMALL_STATE(5310)] = 191299, - [SMALL_STATE(5311)] = 191308, - [SMALL_STATE(5312)] = 191317, - [SMALL_STATE(5313)] = 191328, - [SMALL_STATE(5314)] = 191339, - [SMALL_STATE(5315)] = 191350, - [SMALL_STATE(5316)] = 191359, - [SMALL_STATE(5317)] = 191370, - [SMALL_STATE(5318)] = 191379, - [SMALL_STATE(5319)] = 191388, - [SMALL_STATE(5320)] = 191397, - [SMALL_STATE(5321)] = 191408, - [SMALL_STATE(5322)] = 191419, - [SMALL_STATE(5323)] = 191430, - [SMALL_STATE(5324)] = 191441, - [SMALL_STATE(5325)] = 191452, - [SMALL_STATE(5326)] = 191461, - [SMALL_STATE(5327)] = 191472, - [SMALL_STATE(5328)] = 191483, - [SMALL_STATE(5329)] = 191494, - [SMALL_STATE(5330)] = 191503, - [SMALL_STATE(5331)] = 191514, - [SMALL_STATE(5332)] = 191525, - [SMALL_STATE(5333)] = 191536, - [SMALL_STATE(5334)] = 191547, - [SMALL_STATE(5335)] = 191558, - [SMALL_STATE(5336)] = 191567, - [SMALL_STATE(5337)] = 191576, - [SMALL_STATE(5338)] = 191585, - [SMALL_STATE(5339)] = 191594, - [SMALL_STATE(5340)] = 191605, - [SMALL_STATE(5341)] = 191616, - [SMALL_STATE(5342)] = 191625, - [SMALL_STATE(5343)] = 191636, - [SMALL_STATE(5344)] = 191647, - [SMALL_STATE(5345)] = 191656, - [SMALL_STATE(5346)] = 191665, - [SMALL_STATE(5347)] = 191674, - [SMALL_STATE(5348)] = 191685, - [SMALL_STATE(5349)] = 191696, - [SMALL_STATE(5350)] = 191707, - [SMALL_STATE(5351)] = 191718, - [SMALL_STATE(5352)] = 191727, - [SMALL_STATE(5353)] = 191738, - [SMALL_STATE(5354)] = 191747, - [SMALL_STATE(5355)] = 191758, - [SMALL_STATE(5356)] = 191767, - [SMALL_STATE(5357)] = 191776, - [SMALL_STATE(5358)] = 191785, - [SMALL_STATE(5359)] = 191796, - [SMALL_STATE(5360)] = 191807, - [SMALL_STATE(5361)] = 191816, - [SMALL_STATE(5362)] = 191825, - [SMALL_STATE(5363)] = 191834, - [SMALL_STATE(5364)] = 191843, - [SMALL_STATE(5365)] = 191852, - [SMALL_STATE(5366)] = 191863, - [SMALL_STATE(5367)] = 191872, - [SMALL_STATE(5368)] = 191881, - [SMALL_STATE(5369)] = 191890, - [SMALL_STATE(5370)] = 191901, - [SMALL_STATE(5371)] = 191910, - [SMALL_STATE(5372)] = 191921, - [SMALL_STATE(5373)] = 191930, - [SMALL_STATE(5374)] = 191939, - [SMALL_STATE(5375)] = 191948, - [SMALL_STATE(5376)] = 191957, - [SMALL_STATE(5377)] = 191966, - [SMALL_STATE(5378)] = 191975, - [SMALL_STATE(5379)] = 191984, - [SMALL_STATE(5380)] = 191993, - [SMALL_STATE(5381)] = 192002, - [SMALL_STATE(5382)] = 192010, - [SMALL_STATE(5383)] = 192018, - [SMALL_STATE(5384)] = 192026, - [SMALL_STATE(5385)] = 192034, - [SMALL_STATE(5386)] = 192042, - [SMALL_STATE(5387)] = 192050, - [SMALL_STATE(5388)] = 192058, - [SMALL_STATE(5389)] = 192066, - [SMALL_STATE(5390)] = 192074, - [SMALL_STATE(5391)] = 192082, - [SMALL_STATE(5392)] = 192090, - [SMALL_STATE(5393)] = 192098, - [SMALL_STATE(5394)] = 192106, - [SMALL_STATE(5395)] = 192114, - [SMALL_STATE(5396)] = 192122, - [SMALL_STATE(5397)] = 192130, - [SMALL_STATE(5398)] = 192138, - [SMALL_STATE(5399)] = 192146, - [SMALL_STATE(5400)] = 192154, - [SMALL_STATE(5401)] = 192162, - [SMALL_STATE(5402)] = 192170, - [SMALL_STATE(5403)] = 192178, - [SMALL_STATE(5404)] = 192186, - [SMALL_STATE(5405)] = 192194, - [SMALL_STATE(5406)] = 192202, - [SMALL_STATE(5407)] = 192210, - [SMALL_STATE(5408)] = 192218, - [SMALL_STATE(5409)] = 192226, - [SMALL_STATE(5410)] = 192234, - [SMALL_STATE(5411)] = 192242, - [SMALL_STATE(5412)] = 192250, - [SMALL_STATE(5413)] = 192258, - [SMALL_STATE(5414)] = 192266, - [SMALL_STATE(5415)] = 192274, - [SMALL_STATE(5416)] = 192282, - [SMALL_STATE(5417)] = 192290, - [SMALL_STATE(5418)] = 192298, - [SMALL_STATE(5419)] = 192306, - [SMALL_STATE(5420)] = 192314, - [SMALL_STATE(5421)] = 192322, - [SMALL_STATE(5422)] = 192330, - [SMALL_STATE(5423)] = 192338, - [SMALL_STATE(5424)] = 192346, - [SMALL_STATE(5425)] = 192354, - [SMALL_STATE(5426)] = 192362, - [SMALL_STATE(5427)] = 192370, - [SMALL_STATE(5428)] = 192378, - [SMALL_STATE(5429)] = 192386, - [SMALL_STATE(5430)] = 192394, - [SMALL_STATE(5431)] = 192402, - [SMALL_STATE(5432)] = 192410, - [SMALL_STATE(5433)] = 192418, - [SMALL_STATE(5434)] = 192426, - [SMALL_STATE(5435)] = 192434, - [SMALL_STATE(5436)] = 192442, - [SMALL_STATE(5437)] = 192450, - [SMALL_STATE(5438)] = 192458, - [SMALL_STATE(5439)] = 192466, - [SMALL_STATE(5440)] = 192474, - [SMALL_STATE(5441)] = 192482, - [SMALL_STATE(5442)] = 192490, - [SMALL_STATE(5443)] = 192498, - [SMALL_STATE(5444)] = 192506, - [SMALL_STATE(5445)] = 192514, - [SMALL_STATE(5446)] = 192522, - [SMALL_STATE(5447)] = 192530, - [SMALL_STATE(5448)] = 192538, - [SMALL_STATE(5449)] = 192546, - [SMALL_STATE(5450)] = 192554, - [SMALL_STATE(5451)] = 192562, - [SMALL_STATE(5452)] = 192570, - [SMALL_STATE(5453)] = 192578, - [SMALL_STATE(5454)] = 192586, - [SMALL_STATE(5455)] = 192594, - [SMALL_STATE(5456)] = 192602, - [SMALL_STATE(5457)] = 192610, - [SMALL_STATE(5458)] = 192618, - [SMALL_STATE(5459)] = 192626, - [SMALL_STATE(5460)] = 192634, - [SMALL_STATE(5461)] = 192642, - [SMALL_STATE(5462)] = 192650, - [SMALL_STATE(5463)] = 192658, - [SMALL_STATE(5464)] = 192666, - [SMALL_STATE(5465)] = 192674, - [SMALL_STATE(5466)] = 192682, - [SMALL_STATE(5467)] = 192690, - [SMALL_STATE(5468)] = 192698, - [SMALL_STATE(5469)] = 192706, - [SMALL_STATE(5470)] = 192714, - [SMALL_STATE(5471)] = 192722, - [SMALL_STATE(5472)] = 192730, - [SMALL_STATE(5473)] = 192738, - [SMALL_STATE(5474)] = 192746, - [SMALL_STATE(5475)] = 192754, - [SMALL_STATE(5476)] = 192762, - [SMALL_STATE(5477)] = 192770, - [SMALL_STATE(5478)] = 192778, - [SMALL_STATE(5479)] = 192786, - [SMALL_STATE(5480)] = 192794, - [SMALL_STATE(5481)] = 192802, - [SMALL_STATE(5482)] = 192810, - [SMALL_STATE(5483)] = 192818, - [SMALL_STATE(5484)] = 192826, - [SMALL_STATE(5485)] = 192834, - [SMALL_STATE(5486)] = 192842, - [SMALL_STATE(5487)] = 192850, - [SMALL_STATE(5488)] = 192858, - [SMALL_STATE(5489)] = 192866, - [SMALL_STATE(5490)] = 192874, - [SMALL_STATE(5491)] = 192882, - [SMALL_STATE(5492)] = 192890, - [SMALL_STATE(5493)] = 192898, - [SMALL_STATE(5494)] = 192906, - [SMALL_STATE(5495)] = 192914, - [SMALL_STATE(5496)] = 192922, - [SMALL_STATE(5497)] = 192930, - [SMALL_STATE(5498)] = 192938, - [SMALL_STATE(5499)] = 192946, - [SMALL_STATE(5500)] = 192954, - [SMALL_STATE(5501)] = 192962, - [SMALL_STATE(5502)] = 192970, - [SMALL_STATE(5503)] = 192978, - [SMALL_STATE(5504)] = 192986, - [SMALL_STATE(5505)] = 192994, - [SMALL_STATE(5506)] = 193002, - [SMALL_STATE(5507)] = 193010, - [SMALL_STATE(5508)] = 193018, - [SMALL_STATE(5509)] = 193026, - [SMALL_STATE(5510)] = 193034, - [SMALL_STATE(5511)] = 193042, - [SMALL_STATE(5512)] = 193050, - [SMALL_STATE(5513)] = 193058, - [SMALL_STATE(5514)] = 193066, - [SMALL_STATE(5515)] = 193074, - [SMALL_STATE(5516)] = 193082, - [SMALL_STATE(5517)] = 193090, - [SMALL_STATE(5518)] = 193098, - [SMALL_STATE(5519)] = 193106, - [SMALL_STATE(5520)] = 193114, - [SMALL_STATE(5521)] = 193122, - [SMALL_STATE(5522)] = 193130, - [SMALL_STATE(5523)] = 193138, - [SMALL_STATE(5524)] = 193146, - [SMALL_STATE(5525)] = 193154, - [SMALL_STATE(5526)] = 193162, - [SMALL_STATE(5527)] = 193170, - [SMALL_STATE(5528)] = 193178, - [SMALL_STATE(5529)] = 193186, - [SMALL_STATE(5530)] = 193194, - [SMALL_STATE(5531)] = 193202, - [SMALL_STATE(5532)] = 193210, - [SMALL_STATE(5533)] = 193218, - [SMALL_STATE(5534)] = 193226, - [SMALL_STATE(5535)] = 193234, - [SMALL_STATE(5536)] = 193242, - [SMALL_STATE(5537)] = 193250, - [SMALL_STATE(5538)] = 193258, - [SMALL_STATE(5539)] = 193266, - [SMALL_STATE(5540)] = 193274, - [SMALL_STATE(5541)] = 193282, - [SMALL_STATE(5542)] = 193290, - [SMALL_STATE(5543)] = 193298, - [SMALL_STATE(5544)] = 193306, - [SMALL_STATE(5545)] = 193314, - [SMALL_STATE(5546)] = 193322, - [SMALL_STATE(5547)] = 193330, - [SMALL_STATE(5548)] = 193338, - [SMALL_STATE(5549)] = 193346, - [SMALL_STATE(5550)] = 193354, - [SMALL_STATE(5551)] = 193362, - [SMALL_STATE(5552)] = 193370, - [SMALL_STATE(5553)] = 193378, - [SMALL_STATE(5554)] = 193386, - [SMALL_STATE(5555)] = 193394, - [SMALL_STATE(5556)] = 193402, - [SMALL_STATE(5557)] = 193410, - [SMALL_STATE(5558)] = 193418, - [SMALL_STATE(5559)] = 193426, - [SMALL_STATE(5560)] = 193434, - [SMALL_STATE(5561)] = 193442, - [SMALL_STATE(5562)] = 193450, - [SMALL_STATE(5563)] = 193458, - [SMALL_STATE(5564)] = 193466, - [SMALL_STATE(5565)] = 193474, - [SMALL_STATE(5566)] = 193482, - [SMALL_STATE(5567)] = 193490, - [SMALL_STATE(5568)] = 193498, - [SMALL_STATE(5569)] = 193506, - [SMALL_STATE(5570)] = 193514, - [SMALL_STATE(5571)] = 193522, - [SMALL_STATE(5572)] = 193530, - [SMALL_STATE(5573)] = 193538, - [SMALL_STATE(5574)] = 193546, - [SMALL_STATE(5575)] = 193554, - [SMALL_STATE(5576)] = 193562, - [SMALL_STATE(5577)] = 193570, - [SMALL_STATE(5578)] = 193578, - [SMALL_STATE(5579)] = 193586, - [SMALL_STATE(5580)] = 193594, - [SMALL_STATE(5581)] = 193602, - [SMALL_STATE(5582)] = 193610, - [SMALL_STATE(5583)] = 193618, - [SMALL_STATE(5584)] = 193626, - [SMALL_STATE(5585)] = 193634, - [SMALL_STATE(5586)] = 193642, - [SMALL_STATE(5587)] = 193650, - [SMALL_STATE(5588)] = 193658, - [SMALL_STATE(5589)] = 193666, - [SMALL_STATE(5590)] = 193674, - [SMALL_STATE(5591)] = 193682, - [SMALL_STATE(5592)] = 193690, - [SMALL_STATE(5593)] = 193698, - [SMALL_STATE(5594)] = 193706, - [SMALL_STATE(5595)] = 193714, - [SMALL_STATE(5596)] = 193722, - [SMALL_STATE(5597)] = 193730, - [SMALL_STATE(5598)] = 193738, - [SMALL_STATE(5599)] = 193746, - [SMALL_STATE(5600)] = 193754, - [SMALL_STATE(5601)] = 193762, - [SMALL_STATE(5602)] = 193770, - [SMALL_STATE(5603)] = 193778, - [SMALL_STATE(5604)] = 193786, - [SMALL_STATE(5605)] = 193794, - [SMALL_STATE(5606)] = 193802, - [SMALL_STATE(5607)] = 193810, - [SMALL_STATE(5608)] = 193818, - [SMALL_STATE(5609)] = 193826, - [SMALL_STATE(5610)] = 193834, - [SMALL_STATE(5611)] = 193842, - [SMALL_STATE(5612)] = 193850, - [SMALL_STATE(5613)] = 193858, - [SMALL_STATE(5614)] = 193866, - [SMALL_STATE(5615)] = 193874, - [SMALL_STATE(5616)] = 193882, - [SMALL_STATE(5617)] = 193890, - [SMALL_STATE(5618)] = 193898, - [SMALL_STATE(5619)] = 193906, - [SMALL_STATE(5620)] = 193914, - [SMALL_STATE(5621)] = 193922, - [SMALL_STATE(5622)] = 193930, - [SMALL_STATE(5623)] = 193938, - [SMALL_STATE(5624)] = 193946, - [SMALL_STATE(5625)] = 193954, - [SMALL_STATE(5626)] = 193962, - [SMALL_STATE(5627)] = 193970, - [SMALL_STATE(5628)] = 193978, - [SMALL_STATE(5629)] = 193986, - [SMALL_STATE(5630)] = 193994, - [SMALL_STATE(5631)] = 194002, - [SMALL_STATE(5632)] = 194010, - [SMALL_STATE(5633)] = 194018, - [SMALL_STATE(5634)] = 194026, - [SMALL_STATE(5635)] = 194034, - [SMALL_STATE(5636)] = 194042, - [SMALL_STATE(5637)] = 194050, - [SMALL_STATE(5638)] = 194058, - [SMALL_STATE(5639)] = 194066, - [SMALL_STATE(5640)] = 194074, - [SMALL_STATE(5641)] = 194082, - [SMALL_STATE(5642)] = 194090, - [SMALL_STATE(5643)] = 194098, - [SMALL_STATE(5644)] = 194106, - [SMALL_STATE(5645)] = 194114, - [SMALL_STATE(5646)] = 194122, - [SMALL_STATE(5647)] = 194130, - [SMALL_STATE(5648)] = 194138, - [SMALL_STATE(5649)] = 194146, - [SMALL_STATE(5650)] = 194154, - [SMALL_STATE(5651)] = 194162, - [SMALL_STATE(5652)] = 194170, - [SMALL_STATE(5653)] = 194178, - [SMALL_STATE(5654)] = 194186, - [SMALL_STATE(5655)] = 194194, - [SMALL_STATE(5656)] = 194202, - [SMALL_STATE(5657)] = 194210, - [SMALL_STATE(5658)] = 194218, - [SMALL_STATE(5659)] = 194226, - [SMALL_STATE(5660)] = 194234, - [SMALL_STATE(5661)] = 194242, - [SMALL_STATE(5662)] = 194250, - [SMALL_STATE(5663)] = 194258, - [SMALL_STATE(5664)] = 194266, - [SMALL_STATE(5665)] = 194274, - [SMALL_STATE(5666)] = 194282, - [SMALL_STATE(5667)] = 194290, - [SMALL_STATE(5668)] = 194298, - [SMALL_STATE(5669)] = 194306, - [SMALL_STATE(5670)] = 194314, - [SMALL_STATE(5671)] = 194322, - [SMALL_STATE(5672)] = 194330, - [SMALL_STATE(5673)] = 194338, - [SMALL_STATE(5674)] = 194346, - [SMALL_STATE(5675)] = 194354, - [SMALL_STATE(5676)] = 194362, - [SMALL_STATE(5677)] = 194370, - [SMALL_STATE(5678)] = 194378, - [SMALL_STATE(5679)] = 194386, - [SMALL_STATE(5680)] = 194394, - [SMALL_STATE(5681)] = 194402, - [SMALL_STATE(5682)] = 194410, - [SMALL_STATE(5683)] = 194418, - [SMALL_STATE(5684)] = 194426, - [SMALL_STATE(5685)] = 194434, - [SMALL_STATE(5686)] = 194442, - [SMALL_STATE(5687)] = 194450, - [SMALL_STATE(5688)] = 194458, - [SMALL_STATE(5689)] = 194466, - [SMALL_STATE(5690)] = 194474, - [SMALL_STATE(5691)] = 194482, - [SMALL_STATE(5692)] = 194490, - [SMALL_STATE(5693)] = 194498, - [SMALL_STATE(5694)] = 194506, - [SMALL_STATE(5695)] = 194514, - [SMALL_STATE(5696)] = 194522, - [SMALL_STATE(5697)] = 194530, - [SMALL_STATE(5698)] = 194538, - [SMALL_STATE(5699)] = 194546, - [SMALL_STATE(5700)] = 194554, - [SMALL_STATE(5701)] = 194562, - [SMALL_STATE(5702)] = 194570, - [SMALL_STATE(5703)] = 194578, - [SMALL_STATE(5704)] = 194586, - [SMALL_STATE(5705)] = 194594, - [SMALL_STATE(5706)] = 194602, - [SMALL_STATE(5707)] = 194610, - [SMALL_STATE(5708)] = 194618, - [SMALL_STATE(5709)] = 194626, - [SMALL_STATE(5710)] = 194634, - [SMALL_STATE(5711)] = 194642, - [SMALL_STATE(5712)] = 194650, - [SMALL_STATE(5713)] = 194658, - [SMALL_STATE(5714)] = 194666, - [SMALL_STATE(5715)] = 194674, - [SMALL_STATE(5716)] = 194682, - [SMALL_STATE(5717)] = 194690, - [SMALL_STATE(5718)] = 194698, - [SMALL_STATE(5719)] = 194706, - [SMALL_STATE(5720)] = 194714, - [SMALL_STATE(5721)] = 194722, - [SMALL_STATE(5722)] = 194730, - [SMALL_STATE(5723)] = 194738, - [SMALL_STATE(5724)] = 194746, - [SMALL_STATE(5725)] = 194754, - [SMALL_STATE(5726)] = 194762, + [SMALL_STATE(1063)] = 0, + [SMALL_STATE(1064)] = 119, + [SMALL_STATE(1065)] = 240, + [SMALL_STATE(1066)] = 359, + [SMALL_STATE(1067)] = 478, + [SMALL_STATE(1068)] = 597, + [SMALL_STATE(1069)] = 716, + [SMALL_STATE(1070)] = 835, + [SMALL_STATE(1071)] = 954, + [SMALL_STATE(1072)] = 1075, + [SMALL_STATE(1073)] = 1194, + [SMALL_STATE(1074)] = 1265, + [SMALL_STATE(1075)] = 1340, + [SMALL_STATE(1076)] = 1459, + [SMALL_STATE(1077)] = 1578, + [SMALL_STATE(1078)] = 1699, + [SMALL_STATE(1079)] = 1772, + [SMALL_STATE(1080)] = 1891, + [SMALL_STATE(1081)] = 2010, + [SMALL_STATE(1082)] = 2129, + [SMALL_STATE(1083)] = 2204, + [SMALL_STATE(1084)] = 2279, + [SMALL_STATE(1085)] = 2350, + [SMALL_STATE(1086)] = 2469, + [SMALL_STATE(1087)] = 2588, + [SMALL_STATE(1088)] = 2707, + [SMALL_STATE(1089)] = 2828, + [SMALL_STATE(1090)] = 2899, + [SMALL_STATE(1091)] = 2972, + [SMALL_STATE(1092)] = 3091, + [SMALL_STATE(1093)] = 3164, + [SMALL_STATE(1094)] = 3273, + [SMALL_STATE(1095)] = 3392, + [SMALL_STATE(1096)] = 3463, + [SMALL_STATE(1097)] = 3582, + [SMALL_STATE(1098)] = 3701, + [SMALL_STATE(1099)] = 3820, + [SMALL_STATE(1100)] = 3891, + [SMALL_STATE(1101)] = 4010, + [SMALL_STATE(1102)] = 4131, + [SMALL_STATE(1103)] = 4204, + [SMALL_STATE(1104)] = 4323, + [SMALL_STATE(1105)] = 4442, + [SMALL_STATE(1106)] = 4561, + [SMALL_STATE(1107)] = 4672, + [SMALL_STATE(1108)] = 4745, + [SMALL_STATE(1109)] = 4864, + [SMALL_STATE(1110)] = 4939, + [SMALL_STATE(1111)] = 5014, + [SMALL_STATE(1112)] = 5089, + [SMALL_STATE(1113)] = 5208, + [SMALL_STATE(1114)] = 5281, + [SMALL_STATE(1115)] = 5352, + [SMALL_STATE(1116)] = 5427, + [SMALL_STATE(1117)] = 5546, + [SMALL_STATE(1118)] = 5617, + [SMALL_STATE(1119)] = 5736, + [SMALL_STATE(1120)] = 5811, + [SMALL_STATE(1121)] = 5886, + [SMALL_STATE(1122)] = 5961, + [SMALL_STATE(1123)] = 6036, + [SMALL_STATE(1124)] = 6111, + [SMALL_STATE(1125)] = 6222, + [SMALL_STATE(1126)] = 6297, + [SMALL_STATE(1127)] = 6406, + [SMALL_STATE(1128)] = 6481, + [SMALL_STATE(1129)] = 6602, + [SMALL_STATE(1130)] = 6677, + [SMALL_STATE(1131)] = 6752, + [SMALL_STATE(1132)] = 6827, + [SMALL_STATE(1133)] = 6946, + [SMALL_STATE(1134)] = 7021, + [SMALL_STATE(1135)] = 7096, + [SMALL_STATE(1136)] = 7171, + [SMALL_STATE(1137)] = 7244, + [SMALL_STATE(1138)] = 7317, + [SMALL_STATE(1139)] = 7388, + [SMALL_STATE(1140)] = 7463, + [SMALL_STATE(1141)] = 7584, + [SMALL_STATE(1142)] = 7705, + [SMALL_STATE(1143)] = 7826, + [SMALL_STATE(1144)] = 7901, + [SMALL_STATE(1145)] = 8022, + [SMALL_STATE(1146)] = 8143, + [SMALL_STATE(1147)] = 8264, + [SMALL_STATE(1148)] = 8385, + [SMALL_STATE(1149)] = 8506, + [SMALL_STATE(1150)] = 8627, + [SMALL_STATE(1151)] = 8748, + [SMALL_STATE(1152)] = 8869, + [SMALL_STATE(1153)] = 8990, + [SMALL_STATE(1154)] = 9111, + [SMALL_STATE(1155)] = 9232, + [SMALL_STATE(1156)] = 9353, + [SMALL_STATE(1157)] = 9472, + [SMALL_STATE(1158)] = 9591, + [SMALL_STATE(1159)] = 9666, + [SMALL_STATE(1160)] = 9741, + [SMALL_STATE(1161)] = 9811, + [SMALL_STATE(1162)] = 9881, + [SMALL_STATE(1163)] = 9951, + [SMALL_STATE(1164)] = 10021, + [SMALL_STATE(1165)] = 10091, + [SMALL_STATE(1166)] = 10161, + [SMALL_STATE(1167)] = 10231, + [SMALL_STATE(1168)] = 10301, + [SMALL_STATE(1169)] = 10371, + [SMALL_STATE(1170)] = 10491, + [SMALL_STATE(1171)] = 10561, + [SMALL_STATE(1172)] = 10631, + [SMALL_STATE(1173)] = 10701, + [SMALL_STATE(1174)] = 10771, + [SMALL_STATE(1175)] = 10841, + [SMALL_STATE(1176)] = 10911, + [SMALL_STATE(1177)] = 10981, + [SMALL_STATE(1178)] = 11051, + [SMALL_STATE(1179)] = 11121, + [SMALL_STATE(1180)] = 11239, + [SMALL_STATE(1181)] = 11309, + [SMALL_STATE(1182)] = 11379, + [SMALL_STATE(1183)] = 11449, + [SMALL_STATE(1184)] = 11519, + [SMALL_STATE(1185)] = 11589, + [SMALL_STATE(1186)] = 11659, + [SMALL_STATE(1187)] = 11729, + [SMALL_STATE(1188)] = 11799, + [SMALL_STATE(1189)] = 11869, + [SMALL_STATE(1190)] = 11939, + [SMALL_STATE(1191)] = 12009, + [SMALL_STATE(1192)] = 12079, + [SMALL_STATE(1193)] = 12149, + [SMALL_STATE(1194)] = 12219, + [SMALL_STATE(1195)] = 12289, + [SMALL_STATE(1196)] = 12359, + [SMALL_STATE(1197)] = 12429, + [SMALL_STATE(1198)] = 12499, + [SMALL_STATE(1199)] = 12569, + [SMALL_STATE(1200)] = 12639, + [SMALL_STATE(1201)] = 12709, + [SMALL_STATE(1202)] = 12779, + [SMALL_STATE(1203)] = 12849, + [SMALL_STATE(1204)] = 12919, + [SMALL_STATE(1205)] = 13037, + [SMALL_STATE(1206)] = 13107, + [SMALL_STATE(1207)] = 13177, + [SMALL_STATE(1208)] = 13247, + [SMALL_STATE(1209)] = 13317, + [SMALL_STATE(1210)] = 13387, + [SMALL_STATE(1211)] = 13457, + [SMALL_STATE(1212)] = 13527, + [SMALL_STATE(1213)] = 13597, + [SMALL_STATE(1214)] = 13667, + [SMALL_STATE(1215)] = 13737, + [SMALL_STATE(1216)] = 13807, + [SMALL_STATE(1217)] = 13879, + [SMALL_STATE(1218)] = 13949, + [SMALL_STATE(1219)] = 14019, + [SMALL_STATE(1220)] = 14089, + [SMALL_STATE(1221)] = 14159, + [SMALL_STATE(1222)] = 14229, + [SMALL_STATE(1223)] = 14299, + [SMALL_STATE(1224)] = 14369, + [SMALL_STATE(1225)] = 14439, + [SMALL_STATE(1226)] = 14509, + [SMALL_STATE(1227)] = 14579, + [SMALL_STATE(1228)] = 14649, + [SMALL_STATE(1229)] = 14719, + [SMALL_STATE(1230)] = 14789, + [SMALL_STATE(1231)] = 14859, + [SMALL_STATE(1232)] = 14929, + [SMALL_STATE(1233)] = 14999, + [SMALL_STATE(1234)] = 15069, + [SMALL_STATE(1235)] = 15139, + [SMALL_STATE(1236)] = 15209, + [SMALL_STATE(1237)] = 15279, + [SMALL_STATE(1238)] = 15349, + [SMALL_STATE(1239)] = 15419, + [SMALL_STATE(1240)] = 15489, + [SMALL_STATE(1241)] = 15559, + [SMALL_STATE(1242)] = 15629, + [SMALL_STATE(1243)] = 15699, + [SMALL_STATE(1244)] = 15769, + [SMALL_STATE(1245)] = 15839, + [SMALL_STATE(1246)] = 15909, + [SMALL_STATE(1247)] = 15979, + [SMALL_STATE(1248)] = 16049, + [SMALL_STATE(1249)] = 16119, + [SMALL_STATE(1250)] = 16189, + [SMALL_STATE(1251)] = 16307, + [SMALL_STATE(1252)] = 16377, + [SMALL_STATE(1253)] = 16447, + [SMALL_STATE(1254)] = 16517, + [SMALL_STATE(1255)] = 16635, + [SMALL_STATE(1256)] = 16705, + [SMALL_STATE(1257)] = 16775, + [SMALL_STATE(1258)] = 16845, + [SMALL_STATE(1259)] = 16915, + [SMALL_STATE(1260)] = 16985, + [SMALL_STATE(1261)] = 17055, + [SMALL_STATE(1262)] = 17125, + [SMALL_STATE(1263)] = 17195, + [SMALL_STATE(1264)] = 17265, + [SMALL_STATE(1265)] = 17335, + [SMALL_STATE(1266)] = 17405, + [SMALL_STATE(1267)] = 17475, + [SMALL_STATE(1268)] = 17545, + [SMALL_STATE(1269)] = 17663, + [SMALL_STATE(1270)] = 17733, + [SMALL_STATE(1271)] = 17803, + [SMALL_STATE(1272)] = 17873, + [SMALL_STATE(1273)] = 17943, + [SMALL_STATE(1274)] = 18013, + [SMALL_STATE(1275)] = 18083, + [SMALL_STATE(1276)] = 18153, + [SMALL_STATE(1277)] = 18223, + [SMALL_STATE(1278)] = 18293, + [SMALL_STATE(1279)] = 18363, + [SMALL_STATE(1280)] = 18433, + [SMALL_STATE(1281)] = 18503, + [SMALL_STATE(1282)] = 18573, + [SMALL_STATE(1283)] = 18691, + [SMALL_STATE(1284)] = 18761, + [SMALL_STATE(1285)] = 18879, + [SMALL_STATE(1286)] = 18949, + [SMALL_STATE(1287)] = 19019, + [SMALL_STATE(1288)] = 19089, + [SMALL_STATE(1289)] = 19159, + [SMALL_STATE(1290)] = 19229, + [SMALL_STATE(1291)] = 19299, + [SMALL_STATE(1292)] = 19417, + [SMALL_STATE(1293)] = 19487, + [SMALL_STATE(1294)] = 19557, + [SMALL_STATE(1295)] = 19627, + [SMALL_STATE(1296)] = 19697, + [SMALL_STATE(1297)] = 19767, + [SMALL_STATE(1298)] = 19837, + [SMALL_STATE(1299)] = 19907, + [SMALL_STATE(1300)] = 19977, + [SMALL_STATE(1301)] = 20047, + [SMALL_STATE(1302)] = 20117, + [SMALL_STATE(1303)] = 20187, + [SMALL_STATE(1304)] = 20257, + [SMALL_STATE(1305)] = 20327, + [SMALL_STATE(1306)] = 20397, + [SMALL_STATE(1307)] = 20467, + [SMALL_STATE(1308)] = 20537, + [SMALL_STATE(1309)] = 20655, + [SMALL_STATE(1310)] = 20773, + [SMALL_STATE(1311)] = 20843, + [SMALL_STATE(1312)] = 20913, + [SMALL_STATE(1313)] = 20983, + [SMALL_STATE(1314)] = 21053, + [SMALL_STATE(1315)] = 21123, + [SMALL_STATE(1316)] = 21193, + [SMALL_STATE(1317)] = 21263, + [SMALL_STATE(1318)] = 21333, + [SMALL_STATE(1319)] = 21403, + [SMALL_STATE(1320)] = 21473, + [SMALL_STATE(1321)] = 21543, + [SMALL_STATE(1322)] = 21613, + [SMALL_STATE(1323)] = 21683, + [SMALL_STATE(1324)] = 21753, + [SMALL_STATE(1325)] = 21823, + [SMALL_STATE(1326)] = 21893, + [SMALL_STATE(1327)] = 21963, + [SMALL_STATE(1328)] = 22033, + [SMALL_STATE(1329)] = 22103, + [SMALL_STATE(1330)] = 22173, + [SMALL_STATE(1331)] = 22243, + [SMALL_STATE(1332)] = 22353, + [SMALL_STATE(1333)] = 22423, + [SMALL_STATE(1334)] = 22493, + [SMALL_STATE(1335)] = 22611, + [SMALL_STATE(1336)] = 22681, + [SMALL_STATE(1337)] = 22751, + [SMALL_STATE(1338)] = 22821, + [SMALL_STATE(1339)] = 22939, + [SMALL_STATE(1340)] = 23009, + [SMALL_STATE(1341)] = 23079, + [SMALL_STATE(1342)] = 23149, + [SMALL_STATE(1343)] = 23219, + [SMALL_STATE(1344)] = 23289, + [SMALL_STATE(1345)] = 23361, + [SMALL_STATE(1346)] = 23431, + [SMALL_STATE(1347)] = 23541, + [SMALL_STATE(1348)] = 23611, + [SMALL_STATE(1349)] = 23681, + [SMALL_STATE(1350)] = 23751, + [SMALL_STATE(1351)] = 23821, + [SMALL_STATE(1352)] = 23891, + [SMALL_STATE(1353)] = 23961, + [SMALL_STATE(1354)] = 24031, + [SMALL_STATE(1355)] = 24101, + [SMALL_STATE(1356)] = 24171, + [SMALL_STATE(1357)] = 24241, + [SMALL_STATE(1358)] = 24311, + [SMALL_STATE(1359)] = 24429, + [SMALL_STATE(1360)] = 24499, + [SMALL_STATE(1361)] = 24569, + [SMALL_STATE(1362)] = 24687, + [SMALL_STATE(1363)] = 24757, + [SMALL_STATE(1364)] = 24827, + [SMALL_STATE(1365)] = 24897, + [SMALL_STATE(1366)] = 25015, + [SMALL_STATE(1367)] = 25085, + [SMALL_STATE(1368)] = 25155, + [SMALL_STATE(1369)] = 25225, + [SMALL_STATE(1370)] = 25295, + [SMALL_STATE(1371)] = 25365, + [SMALL_STATE(1372)] = 25435, + [SMALL_STATE(1373)] = 25505, + [SMALL_STATE(1374)] = 25575, + [SMALL_STATE(1375)] = 25645, + [SMALL_STATE(1376)] = 25715, + [SMALL_STATE(1377)] = 25785, + [SMALL_STATE(1378)] = 25855, + [SMALL_STATE(1379)] = 25925, + [SMALL_STATE(1380)] = 25995, + [SMALL_STATE(1381)] = 26065, + [SMALL_STATE(1382)] = 26135, + [SMALL_STATE(1383)] = 26205, + [SMALL_STATE(1384)] = 26275, + [SMALL_STATE(1385)] = 26390, + [SMALL_STATE(1386)] = 26505, + [SMALL_STATE(1387)] = 26620, + [SMALL_STATE(1388)] = 26735, + [SMALL_STATE(1389)] = 26804, + [SMALL_STATE(1390)] = 26919, + [SMALL_STATE(1391)] = 26988, + [SMALL_STATE(1392)] = 27103, + [SMALL_STATE(1393)] = 27218, + [SMALL_STATE(1394)] = 27333, + [SMALL_STATE(1395)] = 27448, + [SMALL_STATE(1396)] = 27563, + [SMALL_STATE(1397)] = 27678, + [SMALL_STATE(1398)] = 27747, + [SMALL_STATE(1399)] = 27862, + [SMALL_STATE(1400)] = 27977, + [SMALL_STATE(1401)] = 28092, + [SMALL_STATE(1402)] = 28207, + [SMALL_STATE(1403)] = 28322, + [SMALL_STATE(1404)] = 28437, + [SMALL_STATE(1405)] = 28506, + [SMALL_STATE(1406)] = 28621, + [SMALL_STATE(1407)] = 28736, + [SMALL_STATE(1408)] = 28851, + [SMALL_STATE(1409)] = 28966, + [SMALL_STATE(1410)] = 29081, + [SMALL_STATE(1411)] = 29196, + [SMALL_STATE(1412)] = 29311, + [SMALL_STATE(1413)] = 29380, + [SMALL_STATE(1414)] = 29495, + [SMALL_STATE(1415)] = 29610, + [SMALL_STATE(1416)] = 29725, + [SMALL_STATE(1417)] = 29794, + [SMALL_STATE(1418)] = 29909, + [SMALL_STATE(1419)] = 29978, + [SMALL_STATE(1420)] = 30093, + [SMALL_STATE(1421)] = 30208, + [SMALL_STATE(1422)] = 30323, + [SMALL_STATE(1423)] = 30438, + [SMALL_STATE(1424)] = 30553, + [SMALL_STATE(1425)] = 30668, + [SMALL_STATE(1426)] = 30737, + [SMALL_STATE(1427)] = 30852, + [SMALL_STATE(1428)] = 30967, + [SMALL_STATE(1429)] = 31082, + [SMALL_STATE(1430)] = 31197, + [SMALL_STATE(1431)] = 31312, + [SMALL_STATE(1432)] = 31427, + [SMALL_STATE(1433)] = 31542, + [SMALL_STATE(1434)] = 31657, + [SMALL_STATE(1435)] = 31772, + [SMALL_STATE(1436)] = 31887, + [SMALL_STATE(1437)] = 32002, + [SMALL_STATE(1438)] = 32117, + [SMALL_STATE(1439)] = 32232, + [SMALL_STATE(1440)] = 32349, + [SMALL_STATE(1441)] = 32418, + [SMALL_STATE(1442)] = 32487, + [SMALL_STATE(1443)] = 32602, + [SMALL_STATE(1444)] = 32717, + [SMALL_STATE(1445)] = 32832, + [SMALL_STATE(1446)] = 32947, + [SMALL_STATE(1447)] = 33062, + [SMALL_STATE(1448)] = 33177, + [SMALL_STATE(1449)] = 33292, + [SMALL_STATE(1450)] = 33361, + [SMALL_STATE(1451)] = 33430, + [SMALL_STATE(1452)] = 33545, + [SMALL_STATE(1453)] = 33614, + [SMALL_STATE(1454)] = 33729, + [SMALL_STATE(1455)] = 33844, + [SMALL_STATE(1456)] = 33959, + [SMALL_STATE(1457)] = 34028, + [SMALL_STATE(1458)] = 34143, + [SMALL_STATE(1459)] = 34212, + [SMALL_STATE(1460)] = 34281, + [SMALL_STATE(1461)] = 34396, + [SMALL_STATE(1462)] = 34465, + [SMALL_STATE(1463)] = 34580, + [SMALL_STATE(1464)] = 34695, + [SMALL_STATE(1465)] = 34810, + [SMALL_STATE(1466)] = 34925, + [SMALL_STATE(1467)] = 34994, + [SMALL_STATE(1468)] = 35063, + [SMALL_STATE(1469)] = 35132, + [SMALL_STATE(1470)] = 35201, + [SMALL_STATE(1471)] = 35316, + [SMALL_STATE(1472)] = 35385, + [SMALL_STATE(1473)] = 35454, + [SMALL_STATE(1474)] = 35569, + [SMALL_STATE(1475)] = 35638, + [SMALL_STATE(1476)] = 35753, + [SMALL_STATE(1477)] = 35822, + [SMALL_STATE(1478)] = 35937, + [SMALL_STATE(1479)] = 36052, + [SMALL_STATE(1480)] = 36121, + [SMALL_STATE(1481)] = 36190, + [SMALL_STATE(1482)] = 36259, + [SMALL_STATE(1483)] = 36374, + [SMALL_STATE(1484)] = 36489, + [SMALL_STATE(1485)] = 36558, + [SMALL_STATE(1486)] = 36627, + [SMALL_STATE(1487)] = 36742, + [SMALL_STATE(1488)] = 36811, + [SMALL_STATE(1489)] = 36880, + [SMALL_STATE(1490)] = 36949, + [SMALL_STATE(1491)] = 37018, + [SMALL_STATE(1492)] = 37087, + [SMALL_STATE(1493)] = 37156, + [SMALL_STATE(1494)] = 37225, + [SMALL_STATE(1495)] = 37294, + [SMALL_STATE(1496)] = 37363, + [SMALL_STATE(1497)] = 37478, + [SMALL_STATE(1498)] = 37547, + [SMALL_STATE(1499)] = 37616, + [SMALL_STATE(1500)] = 37685, + [SMALL_STATE(1501)] = 37754, + [SMALL_STATE(1502)] = 37823, + [SMALL_STATE(1503)] = 37892, + [SMALL_STATE(1504)] = 37961, + [SMALL_STATE(1505)] = 38030, + [SMALL_STATE(1506)] = 38099, + [SMALL_STATE(1507)] = 38168, + [SMALL_STATE(1508)] = 38283, + [SMALL_STATE(1509)] = 38398, + [SMALL_STATE(1510)] = 38513, + [SMALL_STATE(1511)] = 38628, + [SMALL_STATE(1512)] = 38697, + [SMALL_STATE(1513)] = 38766, + [SMALL_STATE(1514)] = 38835, + [SMALL_STATE(1515)] = 38904, + [SMALL_STATE(1516)] = 38973, + [SMALL_STATE(1517)] = 39088, + [SMALL_STATE(1518)] = 39157, + [SMALL_STATE(1519)] = 39226, + [SMALL_STATE(1520)] = 39295, + [SMALL_STATE(1521)] = 39364, + [SMALL_STATE(1522)] = 39433, + [SMALL_STATE(1523)] = 39548, + [SMALL_STATE(1524)] = 39617, + [SMALL_STATE(1525)] = 39686, + [SMALL_STATE(1526)] = 39755, + [SMALL_STATE(1527)] = 39824, + [SMALL_STATE(1528)] = 39939, + [SMALL_STATE(1529)] = 40054, + [SMALL_STATE(1530)] = 40123, + [SMALL_STATE(1531)] = 40192, + [SMALL_STATE(1532)] = 40261, + [SMALL_STATE(1533)] = 40330, + [SMALL_STATE(1534)] = 40445, + [SMALL_STATE(1535)] = 40560, + [SMALL_STATE(1536)] = 40675, + [SMALL_STATE(1537)] = 40790, + [SMALL_STATE(1538)] = 40859, + [SMALL_STATE(1539)] = 40928, + [SMALL_STATE(1540)] = 41043, + [SMALL_STATE(1541)] = 41112, + [SMALL_STATE(1542)] = 41181, + [SMALL_STATE(1543)] = 41250, + [SMALL_STATE(1544)] = 41319, + [SMALL_STATE(1545)] = 41388, + [SMALL_STATE(1546)] = 41503, + [SMALL_STATE(1547)] = 41572, + [SMALL_STATE(1548)] = 41641, + [SMALL_STATE(1549)] = 41710, + [SMALL_STATE(1550)] = 41825, + [SMALL_STATE(1551)] = 41894, + [SMALL_STATE(1552)] = 42009, + [SMALL_STATE(1553)] = 42124, + [SMALL_STATE(1554)] = 42239, + [SMALL_STATE(1555)] = 42354, + [SMALL_STATE(1556)] = 42469, + [SMALL_STATE(1557)] = 42584, + [SMALL_STATE(1558)] = 42699, + [SMALL_STATE(1559)] = 42814, + [SMALL_STATE(1560)] = 42883, + [SMALL_STATE(1561)] = 42998, + [SMALL_STATE(1562)] = 43113, + [SMALL_STATE(1563)] = 43228, + [SMALL_STATE(1564)] = 43343, + [SMALL_STATE(1565)] = 43458, + [SMALL_STATE(1566)] = 43573, + [SMALL_STATE(1567)] = 43688, + [SMALL_STATE(1568)] = 43803, + [SMALL_STATE(1569)] = 43918, + [SMALL_STATE(1570)] = 44033, + [SMALL_STATE(1571)] = 44148, + [SMALL_STATE(1572)] = 44263, + [SMALL_STATE(1573)] = 44378, + [SMALL_STATE(1574)] = 44493, + [SMALL_STATE(1575)] = 44608, + [SMALL_STATE(1576)] = 44723, + [SMALL_STATE(1577)] = 44838, + [SMALL_STATE(1578)] = 44953, + [SMALL_STATE(1579)] = 45068, + [SMALL_STATE(1580)] = 45183, + [SMALL_STATE(1581)] = 45298, + [SMALL_STATE(1582)] = 45413, + [SMALL_STATE(1583)] = 45528, + [SMALL_STATE(1584)] = 45643, + [SMALL_STATE(1585)] = 45758, + [SMALL_STATE(1586)] = 45873, + [SMALL_STATE(1587)] = 45988, + [SMALL_STATE(1588)] = 46103, + [SMALL_STATE(1589)] = 46218, + [SMALL_STATE(1590)] = 46333, + [SMALL_STATE(1591)] = 46448, + [SMALL_STATE(1592)] = 46563, + [SMALL_STATE(1593)] = 46678, + [SMALL_STATE(1594)] = 46793, + [SMALL_STATE(1595)] = 46908, + [SMALL_STATE(1596)] = 47023, + [SMALL_STATE(1597)] = 47138, + [SMALL_STATE(1598)] = 47253, + [SMALL_STATE(1599)] = 47368, + [SMALL_STATE(1600)] = 47483, + [SMALL_STATE(1601)] = 47598, + [SMALL_STATE(1602)] = 47713, + [SMALL_STATE(1603)] = 47828, + [SMALL_STATE(1604)] = 47943, + [SMALL_STATE(1605)] = 48058, + [SMALL_STATE(1606)] = 48127, + [SMALL_STATE(1607)] = 48196, + [SMALL_STATE(1608)] = 48311, + [SMALL_STATE(1609)] = 48428, + [SMALL_STATE(1610)] = 48497, + [SMALL_STATE(1611)] = 48566, + [SMALL_STATE(1612)] = 48635, + [SMALL_STATE(1613)] = 48750, + [SMALL_STATE(1614)] = 48865, + [SMALL_STATE(1615)] = 48982, + [SMALL_STATE(1616)] = 49051, + [SMALL_STATE(1617)] = 49166, + [SMALL_STATE(1618)] = 49235, + [SMALL_STATE(1619)] = 49304, + [SMALL_STATE(1620)] = 49419, + [SMALL_STATE(1621)] = 49534, + [SMALL_STATE(1622)] = 49649, + [SMALL_STATE(1623)] = 49718, + [SMALL_STATE(1624)] = 49787, + [SMALL_STATE(1625)] = 49856, + [SMALL_STATE(1626)] = 49925, + [SMALL_STATE(1627)] = 49994, + [SMALL_STATE(1628)] = 50063, + [SMALL_STATE(1629)] = 50132, + [SMALL_STATE(1630)] = 50201, + [SMALL_STATE(1631)] = 50270, + [SMALL_STATE(1632)] = 50339, + [SMALL_STATE(1633)] = 50408, + [SMALL_STATE(1634)] = 50477, + [SMALL_STATE(1635)] = 50546, + [SMALL_STATE(1636)] = 50661, + [SMALL_STATE(1637)] = 50776, + [SMALL_STATE(1638)] = 50845, + [SMALL_STATE(1639)] = 50960, + [SMALL_STATE(1640)] = 51029, + [SMALL_STATE(1641)] = 51098, + [SMALL_STATE(1642)] = 51213, + [SMALL_STATE(1643)] = 51328, + [SMALL_STATE(1644)] = 51397, + [SMALL_STATE(1645)] = 51512, + [SMALL_STATE(1646)] = 51581, + [SMALL_STATE(1647)] = 51696, + [SMALL_STATE(1648)] = 51765, + [SMALL_STATE(1649)] = 51834, + [SMALL_STATE(1650)] = 51949, + [SMALL_STATE(1651)] = 52064, + [SMALL_STATE(1652)] = 52179, + [SMALL_STATE(1653)] = 52294, + [SMALL_STATE(1654)] = 52409, + [SMALL_STATE(1655)] = 52524, + [SMALL_STATE(1656)] = 52639, + [SMALL_STATE(1657)] = 52754, + [SMALL_STATE(1658)] = 52869, + [SMALL_STATE(1659)] = 52938, + [SMALL_STATE(1660)] = 53053, + [SMALL_STATE(1661)] = 53168, + [SMALL_STATE(1662)] = 53283, + [SMALL_STATE(1663)] = 53398, + [SMALL_STATE(1664)] = 53513, + [SMALL_STATE(1665)] = 53628, + [SMALL_STATE(1666)] = 53743, + [SMALL_STATE(1667)] = 53858, + [SMALL_STATE(1668)] = 53973, + [SMALL_STATE(1669)] = 54088, + [SMALL_STATE(1670)] = 54203, + [SMALL_STATE(1671)] = 54318, + [SMALL_STATE(1672)] = 54433, + [SMALL_STATE(1673)] = 54548, + [SMALL_STATE(1674)] = 54663, + [SMALL_STATE(1675)] = 54778, + [SMALL_STATE(1676)] = 54895, + [SMALL_STATE(1677)] = 55010, + [SMALL_STATE(1678)] = 55125, + [SMALL_STATE(1679)] = 55240, + [SMALL_STATE(1680)] = 55355, + [SMALL_STATE(1681)] = 55470, + [SMALL_STATE(1682)] = 55587, + [SMALL_STATE(1683)] = 55702, + [SMALL_STATE(1684)] = 55817, + [SMALL_STATE(1685)] = 55932, + [SMALL_STATE(1686)] = 56041, + [SMALL_STATE(1687)] = 56156, + [SMALL_STATE(1688)] = 56225, + [SMALL_STATE(1689)] = 56340, + [SMALL_STATE(1690)] = 56457, + [SMALL_STATE(1691)] = 56572, + [SMALL_STATE(1692)] = 56687, + [SMALL_STATE(1693)] = 56802, + [SMALL_STATE(1694)] = 56917, + [SMALL_STATE(1695)] = 56986, + [SMALL_STATE(1696)] = 57101, + [SMALL_STATE(1697)] = 57170, + [SMALL_STATE(1698)] = 57285, + [SMALL_STATE(1699)] = 57354, + [SMALL_STATE(1700)] = 57423, + [SMALL_STATE(1701)] = 57538, + [SMALL_STATE(1702)] = 57607, + [SMALL_STATE(1703)] = 57676, + [SMALL_STATE(1704)] = 57791, + [SMALL_STATE(1705)] = 57860, + [SMALL_STATE(1706)] = 57929, + [SMALL_STATE(1707)] = 58044, + [SMALL_STATE(1708)] = 58113, + [SMALL_STATE(1709)] = 58182, + [SMALL_STATE(1710)] = 58297, + [SMALL_STATE(1711)] = 58412, + [SMALL_STATE(1712)] = 58481, + [SMALL_STATE(1713)] = 58550, + [SMALL_STATE(1714)] = 58665, + [SMALL_STATE(1715)] = 58734, + [SMALL_STATE(1716)] = 58803, + [SMALL_STATE(1717)] = 58872, + [SMALL_STATE(1718)] = 58941, + [SMALL_STATE(1719)] = 59056, + [SMALL_STATE(1720)] = 59125, + [SMALL_STATE(1721)] = 59240, + [SMALL_STATE(1722)] = 59355, + [SMALL_STATE(1723)] = 59470, + [SMALL_STATE(1724)] = 59579, + [SMALL_STATE(1725)] = 59694, + [SMALL_STATE(1726)] = 59763, + [SMALL_STATE(1727)] = 59878, + [SMALL_STATE(1728)] = 59993, + [SMALL_STATE(1729)] = 60108, + [SMALL_STATE(1730)] = 60223, + [SMALL_STATE(1731)] = 60338, + [SMALL_STATE(1732)] = 60453, + [SMALL_STATE(1733)] = 60568, + [SMALL_STATE(1734)] = 60637, + [SMALL_STATE(1735)] = 60752, + [SMALL_STATE(1736)] = 60867, + [SMALL_STATE(1737)] = 60982, + [SMALL_STATE(1738)] = 61097, + [SMALL_STATE(1739)] = 61212, + [SMALL_STATE(1740)] = 61327, + [SMALL_STATE(1741)] = 61442, + [SMALL_STATE(1742)] = 61557, + [SMALL_STATE(1743)] = 61672, + [SMALL_STATE(1744)] = 61787, + [SMALL_STATE(1745)] = 61902, + [SMALL_STATE(1746)] = 62017, + [SMALL_STATE(1747)] = 62132, + [SMALL_STATE(1748)] = 62247, + [SMALL_STATE(1749)] = 62362, + [SMALL_STATE(1750)] = 62477, + [SMALL_STATE(1751)] = 62592, + [SMALL_STATE(1752)] = 62707, + [SMALL_STATE(1753)] = 62822, + [SMALL_STATE(1754)] = 62937, + [SMALL_STATE(1755)] = 63052, + [SMALL_STATE(1756)] = 63167, + [SMALL_STATE(1757)] = 63282, + [SMALL_STATE(1758)] = 63397, + [SMALL_STATE(1759)] = 63512, + [SMALL_STATE(1760)] = 63627, + [SMALL_STATE(1761)] = 63742, + [SMALL_STATE(1762)] = 63857, + [SMALL_STATE(1763)] = 63972, + [SMALL_STATE(1764)] = 64087, + [SMALL_STATE(1765)] = 64202, + [SMALL_STATE(1766)] = 64317, + [SMALL_STATE(1767)] = 64432, + [SMALL_STATE(1768)] = 64547, + [SMALL_STATE(1769)] = 64662, + [SMALL_STATE(1770)] = 64777, + [SMALL_STATE(1771)] = 64892, + [SMALL_STATE(1772)] = 65007, + [SMALL_STATE(1773)] = 65122, + [SMALL_STATE(1774)] = 65237, + [SMALL_STATE(1775)] = 65352, + [SMALL_STATE(1776)] = 65467, + [SMALL_STATE(1777)] = 65582, + [SMALL_STATE(1778)] = 65697, + [SMALL_STATE(1779)] = 65812, + [SMALL_STATE(1780)] = 65927, + [SMALL_STATE(1781)] = 66042, + [SMALL_STATE(1782)] = 66157, + [SMALL_STATE(1783)] = 66272, + [SMALL_STATE(1784)] = 66387, + [SMALL_STATE(1785)] = 66502, + [SMALL_STATE(1786)] = 66617, + [SMALL_STATE(1787)] = 66732, + [SMALL_STATE(1788)] = 66847, + [SMALL_STATE(1789)] = 66962, + [SMALL_STATE(1790)] = 67077, + [SMALL_STATE(1791)] = 67192, + [SMALL_STATE(1792)] = 67307, + [SMALL_STATE(1793)] = 67422, + [SMALL_STATE(1794)] = 67537, + [SMALL_STATE(1795)] = 67652, + [SMALL_STATE(1796)] = 67767, + [SMALL_STATE(1797)] = 67882, + [SMALL_STATE(1798)] = 67997, + [SMALL_STATE(1799)] = 68112, + [SMALL_STATE(1800)] = 68227, + [SMALL_STATE(1801)] = 68342, + [SMALL_STATE(1802)] = 68457, + [SMALL_STATE(1803)] = 68572, + [SMALL_STATE(1804)] = 68687, + [SMALL_STATE(1805)] = 68802, + [SMALL_STATE(1806)] = 68917, + [SMALL_STATE(1807)] = 69032, + [SMALL_STATE(1808)] = 69147, + [SMALL_STATE(1809)] = 69262, + [SMALL_STATE(1810)] = 69377, + [SMALL_STATE(1811)] = 69492, + [SMALL_STATE(1812)] = 69607, + [SMALL_STATE(1813)] = 69722, + [SMALL_STATE(1814)] = 69837, + [SMALL_STATE(1815)] = 69952, + [SMALL_STATE(1816)] = 70067, + [SMALL_STATE(1817)] = 70182, + [SMALL_STATE(1818)] = 70297, + [SMALL_STATE(1819)] = 70412, + [SMALL_STATE(1820)] = 70527, + [SMALL_STATE(1821)] = 70642, + [SMALL_STATE(1822)] = 70757, + [SMALL_STATE(1823)] = 70872, + [SMALL_STATE(1824)] = 70987, + [SMALL_STATE(1825)] = 71102, + [SMALL_STATE(1826)] = 71217, + [SMALL_STATE(1827)] = 71332, + [SMALL_STATE(1828)] = 71447, + [SMALL_STATE(1829)] = 71562, + [SMALL_STATE(1830)] = 71677, + [SMALL_STATE(1831)] = 71792, + [SMALL_STATE(1832)] = 71907, + [SMALL_STATE(1833)] = 72022, + [SMALL_STATE(1834)] = 72137, + [SMALL_STATE(1835)] = 72252, + [SMALL_STATE(1836)] = 72321, + [SMALL_STATE(1837)] = 72427, + [SMALL_STATE(1838)] = 72533, + [SMALL_STATE(1839)] = 72639, + [SMALL_STATE(1840)] = 72745, + [SMALL_STATE(1841)] = 72847, + [SMALL_STATE(1842)] = 72922, + [SMALL_STATE(1843)] = 73014, + [SMALL_STATE(1844)] = 73081, + [SMALL_STATE(1845)] = 73186, + [SMALL_STATE(1846)] = 73253, + [SMALL_STATE(1847)] = 73358, + [SMALL_STATE(1848)] = 73433, + [SMALL_STATE(1849)] = 73508, + [SMALL_STATE(1850)] = 73583, + [SMALL_STATE(1851)] = 73686, + [SMALL_STATE(1852)] = 73763, + [SMALL_STATE(1853)] = 73866, + [SMALL_STATE(1854)] = 73968, + [SMALL_STATE(1855)] = 74070, + [SMALL_STATE(1856)] = 74172, + [SMALL_STATE(1857)] = 74274, + [SMALL_STATE(1858)] = 74376, + [SMALL_STATE(1859)] = 74476, + [SMALL_STATE(1860)] = 74574, + [SMALL_STATE(1861)] = 74676, + [SMALL_STATE(1862)] = 74778, + [SMALL_STATE(1863)] = 74880, + [SMALL_STATE(1864)] = 74982, + [SMALL_STATE(1865)] = 75084, + [SMALL_STATE(1866)] = 75183, + [SMALL_STATE(1867)] = 75282, + [SMALL_STATE(1868)] = 75381, + [SMALL_STATE(1869)] = 75482, + [SMALL_STATE(1870)] = 75581, + [SMALL_STATE(1871)] = 75680, + [SMALL_STATE(1872)] = 75779, + [SMALL_STATE(1873)] = 75880, + [SMALL_STATE(1874)] = 75953, + [SMALL_STATE(1875)] = 76019, + [SMALL_STATE(1876)] = 76085, + [SMALL_STATE(1877)] = 76181, + [SMALL_STATE(1878)] = 76249, + [SMALL_STATE(1879)] = 76345, + [SMALL_STATE(1880)] = 76441, + [SMALL_STATE(1881)] = 76537, + [SMALL_STATE(1882)] = 76600, + [SMALL_STATE(1883)] = 76657, + [SMALL_STATE(1884)] = 76714, + [SMALL_STATE(1885)] = 76777, + [SMALL_STATE(1886)] = 76868, + [SMALL_STATE(1887)] = 76959, + [SMALL_STATE(1888)] = 77020, + [SMALL_STATE(1889)] = 77081, + [SMALL_STATE(1890)] = 77172, + [SMALL_STATE(1891)] = 77263, + [SMALL_STATE(1892)] = 77320, + [SMALL_STATE(1893)] = 77411, + [SMALL_STATE(1894)] = 77468, + [SMALL_STATE(1895)] = 77531, + [SMALL_STATE(1896)] = 77588, + [SMALL_STATE(1897)] = 77651, + [SMALL_STATE(1898)] = 77742, + [SMALL_STATE(1899)] = 77799, + [SMALL_STATE(1900)] = 77862, + [SMALL_STATE(1901)] = 77953, + [SMALL_STATE(1902)] = 78044, + [SMALL_STATE(1903)] = 78107, + [SMALL_STATE(1904)] = 78170, + [SMALL_STATE(1905)] = 78235, + [SMALL_STATE(1906)] = 78298, + [SMALL_STATE(1907)] = 78355, + [SMALL_STATE(1908)] = 78443, + [SMALL_STATE(1909)] = 78531, + [SMALL_STATE(1910)] = 78623, + [SMALL_STATE(1911)] = 78711, + [SMALL_STATE(1912)] = 78799, + [SMALL_STATE(1913)] = 78887, + [SMALL_STATE(1914)] = 78975, + [SMALL_STATE(1915)] = 79063, + [SMALL_STATE(1916)] = 79151, + [SMALL_STATE(1917)] = 79239, + [SMALL_STATE(1918)] = 79327, + [SMALL_STATE(1919)] = 79415, + [SMALL_STATE(1920)] = 79503, + [SMALL_STATE(1921)] = 79607, + [SMALL_STATE(1922)] = 79699, + [SMALL_STATE(1923)] = 79787, + [SMALL_STATE(1924)] = 79875, + [SMALL_STATE(1925)] = 79963, + [SMALL_STATE(1926)] = 80067, + [SMALL_STATE(1927)] = 80155, + [SMALL_STATE(1928)] = 80243, + [SMALL_STATE(1929)] = 80331, + [SMALL_STATE(1930)] = 80423, + [SMALL_STATE(1931)] = 80511, + [SMALL_STATE(1932)] = 80603, + [SMALL_STATE(1933)] = 80691, + [SMALL_STATE(1934)] = 80783, + [SMALL_STATE(1935)] = 80871, + [SMALL_STATE(1936)] = 80959, + [SMALL_STATE(1937)] = 81047, + [SMALL_STATE(1938)] = 81135, + [SMALL_STATE(1939)] = 81223, + [SMALL_STATE(1940)] = 81311, + [SMALL_STATE(1941)] = 81399, + [SMALL_STATE(1942)] = 81487, + [SMALL_STATE(1943)] = 81575, + [SMALL_STATE(1944)] = 81663, + [SMALL_STATE(1945)] = 81755, + [SMALL_STATE(1946)] = 81843, + [SMALL_STATE(1947)] = 81931, + [SMALL_STATE(1948)] = 82019, + [SMALL_STATE(1949)] = 82111, + [SMALL_STATE(1950)] = 82199, + [SMALL_STATE(1951)] = 82287, + [SMALL_STATE(1952)] = 82375, + [SMALL_STATE(1953)] = 82467, + [SMALL_STATE(1954)] = 82555, + [SMALL_STATE(1955)] = 82643, + [SMALL_STATE(1956)] = 82735, + [SMALL_STATE(1957)] = 82823, + [SMALL_STATE(1958)] = 82911, + [SMALL_STATE(1959)] = 82999, + [SMALL_STATE(1960)] = 83087, + [SMALL_STATE(1961)] = 83175, + [SMALL_STATE(1962)] = 83263, + [SMALL_STATE(1963)] = 83355, + [SMALL_STATE(1964)] = 83443, + [SMALL_STATE(1965)] = 83535, + [SMALL_STATE(1966)] = 83623, + [SMALL_STATE(1967)] = 83715, + [SMALL_STATE(1968)] = 83803, + [SMALL_STATE(1969)] = 83895, + [SMALL_STATE(1970)] = 83987, + [SMALL_STATE(1971)] = 84079, + [SMALL_STATE(1972)] = 84171, + [SMALL_STATE(1973)] = 84263, + [SMALL_STATE(1974)] = 84351, + [SMALL_STATE(1975)] = 84443, + [SMALL_STATE(1976)] = 84535, + [SMALL_STATE(1977)] = 84627, + [SMALL_STATE(1978)] = 84719, + [SMALL_STATE(1979)] = 84811, + [SMALL_STATE(1980)] = 84903, + [SMALL_STATE(1981)] = 84991, + [SMALL_STATE(1982)] = 85079, + [SMALL_STATE(1983)] = 85183, + [SMALL_STATE(1984)] = 85271, + [SMALL_STATE(1985)] = 85359, + [SMALL_STATE(1986)] = 85447, + [SMALL_STATE(1987)] = 85535, + [SMALL_STATE(1988)] = 85623, + [SMALL_STATE(1989)] = 85711, + [SMALL_STATE(1990)] = 85799, + [SMALL_STATE(1991)] = 85887, + [SMALL_STATE(1992)] = 85975, + [SMALL_STATE(1993)] = 86079, + [SMALL_STATE(1994)] = 86167, + [SMALL_STATE(1995)] = 86255, + [SMALL_STATE(1996)] = 86343, + [SMALL_STATE(1997)] = 86431, + [SMALL_STATE(1998)] = 86519, + [SMALL_STATE(1999)] = 86607, + [SMALL_STATE(2000)] = 86695, + [SMALL_STATE(2001)] = 86783, + [SMALL_STATE(2002)] = 86871, + [SMALL_STATE(2003)] = 86959, + [SMALL_STATE(2004)] = 87047, + [SMALL_STATE(2005)] = 87135, + [SMALL_STATE(2006)] = 87223, + [SMALL_STATE(2007)] = 87311, + [SMALL_STATE(2008)] = 87399, + [SMALL_STATE(2009)] = 87487, + [SMALL_STATE(2010)] = 87575, + [SMALL_STATE(2011)] = 87663, + [SMALL_STATE(2012)] = 87751, + [SMALL_STATE(2013)] = 87839, + [SMALL_STATE(2014)] = 87927, + [SMALL_STATE(2015)] = 88031, + [SMALL_STATE(2016)] = 88132, + [SMALL_STATE(2017)] = 88233, + [SMALL_STATE(2018)] = 88334, + [SMALL_STATE(2019)] = 88435, + [SMALL_STATE(2020)] = 88534, + [SMALL_STATE(2021)] = 88633, + [SMALL_STATE(2022)] = 88732, + [SMALL_STATE(2023)] = 88831, + [SMALL_STATE(2024)] = 88930, + [SMALL_STATE(2025)] = 89029, + [SMALL_STATE(2026)] = 89128, + [SMALL_STATE(2027)] = 89227, + [SMALL_STATE(2028)] = 89326, + [SMALL_STATE(2029)] = 89425, + [SMALL_STATE(2030)] = 89524, + [SMALL_STATE(2031)] = 89620, + [SMALL_STATE(2032)] = 89716, + [SMALL_STATE(2033)] = 89804, + [SMALL_STATE(2034)] = 89900, + [SMALL_STATE(2035)] = 89988, + [SMALL_STATE(2036)] = 90084, + [SMALL_STATE(2037)] = 90180, + [SMALL_STATE(2038)] = 90276, + [SMALL_STATE(2039)] = 90372, + [SMALL_STATE(2040)] = 90468, + [SMALL_STATE(2041)] = 90564, + [SMALL_STATE(2042)] = 90660, + [SMALL_STATE(2043)] = 90722, + [SMALL_STATE(2044)] = 90776, + [SMALL_STATE(2045)] = 90846, + [SMALL_STATE(2046)] = 90900, + [SMALL_STATE(2047)] = 90972, + [SMALL_STATE(2048)] = 91026, + [SMALL_STATE(2049)] = 91080, + [SMALL_STATE(2050)] = 91139, + [SMALL_STATE(2051)] = 91204, + [SMALL_STATE(2052)] = 91289, + [SMALL_STATE(2053)] = 91374, + [SMALL_STATE(2054)] = 91445, + [SMALL_STATE(2055)] = 91504, + [SMALL_STATE(2056)] = 91567, + [SMALL_STATE(2057)] = 91626, + [SMALL_STATE(2058)] = 91711, + [SMALL_STATE(2059)] = 91782, + [SMALL_STATE(2060)] = 91853, + [SMALL_STATE(2061)] = 91912, + [SMALL_STATE(2062)] = 91997, + [SMALL_STATE(2063)] = 92066, + [SMALL_STATE(2064)] = 92133, + [SMALL_STATE(2065)] = 92188, + [SMALL_STATE(2066)] = 92261, + [SMALL_STATE(2067)] = 92345, + [SMALL_STATE(2068)] = 92427, + [SMALL_STATE(2069)] = 92475, + [SMALL_STATE(2070)] = 92523, + [SMALL_STATE(2071)] = 92607, + [SMALL_STATE(2072)] = 92691, + [SMALL_STATE(2073)] = 92775, + [SMALL_STATE(2074)] = 92825, + [SMALL_STATE(2075)] = 92875, + [SMALL_STATE(2076)] = 92959, + [SMALL_STATE(2077)] = 93043, + [SMALL_STATE(2078)] = 93094, + [SMALL_STATE(2079)] = 93141, + [SMALL_STATE(2080)] = 93188, + [SMALL_STATE(2081)] = 93235, + [SMALL_STATE(2082)] = 93282, + [SMALL_STATE(2083)] = 93329, + [SMALL_STATE(2084)] = 93376, + [SMALL_STATE(2085)] = 93423, + [SMALL_STATE(2086)] = 93470, + [SMALL_STATE(2087)] = 93537, + [SMALL_STATE(2088)] = 93584, + [SMALL_STATE(2089)] = 93631, + [SMALL_STATE(2090)] = 93682, + [SMALL_STATE(2091)] = 93729, + [SMALL_STATE(2092)] = 93776, + [SMALL_STATE(2093)] = 93835, + [SMALL_STATE(2094)] = 93882, + [SMALL_STATE(2095)] = 93963, + [SMALL_STATE(2096)] = 94014, + [SMALL_STATE(2097)] = 94061, + [SMALL_STATE(2098)] = 94108, + [SMALL_STATE(2099)] = 94159, + [SMALL_STATE(2100)] = 94210, + [SMALL_STATE(2101)] = 94261, + [SMALL_STATE(2102)] = 94308, + [SMALL_STATE(2103)] = 94355, + [SMALL_STATE(2104)] = 94440, + [SMALL_STATE(2105)] = 94487, + [SMALL_STATE(2106)] = 94538, + [SMALL_STATE(2107)] = 94585, + [SMALL_STATE(2108)] = 94666, + [SMALL_STATE(2109)] = 94713, + [SMALL_STATE(2110)] = 94760, + [SMALL_STATE(2111)] = 94807, + [SMALL_STATE(2112)] = 94854, + [SMALL_STATE(2113)] = 94901, + [SMALL_STATE(2114)] = 94948, + [SMALL_STATE(2115)] = 94999, + [SMALL_STATE(2116)] = 95046, + [SMALL_STATE(2117)] = 95093, + [SMALL_STATE(2118)] = 95140, + [SMALL_STATE(2119)] = 95195, + [SMALL_STATE(2120)] = 95242, + [SMALL_STATE(2121)] = 95295, + [SMALL_STATE(2122)] = 95346, + [SMALL_STATE(2123)] = 95393, + [SMALL_STATE(2124)] = 95440, + [SMALL_STATE(2125)] = 95489, + [SMALL_STATE(2126)] = 95536, + [SMALL_STATE(2127)] = 95591, + [SMALL_STATE(2128)] = 95638, + [SMALL_STATE(2129)] = 95685, + [SMALL_STATE(2130)] = 95740, + [SMALL_STATE(2131)] = 95787, + [SMALL_STATE(2132)] = 95834, + [SMALL_STATE(2133)] = 95881, + [SMALL_STATE(2134)] = 95928, + [SMALL_STATE(2135)] = 95975, + [SMALL_STATE(2136)] = 96022, + [SMALL_STATE(2137)] = 96081, + [SMALL_STATE(2138)] = 96128, + [SMALL_STATE(2139)] = 96179, + [SMALL_STATE(2140)] = 96230, + [SMALL_STATE(2141)] = 96292, + [SMALL_STATE(2142)] = 96360, + [SMALL_STATE(2143)] = 96426, + [SMALL_STATE(2144)] = 96492, + [SMALL_STATE(2145)] = 96556, + [SMALL_STATE(2146)] = 96608, + [SMALL_STATE(2147)] = 96658, + [SMALL_STATE(2148)] = 96708, + [SMALL_STATE(2149)] = 96764, + [SMALL_STATE(2150)] = 96814, + [SMALL_STATE(2151)] = 96878, + [SMALL_STATE(2152)] = 96958, + [SMALL_STATE(2153)] = 97014, + [SMALL_STATE(2154)] = 97064, + [SMALL_STATE(2155)] = 97120, + [SMALL_STATE(2156)] = 97176, + [SMALL_STATE(2157)] = 97234, + [SMALL_STATE(2158)] = 97290, + [SMALL_STATE(2159)] = 97350, + [SMALL_STATE(2160)] = 97410, + [SMALL_STATE(2161)] = 97460, + [SMALL_STATE(2162)] = 97510, + [SMALL_STATE(2163)] = 97590, + [SMALL_STATE(2164)] = 97670, + [SMALL_STATE(2165)] = 97740, + [SMALL_STATE(2166)] = 97820, + [SMALL_STATE(2167)] = 97876, + [SMALL_STATE(2168)] = 97932, + [SMALL_STATE(2169)] = 97982, + [SMALL_STATE(2170)] = 98040, + [SMALL_STATE(2171)] = 98090, + [SMALL_STATE(2172)] = 98158, + [SMALL_STATE(2173)] = 98214, + [SMALL_STATE(2174)] = 98264, + [SMALL_STATE(2175)] = 98334, + [SMALL_STATE(2176)] = 98414, + [SMALL_STATE(2177)] = 98464, + [SMALL_STATE(2178)] = 98514, + [SMALL_STATE(2179)] = 98566, + [SMALL_STATE(2180)] = 98616, + [SMALL_STATE(2181)] = 98674, + [SMALL_STATE(2182)] = 98736, + [SMALL_STATE(2183)] = 98787, + [SMALL_STATE(2184)] = 98848, + [SMALL_STATE(2185)] = 98903, + [SMALL_STATE(2186)] = 98962, + [SMALL_STATE(2187)] = 99029, + [SMALL_STATE(2188)] = 99094, + [SMALL_STATE(2189)] = 99157, + [SMALL_STATE(2190)] = 99222, + [SMALL_STATE(2191)] = 99277, + [SMALL_STATE(2192)] = 99336, + [SMALL_STATE(2193)] = 99391, + [SMALL_STATE(2194)] = 99436, + [SMALL_STATE(2195)] = 99515, + [SMALL_STATE(2196)] = 99578, + [SMALL_STATE(2197)] = 99625, + [SMALL_STATE(2198)] = 99672, + [SMALL_STATE(2199)] = 99717, + [SMALL_STATE(2200)] = 99786, + [SMALL_STATE(2201)] = 99835, + [SMALL_STATE(2202)] = 99902, + [SMALL_STATE(2203)] = 99959, + [SMALL_STATE(2204)] = 100010, + [SMALL_STATE(2205)] = 100061, + [SMALL_STATE(2206)] = 100140, + [SMALL_STATE(2207)] = 100187, + [SMALL_STATE(2208)] = 100234, + [SMALL_STATE(2209)] = 100313, + [SMALL_STATE(2210)] = 100378, + [SMALL_STATE(2211)] = 100429, + [SMALL_STATE(2212)] = 100498, + [SMALL_STATE(2213)] = 100553, + [SMALL_STATE(2214)] = 100602, + [SMALL_STATE(2215)] = 100657, + [SMALL_STATE(2216)] = 100718, + [SMALL_STATE(2217)] = 100767, + [SMALL_STATE(2218)] = 100822, + [SMALL_STATE(2219)] = 100867, + [SMALL_STATE(2220)] = 100916, + [SMALL_STATE(2221)] = 100967, + [SMALL_STATE(2222)] = 101022, + [SMALL_STATE(2223)] = 101071, + [SMALL_STATE(2224)] = 101126, + [SMALL_STATE(2225)] = 101195, + [SMALL_STATE(2226)] = 101254, + [SMALL_STATE(2227)] = 101303, + [SMALL_STATE(2228)] = 101358, + [SMALL_STATE(2229)] = 101413, + [SMALL_STATE(2230)] = 101468, + [SMALL_STATE(2231)] = 101517, + [SMALL_STATE(2232)] = 101568, + [SMALL_STATE(2233)] = 101617, + [SMALL_STATE(2234)] = 101696, + [SMALL_STATE(2235)] = 101757, + [SMALL_STATE(2236)] = 101836, + [SMALL_STATE(2237)] = 101891, + [SMALL_STATE(2238)] = 101970, + [SMALL_STATE(2239)] = 102015, + [SMALL_STATE(2240)] = 102082, + [SMALL_STATE(2241)] = 102145, + [SMALL_STATE(2242)] = 102189, + [SMALL_STATE(2243)] = 102233, + [SMALL_STATE(2244)] = 102277, + [SMALL_STATE(2245)] = 102321, + [SMALL_STATE(2246)] = 102365, + [SMALL_STATE(2247)] = 102413, + [SMALL_STATE(2248)] = 102457, + [SMALL_STATE(2249)] = 102501, + [SMALL_STATE(2250)] = 102545, + [SMALL_STATE(2251)] = 102589, + [SMALL_STATE(2252)] = 102633, + [SMALL_STATE(2253)] = 102677, + [SMALL_STATE(2254)] = 102725, + [SMALL_STATE(2255)] = 102769, + [SMALL_STATE(2256)] = 102817, + [SMALL_STATE(2257)] = 102861, + [SMALL_STATE(2258)] = 102905, + [SMALL_STATE(2259)] = 102955, + [SMALL_STATE(2260)] = 103001, + [SMALL_STATE(2261)] = 103045, + [SMALL_STATE(2262)] = 103089, + [SMALL_STATE(2263)] = 103133, + [SMALL_STATE(2264)] = 103177, + [SMALL_STATE(2265)] = 103221, + [SMALL_STATE(2266)] = 103265, + [SMALL_STATE(2267)] = 103309, + [SMALL_STATE(2268)] = 103353, + [SMALL_STATE(2269)] = 103401, + [SMALL_STATE(2270)] = 103445, + [SMALL_STATE(2271)] = 103491, + [SMALL_STATE(2272)] = 103535, + [SMALL_STATE(2273)] = 103581, + [SMALL_STATE(2274)] = 103627, + [SMALL_STATE(2275)] = 103683, + [SMALL_STATE(2276)] = 103731, + [SMALL_STATE(2277)] = 103779, + [SMALL_STATE(2278)] = 103823, + [SMALL_STATE(2279)] = 103869, + [SMALL_STATE(2280)] = 103917, + [SMALL_STATE(2281)] = 103965, + [SMALL_STATE(2282)] = 104013, + [SMALL_STATE(2283)] = 104057, + [SMALL_STATE(2284)] = 104101, + [SMALL_STATE(2285)] = 104145, + [SMALL_STATE(2286)] = 104189, + [SMALL_STATE(2287)] = 104239, + [SMALL_STATE(2288)] = 104283, + [SMALL_STATE(2289)] = 104327, + [SMALL_STATE(2290)] = 104381, + [SMALL_STATE(2291)] = 104425, + [SMALL_STATE(2292)] = 104469, + [SMALL_STATE(2293)] = 104513, + [SMALL_STATE(2294)] = 104557, + [SMALL_STATE(2295)] = 104611, + [SMALL_STATE(2296)] = 104655, + [SMALL_STATE(2297)] = 104699, + [SMALL_STATE(2298)] = 104743, + [SMALL_STATE(2299)] = 104787, + [SMALL_STATE(2300)] = 104831, + [SMALL_STATE(2301)] = 104875, + [SMALL_STATE(2302)] = 104919, + [SMALL_STATE(2303)] = 104967, + [SMALL_STATE(2304)] = 105011, + [SMALL_STATE(2305)] = 105089, + [SMALL_STATE(2306)] = 105133, + [SMALL_STATE(2307)] = 105177, + [SMALL_STATE(2308)] = 105221, + [SMALL_STATE(2309)] = 105265, + [SMALL_STATE(2310)] = 105309, + [SMALL_STATE(2311)] = 105353, + [SMALL_STATE(2312)] = 105397, + [SMALL_STATE(2313)] = 105443, + [SMALL_STATE(2314)] = 105487, + [SMALL_STATE(2315)] = 105535, + [SMALL_STATE(2316)] = 105579, + [SMALL_STATE(2317)] = 105623, + [SMALL_STATE(2318)] = 105667, + [SMALL_STATE(2319)] = 105711, + [SMALL_STATE(2320)] = 105759, + [SMALL_STATE(2321)] = 105803, + [SMALL_STATE(2322)] = 105871, + [SMALL_STATE(2323)] = 105917, + [SMALL_STATE(2324)] = 105963, + [SMALL_STATE(2325)] = 106007, + [SMALL_STATE(2326)] = 106051, + [SMALL_STATE(2327)] = 106095, + [SMALL_STATE(2328)] = 106141, + [SMALL_STATE(2329)] = 106185, + [SMALL_STATE(2330)] = 106229, + [SMALL_STATE(2331)] = 106277, + [SMALL_STATE(2332)] = 106321, + [SMALL_STATE(2333)] = 106373, + [SMALL_STATE(2334)] = 106423, + [SMALL_STATE(2335)] = 106467, + [SMALL_STATE(2336)] = 106515, + [SMALL_STATE(2337)] = 106559, + [SMALL_STATE(2338)] = 106605, + [SMALL_STATE(2339)] = 106657, + [SMALL_STATE(2340)] = 106701, + [SMALL_STATE(2341)] = 106753, + [SMALL_STATE(2342)] = 106797, + [SMALL_STATE(2343)] = 106841, + [SMALL_STATE(2344)] = 106885, + [SMALL_STATE(2345)] = 106929, + [SMALL_STATE(2346)] = 106981, + [SMALL_STATE(2347)] = 107025, + [SMALL_STATE(2348)] = 107075, + [SMALL_STATE(2349)] = 107123, + [SMALL_STATE(2350)] = 107167, + [SMALL_STATE(2351)] = 107213, + [SMALL_STATE(2352)] = 107267, + [SMALL_STATE(2353)] = 107327, + [SMALL_STATE(2354)] = 107381, + [SMALL_STATE(2355)] = 107439, + [SMALL_STATE(2356)] = 107505, + [SMALL_STATE(2357)] = 107569, + [SMALL_STATE(2358)] = 107631, + [SMALL_STATE(2359)] = 107675, + [SMALL_STATE(2360)] = 107727, + [SMALL_STATE(2361)] = 107771, + [SMALL_STATE(2362)] = 107815, + [SMALL_STATE(2363)] = 107859, + [SMALL_STATE(2364)] = 107911, + [SMALL_STATE(2365)] = 107955, + [SMALL_STATE(2366)] = 107999, + [SMALL_STATE(2367)] = 108043, + [SMALL_STATE(2368)] = 108089, + [SMALL_STATE(2369)] = 108135, + [SMALL_STATE(2370)] = 108179, + [SMALL_STATE(2371)] = 108223, + [SMALL_STATE(2372)] = 108271, + [SMALL_STATE(2373)] = 108315, + [SMALL_STATE(2374)] = 108359, + [SMALL_STATE(2375)] = 108403, + [SMALL_STATE(2376)] = 108447, + [SMALL_STATE(2377)] = 108495, + [SMALL_STATE(2378)] = 108539, + [SMALL_STATE(2379)] = 108583, + [SMALL_STATE(2380)] = 108627, + [SMALL_STATE(2381)] = 108671, + [SMALL_STATE(2382)] = 108715, + [SMALL_STATE(2383)] = 108759, + [SMALL_STATE(2384)] = 108803, + [SMALL_STATE(2385)] = 108847, + [SMALL_STATE(2386)] = 108891, + [SMALL_STATE(2387)] = 108935, + [SMALL_STATE(2388)] = 108979, + [SMALL_STATE(2389)] = 109023, + [SMALL_STATE(2390)] = 109067, + [SMALL_STATE(2391)] = 109115, + [SMALL_STATE(2392)] = 109159, + [SMALL_STATE(2393)] = 109203, + [SMALL_STATE(2394)] = 109251, + [SMALL_STATE(2395)] = 109295, + [SMALL_STATE(2396)] = 109343, + [SMALL_STATE(2397)] = 109387, + [SMALL_STATE(2398)] = 109431, + [SMALL_STATE(2399)] = 109494, + [SMALL_STATE(2400)] = 109537, + [SMALL_STATE(2401)] = 109588, + [SMALL_STATE(2402)] = 109631, + [SMALL_STATE(2403)] = 109680, + [SMALL_STATE(2404)] = 109723, + [SMALL_STATE(2405)] = 109766, + [SMALL_STATE(2406)] = 109809, + [SMALL_STATE(2407)] = 109852, + [SMALL_STATE(2408)] = 109895, + [SMALL_STATE(2409)] = 109938, + [SMALL_STATE(2410)] = 109981, + [SMALL_STATE(2411)] = 110024, + [SMALL_STATE(2412)] = 110067, + [SMALL_STATE(2413)] = 110110, + [SMALL_STATE(2414)] = 110153, + [SMALL_STATE(2415)] = 110196, + [SMALL_STATE(2416)] = 110239, + [SMALL_STATE(2417)] = 110282, + [SMALL_STATE(2418)] = 110325, + [SMALL_STATE(2419)] = 110368, + [SMALL_STATE(2420)] = 110411, + [SMALL_STATE(2421)] = 110454, + [SMALL_STATE(2422)] = 110497, + [SMALL_STATE(2423)] = 110542, + [SMALL_STATE(2424)] = 110585, + [SMALL_STATE(2425)] = 110638, + [SMALL_STATE(2426)] = 110683, + [SMALL_STATE(2427)] = 110726, + [SMALL_STATE(2428)] = 110771, + [SMALL_STATE(2429)] = 110820, + [SMALL_STATE(2430)] = 110869, + [SMALL_STATE(2431)] = 110914, + [SMALL_STATE(2432)] = 110973, + [SMALL_STATE(2433)] = 111016, + [SMALL_STATE(2434)] = 111059, + [SMALL_STATE(2435)] = 111102, + [SMALL_STATE(2436)] = 111145, + [SMALL_STATE(2437)] = 111188, + [SMALL_STATE(2438)] = 111241, + [SMALL_STATE(2439)] = 111286, + [SMALL_STATE(2440)] = 111329, + [SMALL_STATE(2441)] = 111374, + [SMALL_STATE(2442)] = 111417, + [SMALL_STATE(2443)] = 111474, + [SMALL_STATE(2444)] = 111525, + [SMALL_STATE(2445)] = 111568, + [SMALL_STATE(2446)] = 111633, + [SMALL_STATE(2447)] = 111676, + [SMALL_STATE(2448)] = 111719, + [SMALL_STATE(2449)] = 111762, + [SMALL_STATE(2450)] = 111805, + [SMALL_STATE(2451)] = 111854, + [SMALL_STATE(2452)] = 111915, + [SMALL_STATE(2453)] = 111958, + [SMALL_STATE(2454)] = 112005, + [SMALL_STATE(2455)] = 112050, + [SMALL_STATE(2456)] = 112093, + [SMALL_STATE(2457)] = 112144, + [SMALL_STATE(2458)] = 112187, + [SMALL_STATE(2459)] = 112230, + [SMALL_STATE(2460)] = 112281, + [SMALL_STATE(2461)] = 112324, + [SMALL_STATE(2462)] = 112367, + [SMALL_STATE(2463)] = 112446, + [SMALL_STATE(2464)] = 112489, + [SMALL_STATE(2465)] = 112532, + [SMALL_STATE(2466)] = 112575, + [SMALL_STATE(2467)] = 112618, + [SMALL_STATE(2468)] = 112661, + [SMALL_STATE(2469)] = 112706, + [SMALL_STATE(2470)] = 112753, + [SMALL_STATE(2471)] = 112796, + [SMALL_STATE(2472)] = 112839, + [SMALL_STATE(2473)] = 112882, + [SMALL_STATE(2474)] = 112925, + [SMALL_STATE(2475)] = 112968, + [SMALL_STATE(2476)] = 113011, + [SMALL_STATE(2477)] = 113054, + [SMALL_STATE(2478)] = 113097, + [SMALL_STATE(2479)] = 113140, + [SMALL_STATE(2480)] = 113187, + [SMALL_STATE(2481)] = 113230, + [SMALL_STATE(2482)] = 113277, + [SMALL_STATE(2483)] = 113330, + [SMALL_STATE(2484)] = 113373, + [SMALL_STATE(2485)] = 113416, + [SMALL_STATE(2486)] = 113461, + [SMALL_STATE(2487)] = 113504, + [SMALL_STATE(2488)] = 113549, + [SMALL_STATE(2489)] = 113594, + [SMALL_STATE(2490)] = 113639, + [SMALL_STATE(2491)] = 113682, + [SMALL_STATE(2492)] = 113725, + [SMALL_STATE(2493)] = 113768, + [SMALL_STATE(2494)] = 113811, + [SMALL_STATE(2495)] = 113856, + [SMALL_STATE(2496)] = 113899, + [SMALL_STATE(2497)] = 113942, + [SMALL_STATE(2498)] = 113985, + [SMALL_STATE(2499)] = 114028, + [SMALL_STATE(2500)] = 114079, + [SMALL_STATE(2501)] = 114122, + [SMALL_STATE(2502)] = 114165, + [SMALL_STATE(2503)] = 114208, + [SMALL_STATE(2504)] = 114275, + [SMALL_STATE(2505)] = 114318, + [SMALL_STATE(2506)] = 114361, + [SMALL_STATE(2507)] = 114404, + [SMALL_STATE(2508)] = 114447, + [SMALL_STATE(2509)] = 114492, + [SMALL_STATE(2510)] = 114535, + [SMALL_STATE(2511)] = 114578, + [SMALL_STATE(2512)] = 114623, + [SMALL_STATE(2513)] = 114666, + [SMALL_STATE(2514)] = 114745, + [SMALL_STATE(2515)] = 114790, + [SMALL_STATE(2516)] = 114833, + [SMALL_STATE(2517)] = 114876, + [SMALL_STATE(2518)] = 114919, + [SMALL_STATE(2519)] = 114964, + [SMALL_STATE(2520)] = 115007, + [SMALL_STATE(2521)] = 115050, + [SMALL_STATE(2522)] = 115093, + [SMALL_STATE(2523)] = 115136, + [SMALL_STATE(2524)] = 115179, + [SMALL_STATE(2525)] = 115226, + [SMALL_STATE(2526)] = 115269, + [SMALL_STATE(2527)] = 115312, + [SMALL_STATE(2528)] = 115355, + [SMALL_STATE(2529)] = 115398, + [SMALL_STATE(2530)] = 115441, + [SMALL_STATE(2531)] = 115484, + [SMALL_STATE(2532)] = 115527, + [SMALL_STATE(2533)] = 115570, + [SMALL_STATE(2534)] = 115613, + [SMALL_STATE(2535)] = 115656, + [SMALL_STATE(2536)] = 115699, + [SMALL_STATE(2537)] = 115742, + [SMALL_STATE(2538)] = 115785, + [SMALL_STATE(2539)] = 115828, + [SMALL_STATE(2540)] = 115871, + [SMALL_STATE(2541)] = 115914, + [SMALL_STATE(2542)] = 115957, + [SMALL_STATE(2543)] = 116000, + [SMALL_STATE(2544)] = 116043, + [SMALL_STATE(2545)] = 116088, + [SMALL_STATE(2546)] = 116133, + [SMALL_STATE(2547)] = 116178, + [SMALL_STATE(2548)] = 116223, + [SMALL_STATE(2549)] = 116266, + [SMALL_STATE(2550)] = 116309, + [SMALL_STATE(2551)] = 116360, + [SMALL_STATE(2552)] = 116403, + [SMALL_STATE(2553)] = 116454, + [SMALL_STATE(2554)] = 116497, + [SMALL_STATE(2555)] = 116546, + [SMALL_STATE(2556)] = 116593, + [SMALL_STATE(2557)] = 116636, + [SMALL_STATE(2558)] = 116681, + [SMALL_STATE(2559)] = 116732, + [SMALL_STATE(2560)] = 116775, + [SMALL_STATE(2561)] = 116826, + [SMALL_STATE(2562)] = 116869, + [SMALL_STATE(2563)] = 116912, + [SMALL_STATE(2564)] = 116955, + [SMALL_STATE(2565)] = 117004, + [SMALL_STATE(2566)] = 117051, + [SMALL_STATE(2567)] = 117094, + [SMALL_STATE(2568)] = 117137, + [SMALL_STATE(2569)] = 117182, + [SMALL_STATE(2570)] = 117225, + [SMALL_STATE(2571)] = 117272, + [SMALL_STATE(2572)] = 117319, + [SMALL_STATE(2573)] = 117362, + [SMALL_STATE(2574)] = 117415, + [SMALL_STATE(2575)] = 117466, + [SMALL_STATE(2576)] = 117515, + [SMALL_STATE(2577)] = 117558, + [SMALL_STATE(2578)] = 117600, + [SMALL_STATE(2579)] = 117644, + [SMALL_STATE(2580)] = 117694, + [SMALL_STATE(2581)] = 117736, + [SMALL_STATE(2582)] = 117778, + [SMALL_STATE(2583)] = 117826, + [SMALL_STATE(2584)] = 117872, + [SMALL_STATE(2585)] = 117916, + [SMALL_STATE(2586)] = 117966, + [SMALL_STATE(2587)] = 118008, + [SMALL_STATE(2588)] = 118058, + [SMALL_STATE(2589)] = 118100, + [SMALL_STATE(2590)] = 118142, + [SMALL_STATE(2591)] = 118184, + [SMALL_STATE(2592)] = 118226, + [SMALL_STATE(2593)] = 118270, + [SMALL_STATE(2594)] = 118312, + [SMALL_STATE(2595)] = 118354, + [SMALL_STATE(2596)] = 118396, + [SMALL_STATE(2597)] = 118440, + [SMALL_STATE(2598)] = 118482, + [SMALL_STATE(2599)] = 118526, + [SMALL_STATE(2600)] = 118568, + [SMALL_STATE(2601)] = 118610, + [SMALL_STATE(2602)] = 118652, + [SMALL_STATE(2603)] = 118694, + [SMALL_STATE(2604)] = 118740, + [SMALL_STATE(2605)] = 118782, + [SMALL_STATE(2606)] = 118824, + [SMALL_STATE(2607)] = 118866, + [SMALL_STATE(2608)] = 118912, + [SMALL_STATE(2609)] = 118954, + [SMALL_STATE(2610)] = 119008, + [SMALL_STATE(2611)] = 119050, + [SMALL_STATE(2612)] = 119096, + [SMALL_STATE(2613)] = 119138, + [SMALL_STATE(2614)] = 119180, + [SMALL_STATE(2615)] = 119222, + [SMALL_STATE(2616)] = 119264, + [SMALL_STATE(2617)] = 119306, + [SMALL_STATE(2618)] = 119350, + [SMALL_STATE(2619)] = 119392, + [SMALL_STATE(2620)] = 119434, + [SMALL_STATE(2621)] = 119482, + [SMALL_STATE(2622)] = 119524, + [SMALL_STATE(2623)] = 119570, + [SMALL_STATE(2624)] = 119612, + [SMALL_STATE(2625)] = 119654, + [SMALL_STATE(2626)] = 119696, + [SMALL_STATE(2627)] = 119740, + [SMALL_STATE(2628)] = 119784, + [SMALL_STATE(2629)] = 119826, + [SMALL_STATE(2630)] = 119868, + [SMALL_STATE(2631)] = 119910, + [SMALL_STATE(2632)] = 119952, + [SMALL_STATE(2633)] = 119996, + [SMALL_STATE(2634)] = 120038, + [SMALL_STATE(2635)] = 120080, + [SMALL_STATE(2636)] = 120122, + [SMALL_STATE(2637)] = 120164, + [SMALL_STATE(2638)] = 120206, + [SMALL_STATE(2639)] = 120248, + [SMALL_STATE(2640)] = 120294, + [SMALL_STATE(2641)] = 120340, + [SMALL_STATE(2642)] = 120382, + [SMALL_STATE(2643)] = 120461, + [SMALL_STATE(2644)] = 120540, + [SMALL_STATE(2645)] = 120581, + [SMALL_STATE(2646)] = 120622, + [SMALL_STATE(2647)] = 120663, + [SMALL_STATE(2648)] = 120740, + [SMALL_STATE(2649)] = 120785, + [SMALL_STATE(2650)] = 120826, + [SMALL_STATE(2651)] = 120867, + [SMALL_STATE(2652)] = 120908, + [SMALL_STATE(2653)] = 120949, + [SMALL_STATE(2654)] = 120992, + [SMALL_STATE(2655)] = 121035, + [SMALL_STATE(2656)] = 121078, + [SMALL_STATE(2657)] = 121121, + [SMALL_STATE(2658)] = 121162, + [SMALL_STATE(2659)] = 121203, + [SMALL_STATE(2660)] = 121244, + [SMALL_STATE(2661)] = 121285, + [SMALL_STATE(2662)] = 121326, + [SMALL_STATE(2663)] = 121367, + [SMALL_STATE(2664)] = 121408, + [SMALL_STATE(2665)] = 121449, + [SMALL_STATE(2666)] = 121490, + [SMALL_STATE(2667)] = 121531, + [SMALL_STATE(2668)] = 121572, + [SMALL_STATE(2669)] = 121613, + [SMALL_STATE(2670)] = 121654, + [SMALL_STATE(2671)] = 121695, + [SMALL_STATE(2672)] = 121736, + [SMALL_STATE(2673)] = 121777, + [SMALL_STATE(2674)] = 121818, + [SMALL_STATE(2675)] = 121859, + [SMALL_STATE(2676)] = 121900, + [SMALL_STATE(2677)] = 121941, + [SMALL_STATE(2678)] = 121982, + [SMALL_STATE(2679)] = 122023, + [SMALL_STATE(2680)] = 122064, + [SMALL_STATE(2681)] = 122105, + [SMALL_STATE(2682)] = 122146, + [SMALL_STATE(2683)] = 122187, + [SMALL_STATE(2684)] = 122228, + [SMALL_STATE(2685)] = 122269, + [SMALL_STATE(2686)] = 122310, + [SMALL_STATE(2687)] = 122351, + [SMALL_STATE(2688)] = 122392, + [SMALL_STATE(2689)] = 122433, + [SMALL_STATE(2690)] = 122474, + [SMALL_STATE(2691)] = 122515, + [SMALL_STATE(2692)] = 122560, + [SMALL_STATE(2693)] = 122639, + [SMALL_STATE(2694)] = 122680, + [SMALL_STATE(2695)] = 122721, + [SMALL_STATE(2696)] = 122762, + [SMALL_STATE(2697)] = 122803, + [SMALL_STATE(2698)] = 122844, + [SMALL_STATE(2699)] = 122885, + [SMALL_STATE(2700)] = 122926, + [SMALL_STATE(2701)] = 122969, + [SMALL_STATE(2702)] = 123012, + [SMALL_STATE(2703)] = 123053, + [SMALL_STATE(2704)] = 123094, + [SMALL_STATE(2705)] = 123135, + [SMALL_STATE(2706)] = 123214, + [SMALL_STATE(2707)] = 123293, + [SMALL_STATE(2708)] = 123336, + [SMALL_STATE(2709)] = 123413, + [SMALL_STATE(2710)] = 123462, + [SMALL_STATE(2711)] = 123509, + [SMALL_STATE(2712)] = 123554, + [SMALL_STATE(2713)] = 123597, + [SMALL_STATE(2714)] = 123646, + [SMALL_STATE(2715)] = 123695, + [SMALL_STATE(2716)] = 123774, + [SMALL_STATE(2717)] = 123853, + [SMALL_STATE(2718)] = 123932, + [SMALL_STATE(2719)] = 124011, + [SMALL_STATE(2720)] = 124090, + [SMALL_STATE(2721)] = 124169, + [SMALL_STATE(2722)] = 124248, + [SMALL_STATE(2723)] = 124327, + [SMALL_STATE(2724)] = 124406, + [SMALL_STATE(2725)] = 124485, + [SMALL_STATE(2726)] = 124564, + [SMALL_STATE(2727)] = 124643, + [SMALL_STATE(2728)] = 124722, + [SMALL_STATE(2729)] = 124801, + [SMALL_STATE(2730)] = 124880, + [SMALL_STATE(2731)] = 124959, + [SMALL_STATE(2732)] = 125038, + [SMALL_STATE(2733)] = 125117, + [SMALL_STATE(2734)] = 125166, + [SMALL_STATE(2735)] = 125238, + [SMALL_STATE(2736)] = 125282, + [SMALL_STATE(2737)] = 125354, + [SMALL_STATE(2738)] = 125426, + [SMALL_STATE(2739)] = 125498, + [SMALL_STATE(2740)] = 125570, + [SMALL_STATE(2741)] = 125642, + [SMALL_STATE(2742)] = 125718, + [SMALL_STATE(2743)] = 125790, + [SMALL_STATE(2744)] = 125861, + [SMALL_STATE(2745)] = 125932, + [SMALL_STATE(2746)] = 126003, + [SMALL_STATE(2747)] = 126074, + [SMALL_STATE(2748)] = 126145, + [SMALL_STATE(2749)] = 126216, + [SMALL_STATE(2750)] = 126287, + [SMALL_STATE(2751)] = 126360, + [SMALL_STATE(2752)] = 126433, + [SMALL_STATE(2753)] = 126504, + [SMALL_STATE(2754)] = 126575, + [SMALL_STATE(2755)] = 126646, + [SMALL_STATE(2756)] = 126719, + [SMALL_STATE(2757)] = 126790, + [SMALL_STATE(2758)] = 126861, + [SMALL_STATE(2759)] = 126932, + [SMALL_STATE(2760)] = 127003, + [SMALL_STATE(2761)] = 127074, + [SMALL_STATE(2762)] = 127145, + [SMALL_STATE(2763)] = 127216, + [SMALL_STATE(2764)] = 127287, + [SMALL_STATE(2765)] = 127358, + [SMALL_STATE(2766)] = 127429, + [SMALL_STATE(2767)] = 127500, + [SMALL_STATE(2768)] = 127571, + [SMALL_STATE(2769)] = 127642, + [SMALL_STATE(2770)] = 127723, + [SMALL_STATE(2771)] = 127794, + [SMALL_STATE(2772)] = 127865, + [SMALL_STATE(2773)] = 127936, + [SMALL_STATE(2774)] = 128007, + [SMALL_STATE(2775)] = 128078, + [SMALL_STATE(2776)] = 128149, + [SMALL_STATE(2777)] = 128220, + [SMALL_STATE(2778)] = 128291, + [SMALL_STATE(2779)] = 128362, + [SMALL_STATE(2780)] = 128433, + [SMALL_STATE(2781)] = 128506, + [SMALL_STATE(2782)] = 128579, + [SMALL_STATE(2783)] = 128652, + [SMALL_STATE(2784)] = 128723, + [SMALL_STATE(2785)] = 128796, + [SMALL_STATE(2786)] = 128867, + [SMALL_STATE(2787)] = 128938, + [SMALL_STATE(2788)] = 128976, + [SMALL_STATE(2789)] = 129046, + [SMALL_STATE(2790)] = 129116, + [SMALL_STATE(2791)] = 129184, + [SMALL_STATE(2792)] = 129222, + [SMALL_STATE(2793)] = 129290, + [SMALL_STATE(2794)] = 129358, + [SMALL_STATE(2795)] = 129428, + [SMALL_STATE(2796)] = 129496, + [SMALL_STATE(2797)] = 129534, + [SMALL_STATE(2798)] = 129604, + [SMALL_STATE(2799)] = 129674, + [SMALL_STATE(2800)] = 129742, + [SMALL_STATE(2801)] = 129780, + [SMALL_STATE(2802)] = 129848, + [SMALL_STATE(2803)] = 129916, + [SMALL_STATE(2804)] = 129984, + [SMALL_STATE(2805)] = 130022, + [SMALL_STATE(2806)] = 130090, + [SMALL_STATE(2807)] = 130160, + [SMALL_STATE(2808)] = 130230, + [SMALL_STATE(2809)] = 130268, + [SMALL_STATE(2810)] = 130338, + [SMALL_STATE(2811)] = 130408, + [SMALL_STATE(2812)] = 130477, + [SMALL_STATE(2813)] = 130514, + [SMALL_STATE(2814)] = 130583, + [SMALL_STATE(2815)] = 130652, + [SMALL_STATE(2816)] = 130689, + [SMALL_STATE(2817)] = 130726, + [SMALL_STATE(2818)] = 130763, + [SMALL_STATE(2819)] = 130800, + [SMALL_STATE(2820)] = 130837, + [SMALL_STATE(2821)] = 130876, + [SMALL_STATE(2822)] = 130943, + [SMALL_STATE(2823)] = 130980, + [SMALL_STATE(2824)] = 131017, + [SMALL_STATE(2825)] = 131054, + [SMALL_STATE(2826)] = 131091, + [SMALL_STATE(2827)] = 131128, + [SMALL_STATE(2828)] = 131165, + [SMALL_STATE(2829)] = 131202, + [SMALL_STATE(2830)] = 131239, + [SMALL_STATE(2831)] = 131276, + [SMALL_STATE(2832)] = 131313, + [SMALL_STATE(2833)] = 131350, + [SMALL_STATE(2834)] = 131389, + [SMALL_STATE(2835)] = 131454, + [SMALL_STATE(2836)] = 131491, + [SMALL_STATE(2837)] = 131528, + [SMALL_STATE(2838)] = 131565, + [SMALL_STATE(2839)] = 131602, + [SMALL_STATE(2840)] = 131639, + [SMALL_STATE(2841)] = 131676, + [SMALL_STATE(2842)] = 131713, + [SMALL_STATE(2843)] = 131750, + [SMALL_STATE(2844)] = 131787, + [SMALL_STATE(2845)] = 131824, + [SMALL_STATE(2846)] = 131861, + [SMALL_STATE(2847)] = 131898, + [SMALL_STATE(2848)] = 131935, + [SMALL_STATE(2849)] = 131972, + [SMALL_STATE(2850)] = 132009, + [SMALL_STATE(2851)] = 132046, + [SMALL_STATE(2852)] = 132085, + [SMALL_STATE(2853)] = 132152, + [SMALL_STATE(2854)] = 132219, + [SMALL_STATE(2855)] = 132256, + [SMALL_STATE(2856)] = 132293, + [SMALL_STATE(2857)] = 132330, + [SMALL_STATE(2858)] = 132399, + [SMALL_STATE(2859)] = 132436, + [SMALL_STATE(2860)] = 132473, + [SMALL_STATE(2861)] = 132510, + [SMALL_STATE(2862)] = 132547, + [SMALL_STATE(2863)] = 132614, + [SMALL_STATE(2864)] = 132651, + [SMALL_STATE(2865)] = 132688, + [SMALL_STATE(2866)] = 132725, + [SMALL_STATE(2867)] = 132794, + [SMALL_STATE(2868)] = 132863, + [SMALL_STATE(2869)] = 132900, + [SMALL_STATE(2870)] = 132937, + [SMALL_STATE(2871)] = 133006, + [SMALL_STATE(2872)] = 133043, + [SMALL_STATE(2873)] = 133080, + [SMALL_STATE(2874)] = 133117, + [SMALL_STATE(2875)] = 133154, + [SMALL_STATE(2876)] = 133191, + [SMALL_STATE(2877)] = 133228, + [SMALL_STATE(2878)] = 133265, + [SMALL_STATE(2879)] = 133302, + [SMALL_STATE(2880)] = 133339, + [SMALL_STATE(2881)] = 133406, + [SMALL_STATE(2882)] = 133443, + [SMALL_STATE(2883)] = 133480, + [SMALL_STATE(2884)] = 133517, + [SMALL_STATE(2885)] = 133554, + [SMALL_STATE(2886)] = 133591, + [SMALL_STATE(2887)] = 133660, + [SMALL_STATE(2888)] = 133697, + [SMALL_STATE(2889)] = 133734, + [SMALL_STATE(2890)] = 133771, + [SMALL_STATE(2891)] = 133840, + [SMALL_STATE(2892)] = 133907, + [SMALL_STATE(2893)] = 133976, + [SMALL_STATE(2894)] = 134045, + [SMALL_STATE(2895)] = 134082, + [SMALL_STATE(2896)] = 134119, + [SMALL_STATE(2897)] = 134188, + [SMALL_STATE(2898)] = 134257, + [SMALL_STATE(2899)] = 134294, + [SMALL_STATE(2900)] = 134331, + [SMALL_STATE(2901)] = 134368, + [SMALL_STATE(2902)] = 134405, + [SMALL_STATE(2903)] = 134442, + [SMALL_STATE(2904)] = 134479, + [SMALL_STATE(2905)] = 134516, + [SMALL_STATE(2906)] = 134585, + [SMALL_STATE(2907)] = 134654, + [SMALL_STATE(2908)] = 134691, + [SMALL_STATE(2909)] = 134760, + [SMALL_STATE(2910)] = 134829, + [SMALL_STATE(2911)] = 134868, + [SMALL_STATE(2912)] = 134905, + [SMALL_STATE(2913)] = 134942, + [SMALL_STATE(2914)] = 134979, + [SMALL_STATE(2915)] = 135016, + [SMALL_STATE(2916)] = 135053, + [SMALL_STATE(2917)] = 135090, + [SMALL_STATE(2918)] = 135127, + [SMALL_STATE(2919)] = 135196, + [SMALL_STATE(2920)] = 135265, + [SMALL_STATE(2921)] = 135302, + [SMALL_STATE(2922)] = 135339, + [SMALL_STATE(2923)] = 135378, + [SMALL_STATE(2924)] = 135417, + [SMALL_STATE(2925)] = 135482, + [SMALL_STATE(2926)] = 135547, + [SMALL_STATE(2927)] = 135586, + [SMALL_STATE(2928)] = 135623, + [SMALL_STATE(2929)] = 135662, + [SMALL_STATE(2930)] = 135699, + [SMALL_STATE(2931)] = 135768, + [SMALL_STATE(2932)] = 135804, + [SMALL_STATE(2933)] = 135840, + [SMALL_STATE(2934)] = 135876, + [SMALL_STATE(2935)] = 135912, + [SMALL_STATE(2936)] = 135948, + [SMALL_STATE(2937)] = 135984, + [SMALL_STATE(2938)] = 136020, + [SMALL_STATE(2939)] = 136056, + [SMALL_STATE(2940)] = 136092, + [SMALL_STATE(2941)] = 136128, + [SMALL_STATE(2942)] = 136164, + [SMALL_STATE(2943)] = 136200, + [SMALL_STATE(2944)] = 136236, + [SMALL_STATE(2945)] = 136272, + [SMALL_STATE(2946)] = 136308, + [SMALL_STATE(2947)] = 136344, + [SMALL_STATE(2948)] = 136380, + [SMALL_STATE(2949)] = 136416, + [SMALL_STATE(2950)] = 136452, + [SMALL_STATE(2951)] = 136488, + [SMALL_STATE(2952)] = 136524, + [SMALL_STATE(2953)] = 136560, + [SMALL_STATE(2954)] = 136596, + [SMALL_STATE(2955)] = 136632, + [SMALL_STATE(2956)] = 136668, + [SMALL_STATE(2957)] = 136704, + [SMALL_STATE(2958)] = 136740, + [SMALL_STATE(2959)] = 136776, + [SMALL_STATE(2960)] = 136812, + [SMALL_STATE(2961)] = 136848, + [SMALL_STATE(2962)] = 136884, + [SMALL_STATE(2963)] = 136920, + [SMALL_STATE(2964)] = 136956, + [SMALL_STATE(2965)] = 136992, + [SMALL_STATE(2966)] = 137054, + [SMALL_STATE(2967)] = 137090, + [SMALL_STATE(2968)] = 137126, + [SMALL_STATE(2969)] = 137162, + [SMALL_STATE(2970)] = 137198, + [SMALL_STATE(2971)] = 137234, + [SMALL_STATE(2972)] = 137270, + [SMALL_STATE(2973)] = 137306, + [SMALL_STATE(2974)] = 137342, + [SMALL_STATE(2975)] = 137378, + [SMALL_STATE(2976)] = 137414, + [SMALL_STATE(2977)] = 137450, + [SMALL_STATE(2978)] = 137486, + [SMALL_STATE(2979)] = 137522, + [SMALL_STATE(2980)] = 137558, + [SMALL_STATE(2981)] = 137594, + [SMALL_STATE(2982)] = 137630, + [SMALL_STATE(2983)] = 137666, + [SMALL_STATE(2984)] = 137702, + [SMALL_STATE(2985)] = 137738, + [SMALL_STATE(2986)] = 137774, + [SMALL_STATE(2987)] = 137810, + [SMALL_STATE(2988)] = 137846, + [SMALL_STATE(2989)] = 137882, + [SMALL_STATE(2990)] = 137918, + [SMALL_STATE(2991)] = 137980, + [SMALL_STATE(2992)] = 138016, + [SMALL_STATE(2993)] = 138082, + [SMALL_STATE(2994)] = 138144, + [SMALL_STATE(2995)] = 138180, + [SMALL_STATE(2996)] = 138216, + [SMALL_STATE(2997)] = 138252, + [SMALL_STATE(2998)] = 138288, + [SMALL_STATE(2999)] = 138324, + [SMALL_STATE(3000)] = 138360, + [SMALL_STATE(3001)] = 138396, + [SMALL_STATE(3002)] = 138432, + [SMALL_STATE(3003)] = 138468, + [SMALL_STATE(3004)] = 138504, + [SMALL_STATE(3005)] = 138540, + [SMALL_STATE(3006)] = 138576, + [SMALL_STATE(3007)] = 138612, + [SMALL_STATE(3008)] = 138648, + [SMALL_STATE(3009)] = 138684, + [SMALL_STATE(3010)] = 138720, + [SMALL_STATE(3011)] = 138756, + [SMALL_STATE(3012)] = 138792, + [SMALL_STATE(3013)] = 138828, + [SMALL_STATE(3014)] = 138864, + [SMALL_STATE(3015)] = 138900, + [SMALL_STATE(3016)] = 138936, + [SMALL_STATE(3017)] = 138972, + [SMALL_STATE(3018)] = 139008, + [SMALL_STATE(3019)] = 139044, + [SMALL_STATE(3020)] = 139080, + [SMALL_STATE(3021)] = 139116, + [SMALL_STATE(3022)] = 139152, + [SMALL_STATE(3023)] = 139188, + [SMALL_STATE(3024)] = 139224, + [SMALL_STATE(3025)] = 139260, + [SMALL_STATE(3026)] = 139322, + [SMALL_STATE(3027)] = 139358, + [SMALL_STATE(3028)] = 139394, + [SMALL_STATE(3029)] = 139430, + [SMALL_STATE(3030)] = 139466, + [SMALL_STATE(3031)] = 139502, + [SMALL_STATE(3032)] = 139538, + [SMALL_STATE(3033)] = 139574, + [SMALL_STATE(3034)] = 139610, + [SMALL_STATE(3035)] = 139646, + [SMALL_STATE(3036)] = 139682, + [SMALL_STATE(3037)] = 139718, + [SMALL_STATE(3038)] = 139754, + [SMALL_STATE(3039)] = 139790, + [SMALL_STATE(3040)] = 139826, + [SMALL_STATE(3041)] = 139862, + [SMALL_STATE(3042)] = 139898, + [SMALL_STATE(3043)] = 139934, + [SMALL_STATE(3044)] = 139982, + [SMALL_STATE(3045)] = 140018, + [SMALL_STATE(3046)] = 140054, + [SMALL_STATE(3047)] = 140092, + [SMALL_STATE(3048)] = 140128, + [SMALL_STATE(3049)] = 140176, + [SMALL_STATE(3050)] = 140212, + [SMALL_STATE(3051)] = 140248, + [SMALL_STATE(3052)] = 140284, + [SMALL_STATE(3053)] = 140320, + [SMALL_STATE(3054)] = 140356, + [SMALL_STATE(3055)] = 140394, + [SMALL_STATE(3056)] = 140430, + [SMALL_STATE(3057)] = 140466, + [SMALL_STATE(3058)] = 140502, + [SMALL_STATE(3059)] = 140538, + [SMALL_STATE(3060)] = 140574, + [SMALL_STATE(3061)] = 140610, + [SMALL_STATE(3062)] = 140646, + [SMALL_STATE(3063)] = 140682, + [SMALL_STATE(3064)] = 140718, + [SMALL_STATE(3065)] = 140753, + [SMALL_STATE(3066)] = 140814, + [SMALL_STATE(3067)] = 140875, + [SMALL_STATE(3068)] = 140936, + [SMALL_STATE(3069)] = 140997, + [SMALL_STATE(3070)] = 141032, + [SMALL_STATE(3071)] = 141093, + [SMALL_STATE(3072)] = 141128, + [SMALL_STATE(3073)] = 141189, + [SMALL_STATE(3074)] = 141224, + [SMALL_STATE(3075)] = 141259, + [SMALL_STATE(3076)] = 141320, + [SMALL_STATE(3077)] = 141381, + [SMALL_STATE(3078)] = 141416, + [SMALL_STATE(3079)] = 141451, + [SMALL_STATE(3080)] = 141486, + [SMALL_STATE(3081)] = 141521, + [SMALL_STATE(3082)] = 141556, + [SMALL_STATE(3083)] = 141616, + [SMALL_STATE(3084)] = 141676, + [SMALL_STATE(3085)] = 141736, + [SMALL_STATE(3086)] = 141796, + [SMALL_STATE(3087)] = 141849, + [SMALL_STATE(3088)] = 141904, + [SMALL_STATE(3089)] = 141937, + [SMALL_STATE(3090)] = 141970, + [SMALL_STATE(3091)] = 142003, + [SMALL_STATE(3092)] = 142036, + [SMALL_STATE(3093)] = 142069, + [SMALL_STATE(3094)] = 142102, + [SMALL_STATE(3095)] = 142135, + [SMALL_STATE(3096)] = 142168, + [SMALL_STATE(3097)] = 142212, + [SMALL_STATE(3098)] = 142256, + [SMALL_STATE(3099)] = 142297, + [SMALL_STATE(3100)] = 142338, + [SMALL_STATE(3101)] = 142381, + [SMALL_STATE(3102)] = 142440, + [SMALL_STATE(3103)] = 142483, + [SMALL_STATE(3104)] = 142526, + [SMALL_STATE(3105)] = 142569, + [SMALL_STATE(3106)] = 142601, + [SMALL_STATE(3107)] = 142657, + [SMALL_STATE(3108)] = 142689, + [SMALL_STATE(3109)] = 142721, + [SMALL_STATE(3110)] = 142753, + [SMALL_STATE(3111)] = 142785, + [SMALL_STATE(3112)] = 142827, + [SMALL_STATE(3113)] = 142857, + [SMALL_STATE(3114)] = 142887, + [SMALL_STATE(3115)] = 142943, + [SMALL_STATE(3116)] = 142973, + [SMALL_STATE(3117)] = 143003, + [SMALL_STATE(3118)] = 143033, + [SMALL_STATE(3119)] = 143063, + [SMALL_STATE(3120)] = 143093, + [SMALL_STATE(3121)] = 143125, + [SMALL_STATE(3122)] = 143157, + [SMALL_STATE(3123)] = 143189, + [SMALL_STATE(3124)] = 143221, + [SMALL_STATE(3125)] = 143253, + [SMALL_STATE(3126)] = 143285, + [SMALL_STATE(3127)] = 143327, + [SMALL_STATE(3128)] = 143383, + [SMALL_STATE(3129)] = 143415, + [SMALL_STATE(3130)] = 143471, + [SMALL_STATE(3131)] = 143513, + [SMALL_STATE(3132)] = 143555, + [SMALL_STATE(3133)] = 143606, + [SMALL_STATE(3134)] = 143659, + [SMALL_STATE(3135)] = 143712, + [SMALL_STATE(3136)] = 143743, + [SMALL_STATE(3137)] = 143774, + [SMALL_STATE(3138)] = 143805, + [SMALL_STATE(3139)] = 143856, + [SMALL_STATE(3140)] = 143907, + [SMALL_STATE(3141)] = 143944, + [SMALL_STATE(3142)] = 143995, + [SMALL_STATE(3143)] = 144046, + [SMALL_STATE(3144)] = 144101, + [SMALL_STATE(3145)] = 144138, + [SMALL_STATE(3146)] = 144191, + [SMALL_STATE(3147)] = 144228, + [SMALL_STATE(3148)] = 144263, + [SMALL_STATE(3149)] = 144300, + [SMALL_STATE(3150)] = 144333, + [SMALL_STATE(3151)] = 144364, + [SMALL_STATE(3152)] = 144401, + [SMALL_STATE(3153)] = 144454, + [SMALL_STATE(3154)] = 144505, + [SMALL_STATE(3155)] = 144556, + [SMALL_STATE(3156)] = 144593, + [SMALL_STATE(3157)] = 144646, + [SMALL_STATE(3158)] = 144699, + [SMALL_STATE(3159)] = 144730, + [SMALL_STATE(3160)] = 144781, + [SMALL_STATE(3161)] = 144818, + [SMALL_STATE(3162)] = 144871, + [SMALL_STATE(3163)] = 144922, + [SMALL_STATE(3164)] = 144972, + [SMALL_STATE(3165)] = 145002, + [SMALL_STATE(3166)] = 145040, + [SMALL_STATE(3167)] = 145090, + [SMALL_STATE(3168)] = 145140, + [SMALL_STATE(3169)] = 145192, + [SMALL_STATE(3170)] = 145222, + [SMALL_STATE(3171)] = 145260, + [SMALL_STATE(3172)] = 145312, + [SMALL_STATE(3173)] = 145342, + [SMALL_STATE(3174)] = 145394, + [SMALL_STATE(3175)] = 145444, + [SMALL_STATE(3176)] = 145494, + [SMALL_STATE(3177)] = 145544, + [SMALL_STATE(3178)] = 145596, + [SMALL_STATE(3179)] = 145646, + [SMALL_STATE(3180)] = 145676, + [SMALL_STATE(3181)] = 145726, + [SMALL_STATE(3182)] = 145778, + [SMALL_STATE(3183)] = 145810, + [SMALL_STATE(3184)] = 145840, + [SMALL_STATE(3185)] = 145890, + [SMALL_STATE(3186)] = 145940, + [SMALL_STATE(3187)] = 145990, + [SMALL_STATE(3188)] = 146042, + [SMALL_STATE(3189)] = 146072, + [SMALL_STATE(3190)] = 146122, + [SMALL_STATE(3191)] = 146174, + [SMALL_STATE(3192)] = 146224, + [SMALL_STATE(3193)] = 146254, + [SMALL_STATE(3194)] = 146301, + [SMALL_STATE(3195)] = 146348, + [SMALL_STATE(3196)] = 146377, + [SMALL_STATE(3197)] = 146402, + [SMALL_STATE(3198)] = 146427, + [SMALL_STATE(3199)] = 146462, + [SMALL_STATE(3200)] = 146503, + [SMALL_STATE(3201)] = 146550, + [SMALL_STATE(3202)] = 146579, + [SMALL_STATE(3203)] = 146608, + [SMALL_STATE(3204)] = 146637, + [SMALL_STATE(3205)] = 146662, + [SMALL_STATE(3206)] = 146703, + [SMALL_STATE(3207)] = 146728, + [SMALL_STATE(3208)] = 146753, + [SMALL_STATE(3209)] = 146800, + [SMALL_STATE(3210)] = 146847, + [SMALL_STATE(3211)] = 146884, + [SMALL_STATE(3212)] = 146909, + [SMALL_STATE(3213)] = 146956, + [SMALL_STATE(3214)] = 146985, + [SMALL_STATE(3215)] = 147014, + [SMALL_STATE(3216)] = 147061, + [SMALL_STATE(3217)] = 147108, + [SMALL_STATE(3218)] = 147133, + [SMALL_STATE(3219)] = 147160, + [SMALL_STATE(3220)] = 147207, + [SMALL_STATE(3221)] = 147254, + [SMALL_STATE(3222)] = 147301, + [SMALL_STATE(3223)] = 147348, + [SMALL_STATE(3224)] = 147395, + [SMALL_STATE(3225)] = 147442, + [SMALL_STATE(3226)] = 147489, + [SMALL_STATE(3227)] = 147514, + [SMALL_STATE(3228)] = 147543, + [SMALL_STATE(3229)] = 147590, + [SMALL_STATE(3230)] = 147619, + [SMALL_STATE(3231)] = 147656, + [SMALL_STATE(3232)] = 147697, + [SMALL_STATE(3233)] = 147734, + [SMALL_STATE(3234)] = 147773, + [SMALL_STATE(3235)] = 147820, + [SMALL_STATE(3236)] = 147865, + [SMALL_STATE(3237)] = 147908, + [SMALL_STATE(3238)] = 147937, + [SMALL_STATE(3239)] = 147966, + [SMALL_STATE(3240)] = 148003, + [SMALL_STATE(3241)] = 148047, + [SMALL_STATE(3242)] = 148089, + [SMALL_STATE(3243)] = 148131, + [SMALL_STATE(3244)] = 148173, + [SMALL_STATE(3245)] = 148215, + [SMALL_STATE(3246)] = 148259, + [SMALL_STATE(3247)] = 148303, + [SMALL_STATE(3248)] = 148345, + [SMALL_STATE(3249)] = 148389, + [SMALL_STATE(3250)] = 148433, + [SMALL_STATE(3251)] = 148475, + [SMALL_STATE(3252)] = 148519, + [SMALL_STATE(3253)] = 148563, + [SMALL_STATE(3254)] = 148607, + [SMALL_STATE(3255)] = 148655, + [SMALL_STATE(3256)] = 148687, + [SMALL_STATE(3257)] = 148717, + [SMALL_STATE(3258)] = 148761, + [SMALL_STATE(3259)] = 148789, + [SMALL_STATE(3260)] = 148831, + [SMALL_STATE(3261)] = 148873, + [SMALL_STATE(3262)] = 148917, + [SMALL_STATE(3263)] = 148961, + [SMALL_STATE(3264)] = 149003, + [SMALL_STATE(3265)] = 149047, + [SMALL_STATE(3266)] = 149089, + [SMALL_STATE(3267)] = 149131, + [SMALL_STATE(3268)] = 149175, + [SMALL_STATE(3269)] = 149219, + [SMALL_STATE(3270)] = 149263, + [SMALL_STATE(3271)] = 149307, + [SMALL_STATE(3272)] = 149349, + [SMALL_STATE(3273)] = 149393, + [SMALL_STATE(3274)] = 149437, + [SMALL_STATE(3275)] = 149479, + [SMALL_STATE(3276)] = 149507, + [SMALL_STATE(3277)] = 149551, + [SMALL_STATE(3278)] = 149595, + [SMALL_STATE(3279)] = 149637, + [SMALL_STATE(3280)] = 149681, + [SMALL_STATE(3281)] = 149725, + [SMALL_STATE(3282)] = 149769, + [SMALL_STATE(3283)] = 149815, + [SMALL_STATE(3284)] = 149859, + [SMALL_STATE(3285)] = 149903, + [SMALL_STATE(3286)] = 149947, + [SMALL_STATE(3287)] = 149991, + [SMALL_STATE(3288)] = 150035, + [SMALL_STATE(3289)] = 150079, + [SMALL_STATE(3290)] = 150121, + [SMALL_STATE(3291)] = 150165, + [SMALL_STATE(3292)] = 150195, + [SMALL_STATE(3293)] = 150239, + [SMALL_STATE(3294)] = 150281, + [SMALL_STATE(3295)] = 150325, + [SMALL_STATE(3296)] = 150369, + [SMALL_STATE(3297)] = 150413, + [SMALL_STATE(3298)] = 150457, + [SMALL_STATE(3299)] = 150501, + [SMALL_STATE(3300)] = 150545, + [SMALL_STATE(3301)] = 150589, + [SMALL_STATE(3302)] = 150631, + [SMALL_STATE(3303)] = 150675, + [SMALL_STATE(3304)] = 150719, + [SMALL_STATE(3305)] = 150763, + [SMALL_STATE(3306)] = 150807, + [SMALL_STATE(3307)] = 150851, + [SMALL_STATE(3308)] = 150895, + [SMALL_STATE(3309)] = 150939, + [SMALL_STATE(3310)] = 150983, + [SMALL_STATE(3311)] = 151027, + [SMALL_STATE(3312)] = 151071, + [SMALL_STATE(3313)] = 151099, + [SMALL_STATE(3314)] = 151143, + [SMALL_STATE(3315)] = 151185, + [SMALL_STATE(3316)] = 151229, + [SMALL_STATE(3317)] = 151261, + [SMALL_STATE(3318)] = 151305, + [SMALL_STATE(3319)] = 151349, + [SMALL_STATE(3320)] = 151393, + [SMALL_STATE(3321)] = 151437, + [SMALL_STATE(3322)] = 151481, + [SMALL_STATE(3323)] = 151525, + [SMALL_STATE(3324)] = 151569, + [SMALL_STATE(3325)] = 151613, + [SMALL_STATE(3326)] = 151641, + [SMALL_STATE(3327)] = 151685, + [SMALL_STATE(3328)] = 151727, + [SMALL_STATE(3329)] = 151771, + [SMALL_STATE(3330)] = 151815, + [SMALL_STATE(3331)] = 151845, + [SMALL_STATE(3332)] = 151889, + [SMALL_STATE(3333)] = 151933, + [SMALL_STATE(3334)] = 151977, + [SMALL_STATE(3335)] = 152021, + [SMALL_STATE(3336)] = 152065, + [SMALL_STATE(3337)] = 152109, + [SMALL_STATE(3338)] = 152153, + [SMALL_STATE(3339)] = 152197, + [SMALL_STATE(3340)] = 152241, + [SMALL_STATE(3341)] = 152285, + [SMALL_STATE(3342)] = 152329, + [SMALL_STATE(3343)] = 152371, + [SMALL_STATE(3344)] = 152399, + [SMALL_STATE(3345)] = 152443, + [SMALL_STATE(3346)] = 152468, + [SMALL_STATE(3347)] = 152509, + [SMALL_STATE(3348)] = 152550, + [SMALL_STATE(3349)] = 152591, + [SMALL_STATE(3350)] = 152624, + [SMALL_STATE(3351)] = 152649, + [SMALL_STATE(3352)] = 152674, + [SMALL_STATE(3353)] = 152713, + [SMALL_STATE(3354)] = 152738, + [SMALL_STATE(3355)] = 152779, + [SMALL_STATE(3356)] = 152806, + [SMALL_STATE(3357)] = 152853, + [SMALL_STATE(3358)] = 152894, + [SMALL_STATE(3359)] = 152935, + [SMALL_STATE(3360)] = 152976, + [SMALL_STATE(3361)] = 153003, + [SMALL_STATE(3362)] = 153030, + [SMALL_STATE(3363)] = 153071, + [SMALL_STATE(3364)] = 153116, + [SMALL_STATE(3365)] = 153157, + [SMALL_STATE(3366)] = 153196, + [SMALL_STATE(3367)] = 153237, + [SMALL_STATE(3368)] = 153264, + [SMALL_STATE(3369)] = 153291, + [SMALL_STATE(3370)] = 153332, + [SMALL_STATE(3371)] = 153373, + [SMALL_STATE(3372)] = 153400, + [SMALL_STATE(3373)] = 153429, + [SMALL_STATE(3374)] = 153470, + [SMALL_STATE(3375)] = 153511, + [SMALL_STATE(3376)] = 153552, + [SMALL_STATE(3377)] = 153576, + [SMALL_STATE(3378)] = 153600, + [SMALL_STATE(3379)] = 153624, + [SMALL_STATE(3380)] = 153660, + [SMALL_STATE(3381)] = 153684, + [SMALL_STATE(3382)] = 153708, + [SMALL_STATE(3383)] = 153744, + [SMALL_STATE(3384)] = 153768, + [SMALL_STATE(3385)] = 153808, + [SMALL_STATE(3386)] = 153846, + [SMALL_STATE(3387)] = 153882, + [SMALL_STATE(3388)] = 153918, + [SMALL_STATE(3389)] = 153942, + [SMALL_STATE(3390)] = 153980, + [SMALL_STATE(3391)] = 154006, + [SMALL_STATE(3392)] = 154030, + [SMALL_STATE(3393)] = 154068, + [SMALL_STATE(3394)] = 154102, + [SMALL_STATE(3395)] = 154140, + [SMALL_STATE(3396)] = 154180, + [SMALL_STATE(3397)] = 154208, + [SMALL_STATE(3398)] = 154244, + [SMALL_STATE(3399)] = 154268, + [SMALL_STATE(3400)] = 154302, + [SMALL_STATE(3401)] = 154342, + [SMALL_STATE(3402)] = 154366, + [SMALL_STATE(3403)] = 154402, + [SMALL_STATE(3404)] = 154442, + [SMALL_STATE(3405)] = 154468, + [SMALL_STATE(3406)] = 154496, + [SMALL_STATE(3407)] = 154523, + [SMALL_STATE(3408)] = 154556, + [SMALL_STATE(3409)] = 154595, + [SMALL_STATE(3410)] = 154620, + [SMALL_STATE(3411)] = 154653, + [SMALL_STATE(3412)] = 154686, + [SMALL_STATE(3413)] = 154719, + [SMALL_STATE(3414)] = 154746, + [SMALL_STATE(3415)] = 154773, + [SMALL_STATE(3416)] = 154796, + [SMALL_STATE(3417)] = 154819, + [SMALL_STATE(3418)] = 154846, + [SMALL_STATE(3419)] = 154885, + [SMALL_STATE(3420)] = 154912, + [SMALL_STATE(3421)] = 154935, + [SMALL_STATE(3422)] = 154958, + [SMALL_STATE(3423)] = 154997, + [SMALL_STATE(3424)] = 155018, + [SMALL_STATE(3425)] = 155045, + [SMALL_STATE(3426)] = 155080, + [SMALL_STATE(3427)] = 155107, + [SMALL_STATE(3428)] = 155134, + [SMALL_STATE(3429)] = 155161, + [SMALL_STATE(3430)] = 155184, + [SMALL_STATE(3431)] = 155217, + [SMALL_STATE(3432)] = 155250, + [SMALL_STATE(3433)] = 155275, + [SMALL_STATE(3434)] = 155314, + [SMALL_STATE(3435)] = 155347, + [SMALL_STATE(3436)] = 155384, + [SMALL_STATE(3437)] = 155407, + [SMALL_STATE(3438)] = 155440, + [SMALL_STATE(3439)] = 155463, + [SMALL_STATE(3440)] = 155498, + [SMALL_STATE(3441)] = 155519, + [SMALL_STATE(3442)] = 155552, + [SMALL_STATE(3443)] = 155573, + [SMALL_STATE(3444)] = 155594, + [SMALL_STATE(3445)] = 155621, + [SMALL_STATE(3446)] = 155645, + [SMALL_STATE(3447)] = 155677, + [SMALL_STATE(3448)] = 155701, + [SMALL_STATE(3449)] = 155735, + [SMALL_STATE(3450)] = 155767, + [SMALL_STATE(3451)] = 155803, + [SMALL_STATE(3452)] = 155833, + [SMALL_STATE(3453)] = 155863, + [SMALL_STATE(3454)] = 155889, + [SMALL_STATE(3455)] = 155915, + [SMALL_STATE(3456)] = 155945, + [SMALL_STATE(3457)] = 155977, + [SMALL_STATE(3458)] = 156009, + [SMALL_STATE(3459)] = 156041, + [SMALL_STATE(3460)] = 156075, + [SMALL_STATE(3461)] = 156113, + [SMALL_STATE(3462)] = 156153, + [SMALL_STATE(3463)] = 156191, + [SMALL_STATE(3464)] = 156229, + [SMALL_STATE(3465)] = 156269, + [SMALL_STATE(3466)] = 156307, + [SMALL_STATE(3467)] = 156329, + [SMALL_STATE(3468)] = 156359, + [SMALL_STATE(3469)] = 156385, + [SMALL_STATE(3470)] = 156415, + [SMALL_STATE(3471)] = 156437, + [SMALL_STATE(3472)] = 156469, + [SMALL_STATE(3473)] = 156491, + [SMALL_STATE(3474)] = 156521, + [SMALL_STATE(3475)] = 156561, + [SMALL_STATE(3476)] = 156591, + [SMALL_STATE(3477)] = 156619, + [SMALL_STATE(3478)] = 156641, + [SMALL_STATE(3479)] = 156675, + [SMALL_STATE(3480)] = 156703, + [SMALL_STATE(3481)] = 156725, + [SMALL_STATE(3482)] = 156757, + [SMALL_STATE(3483)] = 156797, + [SMALL_STATE(3484)] = 156835, + [SMALL_STATE(3485)] = 156873, + [SMALL_STATE(3486)] = 156913, + [SMALL_STATE(3487)] = 156951, + [SMALL_STATE(3488)] = 156981, + [SMALL_STATE(3489)] = 157007, + [SMALL_STATE(3490)] = 157037, + [SMALL_STATE(3491)] = 157069, + [SMALL_STATE(3492)] = 157101, + [SMALL_STATE(3493)] = 157133, + [SMALL_STATE(3494)] = 157165, + [SMALL_STATE(3495)] = 157195, + [SMALL_STATE(3496)] = 157217, + [SMALL_STATE(3497)] = 157239, + [SMALL_STATE(3498)] = 157267, + [SMALL_STATE(3499)] = 157289, + [SMALL_STATE(3500)] = 157329, + [SMALL_STATE(3501)] = 157359, + [SMALL_STATE(3502)] = 157391, + [SMALL_STATE(3503)] = 157423, + [SMALL_STATE(3504)] = 157455, + [SMALL_STATE(3505)] = 157481, + [SMALL_STATE(3506)] = 157505, + [SMALL_STATE(3507)] = 157527, + [SMALL_STATE(3508)] = 157551, + [SMALL_STATE(3509)] = 157583, + [SMALL_STATE(3510)] = 157617, + [SMALL_STATE(3511)] = 157639, + [SMALL_STATE(3512)] = 157680, + [SMALL_STATE(3513)] = 157709, + [SMALL_STATE(3514)] = 157738, + [SMALL_STATE(3515)] = 157767, + [SMALL_STATE(3516)] = 157796, + [SMALL_STATE(3517)] = 157825, + [SMALL_STATE(3518)] = 157854, + [SMALL_STATE(3519)] = 157885, + [SMALL_STATE(3520)] = 157908, + [SMALL_STATE(3521)] = 157939, + [SMALL_STATE(3522)] = 157970, + [SMALL_STATE(3523)] = 157999, + [SMALL_STATE(3524)] = 158028, + [SMALL_STATE(3525)] = 158059, + [SMALL_STATE(3526)] = 158088, + [SMALL_STATE(3527)] = 158119, + [SMALL_STATE(3528)] = 158150, + [SMALL_STATE(3529)] = 158181, + [SMALL_STATE(3530)] = 158210, + [SMALL_STATE(3531)] = 158239, + [SMALL_STATE(3532)] = 158268, + [SMALL_STATE(3533)] = 158297, + [SMALL_STATE(3534)] = 158326, + [SMALL_STATE(3535)] = 158355, + [SMALL_STATE(3536)] = 158384, + [SMALL_STATE(3537)] = 158417, + [SMALL_STATE(3538)] = 158448, + [SMALL_STATE(3539)] = 158479, + [SMALL_STATE(3540)] = 158500, + [SMALL_STATE(3541)] = 158531, + [SMALL_STATE(3542)] = 158560, + [SMALL_STATE(3543)] = 158589, + [SMALL_STATE(3544)] = 158620, + [SMALL_STATE(3545)] = 158651, + [SMALL_STATE(3546)] = 158682, + [SMALL_STATE(3547)] = 158711, + [SMALL_STATE(3548)] = 158740, + [SMALL_STATE(3549)] = 158769, + [SMALL_STATE(3550)] = 158798, + [SMALL_STATE(3551)] = 158829, + [SMALL_STATE(3552)] = 158870, + [SMALL_STATE(3553)] = 158891, + [SMALL_STATE(3554)] = 158920, + [SMALL_STATE(3555)] = 158951, + [SMALL_STATE(3556)] = 158980, + [SMALL_STATE(3557)] = 159009, + [SMALL_STATE(3558)] = 159038, + [SMALL_STATE(3559)] = 159059, + [SMALL_STATE(3560)] = 159088, + [SMALL_STATE(3561)] = 159117, + [SMALL_STATE(3562)] = 159138, + [SMALL_STATE(3563)] = 159167, + [SMALL_STATE(3564)] = 159196, + [SMALL_STATE(3565)] = 159225, + [SMALL_STATE(3566)] = 159246, + [SMALL_STATE(3567)] = 159267, + [SMALL_STATE(3568)] = 159298, + [SMALL_STATE(3569)] = 159327, + [SMALL_STATE(3570)] = 159356, + [SMALL_STATE(3571)] = 159385, + [SMALL_STATE(3572)] = 159414, + [SMALL_STATE(3573)] = 159443, + [SMALL_STATE(3574)] = 159472, + [SMALL_STATE(3575)] = 159501, + [SMALL_STATE(3576)] = 159530, + [SMALL_STATE(3577)] = 159551, + [SMALL_STATE(3578)] = 159580, + [SMALL_STATE(3579)] = 159613, + [SMALL_STATE(3580)] = 159642, + [SMALL_STATE(3581)] = 159671, + [SMALL_STATE(3582)] = 159692, + [SMALL_STATE(3583)] = 159721, + [SMALL_STATE(3584)] = 159752, + [SMALL_STATE(3585)] = 159781, + [SMALL_STATE(3586)] = 159802, + [SMALL_STATE(3587)] = 159833, + [SMALL_STATE(3588)] = 159862, + [SMALL_STATE(3589)] = 159891, + [SMALL_STATE(3590)] = 159920, + [SMALL_STATE(3591)] = 159949, + [SMALL_STATE(3592)] = 159978, + [SMALL_STATE(3593)] = 160007, + [SMALL_STATE(3594)] = 160036, + [SMALL_STATE(3595)] = 160065, + [SMALL_STATE(3596)] = 160094, + [SMALL_STATE(3597)] = 160125, + [SMALL_STATE(3598)] = 160156, + [SMALL_STATE(3599)] = 160179, + [SMALL_STATE(3600)] = 160208, + [SMALL_STATE(3601)] = 160239, + [SMALL_STATE(3602)] = 160270, + [SMALL_STATE(3603)] = 160299, + [SMALL_STATE(3604)] = 160330, + [SMALL_STATE(3605)] = 160359, + [SMALL_STATE(3606)] = 160400, + [SMALL_STATE(3607)] = 160429, + [SMALL_STATE(3608)] = 160450, + [SMALL_STATE(3609)] = 160479, + [SMALL_STATE(3610)] = 160520, + [SMALL_STATE(3611)] = 160549, + [SMALL_STATE(3612)] = 160590, + [SMALL_STATE(3613)] = 160619, + [SMALL_STATE(3614)] = 160660, + [SMALL_STATE(3615)] = 160701, + [SMALL_STATE(3616)] = 160742, + [SMALL_STATE(3617)] = 160771, + [SMALL_STATE(3618)] = 160800, + [SMALL_STATE(3619)] = 160831, + [SMALL_STATE(3620)] = 160860, + [SMALL_STATE(3621)] = 160888, + [SMALL_STATE(3622)] = 160926, + [SMALL_STATE(3623)] = 160956, + [SMALL_STATE(3624)] = 160988, + [SMALL_STATE(3625)] = 161022, + [SMALL_STATE(3626)] = 161040, + [SMALL_STATE(3627)] = 161078, + [SMALL_STATE(3628)] = 161110, + [SMALL_STATE(3629)] = 161140, + [SMALL_STATE(3630)] = 161174, + [SMALL_STATE(3631)] = 161206, + [SMALL_STATE(3632)] = 161226, + [SMALL_STATE(3633)] = 161256, + [SMALL_STATE(3634)] = 161290, + [SMALL_STATE(3635)] = 161318, + [SMALL_STATE(3636)] = 161342, + [SMALL_STATE(3637)] = 161380, + [SMALL_STATE(3638)] = 161410, + [SMALL_STATE(3639)] = 161438, + [SMALL_STATE(3640)] = 161476, + [SMALL_STATE(3641)] = 161514, + [SMALL_STATE(3642)] = 161546, + [SMALL_STATE(3643)] = 161570, + [SMALL_STATE(3644)] = 161600, + [SMALL_STATE(3645)] = 161630, + [SMALL_STATE(3646)] = 161668, + [SMALL_STATE(3647)] = 161702, + [SMALL_STATE(3648)] = 161740, + [SMALL_STATE(3649)] = 161770, + [SMALL_STATE(3650)] = 161802, + [SMALL_STATE(3651)] = 161832, + [SMALL_STATE(3652)] = 161862, + [SMALL_STATE(3653)] = 161900, + [SMALL_STATE(3654)] = 161938, + [SMALL_STATE(3655)] = 161968, + [SMALL_STATE(3656)] = 162000, + [SMALL_STATE(3657)] = 162030, + [SMALL_STATE(3658)] = 162058, + [SMALL_STATE(3659)] = 162088, + [SMALL_STATE(3660)] = 162126, + [SMALL_STATE(3661)] = 162164, + [SMALL_STATE(3662)] = 162202, + [SMALL_STATE(3663)] = 162234, + [SMALL_STATE(3664)] = 162264, + [SMALL_STATE(3665)] = 162294, + [SMALL_STATE(3666)] = 162332, + [SMALL_STATE(3667)] = 162370, + [SMALL_STATE(3668)] = 162394, + [SMALL_STATE(3669)] = 162426, + [SMALL_STATE(3670)] = 162456, + [SMALL_STATE(3671)] = 162494, + [SMALL_STATE(3672)] = 162524, + [SMALL_STATE(3673)] = 162562, + [SMALL_STATE(3674)] = 162592, + [SMALL_STATE(3675)] = 162622, + [SMALL_STATE(3676)] = 162652, + [SMALL_STATE(3677)] = 162682, + [SMALL_STATE(3678)] = 162706, + [SMALL_STATE(3679)] = 162736, + [SMALL_STATE(3680)] = 162768, + [SMALL_STATE(3681)] = 162798, + [SMALL_STATE(3682)] = 162836, + [SMALL_STATE(3683)] = 162864, + [SMALL_STATE(3684)] = 162894, + [SMALL_STATE(3685)] = 162924, + [SMALL_STATE(3686)] = 162962, + [SMALL_STATE(3687)] = 163000, + [SMALL_STATE(3688)] = 163028, + [SMALL_STATE(3689)] = 163056, + [SMALL_STATE(3690)] = 163094, + [SMALL_STATE(3691)] = 163124, + [SMALL_STATE(3692)] = 163162, + [SMALL_STATE(3693)] = 163200, + [SMALL_STATE(3694)] = 163234, + [SMALL_STATE(3695)] = 163272, + [SMALL_STATE(3696)] = 163310, + [SMALL_STATE(3697)] = 163340, + [SMALL_STATE(3698)] = 163368, + [SMALL_STATE(3699)] = 163398, + [SMALL_STATE(3700)] = 163428, + [SMALL_STATE(3701)] = 163456, + [SMALL_STATE(3702)] = 163484, + [SMALL_STATE(3703)] = 163518, + [SMALL_STATE(3704)] = 163548, + [SMALL_STATE(3705)] = 163578, + [SMALL_STATE(3706)] = 163606, + [SMALL_STATE(3707)] = 163636, + [SMALL_STATE(3708)] = 163666, + [SMALL_STATE(3709)] = 163696, + [SMALL_STATE(3710)] = 163734, + [SMALL_STATE(3711)] = 163764, + [SMALL_STATE(3712)] = 163795, + [SMALL_STATE(3713)] = 163824, + [SMALL_STATE(3714)] = 163843, + [SMALL_STATE(3715)] = 163868, + [SMALL_STATE(3716)] = 163897, + [SMALL_STATE(3717)] = 163926, + [SMALL_STATE(3718)] = 163945, + [SMALL_STATE(3719)] = 163970, + [SMALL_STATE(3720)] = 163987, + [SMALL_STATE(3721)] = 164016, + [SMALL_STATE(3722)] = 164033, + [SMALL_STATE(3723)] = 164062, + [SMALL_STATE(3724)] = 164091, + [SMALL_STATE(3725)] = 164110, + [SMALL_STATE(3726)] = 164139, + [SMALL_STATE(3727)] = 164168, + [SMALL_STATE(3728)] = 164197, + [SMALL_STATE(3729)] = 164226, + [SMALL_STATE(3730)] = 164255, + [SMALL_STATE(3731)] = 164274, + [SMALL_STATE(3732)] = 164299, + [SMALL_STATE(3733)] = 164328, + [SMALL_STATE(3734)] = 164345, + [SMALL_STATE(3735)] = 164366, + [SMALL_STATE(3736)] = 164383, + [SMALL_STATE(3737)] = 164412, + [SMALL_STATE(3738)] = 164433, + [SMALL_STATE(3739)] = 164452, + [SMALL_STATE(3740)] = 164477, + [SMALL_STATE(3741)] = 164496, + [SMALL_STATE(3742)] = 164519, + [SMALL_STATE(3743)] = 164538, + [SMALL_STATE(3744)] = 164567, + [SMALL_STATE(3745)] = 164584, + [SMALL_STATE(3746)] = 164601, + [SMALL_STATE(3747)] = 164632, + [SMALL_STATE(3748)] = 164657, + [SMALL_STATE(3749)] = 164680, + [SMALL_STATE(3750)] = 164709, + [SMALL_STATE(3751)] = 164728, + [SMALL_STATE(3752)] = 164757, + [SMALL_STATE(3753)] = 164788, + [SMALL_STATE(3754)] = 164811, + [SMALL_STATE(3755)] = 164840, + [SMALL_STATE(3756)] = 164859, + [SMALL_STATE(3757)] = 164882, + [SMALL_STATE(3758)] = 164913, + [SMALL_STATE(3759)] = 164934, + [SMALL_STATE(3760)] = 164963, + [SMALL_STATE(3761)] = 164982, + [SMALL_STATE(3762)] = 165011, + [SMALL_STATE(3763)] = 165036, + [SMALL_STATE(3764)] = 165065, + [SMALL_STATE(3765)] = 165094, + [SMALL_STATE(3766)] = 165113, + [SMALL_STATE(3767)] = 165144, + [SMALL_STATE(3768)] = 165163, + [SMALL_STATE(3769)] = 165192, + [SMALL_STATE(3770)] = 165211, + [SMALL_STATE(3771)] = 165232, + [SMALL_STATE(3772)] = 165261, + [SMALL_STATE(3773)] = 165292, + [SMALL_STATE(3774)] = 165315, + [SMALL_STATE(3775)] = 165344, + [SMALL_STATE(3776)] = 165373, + [SMALL_STATE(3777)] = 165392, + [SMALL_STATE(3778)] = 165417, + [SMALL_STATE(3779)] = 165448, + [SMALL_STATE(3780)] = 165473, + [SMALL_STATE(3781)] = 165496, + [SMALL_STATE(3782)] = 165515, + [SMALL_STATE(3783)] = 165540, + [SMALL_STATE(3784)] = 165565, + [SMALL_STATE(3785)] = 165588, + [SMALL_STATE(3786)] = 165609, + [SMALL_STATE(3787)] = 165628, + [SMALL_STATE(3788)] = 165653, + [SMALL_STATE(3789)] = 165676, + [SMALL_STATE(3790)] = 165704, + [SMALL_STATE(3791)] = 165736, + [SMALL_STATE(3792)] = 165758, + [SMALL_STATE(3793)] = 165780, + [SMALL_STATE(3794)] = 165800, + [SMALL_STATE(3795)] = 165828, + [SMALL_STATE(3796)] = 165860, + [SMALL_STATE(3797)] = 165878, + [SMALL_STATE(3798)] = 165906, + [SMALL_STATE(3799)] = 165936, + [SMALL_STATE(3800)] = 165966, + [SMALL_STATE(3801)] = 165996, + [SMALL_STATE(3802)] = 166026, + [SMALL_STATE(3803)] = 166042, + [SMALL_STATE(3804)] = 166060, + [SMALL_STATE(3805)] = 166078, + [SMALL_STATE(3806)] = 166102, + [SMALL_STATE(3807)] = 166118, + [SMALL_STATE(3808)] = 166134, + [SMALL_STATE(3809)] = 166150, + [SMALL_STATE(3810)] = 166166, + [SMALL_STATE(3811)] = 166198, + [SMALL_STATE(3812)] = 166214, + [SMALL_STATE(3813)] = 166232, + [SMALL_STATE(3814)] = 166260, + [SMALL_STATE(3815)] = 166292, + [SMALL_STATE(3816)] = 166316, + [SMALL_STATE(3817)] = 166340, + [SMALL_STATE(3818)] = 166368, + [SMALL_STATE(3819)] = 166396, + [SMALL_STATE(3820)] = 166424, + [SMALL_STATE(3821)] = 166456, + [SMALL_STATE(3822)] = 166484, + [SMALL_STATE(3823)] = 166514, + [SMALL_STATE(3824)] = 166532, + [SMALL_STATE(3825)] = 166554, + [SMALL_STATE(3826)] = 166570, + [SMALL_STATE(3827)] = 166594, + [SMALL_STATE(3828)] = 166612, + [SMALL_STATE(3829)] = 166634, + [SMALL_STATE(3830)] = 166652, + [SMALL_STATE(3831)] = 166668, + [SMALL_STATE(3832)] = 166698, + [SMALL_STATE(3833)] = 166726, + [SMALL_STATE(3834)] = 166750, + [SMALL_STATE(3835)] = 166778, + [SMALL_STATE(3836)] = 166802, + [SMALL_STATE(3837)] = 166822, + [SMALL_STATE(3838)] = 166838, + [SMALL_STATE(3839)] = 166860, + [SMALL_STATE(3840)] = 166880, + [SMALL_STATE(3841)] = 166896, + [SMALL_STATE(3842)] = 166914, + [SMALL_STATE(3843)] = 166944, + [SMALL_STATE(3844)] = 166974, + [SMALL_STATE(3845)] = 167002, + [SMALL_STATE(3846)] = 167020, + [SMALL_STATE(3847)] = 167044, + [SMALL_STATE(3848)] = 167062, + [SMALL_STATE(3849)] = 167086, + [SMALL_STATE(3850)] = 167116, + [SMALL_STATE(3851)] = 167144, + [SMALL_STATE(3852)] = 167172, + [SMALL_STATE(3853)] = 167202, + [SMALL_STATE(3854)] = 167224, + [SMALL_STATE(3855)] = 167248, + [SMALL_STATE(3856)] = 167272, + [SMALL_STATE(3857)] = 167292, + [SMALL_STATE(3858)] = 167316, + [SMALL_STATE(3859)] = 167334, + [SMALL_STATE(3860)] = 167358, + [SMALL_STATE(3861)] = 167380, + [SMALL_STATE(3862)] = 167398, + [SMALL_STATE(3863)] = 167422, + [SMALL_STATE(3864)] = 167444, + [SMALL_STATE(3865)] = 167462, + [SMALL_STATE(3866)] = 167492, + [SMALL_STATE(3867)] = 167520, + [SMALL_STATE(3868)] = 167550, + [SMALL_STATE(3869)] = 167574, + [SMALL_STATE(3870)] = 167606, + [SMALL_STATE(3871)] = 167634, + [SMALL_STATE(3872)] = 167658, + [SMALL_STATE(3873)] = 167688, + [SMALL_STATE(3874)] = 167709, + [SMALL_STATE(3875)] = 167730, + [SMALL_STATE(3876)] = 167759, + [SMALL_STATE(3877)] = 167782, + [SMALL_STATE(3878)] = 167805, + [SMALL_STATE(3879)] = 167834, + [SMALL_STATE(3880)] = 167863, + [SMALL_STATE(3881)] = 167892, + [SMALL_STATE(3882)] = 167921, + [SMALL_STATE(3883)] = 167948, + [SMALL_STATE(3884)] = 167963, + [SMALL_STATE(3885)] = 167992, + [SMALL_STATE(3886)] = 168021, + [SMALL_STATE(3887)] = 168044, + [SMALL_STATE(3888)] = 168067, + [SMALL_STATE(3889)] = 168090, + [SMALL_STATE(3890)] = 168111, + [SMALL_STATE(3891)] = 168136, + [SMALL_STATE(3892)] = 168165, + [SMALL_STATE(3893)] = 168192, + [SMALL_STATE(3894)] = 168221, + [SMALL_STATE(3895)] = 168240, + [SMALL_STATE(3896)] = 168269, + [SMALL_STATE(3897)] = 168298, + [SMALL_STATE(3898)] = 168327, + [SMALL_STATE(3899)] = 168342, + [SMALL_STATE(3900)] = 168357, + [SMALL_STATE(3901)] = 168378, + [SMALL_STATE(3902)] = 168407, + [SMALL_STATE(3903)] = 168436, + [SMALL_STATE(3904)] = 168455, + [SMALL_STATE(3905)] = 168480, + [SMALL_STATE(3906)] = 168501, + [SMALL_STATE(3907)] = 168526, + [SMALL_STATE(3908)] = 168555, + [SMALL_STATE(3909)] = 168570, + [SMALL_STATE(3910)] = 168597, + [SMALL_STATE(3911)] = 168612, + [SMALL_STATE(3912)] = 168641, + [SMALL_STATE(3913)] = 168670, + [SMALL_STATE(3914)] = 168699, + [SMALL_STATE(3915)] = 168728, + [SMALL_STATE(3916)] = 168749, + [SMALL_STATE(3917)] = 168770, + [SMALL_STATE(3918)] = 168791, + [SMALL_STATE(3919)] = 168820, + [SMALL_STATE(3920)] = 168843, + [SMALL_STATE(3921)] = 168866, + [SMALL_STATE(3922)] = 168895, + [SMALL_STATE(3923)] = 168920, + [SMALL_STATE(3924)] = 168949, + [SMALL_STATE(3925)] = 168978, + [SMALL_STATE(3926)] = 169007, + [SMALL_STATE(3927)] = 169036, + [SMALL_STATE(3928)] = 169065, + [SMALL_STATE(3929)] = 169094, + [SMALL_STATE(3930)] = 169113, + [SMALL_STATE(3931)] = 169142, + [SMALL_STATE(3932)] = 169171, + [SMALL_STATE(3933)] = 169192, + [SMALL_STATE(3934)] = 169221, + [SMALL_STATE(3935)] = 169250, + [SMALL_STATE(3936)] = 169279, + [SMALL_STATE(3937)] = 169298, + [SMALL_STATE(3938)] = 169321, + [SMALL_STATE(3939)] = 169342, + [SMALL_STATE(3940)] = 169371, + [SMALL_STATE(3941)] = 169400, + [SMALL_STATE(3942)] = 169419, + [SMALL_STATE(3943)] = 169440, + [SMALL_STATE(3944)] = 169461, + [SMALL_STATE(3945)] = 169488, + [SMALL_STATE(3946)] = 169517, + [SMALL_STATE(3947)] = 169544, + [SMALL_STATE(3948)] = 169567, + [SMALL_STATE(3949)] = 169588, + [SMALL_STATE(3950)] = 169607, + [SMALL_STATE(3951)] = 169624, + [SMALL_STATE(3952)] = 169647, + [SMALL_STATE(3953)] = 169670, + [SMALL_STATE(3954)] = 169691, + [SMALL_STATE(3955)] = 169714, + [SMALL_STATE(3956)] = 169739, + [SMALL_STATE(3957)] = 169768, + [SMALL_STATE(3958)] = 169791, + [SMALL_STATE(3959)] = 169814, + [SMALL_STATE(3960)] = 169843, + [SMALL_STATE(3961)] = 169872, + [SMALL_STATE(3962)] = 169893, + [SMALL_STATE(3963)] = 169916, + [SMALL_STATE(3964)] = 169945, + [SMALL_STATE(3965)] = 169968, + [SMALL_STATE(3966)] = 169989, + [SMALL_STATE(3967)] = 170004, + [SMALL_STATE(3968)] = 170033, + [SMALL_STATE(3969)] = 170062, + [SMALL_STATE(3970)] = 170091, + [SMALL_STATE(3971)] = 170118, + [SMALL_STATE(3972)] = 170139, + [SMALL_STATE(3973)] = 170166, + [SMALL_STATE(3974)] = 170189, + [SMALL_STATE(3975)] = 170216, + [SMALL_STATE(3976)] = 170238, + [SMALL_STATE(3977)] = 170256, + [SMALL_STATE(3978)] = 170282, + [SMALL_STATE(3979)] = 170306, + [SMALL_STATE(3980)] = 170332, + [SMALL_STATE(3981)] = 170358, + [SMALL_STATE(3982)] = 170384, + [SMALL_STATE(3983)] = 170408, + [SMALL_STATE(3984)] = 170432, + [SMALL_STATE(3985)] = 170456, + [SMALL_STATE(3986)] = 170480, + [SMALL_STATE(3987)] = 170504, + [SMALL_STATE(3988)] = 170522, + [SMALL_STATE(3989)] = 170548, + [SMALL_STATE(3990)] = 170574, + [SMALL_STATE(3991)] = 170598, + [SMALL_STATE(3992)] = 170622, + [SMALL_STATE(3993)] = 170646, + [SMALL_STATE(3994)] = 170672, + [SMALL_STATE(3995)] = 170698, + [SMALL_STATE(3996)] = 170722, + [SMALL_STATE(3997)] = 170746, + [SMALL_STATE(3998)] = 170772, + [SMALL_STATE(3999)] = 170798, + [SMALL_STATE(4000)] = 170822, + [SMALL_STATE(4001)] = 170846, + [SMALL_STATE(4002)] = 170870, + [SMALL_STATE(4003)] = 170894, + [SMALL_STATE(4004)] = 170918, + [SMALL_STATE(4005)] = 170934, + [SMALL_STATE(4006)] = 170960, + [SMALL_STATE(4007)] = 170974, + [SMALL_STATE(4008)] = 171000, + [SMALL_STATE(4009)] = 171026, + [SMALL_STATE(4010)] = 171052, + [SMALL_STATE(4011)] = 171076, + [SMALL_STATE(4012)] = 171100, + [SMALL_STATE(4013)] = 171124, + [SMALL_STATE(4014)] = 171148, + [SMALL_STATE(4015)] = 171166, + [SMALL_STATE(4016)] = 171184, + [SMALL_STATE(4017)] = 171210, + [SMALL_STATE(4018)] = 171228, + [SMALL_STATE(4019)] = 171254, + [SMALL_STATE(4020)] = 171280, + [SMALL_STATE(4021)] = 171306, + [SMALL_STATE(4022)] = 171332, + [SMALL_STATE(4023)] = 171358, + [SMALL_STATE(4024)] = 171382, + [SMALL_STATE(4025)] = 171404, + [SMALL_STATE(4026)] = 171426, + [SMALL_STATE(4027)] = 171452, + [SMALL_STATE(4028)] = 171478, + [SMALL_STATE(4029)] = 171504, + [SMALL_STATE(4030)] = 171530, + [SMALL_STATE(4031)] = 171556, + [SMALL_STATE(4032)] = 171582, + [SMALL_STATE(4033)] = 171608, + [SMALL_STATE(4034)] = 171632, + [SMALL_STATE(4035)] = 171656, + [SMALL_STATE(4036)] = 171680, + [SMALL_STATE(4037)] = 171704, + [SMALL_STATE(4038)] = 171730, + [SMALL_STATE(4039)] = 171754, + [SMALL_STATE(4040)] = 171776, + [SMALL_STATE(4041)] = 171800, + [SMALL_STATE(4042)] = 171824, + [SMALL_STATE(4043)] = 171850, + [SMALL_STATE(4044)] = 171876, + [SMALL_STATE(4045)] = 171902, + [SMALL_STATE(4046)] = 171928, + [SMALL_STATE(4047)] = 171946, + [SMALL_STATE(4048)] = 171972, + [SMALL_STATE(4049)] = 171998, + [SMALL_STATE(4050)] = 172024, + [SMALL_STATE(4051)] = 172050, + [SMALL_STATE(4052)] = 172076, + [SMALL_STATE(4053)] = 172102, + [SMALL_STATE(4054)] = 172128, + [SMALL_STATE(4055)] = 172154, + [SMALL_STATE(4056)] = 172180, + [SMALL_STATE(4057)] = 172204, + [SMALL_STATE(4058)] = 172228, + [SMALL_STATE(4059)] = 172252, + [SMALL_STATE(4060)] = 172276, + [SMALL_STATE(4061)] = 172298, + [SMALL_STATE(4062)] = 172324, + [SMALL_STATE(4063)] = 172350, + [SMALL_STATE(4064)] = 172376, + [SMALL_STATE(4065)] = 172402, + [SMALL_STATE(4066)] = 172422, + [SMALL_STATE(4067)] = 172444, + [SMALL_STATE(4068)] = 172470, + [SMALL_STATE(4069)] = 172496, + [SMALL_STATE(4070)] = 172522, + [SMALL_STATE(4071)] = 172548, + [SMALL_STATE(4072)] = 172574, + [SMALL_STATE(4073)] = 172600, + [SMALL_STATE(4074)] = 172626, + [SMALL_STATE(4075)] = 172652, + [SMALL_STATE(4076)] = 172678, + [SMALL_STATE(4077)] = 172702, + [SMALL_STATE(4078)] = 172728, + [SMALL_STATE(4079)] = 172754, + [SMALL_STATE(4080)] = 172780, + [SMALL_STATE(4081)] = 172806, + [SMALL_STATE(4082)] = 172832, + [SMALL_STATE(4083)] = 172858, + [SMALL_STATE(4084)] = 172884, + [SMALL_STATE(4085)] = 172910, + [SMALL_STATE(4086)] = 172936, + [SMALL_STATE(4087)] = 172962, + [SMALL_STATE(4088)] = 172980, + [SMALL_STATE(4089)] = 173006, + [SMALL_STATE(4090)] = 173032, + [SMALL_STATE(4091)] = 173056, + [SMALL_STATE(4092)] = 173080, + [SMALL_STATE(4093)] = 173106, + [SMALL_STATE(4094)] = 173132, + [SMALL_STATE(4095)] = 173154, + [SMALL_STATE(4096)] = 173180, + [SMALL_STATE(4097)] = 173206, + [SMALL_STATE(4098)] = 173228, + [SMALL_STATE(4099)] = 173246, + [SMALL_STATE(4100)] = 173272, + [SMALL_STATE(4101)] = 173292, + [SMALL_STATE(4102)] = 173318, + [SMALL_STATE(4103)] = 173344, + [SMALL_STATE(4104)] = 173370, + [SMALL_STATE(4105)] = 173396, + [SMALL_STATE(4106)] = 173422, + [SMALL_STATE(4107)] = 173448, + [SMALL_STATE(4108)] = 173474, + [SMALL_STATE(4109)] = 173498, + [SMALL_STATE(4110)] = 173524, + [SMALL_STATE(4111)] = 173548, + [SMALL_STATE(4112)] = 173572, + [SMALL_STATE(4113)] = 173596, + [SMALL_STATE(4114)] = 173620, + [SMALL_STATE(4115)] = 173638, + [SMALL_STATE(4116)] = 173660, + [SMALL_STATE(4117)] = 173684, + [SMALL_STATE(4118)] = 173710, + [SMALL_STATE(4119)] = 173734, + [SMALL_STATE(4120)] = 173760, + [SMALL_STATE(4121)] = 173786, + [SMALL_STATE(4122)] = 173810, + [SMALL_STATE(4123)] = 173836, + [SMALL_STATE(4124)] = 173854, + [SMALL_STATE(4125)] = 173880, + [SMALL_STATE(4126)] = 173902, + [SMALL_STATE(4127)] = 173928, + [SMALL_STATE(4128)] = 173952, + [SMALL_STATE(4129)] = 173976, + [SMALL_STATE(4130)] = 173996, + [SMALL_STATE(4131)] = 174018, + [SMALL_STATE(4132)] = 174044, + [SMALL_STATE(4133)] = 174070, + [SMALL_STATE(4134)] = 174094, + [SMALL_STATE(4135)] = 174120, + [SMALL_STATE(4136)] = 174144, + [SMALL_STATE(4137)] = 174168, + [SMALL_STATE(4138)] = 174184, + [SMALL_STATE(4139)] = 174210, + [SMALL_STATE(4140)] = 174232, + [SMALL_STATE(4141)] = 174254, + [SMALL_STATE(4142)] = 174280, + [SMALL_STATE(4143)] = 174302, + [SMALL_STATE(4144)] = 174328, + [SMALL_STATE(4145)] = 174354, + [SMALL_STATE(4146)] = 174378, + [SMALL_STATE(4147)] = 174402, + [SMALL_STATE(4148)] = 174416, + [SMALL_STATE(4149)] = 174442, + [SMALL_STATE(4150)] = 174463, + [SMALL_STATE(4151)] = 174486, + [SMALL_STATE(4152)] = 174507, + [SMALL_STATE(4153)] = 174530, + [SMALL_STATE(4154)] = 174551, + [SMALL_STATE(4155)] = 174564, + [SMALL_STATE(4156)] = 174581, + [SMALL_STATE(4157)] = 174602, + [SMALL_STATE(4158)] = 174625, + [SMALL_STATE(4159)] = 174648, + [SMALL_STATE(4160)] = 174665, + [SMALL_STATE(4161)] = 174686, + [SMALL_STATE(4162)] = 174707, + [SMALL_STATE(4163)] = 174730, + [SMALL_STATE(4164)] = 174747, + [SMALL_STATE(4165)] = 174770, + [SMALL_STATE(4166)] = 174785, + [SMALL_STATE(4167)] = 174808, + [SMALL_STATE(4168)] = 174825, + [SMALL_STATE(4169)] = 174848, + [SMALL_STATE(4170)] = 174861, + [SMALL_STATE(4171)] = 174882, + [SMALL_STATE(4172)] = 174903, + [SMALL_STATE(4173)] = 174924, + [SMALL_STATE(4174)] = 174945, + [SMALL_STATE(4175)] = 174962, + [SMALL_STATE(4176)] = 174979, + [SMALL_STATE(4177)] = 174992, + [SMALL_STATE(4178)] = 175011, + [SMALL_STATE(4179)] = 175024, + [SMALL_STATE(4180)] = 175045, + [SMALL_STATE(4181)] = 175062, + [SMALL_STATE(4182)] = 175079, + [SMALL_STATE(4183)] = 175092, + [SMALL_STATE(4184)] = 175115, + [SMALL_STATE(4185)] = 175136, + [SMALL_STATE(4186)] = 175149, + [SMALL_STATE(4187)] = 175166, + [SMALL_STATE(4188)] = 175187, + [SMALL_STATE(4189)] = 175208, + [SMALL_STATE(4190)] = 175229, + [SMALL_STATE(4191)] = 175244, + [SMALL_STATE(4192)] = 175265, + [SMALL_STATE(4193)] = 175286, + [SMALL_STATE(4194)] = 175299, + [SMALL_STATE(4195)] = 175320, + [SMALL_STATE(4196)] = 175337, + [SMALL_STATE(4197)] = 175358, + [SMALL_STATE(4198)] = 175371, + [SMALL_STATE(4199)] = 175392, + [SMALL_STATE(4200)] = 175413, + [SMALL_STATE(4201)] = 175430, + [SMALL_STATE(4202)] = 175451, + [SMALL_STATE(4203)] = 175472, + [SMALL_STATE(4204)] = 175495, + [SMALL_STATE(4205)] = 175516, + [SMALL_STATE(4206)] = 175533, + [SMALL_STATE(4207)] = 175550, + [SMALL_STATE(4208)] = 175571, + [SMALL_STATE(4209)] = 175588, + [SMALL_STATE(4210)] = 175605, + [SMALL_STATE(4211)] = 175626, + [SMALL_STATE(4212)] = 175649, + [SMALL_STATE(4213)] = 175670, + [SMALL_STATE(4214)] = 175683, + [SMALL_STATE(4215)] = 175700, + [SMALL_STATE(4216)] = 175717, + [SMALL_STATE(4217)] = 175734, + [SMALL_STATE(4218)] = 175749, + [SMALL_STATE(4219)] = 175766, + [SMALL_STATE(4220)] = 175789, + [SMALL_STATE(4221)] = 175810, + [SMALL_STATE(4222)] = 175825, + [SMALL_STATE(4223)] = 175848, + [SMALL_STATE(4224)] = 175863, + [SMALL_STATE(4225)] = 175886, + [SMALL_STATE(4226)] = 175907, + [SMALL_STATE(4227)] = 175922, + [SMALL_STATE(4228)] = 175945, + [SMALL_STATE(4229)] = 175966, + [SMALL_STATE(4230)] = 175987, + [SMALL_STATE(4231)] = 176008, + [SMALL_STATE(4232)] = 176025, + [SMALL_STATE(4233)] = 176042, + [SMALL_STATE(4234)] = 176065, + [SMALL_STATE(4235)] = 176082, + [SMALL_STATE(4236)] = 176099, + [SMALL_STATE(4237)] = 176122, + [SMALL_STATE(4238)] = 176135, + [SMALL_STATE(4239)] = 176152, + [SMALL_STATE(4240)] = 176175, + [SMALL_STATE(4241)] = 176192, + [SMALL_STATE(4242)] = 176209, + [SMALL_STATE(4243)] = 176230, + [SMALL_STATE(4244)] = 176251, + [SMALL_STATE(4245)] = 176266, + [SMALL_STATE(4246)] = 176287, + [SMALL_STATE(4247)] = 176308, + [SMALL_STATE(4248)] = 176325, + [SMALL_STATE(4249)] = 176338, + [SMALL_STATE(4250)] = 176361, + [SMALL_STATE(4251)] = 176384, + [SMALL_STATE(4252)] = 176405, + [SMALL_STATE(4253)] = 176422, + [SMALL_STATE(4254)] = 176443, + [SMALL_STATE(4255)] = 176456, + [SMALL_STATE(4256)] = 176473, + [SMALL_STATE(4257)] = 176494, + [SMALL_STATE(4258)] = 176511, + [SMALL_STATE(4259)] = 176528, + [SMALL_STATE(4260)] = 176551, + [SMALL_STATE(4261)] = 176566, + [SMALL_STATE(4262)] = 176583, + [SMALL_STATE(4263)] = 176604, + [SMALL_STATE(4264)] = 176625, + [SMALL_STATE(4265)] = 176640, + [SMALL_STATE(4266)] = 176661, + [SMALL_STATE(4267)] = 176682, + [SMALL_STATE(4268)] = 176703, + [SMALL_STATE(4269)] = 176724, + [SMALL_STATE(4270)] = 176747, + [SMALL_STATE(4271)] = 176764, + [SMALL_STATE(4272)] = 176785, + [SMALL_STATE(4273)] = 176804, + [SMALL_STATE(4274)] = 176825, + [SMALL_STATE(4275)] = 176848, + [SMALL_STATE(4276)] = 176869, + [SMALL_STATE(4277)] = 176888, + [SMALL_STATE(4278)] = 176905, + [SMALL_STATE(4279)] = 176920, + [SMALL_STATE(4280)] = 176941, + [SMALL_STATE(4281)] = 176962, + [SMALL_STATE(4282)] = 176985, + [SMALL_STATE(4283)] = 177002, + [SMALL_STATE(4284)] = 177019, + [SMALL_STATE(4285)] = 177036, + [SMALL_STATE(4286)] = 177049, + [SMALL_STATE(4287)] = 177070, + [SMALL_STATE(4288)] = 177091, + [SMALL_STATE(4289)] = 177111, + [SMALL_STATE(4290)] = 177131, + [SMALL_STATE(4291)] = 177151, + [SMALL_STATE(4292)] = 177171, + [SMALL_STATE(4293)] = 177183, + [SMALL_STATE(4294)] = 177203, + [SMALL_STATE(4295)] = 177223, + [SMALL_STATE(4296)] = 177235, + [SMALL_STATE(4297)] = 177255, + [SMALL_STATE(4298)] = 177275, + [SMALL_STATE(4299)] = 177293, + [SMALL_STATE(4300)] = 177313, + [SMALL_STATE(4301)] = 177325, + [SMALL_STATE(4302)] = 177337, + [SMALL_STATE(4303)] = 177357, + [SMALL_STATE(4304)] = 177377, + [SMALL_STATE(4305)] = 177389, + [SMALL_STATE(4306)] = 177409, + [SMALL_STATE(4307)] = 177429, + [SMALL_STATE(4308)] = 177449, + [SMALL_STATE(4309)] = 177469, + [SMALL_STATE(4310)] = 177489, + [SMALL_STATE(4311)] = 177501, + [SMALL_STATE(4312)] = 177513, + [SMALL_STATE(4313)] = 177525, + [SMALL_STATE(4314)] = 177537, + [SMALL_STATE(4315)] = 177557, + [SMALL_STATE(4316)] = 177577, + [SMALL_STATE(4317)] = 177589, + [SMALL_STATE(4318)] = 177601, + [SMALL_STATE(4319)] = 177613, + [SMALL_STATE(4320)] = 177625, + [SMALL_STATE(4321)] = 177645, + [SMALL_STATE(4322)] = 177661, + [SMALL_STATE(4323)] = 177673, + [SMALL_STATE(4324)] = 177685, + [SMALL_STATE(4325)] = 177705, + [SMALL_STATE(4326)] = 177725, + [SMALL_STATE(4327)] = 177745, + [SMALL_STATE(4328)] = 177757, + [SMALL_STATE(4329)] = 177769, + [SMALL_STATE(4330)] = 177789, + [SMALL_STATE(4331)] = 177803, + [SMALL_STATE(4332)] = 177815, + [SMALL_STATE(4333)] = 177835, + [SMALL_STATE(4334)] = 177851, + [SMALL_STATE(4335)] = 177863, + [SMALL_STATE(4336)] = 177883, + [SMALL_STATE(4337)] = 177903, + [SMALL_STATE(4338)] = 177923, + [SMALL_STATE(4339)] = 177943, + [SMALL_STATE(4340)] = 177963, + [SMALL_STATE(4341)] = 177975, + [SMALL_STATE(4342)] = 177987, + [SMALL_STATE(4343)] = 177999, + [SMALL_STATE(4344)] = 178011, + [SMALL_STATE(4345)] = 178031, + [SMALL_STATE(4346)] = 178047, + [SMALL_STATE(4347)] = 178067, + [SMALL_STATE(4348)] = 178083, + [SMALL_STATE(4349)] = 178103, + [SMALL_STATE(4350)] = 178117, + [SMALL_STATE(4351)] = 178137, + [SMALL_STATE(4352)] = 178149, + [SMALL_STATE(4353)] = 178161, + [SMALL_STATE(4354)] = 178181, + [SMALL_STATE(4355)] = 178199, + [SMALL_STATE(4356)] = 178215, + [SMALL_STATE(4357)] = 178227, + [SMALL_STATE(4358)] = 178243, + [SMALL_STATE(4359)] = 178255, + [SMALL_STATE(4360)] = 178275, + [SMALL_STATE(4361)] = 178295, + [SMALL_STATE(4362)] = 178315, + [SMALL_STATE(4363)] = 178327, + [SMALL_STATE(4364)] = 178347, + [SMALL_STATE(4365)] = 178359, + [SMALL_STATE(4366)] = 178379, + [SMALL_STATE(4367)] = 178397, + [SMALL_STATE(4368)] = 178415, + [SMALL_STATE(4369)] = 178435, + [SMALL_STATE(4370)] = 178455, + [SMALL_STATE(4371)] = 178471, + [SMALL_STATE(4372)] = 178483, + [SMALL_STATE(4373)] = 178503, + [SMALL_STATE(4374)] = 178517, + [SMALL_STATE(4375)] = 178533, + [SMALL_STATE(4376)] = 178553, + [SMALL_STATE(4377)] = 178567, + [SMALL_STATE(4378)] = 178587, + [SMALL_STATE(4379)] = 178607, + [SMALL_STATE(4380)] = 178623, + [SMALL_STATE(4381)] = 178637, + [SMALL_STATE(4382)] = 178653, + [SMALL_STATE(4383)] = 178671, + [SMALL_STATE(4384)] = 178689, + [SMALL_STATE(4385)] = 178705, + [SMALL_STATE(4386)] = 178721, + [SMALL_STATE(4387)] = 178739, + [SMALL_STATE(4388)] = 178759, + [SMALL_STATE(4389)] = 178779, + [SMALL_STATE(4390)] = 178791, + [SMALL_STATE(4391)] = 178811, + [SMALL_STATE(4392)] = 178827, + [SMALL_STATE(4393)] = 178847, + [SMALL_STATE(4394)] = 178865, + [SMALL_STATE(4395)] = 178885, + [SMALL_STATE(4396)] = 178905, + [SMALL_STATE(4397)] = 178917, + [SMALL_STATE(4398)] = 178933, + [SMALL_STATE(4399)] = 178953, + [SMALL_STATE(4400)] = 178973, + [SMALL_STATE(4401)] = 178993, + [SMALL_STATE(4402)] = 179005, + [SMALL_STATE(4403)] = 179025, + [SMALL_STATE(4404)] = 179041, + [SMALL_STATE(4405)] = 179061, + [SMALL_STATE(4406)] = 179073, + [SMALL_STATE(4407)] = 179093, + [SMALL_STATE(4408)] = 179113, + [SMALL_STATE(4409)] = 179129, + [SMALL_STATE(4410)] = 179149, + [SMALL_STATE(4411)] = 179169, + [SMALL_STATE(4412)] = 179189, + [SMALL_STATE(4413)] = 179205, + [SMALL_STATE(4414)] = 179223, + [SMALL_STATE(4415)] = 179235, + [SMALL_STATE(4416)] = 179247, + [SMALL_STATE(4417)] = 179267, + [SMALL_STATE(4418)] = 179279, + [SMALL_STATE(4419)] = 179297, + [SMALL_STATE(4420)] = 179315, + [SMALL_STATE(4421)] = 179335, + [SMALL_STATE(4422)] = 179347, + [SMALL_STATE(4423)] = 179359, + [SMALL_STATE(4424)] = 179371, + [SMALL_STATE(4425)] = 179389, + [SMALL_STATE(4426)] = 179401, + [SMALL_STATE(4427)] = 179421, + [SMALL_STATE(4428)] = 179441, + [SMALL_STATE(4429)] = 179461, + [SMALL_STATE(4430)] = 179473, + [SMALL_STATE(4431)] = 179487, + [SMALL_STATE(4432)] = 179503, + [SMALL_STATE(4433)] = 179523, + [SMALL_STATE(4434)] = 179535, + [SMALL_STATE(4435)] = 179547, + [SMALL_STATE(4436)] = 179563, + [SMALL_STATE(4437)] = 179583, + [SMALL_STATE(4438)] = 179603, + [SMALL_STATE(4439)] = 179623, + [SMALL_STATE(4440)] = 179643, + [SMALL_STATE(4441)] = 179663, + [SMALL_STATE(4442)] = 179683, + [SMALL_STATE(4443)] = 179703, + [SMALL_STATE(4444)] = 179723, + [SMALL_STATE(4445)] = 179743, + [SMALL_STATE(4446)] = 179755, + [SMALL_STATE(4447)] = 179775, + [SMALL_STATE(4448)] = 179795, + [SMALL_STATE(4449)] = 179815, + [SMALL_STATE(4450)] = 179833, + [SMALL_STATE(4451)] = 179853, + [SMALL_STATE(4452)] = 179865, + [SMALL_STATE(4453)] = 179883, + [SMALL_STATE(4454)] = 179903, + [SMALL_STATE(4455)] = 179923, + [SMALL_STATE(4456)] = 179943, + [SMALL_STATE(4457)] = 179961, + [SMALL_STATE(4458)] = 179979, + [SMALL_STATE(4459)] = 179999, + [SMALL_STATE(4460)] = 180019, + [SMALL_STATE(4461)] = 180039, + [SMALL_STATE(4462)] = 180059, + [SMALL_STATE(4463)] = 180071, + [SMALL_STATE(4464)] = 180083, + [SMALL_STATE(4465)] = 180103, + [SMALL_STATE(4466)] = 180123, + [SMALL_STATE(4467)] = 180135, + [SMALL_STATE(4468)] = 180153, + [SMALL_STATE(4469)] = 180173, + [SMALL_STATE(4470)] = 180193, + [SMALL_STATE(4471)] = 180213, + [SMALL_STATE(4472)] = 180231, + [SMALL_STATE(4473)] = 180251, + [SMALL_STATE(4474)] = 180263, + [SMALL_STATE(4475)] = 180283, + [SMALL_STATE(4476)] = 180303, + [SMALL_STATE(4477)] = 180321, + [SMALL_STATE(4478)] = 180336, + [SMALL_STATE(4479)] = 180347, + [SMALL_STATE(4480)] = 180364, + [SMALL_STATE(4481)] = 180377, + [SMALL_STATE(4482)] = 180394, + [SMALL_STATE(4483)] = 180405, + [SMALL_STATE(4484)] = 180420, + [SMALL_STATE(4485)] = 180437, + [SMALL_STATE(4486)] = 180454, + [SMALL_STATE(4487)] = 180471, + [SMALL_STATE(4488)] = 180488, + [SMALL_STATE(4489)] = 180503, + [SMALL_STATE(4490)] = 180520, + [SMALL_STATE(4491)] = 180537, + [SMALL_STATE(4492)] = 180554, + [SMALL_STATE(4493)] = 180569, + [SMALL_STATE(4494)] = 180584, + [SMALL_STATE(4495)] = 180601, + [SMALL_STATE(4496)] = 180612, + [SMALL_STATE(4497)] = 180623, + [SMALL_STATE(4498)] = 180634, + [SMALL_STATE(4499)] = 180649, + [SMALL_STATE(4500)] = 180660, + [SMALL_STATE(4501)] = 180675, + [SMALL_STATE(4502)] = 180690, + [SMALL_STATE(4503)] = 180705, + [SMALL_STATE(4504)] = 180722, + [SMALL_STATE(4505)] = 180737, + [SMALL_STATE(4506)] = 180748, + [SMALL_STATE(4507)] = 180765, + [SMALL_STATE(4508)] = 180782, + [SMALL_STATE(4509)] = 180799, + [SMALL_STATE(4510)] = 180810, + [SMALL_STATE(4511)] = 180825, + [SMALL_STATE(4512)] = 180842, + [SMALL_STATE(4513)] = 180859, + [SMALL_STATE(4514)] = 180876, + [SMALL_STATE(4515)] = 180891, + [SMALL_STATE(4516)] = 180908, + [SMALL_STATE(4517)] = 180919, + [SMALL_STATE(4518)] = 180934, + [SMALL_STATE(4519)] = 180951, + [SMALL_STATE(4520)] = 180966, + [SMALL_STATE(4521)] = 180977, + [SMALL_STATE(4522)] = 180988, + [SMALL_STATE(4523)] = 180999, + [SMALL_STATE(4524)] = 181010, + [SMALL_STATE(4525)] = 181021, + [SMALL_STATE(4526)] = 181032, + [SMALL_STATE(4527)] = 181043, + [SMALL_STATE(4528)] = 181060, + [SMALL_STATE(4529)] = 181077, + [SMALL_STATE(4530)] = 181094, + [SMALL_STATE(4531)] = 181111, + [SMALL_STATE(4532)] = 181122, + [SMALL_STATE(4533)] = 181139, + [SMALL_STATE(4534)] = 181156, + [SMALL_STATE(4535)] = 181171, + [SMALL_STATE(4536)] = 181182, + [SMALL_STATE(4537)] = 181193, + [SMALL_STATE(4538)] = 181210, + [SMALL_STATE(4539)] = 181221, + [SMALL_STATE(4540)] = 181238, + [SMALL_STATE(4541)] = 181255, + [SMALL_STATE(4542)] = 181270, + [SMALL_STATE(4543)] = 181281, + [SMALL_STATE(4544)] = 181292, + [SMALL_STATE(4545)] = 181303, + [SMALL_STATE(4546)] = 181314, + [SMALL_STATE(4547)] = 181325, + [SMALL_STATE(4548)] = 181336, + [SMALL_STATE(4549)] = 181347, + [SMALL_STATE(4550)] = 181358, + [SMALL_STATE(4551)] = 181369, + [SMALL_STATE(4552)] = 181386, + [SMALL_STATE(4553)] = 181397, + [SMALL_STATE(4554)] = 181408, + [SMALL_STATE(4555)] = 181421, + [SMALL_STATE(4556)] = 181432, + [SMALL_STATE(4557)] = 181443, + [SMALL_STATE(4558)] = 181458, + [SMALL_STATE(4559)] = 181469, + [SMALL_STATE(4560)] = 181480, + [SMALL_STATE(4561)] = 181491, + [SMALL_STATE(4562)] = 181502, + [SMALL_STATE(4563)] = 181513, + [SMALL_STATE(4564)] = 181528, + [SMALL_STATE(4565)] = 181543, + [SMALL_STATE(4566)] = 181558, + [SMALL_STATE(4567)] = 181573, + [SMALL_STATE(4568)] = 181588, + [SMALL_STATE(4569)] = 181605, + [SMALL_STATE(4570)] = 181622, + [SMALL_STATE(4571)] = 181633, + [SMALL_STATE(4572)] = 181648, + [SMALL_STATE(4573)] = 181659, + [SMALL_STATE(4574)] = 181674, + [SMALL_STATE(4575)] = 181685, + [SMALL_STATE(4576)] = 181696, + [SMALL_STATE(4577)] = 181707, + [SMALL_STATE(4578)] = 181718, + [SMALL_STATE(4579)] = 181735, + [SMALL_STATE(4580)] = 181752, + [SMALL_STATE(4581)] = 181763, + [SMALL_STATE(4582)] = 181774, + [SMALL_STATE(4583)] = 181785, + [SMALL_STATE(4584)] = 181796, + [SMALL_STATE(4585)] = 181807, + [SMALL_STATE(4586)] = 181824, + [SMALL_STATE(4587)] = 181839, + [SMALL_STATE(4588)] = 181852, + [SMALL_STATE(4589)] = 181863, + [SMALL_STATE(4590)] = 181874, + [SMALL_STATE(4591)] = 181885, + [SMALL_STATE(4592)] = 181896, + [SMALL_STATE(4593)] = 181907, + [SMALL_STATE(4594)] = 181918, + [SMALL_STATE(4595)] = 181929, + [SMALL_STATE(4596)] = 181946, + [SMALL_STATE(4597)] = 181957, + [SMALL_STATE(4598)] = 181968, + [SMALL_STATE(4599)] = 181983, + [SMALL_STATE(4600)] = 182000, + [SMALL_STATE(4601)] = 182013, + [SMALL_STATE(4602)] = 182028, + [SMALL_STATE(4603)] = 182045, + [SMALL_STATE(4604)] = 182060, + [SMALL_STATE(4605)] = 182071, + [SMALL_STATE(4606)] = 182082, + [SMALL_STATE(4607)] = 182095, + [SMALL_STATE(4608)] = 182106, + [SMALL_STATE(4609)] = 182121, + [SMALL_STATE(4610)] = 182132, + [SMALL_STATE(4611)] = 182147, + [SMALL_STATE(4612)] = 182162, + [SMALL_STATE(4613)] = 182173, + [SMALL_STATE(4614)] = 182184, + [SMALL_STATE(4615)] = 182195, + [SMALL_STATE(4616)] = 182212, + [SMALL_STATE(4617)] = 182223, + [SMALL_STATE(4618)] = 182234, + [SMALL_STATE(4619)] = 182245, + [SMALL_STATE(4620)] = 182262, + [SMALL_STATE(4621)] = 182279, + [SMALL_STATE(4622)] = 182296, + [SMALL_STATE(4623)] = 182313, + [SMALL_STATE(4624)] = 182328, + [SMALL_STATE(4625)] = 182345, + [SMALL_STATE(4626)] = 182362, + [SMALL_STATE(4627)] = 182373, + [SMALL_STATE(4628)] = 182388, + [SMALL_STATE(4629)] = 182405, + [SMALL_STATE(4630)] = 182416, + [SMALL_STATE(4631)] = 182427, + [SMALL_STATE(4632)] = 182438, + [SMALL_STATE(4633)] = 182449, + [SMALL_STATE(4634)] = 182460, + [SMALL_STATE(4635)] = 182471, + [SMALL_STATE(4636)] = 182482, + [SMALL_STATE(4637)] = 182493, + [SMALL_STATE(4638)] = 182504, + [SMALL_STATE(4639)] = 182519, + [SMALL_STATE(4640)] = 182534, + [SMALL_STATE(4641)] = 182551, + [SMALL_STATE(4642)] = 182562, + [SMALL_STATE(4643)] = 182577, + [SMALL_STATE(4644)] = 182592, + [SMALL_STATE(4645)] = 182607, + [SMALL_STATE(4646)] = 182618, + [SMALL_STATE(4647)] = 182629, + [SMALL_STATE(4648)] = 182643, + [SMALL_STATE(4649)] = 182657, + [SMALL_STATE(4650)] = 182669, + [SMALL_STATE(4651)] = 182683, + [SMALL_STATE(4652)] = 182697, + [SMALL_STATE(4653)] = 182711, + [SMALL_STATE(4654)] = 182725, + [SMALL_STATE(4655)] = 182737, + [SMALL_STATE(4656)] = 182751, + [SMALL_STATE(4657)] = 182765, + [SMALL_STATE(4658)] = 182779, + [SMALL_STATE(4659)] = 182793, + [SMALL_STATE(4660)] = 182807, + [SMALL_STATE(4661)] = 182821, + [SMALL_STATE(4662)] = 182831, + [SMALL_STATE(4663)] = 182845, + [SMALL_STATE(4664)] = 182859, + [SMALL_STATE(4665)] = 182873, + [SMALL_STATE(4666)] = 182887, + [SMALL_STATE(4667)] = 182901, + [SMALL_STATE(4668)] = 182915, + [SMALL_STATE(4669)] = 182929, + [SMALL_STATE(4670)] = 182943, + [SMALL_STATE(4671)] = 182957, + [SMALL_STATE(4672)] = 182971, + [SMALL_STATE(4673)] = 182985, + [SMALL_STATE(4674)] = 182997, + [SMALL_STATE(4675)] = 183011, + [SMALL_STATE(4676)] = 183025, + [SMALL_STATE(4677)] = 183039, + [SMALL_STATE(4678)] = 183053, + [SMALL_STATE(4679)] = 183067, + [SMALL_STATE(4680)] = 183081, + [SMALL_STATE(4681)] = 183095, + [SMALL_STATE(4682)] = 183109, + [SMALL_STATE(4683)] = 183123, + [SMALL_STATE(4684)] = 183137, + [SMALL_STATE(4685)] = 183149, + [SMALL_STATE(4686)] = 183161, + [SMALL_STATE(4687)] = 183175, + [SMALL_STATE(4688)] = 183189, + [SMALL_STATE(4689)] = 183203, + [SMALL_STATE(4690)] = 183217, + [SMALL_STATE(4691)] = 183231, + [SMALL_STATE(4692)] = 183245, + [SMALL_STATE(4693)] = 183259, + [SMALL_STATE(4694)] = 183273, + [SMALL_STATE(4695)] = 183287, + [SMALL_STATE(4696)] = 183301, + [SMALL_STATE(4697)] = 183315, + [SMALL_STATE(4698)] = 183329, + [SMALL_STATE(4699)] = 183343, + [SMALL_STATE(4700)] = 183357, + [SMALL_STATE(4701)] = 183371, + [SMALL_STATE(4702)] = 183385, + [SMALL_STATE(4703)] = 183399, + [SMALL_STATE(4704)] = 183413, + [SMALL_STATE(4705)] = 183427, + [SMALL_STATE(4706)] = 183441, + [SMALL_STATE(4707)] = 183455, + [SMALL_STATE(4708)] = 183469, + [SMALL_STATE(4709)] = 183483, + [SMALL_STATE(4710)] = 183497, + [SMALL_STATE(4711)] = 183511, + [SMALL_STATE(4712)] = 183525, + [SMALL_STATE(4713)] = 183539, + [SMALL_STATE(4714)] = 183553, + [SMALL_STATE(4715)] = 183567, + [SMALL_STATE(4716)] = 183581, + [SMALL_STATE(4717)] = 183593, + [SMALL_STATE(4718)] = 183607, + [SMALL_STATE(4719)] = 183621, + [SMALL_STATE(4720)] = 183635, + [SMALL_STATE(4721)] = 183647, + [SMALL_STATE(4722)] = 183661, + [SMALL_STATE(4723)] = 183675, + [SMALL_STATE(4724)] = 183689, + [SMALL_STATE(4725)] = 183703, + [SMALL_STATE(4726)] = 183717, + [SMALL_STATE(4727)] = 183731, + [SMALL_STATE(4728)] = 183745, + [SMALL_STATE(4729)] = 183759, + [SMALL_STATE(4730)] = 183773, + [SMALL_STATE(4731)] = 183787, + [SMALL_STATE(4732)] = 183801, + [SMALL_STATE(4733)] = 183815, + [SMALL_STATE(4734)] = 183829, + [SMALL_STATE(4735)] = 183843, + [SMALL_STATE(4736)] = 183857, + [SMALL_STATE(4737)] = 183871, + [SMALL_STATE(4738)] = 183885, + [SMALL_STATE(4739)] = 183899, + [SMALL_STATE(4740)] = 183913, + [SMALL_STATE(4741)] = 183925, + [SMALL_STATE(4742)] = 183935, + [SMALL_STATE(4743)] = 183949, + [SMALL_STATE(4744)] = 183963, + [SMALL_STATE(4745)] = 183977, + [SMALL_STATE(4746)] = 183991, + [SMALL_STATE(4747)] = 184005, + [SMALL_STATE(4748)] = 184019, + [SMALL_STATE(4749)] = 184033, + [SMALL_STATE(4750)] = 184047, + [SMALL_STATE(4751)] = 184061, + [SMALL_STATE(4752)] = 184075, + [SMALL_STATE(4753)] = 184089, + [SMALL_STATE(4754)] = 184103, + [SMALL_STATE(4755)] = 184117, + [SMALL_STATE(4756)] = 184131, + [SMALL_STATE(4757)] = 184145, + [SMALL_STATE(4758)] = 184159, + [SMALL_STATE(4759)] = 184173, + [SMALL_STATE(4760)] = 184183, + [SMALL_STATE(4761)] = 184197, + [SMALL_STATE(4762)] = 184207, + [SMALL_STATE(4763)] = 184221, + [SMALL_STATE(4764)] = 184235, + [SMALL_STATE(4765)] = 184249, + [SMALL_STATE(4766)] = 184259, + [SMALL_STATE(4767)] = 184273, + [SMALL_STATE(4768)] = 184287, + [SMALL_STATE(4769)] = 184301, + [SMALL_STATE(4770)] = 184315, + [SMALL_STATE(4771)] = 184329, + [SMALL_STATE(4772)] = 184343, + [SMALL_STATE(4773)] = 184357, + [SMALL_STATE(4774)] = 184371, + [SMALL_STATE(4775)] = 184385, + [SMALL_STATE(4776)] = 184399, + [SMALL_STATE(4777)] = 184409, + [SMALL_STATE(4778)] = 184423, + [SMALL_STATE(4779)] = 184437, + [SMALL_STATE(4780)] = 184449, + [SMALL_STATE(4781)] = 184463, + [SMALL_STATE(4782)] = 184477, + [SMALL_STATE(4783)] = 184491, + [SMALL_STATE(4784)] = 184505, + [SMALL_STATE(4785)] = 184519, + [SMALL_STATE(4786)] = 184533, + [SMALL_STATE(4787)] = 184547, + [SMALL_STATE(4788)] = 184561, + [SMALL_STATE(4789)] = 184575, + [SMALL_STATE(4790)] = 184589, + [SMALL_STATE(4791)] = 184603, + [SMALL_STATE(4792)] = 184617, + [SMALL_STATE(4793)] = 184631, + [SMALL_STATE(4794)] = 184645, + [SMALL_STATE(4795)] = 184659, + [SMALL_STATE(4796)] = 184673, + [SMALL_STATE(4797)] = 184687, + [SMALL_STATE(4798)] = 184701, + [SMALL_STATE(4799)] = 184715, + [SMALL_STATE(4800)] = 184729, + [SMALL_STATE(4801)] = 184743, + [SMALL_STATE(4802)] = 184757, + [SMALL_STATE(4803)] = 184771, + [SMALL_STATE(4804)] = 184785, + [SMALL_STATE(4805)] = 184799, + [SMALL_STATE(4806)] = 184813, + [SMALL_STATE(4807)] = 184827, + [SMALL_STATE(4808)] = 184841, + [SMALL_STATE(4809)] = 184855, + [SMALL_STATE(4810)] = 184867, + [SMALL_STATE(4811)] = 184881, + [SMALL_STATE(4812)] = 184895, + [SMALL_STATE(4813)] = 184909, + [SMALL_STATE(4814)] = 184923, + [SMALL_STATE(4815)] = 184937, + [SMALL_STATE(4816)] = 184951, + [SMALL_STATE(4817)] = 184965, + [SMALL_STATE(4818)] = 184979, + [SMALL_STATE(4819)] = 184993, + [SMALL_STATE(4820)] = 185007, + [SMALL_STATE(4821)] = 185021, + [SMALL_STATE(4822)] = 185035, + [SMALL_STATE(4823)] = 185049, + [SMALL_STATE(4824)] = 185063, + [SMALL_STATE(4825)] = 185077, + [SMALL_STATE(4826)] = 185091, + [SMALL_STATE(4827)] = 185105, + [SMALL_STATE(4828)] = 185119, + [SMALL_STATE(4829)] = 185133, + [SMALL_STATE(4830)] = 185147, + [SMALL_STATE(4831)] = 185161, + [SMALL_STATE(4832)] = 185175, + [SMALL_STATE(4833)] = 185189, + [SMALL_STATE(4834)] = 185203, + [SMALL_STATE(4835)] = 185217, + [SMALL_STATE(4836)] = 185231, + [SMALL_STATE(4837)] = 185245, + [SMALL_STATE(4838)] = 185259, + [SMALL_STATE(4839)] = 185273, + [SMALL_STATE(4840)] = 185287, + [SMALL_STATE(4841)] = 185301, + [SMALL_STATE(4842)] = 185315, + [SMALL_STATE(4843)] = 185329, + [SMALL_STATE(4844)] = 185343, + [SMALL_STATE(4845)] = 185357, + [SMALL_STATE(4846)] = 185371, + [SMALL_STATE(4847)] = 185385, + [SMALL_STATE(4848)] = 185399, + [SMALL_STATE(4849)] = 185411, + [SMALL_STATE(4850)] = 185425, + [SMALL_STATE(4851)] = 185439, + [SMALL_STATE(4852)] = 185451, + [SMALL_STATE(4853)] = 185465, + [SMALL_STATE(4854)] = 185479, + [SMALL_STATE(4855)] = 185493, + [SMALL_STATE(4856)] = 185507, + [SMALL_STATE(4857)] = 185521, + [SMALL_STATE(4858)] = 185535, + [SMALL_STATE(4859)] = 185549, + [SMALL_STATE(4860)] = 185563, + [SMALL_STATE(4861)] = 185577, + [SMALL_STATE(4862)] = 185591, + [SMALL_STATE(4863)] = 185605, + [SMALL_STATE(4864)] = 185619, + [SMALL_STATE(4865)] = 185633, + [SMALL_STATE(4866)] = 185647, + [SMALL_STATE(4867)] = 185661, + [SMALL_STATE(4868)] = 185675, + [SMALL_STATE(4869)] = 185689, + [SMALL_STATE(4870)] = 185703, + [SMALL_STATE(4871)] = 185717, + [SMALL_STATE(4872)] = 185731, + [SMALL_STATE(4873)] = 185745, + [SMALL_STATE(4874)] = 185757, + [SMALL_STATE(4875)] = 185769, + [SMALL_STATE(4876)] = 185783, + [SMALL_STATE(4877)] = 185795, + [SMALL_STATE(4878)] = 185809, + [SMALL_STATE(4879)] = 185821, + [SMALL_STATE(4880)] = 185835, + [SMALL_STATE(4881)] = 185847, + [SMALL_STATE(4882)] = 185861, + [SMALL_STATE(4883)] = 185875, + [SMALL_STATE(4884)] = 185889, + [SMALL_STATE(4885)] = 185903, + [SMALL_STATE(4886)] = 185917, + [SMALL_STATE(4887)] = 185931, + [SMALL_STATE(4888)] = 185945, + [SMALL_STATE(4889)] = 185959, + [SMALL_STATE(4890)] = 185973, + [SMALL_STATE(4891)] = 185987, + [SMALL_STATE(4892)] = 186001, + [SMALL_STATE(4893)] = 186015, + [SMALL_STATE(4894)] = 186029, + [SMALL_STATE(4895)] = 186043, + [SMALL_STATE(4896)] = 186057, + [SMALL_STATE(4897)] = 186071, + [SMALL_STATE(4898)] = 186085, + [SMALL_STATE(4899)] = 186099, + [SMALL_STATE(4900)] = 186113, + [SMALL_STATE(4901)] = 186127, + [SMALL_STATE(4902)] = 186141, + [SMALL_STATE(4903)] = 186155, + [SMALL_STATE(4904)] = 186169, + [SMALL_STATE(4905)] = 186183, + [SMALL_STATE(4906)] = 186197, + [SMALL_STATE(4907)] = 186211, + [SMALL_STATE(4908)] = 186225, + [SMALL_STATE(4909)] = 186239, + [SMALL_STATE(4910)] = 186253, + [SMALL_STATE(4911)] = 186267, + [SMALL_STATE(4912)] = 186281, + [SMALL_STATE(4913)] = 186295, + [SMALL_STATE(4914)] = 186309, + [SMALL_STATE(4915)] = 186323, + [SMALL_STATE(4916)] = 186337, + [SMALL_STATE(4917)] = 186351, + [SMALL_STATE(4918)] = 186365, + [SMALL_STATE(4919)] = 186379, + [SMALL_STATE(4920)] = 186393, + [SMALL_STATE(4921)] = 186403, + [SMALL_STATE(4922)] = 186417, + [SMALL_STATE(4923)] = 186431, + [SMALL_STATE(4924)] = 186445, + [SMALL_STATE(4925)] = 186459, + [SMALL_STATE(4926)] = 186473, + [SMALL_STATE(4927)] = 186487, + [SMALL_STATE(4928)] = 186501, + [SMALL_STATE(4929)] = 186515, + [SMALL_STATE(4930)] = 186529, + [SMALL_STATE(4931)] = 186543, + [SMALL_STATE(4932)] = 186557, + [SMALL_STATE(4933)] = 186571, + [SMALL_STATE(4934)] = 186585, + [SMALL_STATE(4935)] = 186599, + [SMALL_STATE(4936)] = 186613, + [SMALL_STATE(4937)] = 186627, + [SMALL_STATE(4938)] = 186641, + [SMALL_STATE(4939)] = 186655, + [SMALL_STATE(4940)] = 186669, + [SMALL_STATE(4941)] = 186683, + [SMALL_STATE(4942)] = 186697, + [SMALL_STATE(4943)] = 186711, + [SMALL_STATE(4944)] = 186725, + [SMALL_STATE(4945)] = 186739, + [SMALL_STATE(4946)] = 186753, + [SMALL_STATE(4947)] = 186767, + [SMALL_STATE(4948)] = 186781, + [SMALL_STATE(4949)] = 186795, + [SMALL_STATE(4950)] = 186809, + [SMALL_STATE(4951)] = 186823, + [SMALL_STATE(4952)] = 186837, + [SMALL_STATE(4953)] = 186851, + [SMALL_STATE(4954)] = 186865, + [SMALL_STATE(4955)] = 186879, + [SMALL_STATE(4956)] = 186893, + [SMALL_STATE(4957)] = 186907, + [SMALL_STATE(4958)] = 186921, + [SMALL_STATE(4959)] = 186935, + [SMALL_STATE(4960)] = 186949, + [SMALL_STATE(4961)] = 186963, + [SMALL_STATE(4962)] = 186977, + [SMALL_STATE(4963)] = 186991, + [SMALL_STATE(4964)] = 187005, + [SMALL_STATE(4965)] = 187019, + [SMALL_STATE(4966)] = 187033, + [SMALL_STATE(4967)] = 187047, + [SMALL_STATE(4968)] = 187061, + [SMALL_STATE(4969)] = 187075, + [SMALL_STATE(4970)] = 187089, + [SMALL_STATE(4971)] = 187103, + [SMALL_STATE(4972)] = 187113, + [SMALL_STATE(4973)] = 187127, + [SMALL_STATE(4974)] = 187141, + [SMALL_STATE(4975)] = 187155, + [SMALL_STATE(4976)] = 187167, + [SMALL_STATE(4977)] = 187181, + [SMALL_STATE(4978)] = 187195, + [SMALL_STATE(4979)] = 187209, + [SMALL_STATE(4980)] = 187223, + [SMALL_STATE(4981)] = 187237, + [SMALL_STATE(4982)] = 187251, + [SMALL_STATE(4983)] = 187265, + [SMALL_STATE(4984)] = 187279, + [SMALL_STATE(4985)] = 187293, + [SMALL_STATE(4986)] = 187307, + [SMALL_STATE(4987)] = 187321, + [SMALL_STATE(4988)] = 187335, + [SMALL_STATE(4989)] = 187349, + [SMALL_STATE(4990)] = 187363, + [SMALL_STATE(4991)] = 187377, + [SMALL_STATE(4992)] = 187391, + [SMALL_STATE(4993)] = 187405, + [SMALL_STATE(4994)] = 187419, + [SMALL_STATE(4995)] = 187433, + [SMALL_STATE(4996)] = 187447, + [SMALL_STATE(4997)] = 187459, + [SMALL_STATE(4998)] = 187473, + [SMALL_STATE(4999)] = 187487, + [SMALL_STATE(5000)] = 187501, + [SMALL_STATE(5001)] = 187515, + [SMALL_STATE(5002)] = 187529, + [SMALL_STATE(5003)] = 187543, + [SMALL_STATE(5004)] = 187557, + [SMALL_STATE(5005)] = 187571, + [SMALL_STATE(5006)] = 187585, + [SMALL_STATE(5007)] = 187597, + [SMALL_STATE(5008)] = 187611, + [SMALL_STATE(5009)] = 187625, + [SMALL_STATE(5010)] = 187639, + [SMALL_STATE(5011)] = 187653, + [SMALL_STATE(5012)] = 187667, + [SMALL_STATE(5013)] = 187681, + [SMALL_STATE(5014)] = 187695, + [SMALL_STATE(5015)] = 187709, + [SMALL_STATE(5016)] = 187723, + [SMALL_STATE(5017)] = 187735, + [SMALL_STATE(5018)] = 187749, + [SMALL_STATE(5019)] = 187763, + [SMALL_STATE(5020)] = 187777, + [SMALL_STATE(5021)] = 187787, + [SMALL_STATE(5022)] = 187801, + [SMALL_STATE(5023)] = 187815, + [SMALL_STATE(5024)] = 187829, + [SMALL_STATE(5025)] = 187843, + [SMALL_STATE(5026)] = 187857, + [SMALL_STATE(5027)] = 187871, + [SMALL_STATE(5028)] = 187883, + [SMALL_STATE(5029)] = 187897, + [SMALL_STATE(5030)] = 187911, + [SMALL_STATE(5031)] = 187925, + [SMALL_STATE(5032)] = 187939, + [SMALL_STATE(5033)] = 187953, + [SMALL_STATE(5034)] = 187967, + [SMALL_STATE(5035)] = 187981, + [SMALL_STATE(5036)] = 187995, + [SMALL_STATE(5037)] = 188009, + [SMALL_STATE(5038)] = 188023, + [SMALL_STATE(5039)] = 188037, + [SMALL_STATE(5040)] = 188051, + [SMALL_STATE(5041)] = 188065, + [SMALL_STATE(5042)] = 188077, + [SMALL_STATE(5043)] = 188091, + [SMALL_STATE(5044)] = 188105, + [SMALL_STATE(5045)] = 188119, + [SMALL_STATE(5046)] = 188133, + [SMALL_STATE(5047)] = 188147, + [SMALL_STATE(5048)] = 188161, + [SMALL_STATE(5049)] = 188175, + [SMALL_STATE(5050)] = 188189, + [SMALL_STATE(5051)] = 188199, + [SMALL_STATE(5052)] = 188213, + [SMALL_STATE(5053)] = 188225, + [SMALL_STATE(5054)] = 188239, + [SMALL_STATE(5055)] = 188253, + [SMALL_STATE(5056)] = 188267, + [SMALL_STATE(5057)] = 188281, + [SMALL_STATE(5058)] = 188295, + [SMALL_STATE(5059)] = 188309, + [SMALL_STATE(5060)] = 188323, + [SMALL_STATE(5061)] = 188337, + [SMALL_STATE(5062)] = 188351, + [SMALL_STATE(5063)] = 188365, + [SMALL_STATE(5064)] = 188379, + [SMALL_STATE(5065)] = 188393, + [SMALL_STATE(5066)] = 188407, + [SMALL_STATE(5067)] = 188421, + [SMALL_STATE(5068)] = 188433, + [SMALL_STATE(5069)] = 188445, + [SMALL_STATE(5070)] = 188459, + [SMALL_STATE(5071)] = 188471, + [SMALL_STATE(5072)] = 188485, + [SMALL_STATE(5073)] = 188499, + [SMALL_STATE(5074)] = 188513, + [SMALL_STATE(5075)] = 188527, + [SMALL_STATE(5076)] = 188541, + [SMALL_STATE(5077)] = 188555, + [SMALL_STATE(5078)] = 188569, + [SMALL_STATE(5079)] = 188579, + [SMALL_STATE(5080)] = 188593, + [SMALL_STATE(5081)] = 188607, + [SMALL_STATE(5082)] = 188621, + [SMALL_STATE(5083)] = 188635, + [SMALL_STATE(5084)] = 188649, + [SMALL_STATE(5085)] = 188663, + [SMALL_STATE(5086)] = 188673, + [SMALL_STATE(5087)] = 188687, + [SMALL_STATE(5088)] = 188701, + [SMALL_STATE(5089)] = 188715, + [SMALL_STATE(5090)] = 188725, + [SMALL_STATE(5091)] = 188739, + [SMALL_STATE(5092)] = 188753, + [SMALL_STATE(5093)] = 188767, + [SMALL_STATE(5094)] = 188781, + [SMALL_STATE(5095)] = 188791, + [SMALL_STATE(5096)] = 188805, + [SMALL_STATE(5097)] = 188819, + [SMALL_STATE(5098)] = 188831, + [SMALL_STATE(5099)] = 188843, + [SMALL_STATE(5100)] = 188857, + [SMALL_STATE(5101)] = 188871, + [SMALL_STATE(5102)] = 188885, + [SMALL_STATE(5103)] = 188899, + [SMALL_STATE(5104)] = 188913, + [SMALL_STATE(5105)] = 188927, + [SMALL_STATE(5106)] = 188941, + [SMALL_STATE(5107)] = 188955, + [SMALL_STATE(5108)] = 188969, + [SMALL_STATE(5109)] = 188983, + [SMALL_STATE(5110)] = 188997, + [SMALL_STATE(5111)] = 189011, + [SMALL_STATE(5112)] = 189025, + [SMALL_STATE(5113)] = 189039, + [SMALL_STATE(5114)] = 189053, + [SMALL_STATE(5115)] = 189067, + [SMALL_STATE(5116)] = 189081, + [SMALL_STATE(5117)] = 189095, + [SMALL_STATE(5118)] = 189109, + [SMALL_STATE(5119)] = 189123, + [SMALL_STATE(5120)] = 189137, + [SMALL_STATE(5121)] = 189151, + [SMALL_STATE(5122)] = 189165, + [SMALL_STATE(5123)] = 189179, + [SMALL_STATE(5124)] = 189193, + [SMALL_STATE(5125)] = 189207, + [SMALL_STATE(5126)] = 189221, + [SMALL_STATE(5127)] = 189233, + [SMALL_STATE(5128)] = 189247, + [SMALL_STATE(5129)] = 189261, + [SMALL_STATE(5130)] = 189275, + [SMALL_STATE(5131)] = 189289, + [SMALL_STATE(5132)] = 189303, + [SMALL_STATE(5133)] = 189317, + [SMALL_STATE(5134)] = 189331, + [SMALL_STATE(5135)] = 189345, + [SMALL_STATE(5136)] = 189359, + [SMALL_STATE(5137)] = 189373, + [SMALL_STATE(5138)] = 189387, + [SMALL_STATE(5139)] = 189401, + [SMALL_STATE(5140)] = 189415, + [SMALL_STATE(5141)] = 189429, + [SMALL_STATE(5142)] = 189443, + [SMALL_STATE(5143)] = 189457, + [SMALL_STATE(5144)] = 189471, + [SMALL_STATE(5145)] = 189485, + [SMALL_STATE(5146)] = 189499, + [SMALL_STATE(5147)] = 189513, + [SMALL_STATE(5148)] = 189527, + [SMALL_STATE(5149)] = 189541, + [SMALL_STATE(5150)] = 189555, + [SMALL_STATE(5151)] = 189569, + [SMALL_STATE(5152)] = 189583, + [SMALL_STATE(5153)] = 189597, + [SMALL_STATE(5154)] = 189611, + [SMALL_STATE(5155)] = 189625, + [SMALL_STATE(5156)] = 189639, + [SMALL_STATE(5157)] = 189653, + [SMALL_STATE(5158)] = 189667, + [SMALL_STATE(5159)] = 189681, + [SMALL_STATE(5160)] = 189695, + [SMALL_STATE(5161)] = 189709, + [SMALL_STATE(5162)] = 189723, + [SMALL_STATE(5163)] = 189737, + [SMALL_STATE(5164)] = 189748, + [SMALL_STATE(5165)] = 189759, + [SMALL_STATE(5166)] = 189770, + [SMALL_STATE(5167)] = 189779, + [SMALL_STATE(5168)] = 189790, + [SMALL_STATE(5169)] = 189799, + [SMALL_STATE(5170)] = 189810, + [SMALL_STATE(5171)] = 189819, + [SMALL_STATE(5172)] = 189828, + [SMALL_STATE(5173)] = 189837, + [SMALL_STATE(5174)] = 189848, + [SMALL_STATE(5175)] = 189859, + [SMALL_STATE(5176)] = 189868, + [SMALL_STATE(5177)] = 189877, + [SMALL_STATE(5178)] = 189888, + [SMALL_STATE(5179)] = 189899, + [SMALL_STATE(5180)] = 189908, + [SMALL_STATE(5181)] = 189917, + [SMALL_STATE(5182)] = 189926, + [SMALL_STATE(5183)] = 189935, + [SMALL_STATE(5184)] = 189946, + [SMALL_STATE(5185)] = 189957, + [SMALL_STATE(5186)] = 189968, + [SMALL_STATE(5187)] = 189979, + [SMALL_STATE(5188)] = 189990, + [SMALL_STATE(5189)] = 190001, + [SMALL_STATE(5190)] = 190010, + [SMALL_STATE(5191)] = 190019, + [SMALL_STATE(5192)] = 190030, + [SMALL_STATE(5193)] = 190041, + [SMALL_STATE(5194)] = 190050, + [SMALL_STATE(5195)] = 190059, + [SMALL_STATE(5196)] = 190070, + [SMALL_STATE(5197)] = 190081, + [SMALL_STATE(5198)] = 190090, + [SMALL_STATE(5199)] = 190101, + [SMALL_STATE(5200)] = 190112, + [SMALL_STATE(5201)] = 190123, + [SMALL_STATE(5202)] = 190134, + [SMALL_STATE(5203)] = 190145, + [SMALL_STATE(5204)] = 190156, + [SMALL_STATE(5205)] = 190167, + [SMALL_STATE(5206)] = 190176, + [SMALL_STATE(5207)] = 190187, + [SMALL_STATE(5208)] = 190196, + [SMALL_STATE(5209)] = 190205, + [SMALL_STATE(5210)] = 190214, + [SMALL_STATE(5211)] = 190225, + [SMALL_STATE(5212)] = 190234, + [SMALL_STATE(5213)] = 190245, + [SMALL_STATE(5214)] = 190254, + [SMALL_STATE(5215)] = 190265, + [SMALL_STATE(5216)] = 190276, + [SMALL_STATE(5217)] = 190285, + [SMALL_STATE(5218)] = 190294, + [SMALL_STATE(5219)] = 190305, + [SMALL_STATE(5220)] = 190316, + [SMALL_STATE(5221)] = 190325, + [SMALL_STATE(5222)] = 190336, + [SMALL_STATE(5223)] = 190347, + [SMALL_STATE(5224)] = 190358, + [SMALL_STATE(5225)] = 190369, + [SMALL_STATE(5226)] = 190380, + [SMALL_STATE(5227)] = 190389, + [SMALL_STATE(5228)] = 190400, + [SMALL_STATE(5229)] = 190409, + [SMALL_STATE(5230)] = 190420, + [SMALL_STATE(5231)] = 190431, + [SMALL_STATE(5232)] = 190442, + [SMALL_STATE(5233)] = 190451, + [SMALL_STATE(5234)] = 190462, + [SMALL_STATE(5235)] = 190473, + [SMALL_STATE(5236)] = 190482, + [SMALL_STATE(5237)] = 190491, + [SMALL_STATE(5238)] = 190502, + [SMALL_STATE(5239)] = 190511, + [SMALL_STATE(5240)] = 190522, + [SMALL_STATE(5241)] = 190533, + [SMALL_STATE(5242)] = 190544, + [SMALL_STATE(5243)] = 190555, + [SMALL_STATE(5244)] = 190564, + [SMALL_STATE(5245)] = 190573, + [SMALL_STATE(5246)] = 190584, + [SMALL_STATE(5247)] = 190593, + [SMALL_STATE(5248)] = 190604, + [SMALL_STATE(5249)] = 190615, + [SMALL_STATE(5250)] = 190624, + [SMALL_STATE(5251)] = 190635, + [SMALL_STATE(5252)] = 190644, + [SMALL_STATE(5253)] = 190655, + [SMALL_STATE(5254)] = 190664, + [SMALL_STATE(5255)] = 190673, + [SMALL_STATE(5256)] = 190684, + [SMALL_STATE(5257)] = 190695, + [SMALL_STATE(5258)] = 190706, + [SMALL_STATE(5259)] = 190717, + [SMALL_STATE(5260)] = 190728, + [SMALL_STATE(5261)] = 190739, + [SMALL_STATE(5262)] = 190750, + [SMALL_STATE(5263)] = 190761, + [SMALL_STATE(5264)] = 190772, + [SMALL_STATE(5265)] = 190781, + [SMALL_STATE(5266)] = 190792, + [SMALL_STATE(5267)] = 190801, + [SMALL_STATE(5268)] = 190810, + [SMALL_STATE(5269)] = 190819, + [SMALL_STATE(5270)] = 190828, + [SMALL_STATE(5271)] = 190839, + [SMALL_STATE(5272)] = 190848, + [SMALL_STATE(5273)] = 190859, + [SMALL_STATE(5274)] = 190868, + [SMALL_STATE(5275)] = 190879, + [SMALL_STATE(5276)] = 190890, + [SMALL_STATE(5277)] = 190901, + [SMALL_STATE(5278)] = 190910, + [SMALL_STATE(5279)] = 190921, + [SMALL_STATE(5280)] = 190930, + [SMALL_STATE(5281)] = 190941, + [SMALL_STATE(5282)] = 190952, + [SMALL_STATE(5283)] = 190961, + [SMALL_STATE(5284)] = 190972, + [SMALL_STATE(5285)] = 190983, + [SMALL_STATE(5286)] = 190994, + [SMALL_STATE(5287)] = 191005, + [SMALL_STATE(5288)] = 191016, + [SMALL_STATE(5289)] = 191027, + [SMALL_STATE(5290)] = 191038, + [SMALL_STATE(5291)] = 191049, + [SMALL_STATE(5292)] = 191060, + [SMALL_STATE(5293)] = 191071, + [SMALL_STATE(5294)] = 191080, + [SMALL_STATE(5295)] = 191091, + [SMALL_STATE(5296)] = 191100, + [SMALL_STATE(5297)] = 191109, + [SMALL_STATE(5298)] = 191120, + [SMALL_STATE(5299)] = 191129, + [SMALL_STATE(5300)] = 191138, + [SMALL_STATE(5301)] = 191149, + [SMALL_STATE(5302)] = 191160, + [SMALL_STATE(5303)] = 191171, + [SMALL_STATE(5304)] = 191180, + [SMALL_STATE(5305)] = 191189, + [SMALL_STATE(5306)] = 191198, + [SMALL_STATE(5307)] = 191209, + [SMALL_STATE(5308)] = 191220, + [SMALL_STATE(5309)] = 191229, + [SMALL_STATE(5310)] = 191238, + [SMALL_STATE(5311)] = 191249, + [SMALL_STATE(5312)] = 191260, + [SMALL_STATE(5313)] = 191271, + [SMALL_STATE(5314)] = 191280, + [SMALL_STATE(5315)] = 191289, + [SMALL_STATE(5316)] = 191298, + [SMALL_STATE(5317)] = 191307, + [SMALL_STATE(5318)] = 191318, + [SMALL_STATE(5319)] = 191327, + [SMALL_STATE(5320)] = 191338, + [SMALL_STATE(5321)] = 191347, + [SMALL_STATE(5322)] = 191356, + [SMALL_STATE(5323)] = 191367, + [SMALL_STATE(5324)] = 191376, + [SMALL_STATE(5325)] = 191385, + [SMALL_STATE(5326)] = 191396, + [SMALL_STATE(5327)] = 191407, + [SMALL_STATE(5328)] = 191416, + [SMALL_STATE(5329)] = 191427, + [SMALL_STATE(5330)] = 191436, + [SMALL_STATE(5331)] = 191445, + [SMALL_STATE(5332)] = 191454, + [SMALL_STATE(5333)] = 191465, + [SMALL_STATE(5334)] = 191476, + [SMALL_STATE(5335)] = 191487, + [SMALL_STATE(5336)] = 191498, + [SMALL_STATE(5337)] = 191509, + [SMALL_STATE(5338)] = 191518, + [SMALL_STATE(5339)] = 191527, + [SMALL_STATE(5340)] = 191536, + [SMALL_STATE(5341)] = 191545, + [SMALL_STATE(5342)] = 191556, + [SMALL_STATE(5343)] = 191567, + [SMALL_STATE(5344)] = 191578, + [SMALL_STATE(5345)] = 191587, + [SMALL_STATE(5346)] = 191598, + [SMALL_STATE(5347)] = 191609, + [SMALL_STATE(5348)] = 191618, + [SMALL_STATE(5349)] = 191627, + [SMALL_STATE(5350)] = 191636, + [SMALL_STATE(5351)] = 191647, + [SMALL_STATE(5352)] = 191656, + [SMALL_STATE(5353)] = 191665, + [SMALL_STATE(5354)] = 191674, + [SMALL_STATE(5355)] = 191685, + [SMALL_STATE(5356)] = 191694, + [SMALL_STATE(5357)] = 191703, + [SMALL_STATE(5358)] = 191714, + [SMALL_STATE(5359)] = 191725, + [SMALL_STATE(5360)] = 191734, + [SMALL_STATE(5361)] = 191745, + [SMALL_STATE(5362)] = 191756, + [SMALL_STATE(5363)] = 191767, + [SMALL_STATE(5364)] = 191778, + [SMALL_STATE(5365)] = 191789, + [SMALL_STATE(5366)] = 191800, + [SMALL_STATE(5367)] = 191811, + [SMALL_STATE(5368)] = 191822, + [SMALL_STATE(5369)] = 191831, + [SMALL_STATE(5370)] = 191840, + [SMALL_STATE(5371)] = 191851, + [SMALL_STATE(5372)] = 191862, + [SMALL_STATE(5373)] = 191871, + [SMALL_STATE(5374)] = 191880, + [SMALL_STATE(5375)] = 191889, + [SMALL_STATE(5376)] = 191900, + [SMALL_STATE(5377)] = 191911, + [SMALL_STATE(5378)] = 191922, + [SMALL_STATE(5379)] = 191933, + [SMALL_STATE(5380)] = 191944, + [SMALL_STATE(5381)] = 191953, + [SMALL_STATE(5382)] = 191964, + [SMALL_STATE(5383)] = 191973, + [SMALL_STATE(5384)] = 191984, + [SMALL_STATE(5385)] = 191995, + [SMALL_STATE(5386)] = 192004, + [SMALL_STATE(5387)] = 192013, + [SMALL_STATE(5388)] = 192024, + [SMALL_STATE(5389)] = 192035, + [SMALL_STATE(5390)] = 192044, + [SMALL_STATE(5391)] = 192055, + [SMALL_STATE(5392)] = 192064, + [SMALL_STATE(5393)] = 192075, + [SMALL_STATE(5394)] = 192083, + [SMALL_STATE(5395)] = 192091, + [SMALL_STATE(5396)] = 192099, + [SMALL_STATE(5397)] = 192107, + [SMALL_STATE(5398)] = 192115, + [SMALL_STATE(5399)] = 192123, + [SMALL_STATE(5400)] = 192131, + [SMALL_STATE(5401)] = 192139, + [SMALL_STATE(5402)] = 192147, + [SMALL_STATE(5403)] = 192155, + [SMALL_STATE(5404)] = 192163, + [SMALL_STATE(5405)] = 192171, + [SMALL_STATE(5406)] = 192179, + [SMALL_STATE(5407)] = 192187, + [SMALL_STATE(5408)] = 192195, + [SMALL_STATE(5409)] = 192203, + [SMALL_STATE(5410)] = 192211, + [SMALL_STATE(5411)] = 192219, + [SMALL_STATE(5412)] = 192227, + [SMALL_STATE(5413)] = 192235, + [SMALL_STATE(5414)] = 192243, + [SMALL_STATE(5415)] = 192251, + [SMALL_STATE(5416)] = 192259, + [SMALL_STATE(5417)] = 192267, + [SMALL_STATE(5418)] = 192275, + [SMALL_STATE(5419)] = 192283, + [SMALL_STATE(5420)] = 192291, + [SMALL_STATE(5421)] = 192299, + [SMALL_STATE(5422)] = 192307, + [SMALL_STATE(5423)] = 192315, + [SMALL_STATE(5424)] = 192323, + [SMALL_STATE(5425)] = 192331, + [SMALL_STATE(5426)] = 192339, + [SMALL_STATE(5427)] = 192347, + [SMALL_STATE(5428)] = 192355, + [SMALL_STATE(5429)] = 192363, + [SMALL_STATE(5430)] = 192371, + [SMALL_STATE(5431)] = 192379, + [SMALL_STATE(5432)] = 192387, + [SMALL_STATE(5433)] = 192395, + [SMALL_STATE(5434)] = 192403, + [SMALL_STATE(5435)] = 192411, + [SMALL_STATE(5436)] = 192419, + [SMALL_STATE(5437)] = 192427, + [SMALL_STATE(5438)] = 192435, + [SMALL_STATE(5439)] = 192443, + [SMALL_STATE(5440)] = 192451, + [SMALL_STATE(5441)] = 192459, + [SMALL_STATE(5442)] = 192467, + [SMALL_STATE(5443)] = 192475, + [SMALL_STATE(5444)] = 192483, + [SMALL_STATE(5445)] = 192491, + [SMALL_STATE(5446)] = 192499, + [SMALL_STATE(5447)] = 192507, + [SMALL_STATE(5448)] = 192515, + [SMALL_STATE(5449)] = 192523, + [SMALL_STATE(5450)] = 192531, + [SMALL_STATE(5451)] = 192539, + [SMALL_STATE(5452)] = 192547, + [SMALL_STATE(5453)] = 192555, + [SMALL_STATE(5454)] = 192563, + [SMALL_STATE(5455)] = 192571, + [SMALL_STATE(5456)] = 192579, + [SMALL_STATE(5457)] = 192587, + [SMALL_STATE(5458)] = 192595, + [SMALL_STATE(5459)] = 192603, + [SMALL_STATE(5460)] = 192611, + [SMALL_STATE(5461)] = 192619, + [SMALL_STATE(5462)] = 192627, + [SMALL_STATE(5463)] = 192635, + [SMALL_STATE(5464)] = 192643, + [SMALL_STATE(5465)] = 192651, + [SMALL_STATE(5466)] = 192659, + [SMALL_STATE(5467)] = 192667, + [SMALL_STATE(5468)] = 192675, + [SMALL_STATE(5469)] = 192683, + [SMALL_STATE(5470)] = 192691, + [SMALL_STATE(5471)] = 192699, + [SMALL_STATE(5472)] = 192707, + [SMALL_STATE(5473)] = 192715, + [SMALL_STATE(5474)] = 192723, + [SMALL_STATE(5475)] = 192731, + [SMALL_STATE(5476)] = 192739, + [SMALL_STATE(5477)] = 192747, + [SMALL_STATE(5478)] = 192755, + [SMALL_STATE(5479)] = 192763, + [SMALL_STATE(5480)] = 192771, + [SMALL_STATE(5481)] = 192779, + [SMALL_STATE(5482)] = 192787, + [SMALL_STATE(5483)] = 192795, + [SMALL_STATE(5484)] = 192803, + [SMALL_STATE(5485)] = 192811, + [SMALL_STATE(5486)] = 192819, + [SMALL_STATE(5487)] = 192827, + [SMALL_STATE(5488)] = 192835, + [SMALL_STATE(5489)] = 192843, + [SMALL_STATE(5490)] = 192851, + [SMALL_STATE(5491)] = 192859, + [SMALL_STATE(5492)] = 192867, + [SMALL_STATE(5493)] = 192875, + [SMALL_STATE(5494)] = 192883, + [SMALL_STATE(5495)] = 192891, + [SMALL_STATE(5496)] = 192899, + [SMALL_STATE(5497)] = 192907, + [SMALL_STATE(5498)] = 192915, + [SMALL_STATE(5499)] = 192923, + [SMALL_STATE(5500)] = 192931, + [SMALL_STATE(5501)] = 192939, + [SMALL_STATE(5502)] = 192947, + [SMALL_STATE(5503)] = 192955, + [SMALL_STATE(5504)] = 192963, + [SMALL_STATE(5505)] = 192971, + [SMALL_STATE(5506)] = 192979, + [SMALL_STATE(5507)] = 192987, + [SMALL_STATE(5508)] = 192995, + [SMALL_STATE(5509)] = 193003, + [SMALL_STATE(5510)] = 193011, + [SMALL_STATE(5511)] = 193019, + [SMALL_STATE(5512)] = 193027, + [SMALL_STATE(5513)] = 193035, + [SMALL_STATE(5514)] = 193043, + [SMALL_STATE(5515)] = 193051, + [SMALL_STATE(5516)] = 193059, + [SMALL_STATE(5517)] = 193067, + [SMALL_STATE(5518)] = 193075, + [SMALL_STATE(5519)] = 193083, + [SMALL_STATE(5520)] = 193091, + [SMALL_STATE(5521)] = 193099, + [SMALL_STATE(5522)] = 193107, + [SMALL_STATE(5523)] = 193115, + [SMALL_STATE(5524)] = 193123, + [SMALL_STATE(5525)] = 193131, + [SMALL_STATE(5526)] = 193139, + [SMALL_STATE(5527)] = 193147, + [SMALL_STATE(5528)] = 193155, + [SMALL_STATE(5529)] = 193163, + [SMALL_STATE(5530)] = 193171, + [SMALL_STATE(5531)] = 193179, + [SMALL_STATE(5532)] = 193187, + [SMALL_STATE(5533)] = 193195, + [SMALL_STATE(5534)] = 193203, + [SMALL_STATE(5535)] = 193211, + [SMALL_STATE(5536)] = 193219, + [SMALL_STATE(5537)] = 193227, + [SMALL_STATE(5538)] = 193235, + [SMALL_STATE(5539)] = 193243, + [SMALL_STATE(5540)] = 193251, + [SMALL_STATE(5541)] = 193259, + [SMALL_STATE(5542)] = 193267, + [SMALL_STATE(5543)] = 193275, + [SMALL_STATE(5544)] = 193283, + [SMALL_STATE(5545)] = 193291, + [SMALL_STATE(5546)] = 193299, + [SMALL_STATE(5547)] = 193307, + [SMALL_STATE(5548)] = 193315, + [SMALL_STATE(5549)] = 193323, + [SMALL_STATE(5550)] = 193331, + [SMALL_STATE(5551)] = 193339, + [SMALL_STATE(5552)] = 193347, + [SMALL_STATE(5553)] = 193355, + [SMALL_STATE(5554)] = 193363, + [SMALL_STATE(5555)] = 193371, + [SMALL_STATE(5556)] = 193379, + [SMALL_STATE(5557)] = 193387, + [SMALL_STATE(5558)] = 193395, + [SMALL_STATE(5559)] = 193403, + [SMALL_STATE(5560)] = 193411, + [SMALL_STATE(5561)] = 193419, + [SMALL_STATE(5562)] = 193427, + [SMALL_STATE(5563)] = 193435, + [SMALL_STATE(5564)] = 193443, + [SMALL_STATE(5565)] = 193451, + [SMALL_STATE(5566)] = 193459, + [SMALL_STATE(5567)] = 193467, + [SMALL_STATE(5568)] = 193475, + [SMALL_STATE(5569)] = 193483, + [SMALL_STATE(5570)] = 193491, + [SMALL_STATE(5571)] = 193499, + [SMALL_STATE(5572)] = 193507, + [SMALL_STATE(5573)] = 193515, + [SMALL_STATE(5574)] = 193523, + [SMALL_STATE(5575)] = 193531, + [SMALL_STATE(5576)] = 193539, + [SMALL_STATE(5577)] = 193547, + [SMALL_STATE(5578)] = 193555, + [SMALL_STATE(5579)] = 193563, + [SMALL_STATE(5580)] = 193571, + [SMALL_STATE(5581)] = 193579, + [SMALL_STATE(5582)] = 193587, + [SMALL_STATE(5583)] = 193595, + [SMALL_STATE(5584)] = 193603, + [SMALL_STATE(5585)] = 193611, + [SMALL_STATE(5586)] = 193619, + [SMALL_STATE(5587)] = 193627, + [SMALL_STATE(5588)] = 193635, + [SMALL_STATE(5589)] = 193643, + [SMALL_STATE(5590)] = 193651, + [SMALL_STATE(5591)] = 193659, + [SMALL_STATE(5592)] = 193667, + [SMALL_STATE(5593)] = 193675, + [SMALL_STATE(5594)] = 193683, + [SMALL_STATE(5595)] = 193691, + [SMALL_STATE(5596)] = 193699, + [SMALL_STATE(5597)] = 193707, + [SMALL_STATE(5598)] = 193715, + [SMALL_STATE(5599)] = 193723, + [SMALL_STATE(5600)] = 193731, + [SMALL_STATE(5601)] = 193739, + [SMALL_STATE(5602)] = 193747, + [SMALL_STATE(5603)] = 193755, + [SMALL_STATE(5604)] = 193763, + [SMALL_STATE(5605)] = 193771, + [SMALL_STATE(5606)] = 193779, + [SMALL_STATE(5607)] = 193787, + [SMALL_STATE(5608)] = 193795, + [SMALL_STATE(5609)] = 193803, + [SMALL_STATE(5610)] = 193811, + [SMALL_STATE(5611)] = 193819, + [SMALL_STATE(5612)] = 193827, + [SMALL_STATE(5613)] = 193835, + [SMALL_STATE(5614)] = 193843, + [SMALL_STATE(5615)] = 193851, + [SMALL_STATE(5616)] = 193859, + [SMALL_STATE(5617)] = 193867, + [SMALL_STATE(5618)] = 193875, + [SMALL_STATE(5619)] = 193883, + [SMALL_STATE(5620)] = 193891, + [SMALL_STATE(5621)] = 193899, + [SMALL_STATE(5622)] = 193907, + [SMALL_STATE(5623)] = 193915, + [SMALL_STATE(5624)] = 193923, + [SMALL_STATE(5625)] = 193931, + [SMALL_STATE(5626)] = 193939, + [SMALL_STATE(5627)] = 193947, + [SMALL_STATE(5628)] = 193955, + [SMALL_STATE(5629)] = 193963, + [SMALL_STATE(5630)] = 193971, + [SMALL_STATE(5631)] = 193979, + [SMALL_STATE(5632)] = 193987, + [SMALL_STATE(5633)] = 193995, + [SMALL_STATE(5634)] = 194003, + [SMALL_STATE(5635)] = 194011, + [SMALL_STATE(5636)] = 194019, + [SMALL_STATE(5637)] = 194027, + [SMALL_STATE(5638)] = 194035, + [SMALL_STATE(5639)] = 194043, + [SMALL_STATE(5640)] = 194051, + [SMALL_STATE(5641)] = 194059, + [SMALL_STATE(5642)] = 194067, + [SMALL_STATE(5643)] = 194075, + [SMALL_STATE(5644)] = 194083, + [SMALL_STATE(5645)] = 194091, + [SMALL_STATE(5646)] = 194099, + [SMALL_STATE(5647)] = 194107, + [SMALL_STATE(5648)] = 194115, + [SMALL_STATE(5649)] = 194123, + [SMALL_STATE(5650)] = 194131, + [SMALL_STATE(5651)] = 194139, + [SMALL_STATE(5652)] = 194147, + [SMALL_STATE(5653)] = 194155, + [SMALL_STATE(5654)] = 194163, + [SMALL_STATE(5655)] = 194171, + [SMALL_STATE(5656)] = 194179, + [SMALL_STATE(5657)] = 194187, + [SMALL_STATE(5658)] = 194195, + [SMALL_STATE(5659)] = 194203, + [SMALL_STATE(5660)] = 194211, + [SMALL_STATE(5661)] = 194219, + [SMALL_STATE(5662)] = 194227, + [SMALL_STATE(5663)] = 194235, + [SMALL_STATE(5664)] = 194243, + [SMALL_STATE(5665)] = 194251, + [SMALL_STATE(5666)] = 194259, + [SMALL_STATE(5667)] = 194267, + [SMALL_STATE(5668)] = 194275, + [SMALL_STATE(5669)] = 194283, + [SMALL_STATE(5670)] = 194291, + [SMALL_STATE(5671)] = 194299, + [SMALL_STATE(5672)] = 194307, + [SMALL_STATE(5673)] = 194315, + [SMALL_STATE(5674)] = 194323, + [SMALL_STATE(5675)] = 194331, + [SMALL_STATE(5676)] = 194339, + [SMALL_STATE(5677)] = 194347, + [SMALL_STATE(5678)] = 194355, + [SMALL_STATE(5679)] = 194363, + [SMALL_STATE(5680)] = 194371, + [SMALL_STATE(5681)] = 194379, + [SMALL_STATE(5682)] = 194387, + [SMALL_STATE(5683)] = 194395, + [SMALL_STATE(5684)] = 194403, + [SMALL_STATE(5685)] = 194411, + [SMALL_STATE(5686)] = 194419, + [SMALL_STATE(5687)] = 194427, + [SMALL_STATE(5688)] = 194435, + [SMALL_STATE(5689)] = 194443, + [SMALL_STATE(5690)] = 194451, + [SMALL_STATE(5691)] = 194459, + [SMALL_STATE(5692)] = 194467, + [SMALL_STATE(5693)] = 194475, + [SMALL_STATE(5694)] = 194483, + [SMALL_STATE(5695)] = 194491, + [SMALL_STATE(5696)] = 194499, + [SMALL_STATE(5697)] = 194507, + [SMALL_STATE(5698)] = 194515, + [SMALL_STATE(5699)] = 194523, + [SMALL_STATE(5700)] = 194531, + [SMALL_STATE(5701)] = 194539, + [SMALL_STATE(5702)] = 194547, + [SMALL_STATE(5703)] = 194555, + [SMALL_STATE(5704)] = 194563, + [SMALL_STATE(5705)] = 194571, + [SMALL_STATE(5706)] = 194579, + [SMALL_STATE(5707)] = 194587, + [SMALL_STATE(5708)] = 194595, + [SMALL_STATE(5709)] = 194603, + [SMALL_STATE(5710)] = 194611, + [SMALL_STATE(5711)] = 194619, + [SMALL_STATE(5712)] = 194627, + [SMALL_STATE(5713)] = 194635, + [SMALL_STATE(5714)] = 194643, + [SMALL_STATE(5715)] = 194651, + [SMALL_STATE(5716)] = 194659, + [SMALL_STATE(5717)] = 194667, + [SMALL_STATE(5718)] = 194675, + [SMALL_STATE(5719)] = 194683, + [SMALL_STATE(5720)] = 194691, + [SMALL_STATE(5721)] = 194699, + [SMALL_STATE(5722)] = 194707, + [SMALL_STATE(5723)] = 194715, + [SMALL_STATE(5724)] = 194723, + [SMALL_STATE(5725)] = 194731, + [SMALL_STATE(5726)] = 194739, + [SMALL_STATE(5727)] = 194747, + [SMALL_STATE(5728)] = 194755, + [SMALL_STATE(5729)] = 194763, + [SMALL_STATE(5730)] = 194771, + [SMALL_STATE(5731)] = 194779, + [SMALL_STATE(5732)] = 194787, + [SMALL_STATE(5733)] = 194795, + [SMALL_STATE(5734)] = 194803, + [SMALL_STATE(5735)] = 194811, + [SMALL_STATE(5736)] = 194819, + [SMALL_STATE(5737)] = 194827, + [SMALL_STATE(5738)] = 194835, + [SMALL_STATE(5739)] = 194843, + [SMALL_STATE(5740)] = 194851, + [SMALL_STATE(5741)] = 194859, + [SMALL_STATE(5742)] = 194867, + [SMALL_STATE(5743)] = 194875, + [SMALL_STATE(5744)] = 194883, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -282833,4980 +283704,5003 @@ 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(1865), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4500), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4033), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5228), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5249), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5177), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5591), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5654), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5580), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5696), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4540), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4040), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5385), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5303), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5324), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5677), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5668), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5478), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5649), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5590), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5531), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5618), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5098), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5581), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3232), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5668), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5574), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5682), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5482), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5576), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5683), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5054), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), - [153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1865), - [156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(4500), - [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(4033), - [162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(744), - [165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1947), - [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(258), - [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1498), - [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1025), - [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1172), - [180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(964), - [183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5228), - [186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5249), - [189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5177), - [192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1388), - [195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(426), - [198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1843), - [201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(937), - [204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1565), - [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5591), - [210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1078), - [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5654), - [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5580), - [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5696), - [222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1838), - [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(799), - [228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5590), - [231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(751), - [234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1512), - [237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1919), - [240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(755), - [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1540), - [246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3252), - [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2699), - [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(950), - [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2079), - [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2100), - [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2123), - [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2123), - [267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(445), - [270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1832), - [273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5618), - [276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5098), - [279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5581), - [282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2007), - [285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3232), - [288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2201), - [291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2777), - [294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5668), - [297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3675), - [300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1, 0, 0), - [302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, 0, 0), - [306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1788), - [309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(425), - [312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1840), - [315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(930), - [318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1790), - [321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5574), - [324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1135), - [327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5682), - [330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5482), - [333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5576), - [336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5683), - [339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2006), - [342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2175), - [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), - [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4662), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3438), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3310), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3292), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), - [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), - [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5592), - [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5373), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), - [579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), - [581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), - [583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(840), - [586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 1), REDUCE(sym_primary_expression, 1, 0, 1), - [589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1941), - [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), - [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), - [596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_expression_lhs, 1, 0, 1), - [598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 1), - [600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(843), - [603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1919), - [606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1540), - [609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(3252), - [612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 1), - [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), - [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), - [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), - [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5158), - [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5169), - [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), - [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), - [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5156), - [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5215), - [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), - [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5274), - [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), - [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [1022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), - [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [1036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), - [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), - [1042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [1044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), - [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), - [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), - [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), - [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [1080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 1), REDUCE(sym_primary_expression, 1, 0, 1), - [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), - [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), - [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5443), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5673), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5596), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4979), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5679), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3292), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2808), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5547), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5591), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5700), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5503), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5593), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5701), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4975), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), + [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1875), + [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(4540), + [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(4040), + [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(774), + [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1921), + [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(417), + [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1510), + [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1018), + [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1204), + [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(955), + [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5385), + [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5303), + [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5324), + [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1683), + [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(425), + [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1849), + [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(916), + [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1651), + [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5677), + [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1064), + [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5668), + [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5478), + [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5649), + [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1848), + [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(799), + [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5443), + [235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(766), + [238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1536), + [241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1910), + [244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(770), + [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1642), + [250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3248), + [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2705), + [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(960), + [259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2104), + [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2110), + [265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2111), + [268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2111), + [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(444), + [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1841), + [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5596), + [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(4979), + [283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5679), + [286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2014), + [289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3292), + [292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2205), + [295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2808), + [298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5547), + [301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3684), + [304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1, 0, 0), + [306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4874), + [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, 0, 0), + [314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1796), + [317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(426), + [320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1847), + [323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(941), + [326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1797), + [329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5591), + [332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1153), + [335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5700), + [338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5503), + [341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5593), + [344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5701), + [347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1925), + [350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2194), + [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3368), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), + [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5267), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5279), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5244), + [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), + [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5182), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5243), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), + [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), + [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), + [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), + [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), + [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5356), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), + [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), + [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), + [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), + [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), + [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), + [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), + [1003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), + [1005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), + [1007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(888), + [1010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 1), REDUCE(sym_primary_expression, 1, 0, 1), + [1013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1964), + [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), + [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), + [1020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_expression_lhs, 1, 0, 1), + [1022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 1), REDUCE(sym_primary_expression, 1, 0, 1), + [1025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 1), + [1027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(906), + [1030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1910), + [1033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1642), + [1036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(3248), + [1039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 1), + [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), + [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), + [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), + [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), + [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), + [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), + [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), - [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), - [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), - [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), - [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), - [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), - [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), - [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), - [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), - [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), - [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), - [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), - [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), - [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), - [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), - [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), - [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), - [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), - [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), - [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), + [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), + [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), + [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), + [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), + [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), + [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), + [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), + [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), - [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3250), - [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), + [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), + [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), + [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), - [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), - [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), - [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), - [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5662), - [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), - [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4922), - [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4838), - [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), - [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), - [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), - [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), - [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), - [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), + [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), + [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), + [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5680), + [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), + [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4851), + [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5052), + [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), + [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), + [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), + [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), [1295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, 0, 5), [1297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_list_splat_pattern, 2, 0, 5), [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, 0, 5), - [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), - [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), - [1306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), - [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), - [1312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), - [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), - [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), - [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), - [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), - [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), - [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), - [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [1340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), - [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), - [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [1348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), - [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), - [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), - [1354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3338), - [1356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3291), - [1358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), - [1360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5577), - [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), - [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), - [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5396), - [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), - [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), - [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), + [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), + [1306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), + [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3283), + [1312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), + [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), + [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), + [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), + [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), + [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), + [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), + [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [1340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2413), + [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), + [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [1348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3438), + [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3273), + [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), + [1354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), + [1356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3275), + [1358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3296), + [1360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5594), + [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), + [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), + [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), + [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5499), + [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), + [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), + [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), - [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), - [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), - [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), - [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), - [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), - [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), - [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), - [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5679), - [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), - [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), - [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5559), - [1414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), - [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), - [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5645), - [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), - [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5663), - [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), - [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5435), - [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), - [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), - [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5417), - [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), - [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5539), - [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), - [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5537), - [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5402), - [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5640), - [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), + [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), + [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2721), + [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), + [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), + [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), + [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), + [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5697), + [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), + [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), + [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5738), + [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5415), + [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5431), + [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5674), + [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), + [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5471), + [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), + [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5483), + [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), + [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5481), + [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5462), + [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5558), + [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5667), + [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), - [1470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), - [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [1474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 3, 0, 0), - [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 3, 0, 0), - [1482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 2, 0, 0), - [1484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 2, 0, 0), - [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 4, 0, 0), - [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 4, 0, 0), - [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), - [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [1470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), + [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [1474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [1482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 4, 0, 0), + [1484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 4, 0, 0), + [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 3, 0, 0), + [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 3, 0, 0), + [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 2, 0, 0), + [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 2, 0, 0), [1494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1, 0, 0), [1496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1, 0, 0), [1498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_list_splat_pattern, 2, 0, 5), - [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 163), - [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 163), - [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 193), + [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 193), + [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), [1507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_definition, 4, 0, 0), [1509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_definition, 4, 0, 0), [1511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_definition, 5, 0, 0), [1513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_definition, 5, 0, 0), - [1515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 194), - [1517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 194), - [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 97), - [1523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 97), - [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [1527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 3, 0, 19), - [1529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 3, 0, 19), - [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 61), - [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 61), - [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [1515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 3, 0, 19), + [1517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 3, 0, 19), + [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 51), + [1523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 51), + [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [1527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 61), + [1529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 61), + [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 97), + [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 97), + [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), [1539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 119), [1541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 119), - [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 51), - [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 51), - [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [1551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 151), - [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 151), - [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [1557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 5, 0, 129), - [1559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 5, 0, 129), - [1561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 211), - [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 211), - [1565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 212), - [1567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 212), - [1569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 213), - [1571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 213), - [1573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 215), - [1575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 215), - [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 216), - [1579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 216), - [1581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 130), - [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 130), - [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 217), - [1587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 217), - [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 161), - [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 161), - [1593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 218), - [1595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 218), - [1597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 87), - [1599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 87), - [1601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 162), - [1603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 162), - [1605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 0), - [1607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 0), - [1609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 0), - [1611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 0), - [1613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 191), - [1615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 191), - [1617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 220), - [1619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 220), - [1621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 221), - [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 221), - [1625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 222), - [1627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 222), - [1629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 223), - [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 223), - [1633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 224), - [1635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 224), - [1637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 225), - [1639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 225), - [1641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 231), - [1643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 231), - [1645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 232), - [1647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 232), - [1649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 233), - [1651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 233), - [1653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 234), - [1655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 234), - [1657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 236), - [1659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 236), - [1661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 237), - [1663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 237), - [1665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 161), - [1667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 161), - [1669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 238), - [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 238), - [1673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 162), - [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 162), - [1677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 239), - [1679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 239), - [1681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 162), - [1683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 162), - [1685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 240), - [1687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 240), - [1689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 191), - [1691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 191), - [1693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 241), - [1695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 241), - [1697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 130), - [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 130), - [1701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 242), - [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 242), - [1705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 243), - [1707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 243), - [1709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 244), - [1711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 244), - [1713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 245), - [1715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 245), - [1717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 246), - [1719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 246), - [1721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 247), - [1723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 247), - [1725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 11, 0, 251), - [1727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 11, 0, 251), - [1729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 158), - [1731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 158), - [1733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 10, 0, 253), - [1735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 10, 0, 253), - [1737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 10, 0, 254), - [1739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 10, 0, 254), - [1741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 10, 0, 255), - [1743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 10, 0, 255), - [1745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 10, 0, 191), - [1747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 10, 0, 191), - [1749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 10, 0, 256), - [1751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 10, 0, 256), - [1753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 11, 0, 257), - [1755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 11, 0, 257), - [1757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 11, 0, 258), - [1759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 11, 0, 258), - [1761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 11, 0, 259), - [1763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 11, 0, 259), - [1765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 11, 0, 260), - [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 11, 0, 260), - [1769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 60), - [1771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 60), - [1773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 11, 0, 263), - [1775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 11, 0, 263), - [1777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 12, 0, 264), - [1779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 12, 0, 264), - [1781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 130), - [1783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 130), - [1785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 164), - [1787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 164), - [1789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_block, 2, 0, 0), - [1791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_block, 2, 0, 0), - [1793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 2, 0, 0), - [1795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 2, 0, 0), - [1797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_def, 2, 0, 0), - [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_def, 2, 0, 0), - [1801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 160), - [1803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 160), - [1805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_suite, 1, 0, 56), - [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_suite, 1, 0, 56), - [1809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_suite, 1, 0, 0), - [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_suite, 1, 0, 0), - [1813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_block, 3, 0, 0), - [1815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_block, 3, 0, 0), - [1817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 3, 0, 0), - [1819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct, 3, 0, 0), - [1821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 3, 0, 58), - [1823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 3, 0, 58), - [1825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 3, 0, 0), - [1827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 3, 0, 0), - [1829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_def, 3, 0, 0), - [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_def, 3, 0, 0), - [1833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 2, 0, 0), - [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 2, 0, 0), - [1837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 165), - [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 165), - [1841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_block, 4, 0, 0), - [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_block, 4, 0, 0), - [1845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_suite, 1, 0, 56), - [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_suite, 1, 0, 56), - [1849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_suite, 1, 0, 0), - [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_suite, 1, 0, 0), - [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 4, 0, 0), - [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct, 4, 0, 0), - [1857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 4, 0, 87), - [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct, 4, 0, 87), - [1861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 4, 0, 0), - [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 4, 0, 0), - [1865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 4, 0, 88), - [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 4, 0, 88), - [1869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_def, 4, 0, 0), - [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_def, 4, 0, 0), - [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 3, 0, 0), - [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 3, 0, 0), - [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 166), - [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 166), - [1881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 3, 0, 58), - [1883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 3, 0, 58), - [1885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 167), - [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 167), - [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_block, 5, 0, 0), - [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_block, 5, 0, 0), - [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_suite, 3, 0, 0), - [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_suite, 3, 0, 0), - [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_suite, 2, 0, 0), - [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_suite, 2, 0, 0), - [1901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 5, 0, 87), - [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct, 5, 0, 87), - [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), - [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), - [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), - [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), - [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), - [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5678), - [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), - [1933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 5, 0, 0), - [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 5, 0, 0), - [1937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 5, 0, 129), - [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 5, 0, 129), - [1941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 168), - [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 168), - [1945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fused, 5, 0, 0), - [1947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fused, 5, 0, 0), - [1949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_def, 5, 0, 0), - [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_def, 5, 0, 0), - [1953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 4, 0, 88), - [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 4, 0, 88), - [1957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 4, 0, 0), - [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 4, 0, 0), - [1961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 5, 0, 0), - [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct, 5, 0, 0), - [1965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 5, 0, 130), - [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct, 5, 0, 130), - [1969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 169), - [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 169), - [1973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_block, 6, 0, 0), - [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_block, 6, 0, 0), - [1977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_suite, 3, 0, 0), - [1979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_suite, 3, 0, 0), - [1981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 6, 0, 0), - [1983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 6, 0, 0), - [1985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 6, 0, 156), - [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 6, 0, 156), - [1989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 180), - [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 180), - [1993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fused, 6, 0, 0), - [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fused, 6, 0, 0), - [1997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_def, 6, 0, 0), - [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_def, 6, 0, 0), - [2001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 5, 0, 0), - [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 5, 0, 0), - [2005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 18), - [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 18), - [2009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 6, 0, 130), - [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct, 6, 0, 130), - [2013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_block, 7, 0, 0), - [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_block, 7, 0, 0), - [2017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 7, 0, 0), - [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 7, 0, 0), - [2021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 7, 0, 185), - [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 7, 0, 185), - [2025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 6, 0, 0), - [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 6, 0, 0), - [2029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctypedef_statement, 2, 0, 0), - [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [2033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctypedef_statement, 2, 0, 0), - [2035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 6, 0, 156), - [2037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 6, 0, 156), - [2039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_def, 7, 0, 0), - [2041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_def, 7, 0, 0), - [2043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 3, 0, 18), - [2045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 3, 0, 18), - [2047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_block, 8, 0, 0), - [2049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_block, 8, 0, 0), - [2051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 181), - [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 181), - [2055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 8, 0, 214), - [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 8, 0, 214), - [2059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 8, 0, 0), - [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 8, 0, 0), - [2063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 7, 0, 0), - [2065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 7, 0, 0), - [2067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 2, 0, 0), - [2069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 2, 0, 0), - [2071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 7, 0, 185), - [2073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 7, 0, 185), - [2075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 9, 0, 0), - [2077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 9, 0, 0), - [2079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctypedef_statement, 3, 0, 0), - [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctypedef_statement, 3, 0, 0), - [2085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 9, 0, 235), - [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 9, 0, 235), - [2089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 8, 0, 0), - [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 8, 0, 0), - [2093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 10, 0, 252), - [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 10, 0, 252), - [2097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 50), - [2099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 50), - [2101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 10, 0, 0), - [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 10, 0, 0), - [2105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 18), - [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 18), - [2109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 3, 0, 0), - [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 3, 0, 0), - [2113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 11, 0, 0), - [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 11, 0, 0), - [2117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 11, 0, 262), - [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 11, 0, 262), - [2121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 60), - [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 60), - [2125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 182), - [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 182), - [2129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 12, 0, 0), - [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 12, 0, 0), - [2133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 80), - [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 80), - [2137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pass_statement, 1, 0, 0), - [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pass_statement, 1, 0, 0), - [2141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 81), - [2143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 81), - [2145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 82), - [2147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 82), - [2149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 83), - [2151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 83), - [2153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 4, 0, 87), - [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 4, 0, 87), - [2157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 4, 0, 0), - [2159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 4, 0, 0), - [2161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 4, 0, 89), - [2163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 4, 0, 89), - [2165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 96), - [2167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 96), - [2169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 60), - [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 60), - [2173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 183), - [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 183), - [2177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 184), - [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 184), - [2181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 18), - [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 18), - [2185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 186), - [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 186), - [2189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 120), - [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 120), - [2193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 121), - [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 121), - [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 122), - [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 122), - [2201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 123), - [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 123), - [2205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 124), - [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 124), - [2209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 125), - [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 125), - [2213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 87), - [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 87), - [2217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 5, 0, 0), - [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 5, 0, 0), - [2221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 5, 0, 87), - [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 5, 0, 87), - [2225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 5, 0, 131), - [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 5, 0, 131), - [2229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 187), - [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 187), - [2233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 5, 0, 132), - [2235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 5, 0, 132), - [2237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 5, 0, 130), - [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 5, 0, 130), - [2241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 130), - [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 130), - [2245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 133), - [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 133), - [2249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 188), - [2251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 188), - [2253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 134), - [2255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 134), - [2257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 135), - [2259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 135), - [2261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 0), - [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 0), - [2265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 152), - [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 152), - [2269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 136), - [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 136), - [2273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 153), - [2275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 153), - [2277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 161), - [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 161), - [2281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 154), - [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 154), - [2285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 149), - [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 149), - [2289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 189), - [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 189), - [2293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 161), - [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 161), - [2297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 162), - [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 162), - [2301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 190), - [2303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 190), - [2305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 191), - [2307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 191), - [2309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 192), - [2311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 192), - [2313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 87), - [2315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 87), - [2317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 150), - [2319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 150), - [2321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 193), - [2323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 193), - [2325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 159), - [2327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 159), - [2329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 60), - [2331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 60), - [2333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 195), - [2335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 195), - [2337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 196), - [2339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 196), - [2341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 197), - [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 197), - [2345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 208), - [2347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 208), - [2349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 209), - [2351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 209), - [2353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 210), - [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 210), - [2357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 219), - [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 219), - [2361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cdef_type_declaration, 1, 0, 0), - [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cdef_type_declaration, 1, 0, 0), - [2365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctype_declaration, 1, 0, 0), - [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctype_declaration, 1, 0, 0), + [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 151), + [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 151), + [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [1551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 162), + [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 162), + [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [1557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 11, 0, 258), + [1559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 11, 0, 258), + [1561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 81), + [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 81), + [1565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 82), + [1567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 82), + [1569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 83), + [1571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 83), + [1573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 4, 0, 87), + [1575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 4, 0, 87), + [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 4, 0, 0), + [1579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 4, 0, 0), + [1581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 4, 0, 89), + [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 4, 0, 89), + [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 96), + [1587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 96), + [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 60), + [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 60), + [1593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 18), + [1595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 18), + [1597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 120), + [1599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 120), + [1601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 121), + [1603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 121), + [1605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 122), + [1607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 122), + [1609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 123), + [1611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 123), + [1613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 125), + [1615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 125), + [1617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 5, 0, 0), + [1619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 5, 0, 0), + [1621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 5, 0, 87), + [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 5, 0, 87), + [1625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 5, 0, 131), + [1627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 5, 0, 131), + [1629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 5, 0, 132), + [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 5, 0, 132), + [1633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 5, 0, 130), + [1635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 5, 0, 130), + [1637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 133), + [1639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 133), + [1641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 134), + [1643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 134), + [1645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 135), + [1647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 135), + [1649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 136), + [1651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 136), + [1653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 149), + [1655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 149), + [1657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 150), + [1659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 150), + [1661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 18), + [1663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 18), + [1665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 152), + [1667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 152), + [1669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 153), + [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 153), + [1673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 154), + [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 154), + [1677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 157), + [1679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 157), + [1681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 87), + [1683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 87), + [1685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 158), + [1687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 158), + [1689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 0), + [1691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 0), + [1693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 130), + [1695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 130), + [1697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 159), + [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 159), + [1701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 160), + [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 160), + [1705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 161), + [1707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 161), + [1709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 60), + [1711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 60), + [1713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 163), + [1715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 163), + [1717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 164), + [1719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 164), + [1721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 165), + [1723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 165), + [1725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 166), + [1727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 166), + [1729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 167), + [1731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 167), + [1733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 168), + [1735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 168), + [1737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 179), + [1739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 179), + [1741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 180), + [1743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 180), + [1745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 181), + [1747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 181), + [1749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 182), + [1751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 182), + [1753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 183), + [1755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 183), + [1757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 185), + [1759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 185), + [1761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 87), + [1763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 87), + [1765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 186), + [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 186), + [1769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 130), + [1771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 130), + [1773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 187), + [1775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 187), + [1777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 0), + [1779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 0), + [1781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 160), + [1783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 160), + [1785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 188), + [1787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 188), + [1789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 161), + [1791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 161), + [1793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 189), + [1795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 189), + [1797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 190), + [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 190), + [1801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 191), + [1803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 191), + [1805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 192), + [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 192), + [1809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 60), + [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 60), + [1813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 194), + [1815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 194), + [1817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 195), + [1819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 195), + [1821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 196), + [1823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 196), + [1825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 207), + [1827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 207), + [1829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 208), + [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 208), + [1833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 209), + [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 209), + [1837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 210), + [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 210), + [1841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 211), + [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 211), + [1845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 212), + [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 212), + [1849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 214), + [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 214), + [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 215), + [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 215), + [1857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 130), + [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 130), + [1861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 216), + [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 216), + [1865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 160), + [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 160), + [1869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 217), + [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 217), + [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 87), + [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 87), + [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 161), + [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 161), + [1881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 218), + [1883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 218), + [1885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 0), + [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 0), + [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 190), + [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 190), + [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 219), + [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 219), + [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 220), + [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 220), + [1901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 221), + [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 221), + [1905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 222), + [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 222), + [1909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 223), + [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 223), + [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 224), + [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 224), + [1917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 230), + [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 230), + [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 231), + [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 231), + [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 232), + [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 232), + [1929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 233), + [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 233), + [1933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 235), + [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 235), + [1937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 236), + [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 236), + [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), + [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), + [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [1955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3305), + [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), + [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5696), + [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), + [1969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 160), + [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 160), + [1973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 237), + [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 237), + [1977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 238), + [1979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 238), + [1981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 161), + [1983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 161), + [1985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 239), + [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 239), + [1989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 190), + [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 190), + [1993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 240), + [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 240), + [1997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 130), + [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 130), + [2001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 241), + [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 241), + [2005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 242), + [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 242), + [2009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 243), + [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 243), + [2013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 244), + [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 244), + [2017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 245), + [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 245), + [2021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 246), + [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 246), + [2025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 11, 0, 250), + [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 11, 0, 250), + [2029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 10, 0, 252), + [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 10, 0, 252), + [2033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 10, 0, 253), + [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 10, 0, 253), + [2037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 10, 0, 254), + [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 10, 0, 254), + [2041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 10, 0, 190), + [2043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 10, 0, 190), + [2045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 10, 0, 255), + [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 10, 0, 255), + [2049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 11, 0, 256), + [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 11, 0, 256), + [2053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 11, 0, 257), + [2055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 11, 0, 257), + [2057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 11, 0, 259), + [2059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 11, 0, 259), + [2061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 11, 0, 262), + [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 11, 0, 262), + [2065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 12, 0, 263), + [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 12, 0, 263), + [2069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_block, 2, 0, 0), + [2071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_block, 2, 0, 0), + [2073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 2, 0, 0), + [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 2, 0, 0), + [2077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_def, 2, 0, 0), + [2079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_def, 2, 0, 0), + [2081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_suite, 1, 0, 56), + [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_suite, 1, 0, 56), + [2085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_suite, 1, 0, 0), + [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_suite, 1, 0, 0), + [2089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_block, 3, 0, 0), + [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_block, 3, 0, 0), + [2093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 3, 0, 0), + [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct, 3, 0, 0), + [2097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 3, 0, 58), + [2099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 3, 0, 58), + [2101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 3, 0, 0), + [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 3, 0, 0), + [2105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_def, 3, 0, 0), + [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_def, 3, 0, 0), + [2109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 2, 0, 0), + [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 2, 0, 0), + [2113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_block, 4, 0, 0), + [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_block, 4, 0, 0), + [2117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_suite, 1, 0, 56), + [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_suite, 1, 0, 56), + [2121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_suite, 1, 0, 0), + [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_suite, 1, 0, 0), + [2125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 4, 0, 0), + [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct, 4, 0, 0), + [2129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 4, 0, 87), + [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct, 4, 0, 87), + [2133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 4, 0, 0), + [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 4, 0, 0), + [2137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 4, 0, 88), + [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 4, 0, 88), + [2141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_def, 4, 0, 0), + [2143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_def, 4, 0, 0), + [2145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 3, 0, 0), + [2147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 3, 0, 0), + [2149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 3, 0, 58), + [2151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 3, 0, 58), + [2153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_block, 5, 0, 0), + [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_block, 5, 0, 0), + [2157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_suite, 3, 0, 0), + [2159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_suite, 3, 0, 0), + [2161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_suite, 2, 0, 0), + [2163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_suite, 2, 0, 0), + [2165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 5, 0, 87), + [2167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct, 5, 0, 87), + [2169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 5, 0, 0), + [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 5, 0, 0), + [2173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 5, 0, 129), + [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 5, 0, 129), + [2177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fused, 5, 0, 0), + [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fused, 5, 0, 0), + [2181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_def, 5, 0, 0), + [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_def, 5, 0, 0), + [2185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 4, 0, 88), + [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 4, 0, 88), + [2189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 4, 0, 0), + [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 4, 0, 0), + [2193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 5, 0, 0), + [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct, 5, 0, 0), + [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 5, 0, 130), + [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct, 5, 0, 130), + [2201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_block, 6, 0, 0), + [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_block, 6, 0, 0), + [2205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_suite, 3, 0, 0), + [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_suite, 3, 0, 0), + [2209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 6, 0, 0), + [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 6, 0, 0), + [2213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 6, 0, 156), + [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 6, 0, 156), + [2217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fused, 6, 0, 0), + [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fused, 6, 0, 0), + [2221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_def, 6, 0, 0), + [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_def, 6, 0, 0), + [2225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 5, 0, 0), + [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 5, 0, 0), + [2229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 5, 0, 129), + [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 5, 0, 129), + [2233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 6, 0, 130), + [2235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct, 6, 0, 130), + [2237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_block, 7, 0, 0), + [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_block, 7, 0, 0), + [2241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 7, 0, 0), + [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 7, 0, 0), + [2245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 7, 0, 184), + [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 7, 0, 184), + [2249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 6, 0, 0), + [2251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 6, 0, 0), + [2253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 6, 0, 156), + [2255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 6, 0, 156), + [2257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_def, 7, 0, 0), + [2259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_def, 7, 0, 0), + [2261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_block, 8, 0, 0), + [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_block, 8, 0, 0), + [2265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 8, 0, 213), + [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 8, 0, 213), + [2269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 8, 0, 0), + [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 8, 0, 0), + [2273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 7, 0, 0), + [2275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 7, 0, 0), + [2277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 7, 0, 184), + [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 7, 0, 184), + [2281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 9, 0, 0), + [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 9, 0, 0), + [2285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 9, 0, 234), + [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 9, 0, 234), + [2289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 8, 0, 0), + [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 8, 0, 0), + [2293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 10, 0, 251), + [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 10, 0, 251), + [2297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 10, 0, 0), + [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 10, 0, 0), + [2301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 11, 0, 0), + [2303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 11, 0, 0), + [2305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 11, 0, 261), + [2307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 11, 0, 261), + [2309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 12, 0, 0), + [2311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 12, 0, 0), + [2313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pass_statement, 1, 0, 0), + [2315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pass_statement, 1, 0, 0), + [2317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctypedef_statement, 2, 0, 0), + [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [2321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctypedef_statement, 2, 0, 0), + [2323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 3, 0, 18), + [2325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 3, 0, 18), + [2327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 2, 0, 0), + [2329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 2, 0, 0), + [2331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctypedef_statement, 3, 0, 0), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [2335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctypedef_statement, 3, 0, 0), + [2337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 50), + [2339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 50), + [2341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 18), + [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 18), + [2345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 3, 0, 0), + [2347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 3, 0, 0), + [2349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 60), + [2351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 60), + [2353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 80), + [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 80), + [2357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 124), + [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 124), + [2361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cppclass, 4, 0, 0), + [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cppclass, 4, 0, 0), + [2365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cppclass_suite, 2, 0, 0), + [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cppclass_suite, 2, 0, 0), [2369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cppclass, 5, 0, 0), [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cppclass, 5, 0, 0), - [2373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cppclass_suite, 3, 0, 0), - [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cppclass_suite, 3, 0, 0), - [2377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cppclass, 3, 0, 0), - [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cppclass, 3, 0, 0), - [2381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cppclass, 6, 0, 0), - [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cppclass, 6, 0, 0), - [2385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cppclass_suite, 2, 0, 0), - [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cppclass_suite, 2, 0, 0), - [2389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctypedef_statement, 4, 0, 0), - [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctypedef_statement, 4, 0, 0), - [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cppclass, 4, 0, 0), - [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cppclass, 4, 0, 0), - [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [2403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), - [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [2413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3261), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), - [2421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5677), - [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), - [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), - [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), - [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), - [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3281), - [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), - [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), - [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3270), - [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), - [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), - [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), - [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), - [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), - [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), - [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), - [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5680), - [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), - [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), - [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [2481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), - [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), - [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [2491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), - [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5675), - [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), - [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), - [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), - [2511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), - [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [2517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), - [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [2523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), - [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), - [2527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), - [2529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [2531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [2533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), - [2535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), - [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5530), - [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), - [2543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), - [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), - [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), - [2553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), - [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), - [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), - [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5661), - [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5548), - [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5513), - [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5511), - [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), - [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5604), - [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), - [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), - [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5486), - [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), - [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), - [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5625), - [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), - [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), - [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), - [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [2627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), - [2629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), - [2631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), - [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5560), - [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), - [2637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), - [2641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), - [2643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [2645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), - [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), - [2649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), - [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [2655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [2659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), - [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), - [2663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), - [2665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), - [2667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [2669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3267), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), - [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4401), - [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4159), - [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), - [2679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), - [2681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), - [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5508), - [2685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), - [2687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), - [2689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3230), - [2691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 48), - [2693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 48), - [2695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5608), - [2697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), - [2699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5497), - [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [2703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3085), - [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), - [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [2711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3202), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [2717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), - [2719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), - [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [2725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), - [2727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), - [2729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [2731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), - [2733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), - [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), - [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [2739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), - [2741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), - [2743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), - [2745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), - [2747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 2, 0, 0), - [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [2751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), - [2753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), - [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [2757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [2761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), - [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [2765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 3, 0, 0), - [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [2769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5673), - [2771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), - [2773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5626), - [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [2777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 77), - [2779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 77), - [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4992), - [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), - [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), - [2789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), - [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [2793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), - [2795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), - [2797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), - [2799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 1, 0, 0), - [2801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [2803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), - [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [2807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), - [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), - [2811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), - [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), - [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), - [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), - [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), - [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), - [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), - [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), - [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), - [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), - [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), - [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), - [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), - [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), - [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), - [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), - [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), - [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), - [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), - [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), - [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), - [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [2929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 3, 0, 0), - [2931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), - [2933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), - [2935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), - [2937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 103), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [2941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 5, 0, 103), - [2943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), - [2945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2, 0, 0), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [2949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 7, 0, 170), - [2951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 7, 0, 170), - [2953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2674), - [2955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [2959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), - [2961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), - [2963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [2969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 42), - [2971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 42), - [2973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), - [2975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 68), - [2977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 68), - [2979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [2983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), - [2985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [2989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), - [2991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [2995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [2997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 67), - [2999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 67), - [3001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 138), - [3003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 138), - [3005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [3011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2466), - [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [3015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [3017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 139), - [3019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 139), - [3021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), - [3023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), - [3025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1336), - [3028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), - [3030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), - [3032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1792), - [3035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1329), - [3038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1393), - [3041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 107), - [3043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 107), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [3051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 3, 0, 0), - [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), - [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [3077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2, 0, 0), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), - [3085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 105), - [3087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 105), - [3089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 105), SHIFT_REPEAT(1470), - [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [3094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 1, 0, 0), - [3096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), - [3098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 105), SHIFT_REPEAT(1793), - [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [3103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [3113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 5, 0, 0), - [3115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 5, 0, 0), - [3117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 5, 0, 0), - [3119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 5, 0, 0), - [3121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 6, 0, 156), - [3123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 6, 0, 156), - [3125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 6, 0, 156), - [3127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 6, 0, 156), - [3129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 0), - [3131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 0), - [3133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 88), - [3135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 88), - [3137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 4, 0, 88), - [3139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 4, 0, 88), - [3141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_memory_view_index, 1, 0, 0), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [3157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 7, 0, 0), - [3159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 7, 0, 0), - [3161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 7, 0, 0), - [3163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 7, 0, 0), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [3171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 1, 0, 0), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [3175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2, 0, 0), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [3185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 3, 0, 58), - [3187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 3, 0, 58), - [3189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 3, 0, 0), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), - [3203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1, 0, 0), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), - [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), - [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [3239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2, 0, 0), - [3241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, -1, 16), - [3243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 174), - [3245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 174), - [3247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 4, 0, 46), - [3249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 4, 0, 46), - [3251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, 0, 47), - [3253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, 0, 47), - [3255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 111), - [3257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 111), - [3259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 115), - [3261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 115), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [3265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 77), - [3267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 77), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [3271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, 0, 15), - [3273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, 0, 71), - [3275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, 0, 71), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5436), - [3279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 5, 0, 68), - [3281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 5, 0, 68), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [3285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 4, 0, 42), - [3287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, 0, 42), - [3289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, 0, 74), - [3291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, 0, 74), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [3295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 76), - [3297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 76), - [3299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 65), - [3301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 65), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [3305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 142), - [3307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 142), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5445), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [3313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 146), - [3315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 146), - [3317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 48), - [3319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 48), - [3321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3, 0, 0), - [3323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [3327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, 0, 0), - [3329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 0), - [3331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, -1, 6), - [3333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, 0, 0), - [3335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 3, 0, 0), - [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [3339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 2, 0, 0), - [3341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_memory_view_index, 3, 0, 0), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [3345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_memory_view_index, 2, 0, 0), - [3347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 5), - [3349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 5), - [3351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, 0, 48), - [3353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, 0, 48), - [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4869), - [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [3361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 4, 0, 77), - [3363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 4, 0, 77), - [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), - [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4875), - [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5107), - [3381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 69), - [3383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 69), - [3385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 173), - [3387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 173), - [3389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 175), - [3391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 175), - [3393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 176), - [3395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 176), - [3397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 177), - [3399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 177), - [3401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 178), - [3403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 178), - [3405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 179), - [3407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 179), - [3409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 1, 0, 0), - [3411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 1, 0, 0), - [3413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, 0, 44), - [3415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, 0, 44), - [3417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 204), - [3419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 204), - [3421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 205), - [3423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 205), - [3425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 206), - [3427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 206), - [3429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 140), - [3431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 140), - [3433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 207), - [3435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 207), - [3437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cdef_statement, 2, 0, 0), - [3439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cdef_statement, 2, 0, 0), - [3441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 141), - [3443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 141), - [3445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 4, 0, 49), - [3447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 4, 0, 49), - [3449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 143), - [3451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 143), - [3453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 144), - [3455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 144), - [3457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 145), - [3459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 145), - [3461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 4, 0, 0), - [3463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 4, 0, 0), - [3465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 7, 0, 77), - [3467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 7, 0, 77), - [3469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 147), - [3471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 147), - [3473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 230), - [3475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 230), - [3477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 148), - [3479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 148), - [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [3485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), - [3487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), - [3489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3279), - [3491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cdef_statement, 7, 0, 157), - [3493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cdef_statement, 7, 0, 157), - [3495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), - [3497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), - [3499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3283), - [3501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cdef_statement, 7, 0, 0), - [3503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cdef_statement, 7, 0, 0), - [3505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 4, 0, 49), - [3507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 4, 0, 49), - [3509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorated_definition, 2, 0, 13), - [3511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorated_definition, 2, 0, 13), - [3513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), - [3515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), - [3517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3285), - [3519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), - [3521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), - [3523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), - [3525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 66), - [3527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 66), - [3529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 2, 0, 0), - [3531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 2, 0, 0), - [3533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 70), - [3535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 70), - [3537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), - [3539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), - [3541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), - [3543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 72), - [3545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 72), - [3547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), - [3549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), - [3551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), - [3553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, 0, 73), - [3555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, 0, 73), - [3557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 75), - [3559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 75), - [3561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [3563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2661), - [3565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), - [3567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), - [3569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), - [3571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [3573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), - [3575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), - [3577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [3579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 78), - [3581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 78), - [3583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 79), - [3585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 79), - [3587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 5, 0, 78), - [3589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 5, 0, 78), - [3591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_def_statement, 5, 0, 18), - [3593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_def_statement, 5, 0, 18), - [3595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cdef_statement, 5, 0, 0), - [3597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cdef_statement, 5, 0, 0), - [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [3601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_run_directive, 3, 0, 0), - [3603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_run_directive, 3, 0, 0), - [3605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), - [3607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), - [3609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3282), - [3611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), - [3613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), - [3615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), - [3617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), - [3619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), - [3621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [3623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 104), - [3625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 104), - [3627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 106), - [3629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 106), - [3631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 3, 0, 108), - [3633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 3, 0, 108), - [3635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 6, 0, 109), - [3637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 6, 0, 109), - [3639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 110), - [3641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 110), - [3643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 6, 0, 112), - [3645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 6, 0, 112), - [3647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 113), - [3649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 113), - [3651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 114), - [3653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 114), - [3655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 116), - [3657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 116), - [3659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), - [3661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), - [3663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 3, 0, 58), - [3665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 3, 0, 58), - [3667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 48), - [3669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 48), - [3671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), - [3673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), - [3675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 117), - [3677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 117), - [3679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 118), - [3681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 118), - [3683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), - [3685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), - [3687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cdef_statement, 6, 0, 5), - [3689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cdef_statement, 6, 0, 5), - [3691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cdef_statement, 6, 0, 0), - [3693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cdef_statement, 6, 0, 0), - [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [3697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storageclass, 1, 0, 0), - [3699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), - [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5504), - [3703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 1, 0, 10), - [3705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 0), - [3708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3528), - [3710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), - [3712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_expression_lhs, 1, 0, 0), - [3714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 1, 0, 10), - [3716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 0), - [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [3720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), - [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), - [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), - [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), - [3728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3866), - [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), - [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5616), - [3734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3117), - [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [3740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), - [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [3744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), - [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), - [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3794), - [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), - [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5473), - [3754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5015), - [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), - [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5685), - [3764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), - [3766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 2, 0, 0), - [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [3772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), - [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [3776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), - [3778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 3, 0, 0), - [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5620), - [3786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), - [3788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_value, 2, 0, 0), - [3790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_value, 2, 0, 0), - [3792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), - [3794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), - [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), - [3798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), - [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [3804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), - [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [3808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2, 0, 0), - [3810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), - [3812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), - [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [3816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 3, 0, 0), - [3818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), - [3820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargslist, 5, 0, 0), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [3824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), - [3826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [3830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargslist, 3, 0, 0), - [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [3836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 0), - [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [3841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3135), - [3843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_separator, 1, 0, 0), - [3845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3132), - [3847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), - [3849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3104), + [2373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cppclass, 3, 0, 0), + [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cppclass, 3, 0, 0), + [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [2379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), + [2381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2441), + [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), + [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), + [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [2389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctype_declaration, 1, 0, 0), + [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctype_declaration, 1, 0, 0), + [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), + [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [2403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cppclass_suite, 3, 0, 0), + [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cppclass_suite, 3, 0, 0), + [2407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cppclass, 6, 0, 0), + [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cppclass, 6, 0, 0), + [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), + [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), + [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3302), + [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), + [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5695), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), + [2439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctypedef_statement, 4, 0, 0), + [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctypedef_statement, 4, 0, 0), + [2443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cdef_type_declaration, 1, 0, 0), + [2445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cdef_type_declaration, 1, 0, 0), + [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), + [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), + [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), + [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), + [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3310), + [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), + [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [2481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5698), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), + [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [2491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), + [2493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), + [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3299), + [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [2509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [2511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5693), + [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), + [2515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [2521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), + [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5629), + [2527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [2529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), + [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [2535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), + [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), + [2539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), + [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), + [2543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [2545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3303), + [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), + [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), + [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [2561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), + [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), + [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), + [2567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [2569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3300), + [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5508), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5417), + [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5542), + [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5739), + [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), + [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), + [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5453), + [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5725), + [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5589), + [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), + [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), + [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [2637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), + [2639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), + [2641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5608), + [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4414), + [2647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), + [2651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), + [2653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [2655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3311), + [2657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), + [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [2663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [2667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), + [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), + [2671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), + [2673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [2675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [2677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), + [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4401), + [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), + [2689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 77), + [2691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 77), + [2693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5646), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [2697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5439), + [2699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), + [2701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), + [2703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), + [2707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), + [2709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), + [2711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), + [2713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), + [2715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 2, 0, 0), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [2719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), + [2721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2438), + [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [2725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [2727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 3, 0, 0), + [2729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3086), + [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4761), + [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [2737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3238), + [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), + [2743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), + [2745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), + [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [2751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [2753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), + [2755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [2757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), + [2759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5485), + [2763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), + [2765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), + [2767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3341), + [2769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 48), + [2771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 48), + [2773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5706), + [2775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), + [2777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5644), + [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [2783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), + [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [2787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), + [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4920), + [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [2815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), + [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [2819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), + [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [2823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), + [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), + [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), + [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), + [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), + [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), + [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), + [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), + [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [2923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), + [2925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), + [2927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), + [2929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 1, 0, 0), + [2931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [2935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2514), + [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [2941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 3, 0, 0), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [2945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 139), + [2947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 139), + [2949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), + [2951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [2957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [2961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [2963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 103), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [2967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 5, 0, 103), + [2969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), + [2971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 7, 0, 169), + [2973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 7, 0, 169), + [2975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [2979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), + [2981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [2985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [2987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2, 0, 0), + [2989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), + [2991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), + [2993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1539), + [2996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 42), + [2998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 42), + [3000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), + [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), + [3004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), + [3006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1309), + [3009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [3013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 138), + [3015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 138), + [3017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), + [3019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 107), + [3021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 107), + [3023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 67), + [3025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 67), + [3027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 68), + [3029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 68), + [3031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1338), + [3034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1804), + [3037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2617), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), + [3047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), + [3049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3313), + [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), + [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [3055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2, 0, 0), + [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), + [3059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 105), + [3061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 105), + [3063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 105), SHIFT_REPEAT(1805), + [3066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 105), SHIFT_REPEAT(1693), + [3069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 1, 0, 0), + [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [3079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 3, 0, 0), + [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), + [3091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [3121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 3, 0, 58), + [3123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 3, 0, 58), + [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [3127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 6, 0, 156), + [3129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 6, 0, 156), + [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [3145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 5, 0, 0), + [3147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 5, 0, 0), + [3149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_memory_view_index, 1, 0, 0), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [3155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 7, 0, 0), + [3157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 7, 0, 0), + [3159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 7, 0, 0), + [3161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 7, 0, 0), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [3167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 0), + [3169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 0), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [3175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 5, 0, 0), + [3177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 5, 0, 0), + [3179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1, 0, 0), + [3181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 88), + [3183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 88), + [3185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 4, 0, 88), + [3187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 4, 0, 88), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [3193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 1, 0, 0), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [3197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 6, 0, 156), + [3199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 6, 0, 156), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), + [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), + [3209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2, 0, 0), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), + [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [3235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2, 0, 0), + [3237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 3, 0, 0), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [3247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_memory_view_index, 2, 0, 0), + [3249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 0), + [3251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, -1, 6), + [3253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, 0, 0), + [3255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, 0, 42), + [3257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 4, 0, 42), + [3259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 173), + [3261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 173), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [3265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 3, 0, 0), + [3267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 142), + [3269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 142), + [3271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 146), + [3273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 146), + [3275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 5, 0, 68), + [3277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 5, 0, 68), + [3279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 2, 0, 0), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [3285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, 0, 0), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5719), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [3291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, 0, 15), + [3293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, -1, 16), + [3295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 5), + [3297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 5), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [3301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 4, 0, 46), + [3303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 4, 0, 46), + [3305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, 0, 47), + [3307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, 0, 47), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [3311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 65), + [3313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 65), + [3315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [3317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, 0, 71), + [3319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, 0, 71), + [3321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, 0, 74), + [3323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, 0, 74), + [3325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 76), + [3327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 76), + [3329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 48), + [3331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 48), + [3333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 115), + [3335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 115), + [3337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 77), + [3339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 77), + [3341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 111), + [3343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 111), + [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5399), + [3351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3, 0, 0), + [3353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_memory_view_index, 3, 0, 0), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [3363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 4, 0, 77), + [3365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 4, 0, 77), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4798), + [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4928), + [3371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, 0, 48), + [3373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, 0, 48), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5086), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4917), + [3385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), + [3387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), + [3389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3320), + [3391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorated_definition, 2, 0, 13), + [3393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorated_definition, 2, 0, 13), + [3395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), + [3397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), + [3399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), + [3401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 78), + [3403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 78), + [3405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), + [3407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), + [3409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), + [3411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), + [3413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), + [3415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), + [3417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 79), + [3419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 79), + [3421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cdef_statement, 2, 0, 0), + [3423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cdef_statement, 2, 0, 0), + [3425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [3427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), + [3429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3323), + [3431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [3433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), + [3435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3324), + [3437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), + [3439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), + [3441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [3443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), + [3445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), + [3447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3315), + [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [3451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 1, 0, 0), + [3453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 1, 0, 0), + [3455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, 0, 44), + [3457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, 0, 44), + [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [3461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 4, 0, 49), + [3463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 4, 0, 49), + [3465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cdef_definition_block, 6, 0, 5), + [3467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cdef_definition_block, 6, 0, 5), + [3469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cdef_definition_block, 6, 0, 0), + [3471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cdef_definition_block, 6, 0, 0), + [3473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 4, 0, 49), + [3475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 4, 0, 49), + [3477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 66), + [3479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 66), + [3481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 69), + [3483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 69), + [3485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 2, 0, 0), + [3487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 2, 0, 0), + [3489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 70), + [3491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 70), + [3493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 72), + [3495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 72), + [3497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, 0, 73), + [3499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, 0, 73), + [3501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 75), + [3503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 75), + [3505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 5, 0, 78), + [3507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 5, 0, 78), + [3509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_def_statement, 5, 0, 18), + [3511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_def_statement, 5, 0, 18), + [3513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cdef_definition_block, 4, 0, 0), + [3515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cdef_definition_block, 4, 0, 0), + [3517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 104), + [3519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 104), + [3521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 106), + [3523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 106), + [3525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 3, 0, 108), + [3527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 3, 0, 108), + [3529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 6, 0, 109), + [3531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 6, 0, 109), + [3533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 110), + [3535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 110), + [3537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 6, 0, 112), + [3539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 6, 0, 112), + [3541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 113), + [3543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 113), + [3545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 114), + [3547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 114), + [3549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 116), + [3551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 116), + [3553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 3, 0, 58), + [3555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 3, 0, 58), + [3557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 48), + [3559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 48), + [3561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 117), + [3563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 117), + [3565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 118), + [3567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 118), + [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [3571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cdef_definition_block, 5, 0, 1), + [3573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cdef_definition_block, 5, 0, 1), + [3575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cdef_definition_block, 5, 0, 0), + [3577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cdef_definition_block, 5, 0, 0), + [3579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 172), + [3581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 172), + [3583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 174), + [3585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 174), + [3587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 175), + [3589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 175), + [3591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 176), + [3593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 176), + [3595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 177), + [3597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 177), + [3599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 140), + [3601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 140), + [3603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 141), + [3605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 141), + [3607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 143), + [3609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 143), + [3611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 144), + [3613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 144), + [3615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 145), + [3617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 145), + [3619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 4, 0, 0), + [3621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 4, 0, 0), + [3623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 7, 0, 77), + [3625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 7, 0, 77), + [3627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 147), + [3629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 147), + [3631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 148), + [3633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 148), + [3635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), + [3637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), + [3639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), + [3641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), + [3643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), + [3645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3319), + [3647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), + [3649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), + [3651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [3653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 178), + [3655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 178), + [3657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), + [3659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), + [3661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [3663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 203), + [3665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 203), + [3667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 204), + [3669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 204), + [3671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 205), + [3673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 205), + [3675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 206), + [3677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 206), + [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [3681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 229), + [3683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 229), + [3685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), + [3687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), + [3689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), + [3691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), + [3693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), + [3695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), + [3697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_run_directive, 3, 0, 0), + [3699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_run_directive, 3, 0, 0), + [3701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storageclass, 1, 0, 0), + [3703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), + [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5553), + [3707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 1, 0, 10), + [3709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 0), + [3712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3561), + [3714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), + [3716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_expression_lhs, 1, 0, 0), + [3718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 1, 0, 10), + [3720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 0), + [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [3724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), + [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), + [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), + [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), + [3732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3861), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), + [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5744), + [3738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [3744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3105), + [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), + [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), + [3752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3803), + [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5519), + [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5703), + [3764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4684), + [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), + [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), + [3774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3183), + [3776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 3, 0, 0), + [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [3782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3179), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [3786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), + [3788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 2, 0, 0), + [3790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), + [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [3794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2, 0, 0), + [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3214), + [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [3806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 3, 0, 0), + [3808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [3810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), + [3812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), + [3814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_value, 2, 0, 0), + [3816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_value, 2, 0, 0), + [3818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [3820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), + [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [3824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2691), + [3826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargslist, 3, 0, 0), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [3830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2648), + [3832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [3836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargslist, 5, 0, 0), + [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), + [3840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 0), + [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [3845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__typedargslist_repeat1, 6, 0, 0), + [3847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), + [3849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_separator, 1, 0, 0), [3851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), - [3853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), - [3855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__typedargslist_repeat1, 4, 0, 0), - [3857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__typedargslist_repeat1, 6, 0, 0), - [3859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3077), - [3861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 94), - [3863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 94), - [3865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, 0, 0), - [3867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_list_splat_pattern, 2, 0, 0), - [3870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_list_splat_pattern, 2, 0, 0), - [3873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, 0, 0), - [3875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_type, 2, 0, 0), - [3877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splat_type, 2, 0, 0), - [3879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 2), - [3881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 2), - [3884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 2), - [3886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, 0, 59), - [3888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, 0, 59), - [3890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2, 0, 0), - [3892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), REDUCE(sym_tuple, 2, 0, 0), - [3895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2, 0, 0), - [3897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2, 0, 0), - [3899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), + [3853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), + [3855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), + [3857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), + [3859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), + [3861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__typedargslist_repeat1, 4, 0, 0), + [3863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2, 0, 0), + [3865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), REDUCE(sym_list, 2, 0, 0), + [3868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2, 0, 0), + [3870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2, 0, 0), + [3872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), + [3874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 94), + [3876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 94), + [3878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2, 0, 0), + [3880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), REDUCE(sym_tuple, 2, 0, 0), + [3883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2, 0, 0), + [3885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), + [3887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2, 0, 0), + [3889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3092), + [3891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, 0, 0), + [3893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_list_splat_pattern, 2, 0, 0), + [3896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_list_splat_pattern, 2, 0, 0), + [3899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, 0, 0), [3901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, 0, 94), [3903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, 0, 94), - [3905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 29), - [3907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, 0, 29), - [3909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2, 0, 0), - [3911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), REDUCE(sym_list, 2, 0, 0), - [3914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2, 0, 0), - [3916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2, 0, 0), - [3918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), - [3920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 59), - [3922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 59), - [3924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), - [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), - [3928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [3930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), - [3932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), - [3934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), - [3936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), - [3938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), - [3940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [3942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), - [3944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), - [3946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [3948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2662), - [3950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), - [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), - [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), - [3958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), - [3960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), - [3962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), - [3964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), - [3966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [3968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), - [3970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), - [3972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), - [3974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), - [3976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), - [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), - [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), - [3982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), - [3984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), - [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), - [3988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [3990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), - [3992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), - [3994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3112), - [3996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), - [3998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), - [4000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), - [4002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [4004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), - [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), - [4008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2927), - [4010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), - [4012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3526), - [4014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3188), - [4016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3410), - [4018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), - [4020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), - [4022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5428), - [4024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4298), - [4026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5429), - [4028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5718), - [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), - [4032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3446), - [4035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3293), - [4038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(5482), - [4041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(2777), - [4044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(2071), - [4047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3526), - [4050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3188), - [4053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3410), - [4056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3351), - [4059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3240), - [4062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(2175), - [4065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(5428), - [4068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(4298), - [4071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(5429), - [4074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(5718), - [4077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), - [4079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3660), - [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [4084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3161), - [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5690), - [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5583), - [4090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3043), - [4092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), - [4094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), - [4096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), - [4098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), - [4100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5551), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5555), - [4104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), - [4106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5394), - [4108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4408), - [4110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5522), - [4112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5623), - [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [4118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3195), - [4121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5420), - [4124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2777), - [4127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2780), - [4130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3438), - [4133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1834), - [4136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3130), - [4139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3321), - [4142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3310), - [4145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3411), - [4148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2215), - [4151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5535), - [4154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4301), - [4157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5536), - [4160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5692), - [4163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cdef_statement_repeat1, 2, 0, 0), - [4165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), - [4167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5420), - [4169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), - [4171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), - [4173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5535), - [4175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4301), - [4177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5536), - [4179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5692), - [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [4201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5569), - [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [4207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), - [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [4215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), - [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5714), - [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [4233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), - [4235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_operator, 2, 0, 12), - [4237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operator, 2, 0, 12), - [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5689), - [4241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3516), - [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), - [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), - [4249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2, 0, 0), - [4251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2, 0, 0), - [4253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), - [4255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), - [4257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1990), - [4260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(5714), - [4263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1889), - [4266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1990), - [4269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), - [4271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), - [4273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3675), - [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5701), - [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [4280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), - [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [4302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), - [4304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, 0, 27), - [4306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, 0, 27), - [4308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), - [4310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 30), - [4312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 30), - [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5506), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [4318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), - [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [4340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), - [4342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, 0, 9), - [4344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, 0, 9), - [4346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await, 2, 0, 0), - [4348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await, 2, 0, 0), + [3905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, 0, 59), + [3907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, 0, 59), + [3909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 29), + [3911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, 0, 29), + [3913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 2), + [3915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 2), + [3918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 2), + [3920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_type, 2, 0, 0), + [3922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splat_type, 2, 0, 0), + [3924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 59), + [3926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 59), + [3928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), + [3930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), + [3932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [3934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), + [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), + [3938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3037), + [3940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), + [3942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), + [3944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), + [3946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3409), + [3948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), + [3950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), + [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5445), + [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4418), + [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5446), + [3958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5736), + [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), + [3962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), + [3964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), + [3966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [3968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3161), + [3970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5708), + [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5600), + [3974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3014), + [3976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), + [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), + [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), + [3982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), + [3984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), + [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [3988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), + [3990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), + [3992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), + [3994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), + [3996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), + [3998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), + [4000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [4002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), + [4004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), + [4006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [4008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), + [4010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), + [4012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), + [4014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136), + [4016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3135), + [4018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), + [4020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), + [4022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), + [4024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), + [4026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), + [4028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), + [4030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), + [4032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [4034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), + [4036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3123), + [4038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), + [4040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), + [4042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), + [4044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), + [4046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [4048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), + [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), + [4052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5416), + [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5422), + [4056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2810), + [4058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5609), + [4060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4413), + [4062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5641), + [4064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5672), + [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), + [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [4072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3460), + [4075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3326), + [4078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(5503), + [4081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(2808), + [4084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(2103), + [4087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3552), + [4090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3198), + [4093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3409), + [4096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3404), + [4099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3286), + [4102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(2194), + [4105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(5445), + [4108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(4418), + [4111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(5446), + [4114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(5736), + [4117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), + [4119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3678), + [4122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), + [4124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5437), + [4126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2798), + [4128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), + [4130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5546), + [4132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4449), + [4134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5551), + [4136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5710), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [4142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3186), + [4145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(5437), + [4148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2808), + [4151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2798), + [4154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3416), + [4157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1843), + [4160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3140), + [4163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3368), + [4166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3325), + [4169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3408), + [4172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2233), + [4175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(5546), + [4178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4449), + [4181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(5551), + [4184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(5710), + [4187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [4205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5650), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [4211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [4219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5543), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [4237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), + [4239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), + [4241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), + [4243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2012), + [4246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(5543), + [4249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1885), + [4252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2012), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5653), + [4257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), + [4265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [4267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [4269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_operator, 2, 0, 12), + [4271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operator, 2, 0, 12), + [4273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [4275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [4277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3684), + [4280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, 0, 27), + [4282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, 0, 27), + [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5496), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [4288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [4310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5441), + [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [4316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [4338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), + [4340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), + [4342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await, 2, 0, 0), + [4344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await, 2, 0, 0), + [4346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, 0, 9), + [4348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, 0, 9), [4350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), [4352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), REDUCE(sym_function_pointer_type, 3, 0, 0), [4355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), REDUCE(sym_function_pointer_type, 3, 0, 0), [4358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), [4360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_pointer_type, 3, 0, 0), - [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5422), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5593), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [4370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), - [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [4392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), - [4394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), - [4396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), - [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5424), - [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [4402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), - [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [4424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), - [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5603), - [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [4430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [4452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), - [4454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), - [4456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), - [4458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [4460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [4462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3645), - [4465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 4, 0, 54), - [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [4469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda, 4, 0, 54), - [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5410), - [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [4481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), - [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [4503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), - [4505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_expression, 4, 0, 39), - [4507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_expression, 4, 0, 39), - [4509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ellipsis, 1, 0, 0), - [4511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ellipsis, 1, 0, 0), - [4513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), - [4515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), - [4517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 0), - [4519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 0), - [4521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 38), - [4523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 38), - [4525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_comprehension, 4, 0, 39), - [4527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_comprehension, 4, 0, 39), - [4529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_comprehension, 4, 0, 39), - [4531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_comprehension, 4, 0, 39), - [4533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 5, 0, 0), - [4535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 5, 0, 0), - [4537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1935), - [4540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1872), - [4543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1935), - [4546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 2, 0, 0), - [4548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 2, 0, 0), - [4550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_operator, 2, 0, 6), - [4552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_operator, 2, 0, 6), - [4554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_operator, 3, 0, 27), - [4556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_operator, 3, 0, 27), - [4558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4, 0, 0), - [4560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4, 0, 0), - [4562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3641), - [4565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_none, 1, 0, 0), - [4567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_none, 1, 0, 0), - [4569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 0), - [4571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, 0, 0), - [4573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), - [4575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), - [4577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_pattern, 3, 0, 28), - [4579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_pattern, 3, 0, 28), - [4581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set, 3, 0, 0), - [4583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set, 3, 0, 0), - [4585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 38), - [4587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 38), - [4589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3, 0, 0), - [4591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3, 0, 0), - [4593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, 0, 11), - [4595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, 0, 11), - [4597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_comprehension, 4, 0, 39), - [4599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_comprehension, 4, 0, 39), - [4601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, 0, 0), - [4603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, 0, 0), - [4605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 3, 0, 22), - [4607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda, 3, 0, 22), - [4609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3, 0, 0), - [4611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3, 0, 0), - [4613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 38), - [4615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 38), - [4617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), - [4619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1534), - [4622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 24), - [4624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, 0, 0), - [4626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, 0, 0), - [4628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 0), - [4630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 0), - [4632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1958), - [4635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1884), - [4638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1958), - [4641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 5, 0, 0), - [4643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 5, 0, 0), - [4645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3, 0, 0), - [4647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3, 0, 0), - [4649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3663), - [4652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3637), - [4655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1922), - [4658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1880), - [4661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1922), - [4664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1899), - [4667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1877), - [4670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1899), - [4673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3670), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5638), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [4680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), - [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [4702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), - [4704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1906), - [4707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1894), - [4710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1906), - [4713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1997), - [4716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1897), - [4719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1997), - [4722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3653), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [4729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), - [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [4737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1605), - [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [4746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3649), - [4749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1982), - [4752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1888), - [4755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1982), - [4758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1612), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [4763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_value, 3, 0, 0), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [4773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1656), - [4776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), - [4778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5684), - [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5517), - [4782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5686), - [4784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), - [4786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5547), - [4788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4300), - [4790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), - [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [4798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1581), - [4801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), - [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [4809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1597), - [4812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), - [4814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5703), - [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5596), - [4818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5543), - [4820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5444), - [4822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4306), - [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [4832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1626), - [4835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [4839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5268), - [4847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3303), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [4859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1619), - [4862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3861), - [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), - [4866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5296), - [4868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), - [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5296), - [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5298), - [4878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4219), - [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [4882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4110), - [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), - [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [4936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_definition_repeat1, 2, 0, 0), - [4938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat1, 2, 0, 0), - [4940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2777), - [4943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3195), - [4946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(2777), - [4949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3438), - [4952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(1834), - [4955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3130), - [4958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3321), - [4961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3310), - [4964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3411), - [4967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(2215), - [4970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(5536), - [4973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [4979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5356), - [4985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), - [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5370), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [4993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3941), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4395), - [4999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5337), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5337), - [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5343), - [5007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4429), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), - [5011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4146), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), - [5015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3934), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), - [5019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5301), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5301), - [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), - [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), - [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5302), - [5029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4398), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [5033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4145), - [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), - [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4633), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), - [5045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), - [5047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 3, 0, 0), - [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4381), - [5051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5272), - [5053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4399), - [5057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 2, 0, 0), - [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4586), - [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), - [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), - [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), - [5067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5292), - [5069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2864), - [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4554), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), - [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), - [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), - [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), - [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), - [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4618), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), - [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), - [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), - [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), - [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), - [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), - [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376), - [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), - [5107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), - [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), - [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), - [5113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), - [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), - [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5644), - [5121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), - [5123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), - [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), - [5127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5223), - [5129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2867), - [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), - [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), - [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), - [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), - [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4331), - [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), - [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), - [5147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storageclass, 1, 0, 0), - [5149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5434), - [5151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), - [5153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5600), - [5155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4322), - [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), - [5159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2823), - [5161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4979), - [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), - [5165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3908), - [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), - [5169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5319), - [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5319), - [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5321), - [5177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4362), - [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), - [5181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4195), - [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), - [5185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), - [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), - [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), - [5191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2810), - [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [5195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5022), - [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), - [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), - [5201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2915), - [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [5205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5062), - [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4448), - [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), - [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), - [5215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3731), - [5217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4927), - [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), - [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), - [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), - [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), - [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), - [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), - [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), - [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), - [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), - [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), - [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), - [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), - [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), - [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), - [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), - [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4336), - [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), - [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), - [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), - [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), - [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), + [4362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 30), + [4364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 30), + [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5704), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [4370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), + [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [4392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), + [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5639), + [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [4398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), + [4400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), + [4402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), + [4404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), + [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5582), + [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [4410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), + [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [4432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5605), + [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [4438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), + [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [4460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), + [4462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_comprehension, 4, 0, 39), + [4464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_comprehension, 4, 0, 39), + [4466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), + [4468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), + [4470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_comprehension, 4, 0, 39), + [4472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_comprehension, 4, 0, 39), + [4474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [4476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [4478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, 0, 0), + [4480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, 0, 0), + [4482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set, 3, 0, 0), + [4484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set, 3, 0, 0), + [4486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 5, 0, 0), + [4488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 5, 0, 0), + [4490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 38), + [4492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 38), + [4494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1973), + [4497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1886), + [4500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1973), + [4503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3, 0, 0), + [4505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3, 0, 0), + [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5690), + [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [4511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [4533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), + [4535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 5, 0, 0), + [4537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 5, 0, 0), + [4539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_expression, 4, 0, 39), + [4541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_expression, 4, 0, 39), + [4543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3, 0, 0), + [4545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3, 0, 0), + [4547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ellipsis, 1, 0, 0), + [4549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ellipsis, 1, 0, 0), + [4551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3663), + [4554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, 0, 0), + [4556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, 0, 0), + [4558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3, 0, 0), + [4560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3, 0, 0), + [4562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_none, 1, 0, 0), + [4564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_none, 1, 0, 0), + [4566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 2, 0, 0), + [4568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 2, 0, 0), + [4570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_operator, 2, 0, 6), + [4572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_operator, 2, 0, 6), + [4574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 3, 0, 22), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [4578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda, 3, 0, 22), + [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [4586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 0), + [4588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 0), + [4590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), + [4592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1445), + [4595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 24), + [4597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_pattern, 3, 0, 28), + [4599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_pattern, 3, 0, 28), + [4601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), + [4603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), + [4605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_operator, 3, 0, 27), + [4607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_operator, 3, 0, 27), + [4609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 0), + [4611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 0), + [4613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 4, 0, 54), + [4615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda, 4, 0, 54), + [4617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 38), + [4619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 38), + [4621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 0), + [4623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, 0, 0), + [4625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_comprehension, 4, 0, 39), + [4627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_comprehension, 4, 0, 39), + [4629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 38), + [4631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 38), + [4633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, 0, 11), + [4635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, 0, 11), + [4637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1928), + [4640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1890), + [4643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1928), + [4646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4, 0, 0), + [4648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4, 0, 0), + [4650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3656), + [4653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3690), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [4658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), + [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [4678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), + [4680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1991), + [4683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1900), + [4686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1991), + [4689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3632), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5638), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [4696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3648), + [4699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1936), + [4702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1892), + [4705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1936), + [4708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2001), + [4711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1901), + [4714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2001), + [4717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1907), + [4720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1897), + [4723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1907), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [4728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3673), + [4731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3710), + [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [4736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1916), + [4739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1889), + [4742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1916), + [4745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [4753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1579), + [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [4764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1586), + [4767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [4775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [4783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1571), + [4786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), + [4788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5721), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5614), + [4792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5567), + [4794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2991), + [4796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5461), + [4798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4452), + [4800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_value, 3, 0, 0), + [4802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3152), + [4804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5568), + [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5566), + [4808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5401), + [4810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5467), + [4812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4383), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [4822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1668), + [4825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1554), + [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [4836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1600), + [4839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3356), + [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [4843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5389), + [4851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [4855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3860), + [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), + [4859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5355), + [4861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), + [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5355), + [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5381), + [4871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4167), + [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), + [4875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4004), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [4895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1593), + [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [4934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3186), + [4937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(2808), + [4940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3416), + [4943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(1843), + [4946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3140), + [4949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3368), + [4952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3325), + [4955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3408), + [4958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(2233), + [4961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(5551), + [4964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), + [4966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_definition_repeat1, 2, 0, 0), + [4968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat1, 2, 0, 0), + [4970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2808), + [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [4983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3254), + [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), + [4989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), + [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5208), + [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [4997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3938), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), + [5001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5273), + [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5273), + [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), + [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), + [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5290), + [5011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4391), + [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), + [5015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4260), + [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), + [5019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3961), + [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), + [5025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5166), + [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5166), + [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5185), + [5033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4374), + [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), + [5037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4244), + [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), + [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), + [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), + [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), + [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), + [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), + [5051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), + [5053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 2, 0, 0), + [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4297), + [5057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5306), + [5059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2852), + [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), + [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), + [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), + [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), + [5069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5284), + [5071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), + [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), + [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), + [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), + [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), + [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), + [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4520), + [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4531), + [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), + [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), + [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4633), + [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4637), + [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), + [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313), + [5099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), + [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), + [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), + [5105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), + [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), + [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5521), + [5113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), + [5115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3187), + [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), + [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), + [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), + [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), + [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), + [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4405), + [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), + [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4631), + [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), + [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), + [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), + [5139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5241), + [5141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2853), + [5143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 3, 0, 0), + [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), + [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), + [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), + [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), + [5153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2891), + [5155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3873), + [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), + [5159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5251), + [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5251), + [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), + [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), + [5167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4355), + [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), + [5171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4190), + [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), + [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), + [5177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), + [5179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5071), + [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), + [5183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5026), + [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), + [5187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), + [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), + [5195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5451), + [5197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), + [5199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5616), + [5201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4419), + [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), + [5205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), + [5207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storageclass, 1, 0, 0), + [5209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5040), + [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), + [5213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3770), + [5215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5132), + [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4617), + [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4396), + [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), + [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), + [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), + [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), + [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), + [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), + [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), + [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), + [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), + [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), + [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), + [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4634), + [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4636), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), + [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4635), + [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), + [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), [5271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), - [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), - [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), - [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [5287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3446), - [5290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3293), - [5293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(2777), - [5296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3526), - [5299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3188), - [5302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3410), - [5305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3351), - [5308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3240), - [5311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), - [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), - [5319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4061), - [5321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4462), - [5323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4284), - [5325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4026), - [5327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4371), - [5329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4209), - [5331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4004), - [5333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4289), - [5335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4372), - [5337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4288), - [5339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4162), - [5341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__is_not, 2, 0, 0), - [5343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__is_not, 2, 0, 0), + [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), + [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4561), + [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [5289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3460), + [5292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3326), + [5295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(2808), + [5298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3552), + [5301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3198), + [5304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3409), + [5307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3404), + [5310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3286), + [5313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), + [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), + [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), + [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [5323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4215), + [5325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4264), + [5327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4014), + [5329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4435), + [5331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4430), + [5333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3987), + [5335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4345), + [5337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4380), + [5339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4098), + [5341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4376), + [5343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4370), [5345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__not_in, 2, 0, 0), [5347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__not_in, 2, 0, 0), - [5349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3328), - [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), - [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), - [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5546), - [5359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3776), - [5361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3343), - [5363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), - [5365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), - [5367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), - [5369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 0), - [5371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), - [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), - [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5464), - [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), - [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5711), - [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), - [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5524), + [5349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__is_not, 2, 0, 0), + [5351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__is_not, 2, 0, 0), + [5353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), + [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), + [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5540), + [5363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3755), + [5365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3349), + [5367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), + [5369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), + [5371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), + [5373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), + [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), + [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5578), + [5379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 0), + [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), + [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5571), [5385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_pointer_type, 3, 0, 0), - [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [5395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_int_type, 1, 0, 0), - [5397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_int_type, 1, 0, 0), - [5399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), - [5401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3345), - [5403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), - [5405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3346), - [5407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), - [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4239), - [5411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), - [5413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1588), - [5416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3471), - [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), - [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [5422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(3471), - [5425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(3253), - [5428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(3438), - [5431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(3130), - [5434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(3321), - [5437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(3310), - [5440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(3292), - [5443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), - [5445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3561), - [5447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 2, 0, 10), - [5449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 10), - [5451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), - [5453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3143), - [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), - [5457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3231), - [5459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), - [5461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 1, 0, 0), - [5463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 10), - [5465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3327), - [5467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), - [5469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 1, 0, 10), REDUCE(sym_c_type, 2, 0, 21), - [5472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 2, 0, 21), - [5474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 18), REDUCE(sym_maybe_typed_name, 2, 0, 21), - [5477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3335), - [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), - [5481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 4), REDUCE(sym_maybe_typed_name, 1, 0, 10), - [5484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3337), - [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5339), - [5488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), - [5490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(1859), - [5493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), - [5495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), SHIFT_REPEAT(5510), - [5498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), - [5500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 1, 0, 0), REDUCE(sym_c_type, 2, 0, 0), - [5503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 2, 0, 0), - [5505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 21), - [5507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3319), - [5509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), - [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5479), - [5513] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 4), REDUCE(sym_maybe_typed_name, 1, 0, 10), SHIFT(3102), - [5517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3386), - [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [5521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargslist, 6, 0, 0), - [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5267), - [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [5531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3582), - [5533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 2, 0, 10), REDUCE(sym_c_type, 3, 0, 21), - [5536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 3, 0, 21), - [5538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 21), - [5540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), - [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [5544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargslist, 4, 0, 0), - [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5271), - [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5313), - [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5607), - [5552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargslist, 2, 0, 0), - [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5291), - [5556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargslist, 7, 0, 0), - [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), - [5560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), - [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5447), - [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5654), - [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5590), - [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [5586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), - [5588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 21), SHIFT(3102), - [5591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), - [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5697), - [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5682), - [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5482), - [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [5601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, 0, 0), - [5603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), - [5605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3423), - [5607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), - [5609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), - [5611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), - [5613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 10), SHIFT(3102), - [5616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3381), - [5618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3385), - [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), - [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), - [5624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3515), - [5626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 21), SHIFT(3102), - [5629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3359), - [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), - [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5413), - [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5629), - [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [5641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3388), - [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5408), - [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [5647] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 18), REDUCE(sym_maybe_typed_name, 2, 0, 21), SHIFT(3102), - [5651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), - [5653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), - [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), - [5657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 10), SHIFT(3102), - [5660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3349), - [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), - [5664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3332), - [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), - [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [5678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), - [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), - [5682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3370), - [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [5686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3378), - [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [5690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), SHIFT_REPEAT(5504), - [5693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__longness, 1, 0, 0), - [5695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__longness, 1, 0, 0), - [5697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3333), - [5699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), - [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), - [5703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__right_hand_side, 1, 0, 0), - [5705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(1861), - [5708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3494), - [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [5712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3336), - [5714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), SHIFT_REPEAT(5689), - [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5510), - [5719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 0), - [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), - [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [5725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3742), - [5727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3580), - [5729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 3, 0, 0), - [5731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 10), - [5733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), - [5735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 4, 0, 10), - [5737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 10), - [5739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), - [5741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 3, 0, 0), REDUCE(sym_c_type, 4, 0, 0), - [5744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 4, 0, 0), - [5746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 21), - [5748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 4), REDUCE(sym_maybe_typed_name, 2, 0, 10), - [5751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 2, 0, 0), REDUCE(sym_c_type, 3, 0, 0), - [5754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 1, 0, 0), - [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [5758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 3, 0, 10), - [5760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), - [5762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 4, 0, 10), REDUCE(sym_c_type, 5, 0, 21), - [5765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 5, 0, 21), - [5767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 21), - [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), - [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5659), - [5773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3810), - [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), - [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), - [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), - [5783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__longness, 2, 0, 20), - [5785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__longness, 2, 0, 20), - [5787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 3, 0, 10), REDUCE(sym_c_type, 4, 0, 21), - [5790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 4, 0, 21), - [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), - [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), - [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), - [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), - [5800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_int_type, 2, 0, 0), - [5802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_int_type, 2, 0, 0), - [5804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), - [5806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), - [5808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 18), REDUCE(sym_maybe_typed_name, 3, 0, 21), - [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), - [5813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), - [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), - [5817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_index, 3, 0, 0), - [5819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_index, 3, 0, 0), - [5821] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 18), REDUCE(sym_maybe_typed_name, 3, 0, 21), SHIFT(3102), - [5825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), - [5827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), - [5829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3528), - [5832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3528), - [5835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3102), - [5838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), - [5840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 21), SHIFT(3102), - [5843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_index, 4, 0, 0), - [5845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_index, 4, 0, 0), - [5847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), - [5849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 21), SHIFT(3102), - [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), - [5854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_index, 2, 0, 0), - [5856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_index, 2, 0, 0), - [5858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_index, 5, 0, 0), - [5860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_index, 5, 0, 0), - [5862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 5, 0, 10), - [5865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3516), - [5868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3516), - [5871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3101), - [5874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 3, 0, 10), - [5877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 5, 0, 21), - [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), - [5882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_index, 6, 0, 0), - [5884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_index, 6, 0, 0), - [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), - [5890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3513), - [5892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 10), SHIFT(3102), - [5895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 6, 0, 21), - [5898] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 4), REDUCE(sym_maybe_typed_name, 2, 0, 10), SHIFT(3102), - [5902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3534), - [5904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 10), SHIFT(3102), - [5907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 4, 0, 10), - [5910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 4, 0, 21), - [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), - [5915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), SHIFT_REPEAT(5659), - [5918] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 4, 0, 21), SHIFT(3102), - [5922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 2, 0, 0), - [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5545), - [5926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 2, 0, 0), - [5928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3636), - [5931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3636), - [5934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3119), - [5937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), - [5939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), - [5941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3214), - [5943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3219), - [5945] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 6, 0, 21), SHIFT(3102), - [5949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_int_type, 3, 0, 0), - [5951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_int_type, 3, 0, 0), - [5953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), - [5955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), - [5957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3101), - [5960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_parameters, 2, 0, 0), - [5962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_parameters, 2, 0, 0), - [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5472), - [5966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), - [5968] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 4, 0, 10), SHIFT(3102), - [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), - [5974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3102), - [5977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5545), - [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), - [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), - [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), - [5986] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 3, 0, 10), SHIFT(3102), - [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), - [5992] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 5, 0, 10), SHIFT(3102), - [5996] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 5, 0, 21), SHIFT(3102), - [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), - [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), - [6004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5472), - [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5532), - [6009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 2, 0, 10), - [6011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3745), - [6013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 3, 0, 21), - [6015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3752), - [6017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3727), - [6019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3692), - [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), - [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), - [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), - [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), - [6039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 4, 0, 0), REDUCE(sym_c_type, 5, 0, 0), - [6042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 5, 0, 0), - [6044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), - [6046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3119), - [6049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5532), - [6052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_qualifier_repeat1, 3, 0, 0), - [6054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 3, 0, 0), - [6056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), - [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), - [6060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3674), - [6062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), - [6064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1512), - [6067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3623), - [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), - [6071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1426), - [6074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3765), - [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), - [6078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3746), - [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), - [6082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 2, 0, 21), - [6084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3747), - [6086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3755), - [6088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 5, 0, 0), REDUCE(sym_c_type, 6, 0, 0), - [6091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 6, 0, 0), - [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), - [6095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3687), - [6097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), - [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), - [6101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 18), - [6103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 18), SHIFT(3102), - [6106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 7, 0, 155), - [6108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 7, 0, 155), SHIFT(3102), - [6111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_pointer_type, 4, 0, 0), - [6113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_pointer_type, 4, 0, 0), - [6115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 55), - [6117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 55), SHIFT(3102), - [6120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 85), - [6122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 85), SHIFT(3102), - [6125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 57), - [6127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 57), SHIFT(3102), - [6130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 86), - [6132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 86), SHIFT(3102), - [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [6137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), - [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5719), - [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [6147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 1, 0, 0), - [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [6153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 4), - [6155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_pointer_type, 5, 0, 0), - [6157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_pointer_type, 5, 0, 0), - [6159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 85), - [6161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 85), SHIFT(3102), - [6164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 127), - [6166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 127), SHIFT(3102), - [6169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 23), - [6171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 86), - [6173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 86), SHIFT(3102), - [6176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 128), - [6178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 128), SHIFT(3102), - [6181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 4), - [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), - [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), - [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), - [6189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 23), - [6191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 23), SHIFT(3102), - [6194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 55), - [6196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 55), SHIFT(3102), - [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), - [6201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3810), - [6204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3810), - [6207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3100), - [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), - [6212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 57), - [6214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 57), SHIFT(3102), - [6217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 18), - [6219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 18), SHIFT(3102), - [6222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 4), SHIFT(3102), - [6225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 6, 0, 127), - [6227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 6, 0, 127), SHIFT(3102), - [6230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 6, 0, 128), - [6232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 6, 0, 128), SHIFT(3102), - [6235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 6, 0, 155), - [6237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 6, 0, 155), SHIFT(3102), - [6240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 23), SHIFT(3102), - [6243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 4), SHIFT(3102), - [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5425), - [6248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 3, 0, 0), - [6250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3734), - [6252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 3, 0, 0), - [6254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_name, 1, 0, 0), - [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5385), - [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [6260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_name, 1, 0, 0), SHIFT(3102), - [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [6265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_name, 1, 0, 0), SHIFT(3629), - [6268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 4, 0, 0), - [6270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3712), - [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), - [6276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3888), - [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), - [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), - [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), - [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [6286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), - [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5669), - [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), - [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [6302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5425), - [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), - [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), - [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), - [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), - [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [6355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_item, 1, 1, 7), SHIFT(905), - [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [6364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), - [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5698), - [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), - [6378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(784), - [6381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3888), - [6384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3888), - [6387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), - [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [6397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3100), - [6400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 1, 0, 0), - [6402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3729), - [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [6408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 2, 0, 0), - [6410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3750), - [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), - [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [6422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), - [6424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), - [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [6434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3754), - [6436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3761), - [6438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3760), - [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), - [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [6448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3779), - [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), - [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [6466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 2, 0, 0), - [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [6472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 5, 0, 0), - [6474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__f_expression, 1, 0, 0), - [6476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 5, 0, 21), - [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [6486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 1, 0, 0), - [6488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 6, 0, 0), - [6490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 3, 0, 10), - [6492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_name, 2, 0, 0), - [6494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_name, 2, 0, 0), - [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), - [6498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 4, 0, 21), - [6500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 4, 0, 10), - [6502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 2, 0, 0), - [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), - [6506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1820), - [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), - [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5275), - [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [6519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4888), - [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [6529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), - [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [6547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1421), - [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [6552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), - [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), - [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), - [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), - [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), - [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), - [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), - [6588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_name, 3, 0, 0), - [6590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_name, 3, 0, 0), - [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5686), - [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), - [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [6620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1473), - [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), - [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5543), - [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), - [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), - [6643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1487), - [6646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1515), - [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), - [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [6653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2, 0, 0), - [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), - [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), - [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), - [6665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 52), - [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5311), - [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5256), - [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), - [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5306), - [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [6687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_within_for_in_clause, 1, 0, 0), - [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5626), - [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5357), - [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [6705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1460), - [6708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_content, 1, 0, 0), - [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), - [6712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3922), - [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5184), - [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), - [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), - [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), - [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), - [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5360), - [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5643), - [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), - [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), - [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [6784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 4, 0, 8), - [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), - [6804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 3, 0, 0), - [6806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), - [6808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(3922), - [6811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(3922), - [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [6818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), - [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), - [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5497), - [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), - [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), - [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), - [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [6870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, -1, 6), - [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [6874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2, 0, 0), - [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [6880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), - [6882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 2, 0, 0), - [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), - [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), - [6904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_pattern, 1, 0, 0), - [6906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1575), - [6909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1797), - [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [6920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 2, 0, 0), - [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), - [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), - [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), - [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [6950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 1, 0, 0), - [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), - [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), - [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), - [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), - [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), - [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5351), - [6976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 6), - [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), - [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), - [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), - [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), - [7008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_clause, 2, 0, 0), - [7010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1634), - [7013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(5719), - [7016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1854), - [7019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), - [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), - [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), - [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), - [7051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 2, 0, 10), - [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5598), - [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), - [7065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1545), - [7068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(5698), - [7071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1851), - [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), - [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), - [7080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5480), - [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), - [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), - [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), - [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [7106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_pattern, 2, 0, 0), - [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5352), - [7110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 93), - [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), - [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [7120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), SHIFT_REPEAT(5643), - [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), - [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), - [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), - [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), - [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), - [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4820), - [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), - [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), - [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), - [7181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chevron, 2, 0, 0), - [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5636), - [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), - [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), - [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), - [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), - [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), - [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5181), - [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), - [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [7249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1385), - [7252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(5669), - [7255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1853), - [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5125), - [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), - [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), - [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5316), - [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5201), - [7318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 92), - [7320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 4, 0, 84), - [7322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_parameters, 3, 0, 0), - [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [7336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat, 2, 0, 0), - [7338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 0), - [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [7342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_index_repeat1, 4, 0, 0), - [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), - [7346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 0), - [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), - [7350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), - [7352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(1858), - [7355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3068), - [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), - [7360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), - [7362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 98), - [7364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 98), - [7366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 99), - [7368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 99), - [7370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 5, 0, 126), - [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [7376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 100), - [7378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 100), - [7380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_memory_view_index, 4, 0, 0), - [7382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), - [7384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_parameter, 3, 0, 24), - [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5397), - [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), - [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [7400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 25), - [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5565), - [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [7410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 43), - [7412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type, 3, 0, 0), - [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5358), - [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [7420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 24), - [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5342), - [7424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 4, 0, 103), - [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), - [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [7438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 138), - [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [7442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 139), - [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5259), - [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), - [7450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gil_spec, 1, 0, 0), - [7452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_pattern, 2, 0, 0), - [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [7456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_pattern, 3, 0, 0), - [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), - [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [7470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), - [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), - [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5398), - [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [7482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1424), - [7485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [7487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [7489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 32), - [7491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 32), - [7493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_pattern, 1, 0, 0), - [7495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat, 2, 0, 0), - [7497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 4, 0, 41), - [7499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_def_repeat1, 5, 0, 0), - [7501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5284), - [7505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 63), - [7507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 63), - [7509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 64), - [7511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 64), - [7513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3, 0, 32), - [7515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3, 0, 32), - [7517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 5, 0, 0), - [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), - [7523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat2, 4, 0, 0), - [7525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), - [7529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), - [7531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1143), - [7534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), - [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), - [7538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 1, 1, 7), - [7540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3, 0, 17), - [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), - [7546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat2, 5, 0, 87), - [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), - [7552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 6, 0, 137), - [7554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 6, 0, 137), - [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), - [7558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 0), - [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [7562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1502), - [7565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1807), - [7568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 5, 0, 0), - [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [7572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [7574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 170), - [7576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_def_repeat1, 4, 0, 0), - [7578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1100), - [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [7587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1074), - [7590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat1, 2, 0, 0), - [7592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat1, 2, 0, 0), SHIFT_REPEAT(3102), - [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [7597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_type, 3, 0, 0), - [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4367), - [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), - [7607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), - [7609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gil_spec, 2, 0, 0), - [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [7615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 3, 0, 22), - [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), - [7619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3064), - [7622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 4, 1, 0), - [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [7628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [7630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [7632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [7634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2, 0, 0), - [7636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 4, 0, 54), - [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [7640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 3, 0, 171), - [7642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4780), - [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [7646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4775), - [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), - [7652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [7654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), - [7656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4870), - [7658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [7660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4967), - [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [7664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4995), - [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [7668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4982), - [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), - [7672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 3, 0, 0), - [7674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [7676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [7678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [7680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), - [7682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), - [7684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5312), - [7686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [7688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4848), - [7690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [7692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4886), - [7694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [7696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [7698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), - [7702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), - [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5055), - [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136), - [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [7710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), - [7712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [7714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), - [7716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), - [7720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), - [7722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_pattern, 3, 0, 0), - [7724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), - [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), - [7728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [7730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), - [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5241), - [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [7736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1500), - [7739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 3, 0, 0), - [7741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4684), - [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [7745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4702), - [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), - [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), - [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), - [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4520), - [7763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 5, 0, 0), - [7765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 5, 0, 0), - [7767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 5, 0, 198), - [7769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, 0, 10), - [7771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5721), - [7775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 5, 0, 200), - [7777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 5, 0, 0), - [7779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat2, 2, 0, 0), - [7781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), - [7787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), - [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4540), - [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), - [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4968), - [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5720), - [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), - [7819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 4), - [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), - [7823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), - [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), - [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), - [7829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_pattern, 2, 0, 0), - [7831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [7833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 4, 0, 0), - [7835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3065), - [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [7840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 3, 0, 0), - [7842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 4, 0, 0), - [7844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3057), - [7847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_pattern, 4, 0, 0), - [7849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 171), - [7851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [7853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 198), - [7855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargslist, 1, 0, 0), - [7857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), - [7859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), - [7861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [7863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [7865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 0), - [7867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), - [7869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 1, 0, 4), - [7871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), - [7873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5418), - [7875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 6, 0, 0), - [7877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 200), - [7879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [7881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 4, 0, 0), - [7883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 2, 0, 0), - [7885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), - [7887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 2, 0, 0), - [7889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [7891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [7893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), - [7895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 2, 0, 0), - [7897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [7899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), - [7901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(4406), - [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), - [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), - [7908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5123), - [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [7912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5122), - [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [7916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [7918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), - [7920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 1, 0, 0), - [7922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), - [7924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [7926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [7928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [7934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), - [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4629), - [7942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [7946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(781), - [7949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), - [7951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4427), - [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [7962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [7964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 3, 0, 14), - [7966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [7968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 2, 0, 0), - [7970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), - [7972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [7974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [7976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 3, 0, 0), - [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [7980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_prefix, 1, 0, 0), - [7982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), - [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [7988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), - [7990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5330), - [7992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [7998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), - [8000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), - [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), - [8004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5538), - [8006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__typedargslist_repeat1, 2, 0, 0), - [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [8010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [8012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 0), - [8014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 14), - [8016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4436), - [8018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), - [8020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), - [8022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [8024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), - [8026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), - [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [8030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4853), - [8032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4722), - [8034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [8036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), - [8038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), - [8040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), - [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5627), - [8044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), - [8046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_param, 1, 0, 0), - [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5553), - [8050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5725), - [8052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [8056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [8058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 5, 0, 8), - [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4375), - [8062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), - [8064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__as_pattern, 3, 0, 0), - [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [8068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [8070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), - [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), - [8078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [8080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), - [8082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), - [8084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), - [8086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5490), - [8089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(2797), - [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [8094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), - [8096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), - [8098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 2, 0, 0), - [8100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5490), - [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5307), - [8104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [8106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), - [8108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5079), - [8110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_value, 1, 0, 0), - [8112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 3, 0, 0), - [8114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 3, 0, 0), - [8116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 2, 0, 0), - [8118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4625), - [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), - [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [8126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4626), - [8130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), - [8132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), - [8134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(1864), - [8137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 40), - [8139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 40), SHIFT_REPEAT(1469), - [8142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [8144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), - [8146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_name, 4, 0, 0), - [8148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 18), - [8150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_name, 2, 0, 0), - [8152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, 0, 0), - [8154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [8156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 33), - [8158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 33), SHIFT_REPEAT(5083), - [8161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), - [8163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5411), - [8165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 15), - [8167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [8169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, -1, 16), - [8171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [8175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relative_import, 1, 0, 0), - [8177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), - [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [8181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3, 0, 0), - [8183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), - [8185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [8187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), - [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), - [8191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), - [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4557), - [8195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), - [8197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), - [8199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [8201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), - [8203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5542), - [8205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), - [8207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 2, 0, 105), SHIFT_REPEAT(2789), - [8210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 2, 0, 105), - [8212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4379), - [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4345), - [8220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), - [8222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [8224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), - [8228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [8230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [8232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_index_repeat1, 2, 0, 0), - [8234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [8238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__typedargslist_repeat1, 2, 0, 0), SHIFT_REPEAT(3245), - [8241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2, 0, 0), - [8243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [8245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5329), - [8247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(2783), - [8250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), - [8252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [8254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [8256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), - [8258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), - [8260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [8262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [8264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [8266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [8268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), - [8270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), - [8272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5430), - [8276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_params_repeat1, 2, 0, 0), SHIFT_REPEAT(5334), - [8279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_params_repeat1, 2, 0, 0), - [8281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [8283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [8285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), - [8287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [8289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), - [8291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), - [8293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), - [8295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), - [8297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), - [8299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3263), - [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), - [8304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), - [8306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), - [8308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [8312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), - [8314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1272), - [8317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), - [8319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), - [8321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), - [8323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), - [8325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [8327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), - [8329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), - [8331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5350), - [8333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5399), - [8335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [8337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [8339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [8341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), - [8343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), - [8345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), - [8347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), - [8349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [8351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [8353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), - [8355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), - [8357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [8359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5613), - [8361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [8363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [8365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), - [8367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [8369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), - [8371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), - [8373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1463), - [8376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [8378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [8386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4611), - [8388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5165), - [8390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), - [8392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), - [8394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), - [8396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), - [8398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), - [8400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5334), - [8402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4955), - [8404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), - [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [8408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), - [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), - [8412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [8414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4814), - [8416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [8418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [8420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [8422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [8424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [8426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), - [8428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), - [8430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), - [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [8436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, 0, 53), - [8438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), - [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5372), - [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5379), - [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [8454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [8456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [8458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4969), - [8462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [8468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), - [8470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(2781), - [8473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat2, 2, 0, 90), SHIFT_REPEAT(5385), - [8476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat2, 2, 0, 90), - [8478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4501), - [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [8482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5421), - [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [8486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [8488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [8490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [8492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat2, 3, 0, 87), - [8494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [8498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [8500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [8502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [8504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [8506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [8508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [8510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [8512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [8514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [8518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [8520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), - [8522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), - [8524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [8526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 1, 0, 0), - [8528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [8530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [8532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), - [8534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), - [8536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [8538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), - [8540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [8542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), - [8544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5399), - [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), - [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), - [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), - [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), - [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), - [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), - [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), - [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), - [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4848), - [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), - [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), - [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), - [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [8589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(2793), - [8592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [8594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5710), - [8596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [8598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), - [8600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [8602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [8604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [8606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [8610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5052), - [8612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [8614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [8616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [8618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [8620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), - [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [8624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [8626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [8628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [8630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [8632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4787), - [8634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [8636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5338), - [8638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [8640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [8642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [8644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5617), - [8646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [8648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), - [8650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [8652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5341), - [8654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [8656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5390), - [8658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [8660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [8662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [8664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4643), - [8666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [8668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [8670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(967), - [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), - [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [8701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__key_value_pattern, 3, 0, 52), - [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5635), - [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [8713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), - [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), - [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5528), - [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4621), - [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5199), - [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [8759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [8761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), - [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [8767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(935), - [8770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [8772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), - [8774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5251), - [8776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [8778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [8780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [8782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [8784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), - [8786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [8788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5653), - [8790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 199), SHIFT_REPEAT(2963), - [8793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 199), - [8795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [8797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [8799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [8801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5589), - [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), - [8805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4993), - [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [8813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_def_repeat1, 2, 0, 0), - [8815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [8817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [8821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), - [8823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [8825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), - [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5588), - [8831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), - [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5624), - [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5452), - [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), - [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [8845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 95), SHIFT_REPEAT(1073), - [8848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 95), - [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [8852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [8854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [8858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [8860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [8862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [8864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [8866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), - [8868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [8870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), - [8878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [8880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [8882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [8884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [8886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [8894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [8896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 45), SHIFT_REPEAT(1494), - [8899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 45), - [8901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1600), - [8904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [8908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), - [8910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [8912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), - [8914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [8916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [8918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), - [8920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4297), - [8922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [8926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [8928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [8930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), - [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [8934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [8936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 0), SHIFT_REPEAT(1048), - [8939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 0), - [8941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [8947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(1862), - [8950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [8960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [8964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(953), - [8967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), - [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [8971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_params, 3, 0, 0), - [8973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [8975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), - [8977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [8979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(787), - [8982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cvar_def_repeat1, 2, 0, 0), SHIFT_REPEAT(3879), - [8985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1635), - [8988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [8996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [9000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4627), - [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4846), - [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), - [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5194), - [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [9014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5335), - [9016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), - [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [9020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4684), - [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [9026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [9032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [9034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), - [9036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [9038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1, 0, 0), - [9040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), - [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [9048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), - [9050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [9054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [9058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [9060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [9062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_external_definition_repeat1, 3, 0, 0), - [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [9070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), - [9072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 1, 0, 0), - [9074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [9076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [9078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [9080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), - [9082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), - [9084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_external_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(5307), - [9087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_external_definition_repeat1, 2, 0, 0), - [9089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [9091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [9095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 2, 0, 8), - [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [9101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [9107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [9113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [9115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [9119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), - [9121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [9123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [9125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [9127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_index_repeat1, 2, 0, 0), SHIFT_REPEAT(3249), - [9130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(443), - [9133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), - [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), - [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [9139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aliased_import, 3, 0, 34), - [9141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [9143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [9145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [9147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [9149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), - [9151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [9153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [9155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [9157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [9159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [9161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), - [9163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4555), - [9165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), - [9167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4634), - [9169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_index_repeat2, 2, 0, 0), SHIFT_REPEAT(5350), - [9172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_index_repeat2, 2, 0, 0), - [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [9176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_params, 4, 0, 0), - [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [9182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [9184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [9186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_def_repeat1, 3, 0, 0), - [9188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [9190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), - [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), - [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [9202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 62), - [9204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 62), - [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [9228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(1856), - [9231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), - [9233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [9235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [9237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [9239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 33), SHIFT_REPEAT(4858), - [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), - [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [9256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [9258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5166), - [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [9268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), - [9270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [9274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5664), - [9276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), - [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [9280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1800), - [9283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [9285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [9287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [9289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [9291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [9293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [9295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [9297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [9301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [9303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), - [9305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), - [9307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1180), - [9310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4870), - [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), - [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), - [9324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), - [9328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [9332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), - [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4855), - [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), - [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), - [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4923), - [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [9356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(2800), - [9359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(948), - [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), - [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), - [9368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_import, 2, 0, 0), - [9370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 227), - [9372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 2, 0, 3), - [9374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 201), - [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [9382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 4, 0, 10), - [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4523), - [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), - [9390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 202), - [9392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 203), - [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), - [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [9404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1, 0, 0), - [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [9408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_statement, 2, 0, 0), - [9410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4316), - [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4316), - [9414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 37), - [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5294), - [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), - [9420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_default, 2, 0, 0), - [9422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), - [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), - [9426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_statement, 4, 0, 0), - [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [9430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 228), - [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [9434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargslist, 8, 0, 0), - [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5384), - [9438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 0), - [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [9442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [9444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), - [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [9448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [9450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4630), - [9452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), - [9454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), - [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), - [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [9462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), - [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5200), - [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), - [9470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 26), - [9472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [9474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), - [9482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 229), - [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), - [9486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), - [9488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [9490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 8, 0, 261), - [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [9496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [9498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), - [9500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5162), - [9502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [9504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), - [9506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment, 3, 0, 27), - [9508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5225), - [9510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), - [9512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), - [9514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5304), - [9516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [9518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 6, 0, 101), - [9520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 6, 0, 102), - [9522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [9524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), - [9526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), - [9528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), - [9530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), - [9532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [9534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [9536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [9538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [9540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [9542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [9544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [9546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [9548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1, 0, 0), - [9550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), - [9552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [9554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), - [9556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), - [9558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [9560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [9562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 226), - [9564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), - [9566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4563), - [9568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4563), - [9570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), - [9572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 5, 0, 10), - [9574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), - [9576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), - [9578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [9580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5462), - [9582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_separator, 1, 0, 0), - [9584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), - [9586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5579), - [9588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), - [9590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 250), - [9592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5333), - [9594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4242), - [9596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), - [9598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5348), - [9600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), - [9602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), - [9604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4546), - [9606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), - [9608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [9610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), - [9612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [9614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5534), - [9616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [9618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4396), - [9620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), - [9622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4052), - [9624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), - [9626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4587), - [9628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4201), - [9630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), - [9632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [9634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [9636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 38), - [9638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), - [9640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), - [9642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [9644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [9646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 4, 0, 35), - [9648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5192), - [9650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5416), - [9652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4415), - [9654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [9656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4525), - [9658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), - [9660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 5, 0, 91), - [9662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4365), - [9664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4191), - [9666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), - [9668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [9670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [9672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5324), - [9674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [9676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_param, 2, 0, 0), - [9678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [9680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), - [9682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), - [9684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [9686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [9688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 38), - [9690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4595), - [9692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5488), - [9694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4271), - [9696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4468), - [9698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), - [9700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4224), - [9702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), - [9704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 1, 0, 65), - [9706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [9708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [9710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard_import, 1, 0, 0), - [9712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4378), - [9714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), - [9716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), - [9718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), - [9720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), - [9722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4475), - [9724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), - [9726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [9728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [9730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), - [9732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 36), - [9734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [9736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [9738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [9740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 4, 0, 172), - [9742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 248), - [9744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), - [9746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 249), - [9748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 171), - [9750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [9752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [9754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [9756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargslist, 9, 0, 0), - [9758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), - [9760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [9762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [9764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [9766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [9768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [9770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [9772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [9774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [9776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4612), - [9778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [9780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4323), - [9782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4521), - [9784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), - [9786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [9788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [9790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [9792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [9794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [9796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [9798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [9800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [9802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [9804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [9806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5260), - [9808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [9810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [9812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [9814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5035), - [9816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [9818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), - [9820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [9822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [9824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [9826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [9828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), - [9830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [9832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [9834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), - [9836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), - [9838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [9840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [9842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [9844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), - [9846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), - [9848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 0), - [9850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [9852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [9854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [9856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [9858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [9860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), - [9862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 0), - [9864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [9866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [9868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [9870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [9872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [9874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [9876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [9878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [9880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [9882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [9884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [9886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [9888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), - [9890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [9892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [9894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [9896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [9898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [9900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [9902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), - [9904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), - [9906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [9908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [9910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [9912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [9914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [9916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [9918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), - [9920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [9922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), - [9924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [9926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [9928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), - [9930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [9932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5250), - [9934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), - [9936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [9938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [9940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), - [9942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [9944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [9946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [9948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [9950] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [9952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [9954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [9956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [9958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [9960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [9962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), - [9964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5187), - [9966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [9968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), - [9970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [9972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [9974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [9976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [9978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [9980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [9982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [9984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [9986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [9988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [9990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), - [9992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5315), - [9994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), - [9996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), - [9998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [10000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [10002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5573), - [10004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), - [10006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [10008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4616), - [10010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), - [10012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5146), - [10014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [10016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), - [10018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5336), - [10020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), - [10022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [10024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), - [10026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), - [10028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), - [10030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5512), - [10032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [10034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5185), - [10036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [10038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [10040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [10042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [10044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5070), - [10046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4441), - [10048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4971), - [10050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [10052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), - [10054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [10056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), - [10058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), - [10060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [10062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [10064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5235), - [10066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5236), - [10068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4565), - [10070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [10072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [10074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), - [10076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5533), - [10078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), - [10080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), - [10082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5441), - [10084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [10086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [10088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [10090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4973), - [10092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [10094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), - [10096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [10098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4571), - [10100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [10102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [10104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [10106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5646), - [10108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5163), - [10110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [10112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), - [10114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [10116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [10118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [10120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [10122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [10124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [10126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [10128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [10130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [10132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [10134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [10136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [10138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5451), - [10140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [10142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4531), - [10144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [10146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5670), - [10148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [10150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4773), - [10152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), - [10154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [10156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [10158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [10160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [10162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4808), - [10164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5290), - [10166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4832), - [10168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), - [10170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [10172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), - [10174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), - [10176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4149), - [10178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), - [10180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [10182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), - [10184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), - [10186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [10188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [10190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [10192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), - [10194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [10196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), - [10198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [10200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [10202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [10204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [10206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [10208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5453), - [10210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), - [10212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [10214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5619), - [10216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5377), - [10218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [10220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [10222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [10224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [10226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), - [10228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [10230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), - [10232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [10234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), - [10236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), - [10238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5582), - [10240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5475), - [10242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), - [10244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), - [10246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), - [10248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [10250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), - [10252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5595), - [10254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [10256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5597), - [10258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [10260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), - [10262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [10264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4548), - [10266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [10268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4856), - [10270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [10272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [10274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [10276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5606), - [10278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [10280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5057), - [10282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [10284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [10286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [10288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [10290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [10292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5572), - [10294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [10296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [10298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [10300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [10302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5667), - [10304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [10306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5263), - [10308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5344), - [10310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [10312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [10314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [10316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), + [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), + [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5732), + [5391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), + [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5613), + [5395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 21), + [5397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), + [5399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3532), + [5401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 1, 0, 10), REDUCE(sym_c_type, 2, 0, 21), + [5404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 2, 0, 21), + [5406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 18), REDUCE(sym_maybe_typed_name, 2, 0, 21), + [5409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3267), + [5411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 1, 0, 0), REDUCE(sym_c_type, 2, 0, 0), + [5414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 2, 0, 0), + [5416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 21), + [5418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3269), + [5420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), + [5422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 10), + [5424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), + [5426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), + [5428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 4), REDUCE(sym_maybe_typed_name, 1, 0, 10), + [5431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), + [5433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_int_type, 1, 0, 0), + [5435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_int_type, 1, 0, 0), + [5437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), + [5439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), + [5441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), + [5443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3139), + [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), + [5447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), + [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [5457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 2, 0, 10), REDUCE(sym_c_type, 3, 0, 21), + [5460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 3, 0, 21), + [5462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), + [5464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1562), + [5467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), + [5469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3355), + [5471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), + [5473] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 4), REDUCE(sym_maybe_typed_name, 1, 0, 10), SHIFT(5563), + [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5573), + [5479] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 4), REDUCE(sym_maybe_typed_name, 1, 0, 10), SHIFT(3127), + [5483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), + [5485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 10), + [5487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 2, 0, 10), + [5489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), + [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5625), + [5493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3342), + [5495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 1, 0, 0), + [5497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3247), + [5499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), + [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), + [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), + [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [5507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3517), + [5509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 21), SHIFT(5563), + [5512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 21), SHIFT(3127), + [5515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3370), + [5517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargslist, 6, 0, 0), + [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5234), + [5521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), + [5523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(1869), + [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5336), + [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [5530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargslist, 2, 0, 0), + [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5384), + [5534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3590), + [5536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 10), SHIFT(5563), + [5539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 10), SHIFT(3127), + [5542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3347), + [5544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), + [5546] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 18), REDUCE(sym_maybe_typed_name, 2, 0, 21), SHIFT(5563), + [5550] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 18), REDUCE(sym_maybe_typed_name, 2, 0, 21), SHIFT(3127), + [5554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3357), + [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5317), + [5560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 21), SHIFT(5563), + [5563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 21), SHIFT(3127), + [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), + [5568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargslist, 4, 0, 0), + [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5307), + [5572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), + [5574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), SHIFT_REPEAT(5433), + [5577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), + [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [5583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3133), + [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), + [5587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), + [5589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(3450), + [5592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(3344), + [5595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(3416), + [5598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(3140), + [5601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(3368), + [5604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(3325), + [5607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(3277), + [5610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), + [5612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargslist, 7, 0, 0), + [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5387), + [5616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 10), SHIFT(5563), + [5619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 10), SHIFT(3127), + [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5655), + [5624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), + [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [5642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, 0, 0), + [5644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3539), + [5646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), + [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5636), + [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5668), + [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5443), + [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), + [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [5658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3394), + [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), + [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5715), + [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5700), + [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5503), + [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [5670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), + [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), + [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), + [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), + [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5468), + [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5429), + [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [5686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), + [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [5690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3547), + [5692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 10), + [5694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 18), REDUCE(sym_maybe_typed_name, 3, 0, 21), + [5697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), + [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), + [5701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3560), + [5703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 3, 0, 10), REDUCE(sym_c_type, 4, 0, 21), + [5706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 4, 0, 21), + [5708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 21), + [5710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 3, 0, 0), REDUCE(sym_c_type, 4, 0, 0), + [5713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 4, 0, 0), + [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5433), + [5717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 0), + [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), + [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [5723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3712), + [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [5733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__right_hand_side, 1, 0, 0), + [5735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(1867), + [5738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 4), REDUCE(sym_maybe_typed_name, 2, 0, 10), + [5741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3395), + [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), + [5745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 3, 0, 10), + [5747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 2, 0, 0), REDUCE(sym_c_type, 3, 0, 0), + [5750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 3, 0, 0), + [5752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3557), + [5754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 10), + [5756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__longness, 1, 0, 0), + [5758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__longness, 1, 0, 0), + [5760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), + [5762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), + [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), + [5766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), + [5768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 21), + [5770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3484), + [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [5774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), SHIFT_REPEAT(5553), + [5777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), + [5779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 4, 0, 10), + [5781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 4, 0, 10), REDUCE(sym_c_type, 5, 0, 21), + [5784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 5, 0, 21), + [5786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), + [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [5794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), + [5796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), SHIFT_REPEAT(5653), + [5799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3515), + [5801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 10), SHIFT(5563), + [5804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 10), SHIFT(3127), + [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), + [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), + [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), + [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), + [5815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__longness, 2, 0, 20), + [5817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__longness, 2, 0, 20), + [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [5821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_int_type, 2, 0, 0), + [5823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_int_type, 2, 0, 0), + [5825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), + [5827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 1, 0, 0), + [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [5831] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 18), REDUCE(sym_maybe_typed_name, 3, 0, 21), SHIFT(5563), + [5835] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 18), REDUCE(sym_maybe_typed_name, 3, 0, 21), SHIFT(3127), + [5839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), + [5841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 10), SHIFT(5563), + [5844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 10), SHIFT(3127), + [5847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), + [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), + [5851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), + [5853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 21), SHIFT(5563), + [5856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 21), SHIFT(3127), + [5859] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 4), REDUCE(sym_maybe_typed_name, 2, 0, 10), SHIFT(5563), + [5863] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 4), REDUCE(sym_maybe_typed_name, 2, 0, 10), SHIFT(3127), + [5867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), + [5869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 21), SHIFT(5563), + [5872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 21), SHIFT(3127), + [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), + [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5610), + [5879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3847), + [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), + [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), + [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), + [5887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_index, 3, 0, 0), + [5889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_index, 3, 0, 0), + [5891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_index, 4, 0, 0), + [5893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_index, 4, 0, 0), + [5895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), + [5897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), + [5899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 3, 0, 10), + [5902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3607), + [5905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3607), + [5908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3129), + [5911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_index, 6, 0, 0), + [5913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_index, 6, 0, 0), + [5915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 4, 0, 21), + [5918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_index, 5, 0, 0), + [5920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_index, 5, 0, 0), + [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), + [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [5926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 4, 0, 10), + [5929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 5, 0, 21), + [5932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_index, 2, 0, 0), + [5934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_index, 2, 0, 0), + [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), + [5938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3561), + [5941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3561), + [5944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3127), + [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), + [5949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 6, 0, 21), + [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), + [5954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 5, 0, 10), + [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [5959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3420), + [5961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_parameters, 2, 0, 0), + [5963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_parameters, 2, 0, 0), + [5965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3631), + [5968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3631), + [5971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3106), + [5974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), + [5976] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 3, 0, 10), SHIFT(3127), + [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), + [5982] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 4, 0, 10), SHIFT(3127), + [5986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), + [5988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), + [5990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3127), + [5993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), + [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5604), + [5997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), + [5999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5604), + [6002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), + [6004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5584), + [6007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_int_type, 3, 0, 0), + [6009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_int_type, 3, 0, 0), + [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), + [6013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 2, 0, 0), + [6015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 2, 0, 0), + [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [6019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3129), + [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5584), + [6024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), SHIFT_REPEAT(5610), + [6027] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 6, 0, 21), SHIFT(3127), + [6031] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 5, 0, 21), SHIFT(3127), + [6035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), + [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), + [6039] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 4, 0, 21), SHIFT(3127), + [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), + [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), + [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), + [6049] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 5, 0, 10), SHIFT(3127), + [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), + [6055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 5, 0, 0), REDUCE(sym_c_type, 6, 0, 0), + [6058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 6, 0, 0), + [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), + [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), + [6064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3106), + [6067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5420), + [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [6072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3764), + [6074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3693), + [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [6080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 2, 0, 10), + [6082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3736), + [6084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 2, 0, 21), + [6086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3743), + [6088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), + [6090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 3, 0, 21), + [6092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3728), + [6094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_qualifier_repeat1, 3, 0, 0), + [6096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 3, 0, 0), + [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5420), + [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), + [6102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), + [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), + [6116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3624), + [6118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3727), + [6120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3729), + [6122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3629), + [6124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3774), + [6126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), + [6128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3702), + [6130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 5, 0, 0), + [6132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 4, 0, 0), REDUCE(sym_c_type, 5, 0, 0), + [6135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1528), + [6138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), + [6140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1536), + [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), + [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [6149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5393), + [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [6159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 1, 0, 0), + [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [6165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 6, 0, 127), + [6167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 6, 0, 127), SHIFT(3127), + [6170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 4), + [6172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 55), + [6174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 55), SHIFT(3127), + [6177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 85), + [6179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 85), SHIFT(3127), + [6182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 57), + [6184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 57), SHIFT(3127), + [6187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 86), + [6189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 86), SHIFT(3127), + [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), + [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), + [6196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3847), + [6199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3847), + [6202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3114), + [6205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 23), + [6207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 55), + [6209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 57), + [6211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 18), + [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), + [6215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 6, 0, 128), + [6217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 6, 0, 128), SHIFT(3127), + [6220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 23), + [6222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 23), SHIFT(3127), + [6225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 85), + [6227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 127), + [6229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_pointer_type, 4, 0, 0), + [6231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_pointer_type, 4, 0, 0), + [6233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 86), + [6235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 128), + [6237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 4), SHIFT(3127), + [6240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 6, 0, 155), + [6242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 7, 0, 155), + [6244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 7, 0, 155), SHIFT(3127), + [6247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 4), + [6249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 4), SHIFT(3127), + [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), + [6254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 6, 0, 155), SHIFT(3127), + [6257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 23), SHIFT(3127), + [6260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_pointer_type, 5, 0, 0), + [6262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_pointer_type, 5, 0, 0), + [6264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 85), SHIFT(3127), + [6267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 127), SHIFT(3127), + [6270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 55), SHIFT(3127), + [6273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 86), SHIFT(3127), + [6276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 128), SHIFT(3127), + [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), + [6281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 57), SHIFT(3127), + [6284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 18), SHIFT(3127), + [6287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 18), + [6289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 18), SHIFT(3127), + [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [6294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_item, 1, 1, 7), SHIFT(935), + [6297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5432), + [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [6309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 2, 0, 0), + [6311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3759), + [6313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_name, 1, 0, 0), + [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5688), + [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [6319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_name, 1, 0, 0), SHIFT(3127), + [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [6324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_name, 1, 0, 0), SHIFT(3643), + [6327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 3, 0, 0), + [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [6333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 3, 0, 0), + [6335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3768), + [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), + [6341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 4, 0, 0), + [6343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), + [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), + [6349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3876), + [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5561), + [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [6361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), + [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5716), + [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [6383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [6385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), + [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [6389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5561), + [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), + [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4147), + [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [6408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3775), + [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [6420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 1, 0, 0), + [6422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3715), + [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [6436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3716), + [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), + [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), + [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [6448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3114), + [6451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3763), + [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), + [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), + [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), + [6471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3720), + [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [6479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(789), + [6482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3876), + [6485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3876), + [6488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [6514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 5, 0, 0), + [6516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 3, 0, 10), + [6518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 4, 0, 21), + [6520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 5, 0, 21), + [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [6528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__f_expression, 1, 0, 0), + [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [6534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_name, 2, 0, 0), + [6536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_name, 2, 0, 0), + [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), + [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), + [6542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 6, 0, 0), + [6544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 4, 0, 10), + [6546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 2, 0, 0), + [6548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 1, 0, 0), + [6550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 2, 0, 0), + [6552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1828), + [6555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5098), + [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), + [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5201), + [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [6569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1394), + [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), + [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), + [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [6598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_pointer_name, 4, 0, 60), + [6600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_pointer_name, 4, 0, 60), + [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), + [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), + [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), + [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), + [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), + [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [6638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_name, 3, 0, 0), + [6640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_name, 3, 0, 0), + [6642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1431), + [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5567), + [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [6657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1406), + [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), + [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), + [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), + [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [6678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2, 0, 0), + [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [6692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1676), + [6695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), + [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), + [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5401), + [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), + [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), + [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5595), + [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), + [6715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1738), + [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), + [6724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_content, 1, 0, 0), + [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), + [6728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3886), + [6730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 52), + [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5349), + [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [6762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), + [6764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(3886), + [6767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(3886), + [6770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_within_for_in_clause, 1, 0, 0), + [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5644), + [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5368), + [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [6782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 4, 0, 8), + [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5321), + [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), + [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4616), + [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5386), + [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5194), + [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), + [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), + [6818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5373), + [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), + [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5439), + [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), + [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [6854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1801), + [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), + [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), + [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), + [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), + [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), + [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), + [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), + [6921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_pattern, 1, 0, 0), + [6923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, -1, 6), + [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [6931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2, 0, 0), + [6933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1809), + [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), + [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), + [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), + [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), + [6960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [6962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 2, 0, 0), + [6964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 3, 0, 0), + [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [6968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 2, 0, 0), + [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), + [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), + [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), + [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), + [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), + [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), + [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), + [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), + [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), + [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5376), + [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), + [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), + [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), + [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), + [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [7068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1616), + [7071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(5393), + [7074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1863), + [7077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), + [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), + [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), + [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), + [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), + [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), + [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [7115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 2, 0, 10), + [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5642), + [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), + [7123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5734), + [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), + [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5118), + [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), + [7139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), SHIFT_REPEAT(5595), + [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), + [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [7172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 1, 0, 0), + [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [7182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_clause, 2, 0, 0), + [7184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1457), + [7187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(5716), + [7190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1861), + [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), + [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), + [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), + [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [7241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chevron, 2, 0, 0), + [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), + [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [7249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 6), + [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4950), + [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), + [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5622), + [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [7311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 93), + [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [7315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1509), + [7318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(5432), + [7321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1857), + [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), + [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [7340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_pattern, 2, 0, 0), + [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5371), + [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), + [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), + [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5337), + [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [7364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 1, 1, 7), + [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [7372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat2, 5, 0, 87), + [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), + [7376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat, 2, 0, 0), + [7378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), + [7380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3066), + [7383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_memory_view_index, 4, 0, 0), + [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), + [7393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 98), + [7395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 98), + [7397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 4, 0, 41), + [7399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 5, 0, 0), + [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), + [7405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 99), + [7407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 99), + [7409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5714), + [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [7423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_pattern, 1, 0, 0), + [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [7431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 5, 0, 0), + [7433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 5, 0, 126), + [7435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat2, 4, 0, 0), + [7437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 100), + [7439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 100), + [7441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_pattern, 2, 0, 0), + [7443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_type, 3, 0, 0), + [7445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type, 3, 0, 0), + [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5660), + [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [7453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), + [7455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 25), + [7457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [7459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), + [7461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1076), + [7464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 4, 0, 103), + [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [7468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_parameters, 3, 0, 0), + [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), + [7474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), + [7476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gil_spec, 2, 0, 0), + [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [7480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 43), + [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5392), + [7484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_index_repeat1, 4, 0, 0), + [7486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_def_repeat1, 4, 0, 0), + [7488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 0), + [7490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_parameter, 3, 0, 24), + [7492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 4, 0, 84), + [7494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 0), + [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), + [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), + [7500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), + [7502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(1866), + [7505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat, 2, 0, 0), + [7507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_def_repeat1, 5, 0, 0), + [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), + [7511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [7513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 138), + [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [7517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat1, 2, 0, 0), + [7519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat1, 2, 0, 0), SHIFT_REPEAT(3127), + [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5658), + [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), + [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [7532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 32), + [7534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 32), + [7536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_pattern, 3, 0, 0), + [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [7540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 139), + [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5312), + [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), + [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5222), + [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), + [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5275), + [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [7566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3, 0, 32), + [7568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3, 0, 32), + [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [7572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 169), + [7574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [7576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [7580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [7582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), + [7584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 63), + [7586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 63), + [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), + [7590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1132), + [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [7595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 92), + [7597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 24), + [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5215), + [7601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), + [7603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 6, 0, 137), + [7605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 6, 0, 137), + [7607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gil_spec, 1, 0, 0), + [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), + [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [7617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 0), + [7619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 64), + [7621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 64), + [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), + [7625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), + [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5212), + [7637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1682), + [7640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3, 0, 17), + [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), + [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [7646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1420), + [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), + [7653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1817), + [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [7658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [7660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1091), + [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [7665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [7667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(792), + [7670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), + [7672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4289), + [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [7681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 3, 0, 0), + [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), + [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), + [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), + [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5072), + [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), + [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), + [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), + [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), + [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [7707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_pattern, 3, 0, 0), + [7709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 4, 0, 54), + [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), + [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5223), + [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5280), + [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [7721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 5, 0, 0), + [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), + [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), + [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [7733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 3, 0, 0), + [7735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 4, 0, 0), + [7737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_pattern, 2, 0, 0), + [7739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 4, 0, 0), + [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [7743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_pattern, 4, 0, 0), + [7745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 170), + [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [7749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_prefix, 1, 0, 0), + [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), + [7753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 3, 0, 170), + [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), + [7769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 197), + [7771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [7779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 0), + [7781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), + [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), + [7787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [7789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), + [7791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 1, 0, 0), + [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), + [7795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 3, 0, 0), + [7797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 199), + [7799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 4, 0, 0), + [7801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 5, 0, 199), + [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [7815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 3, 0, 14), + [7817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 3, 0, 22), + [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), + [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), + [7823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), + [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5079), + [7827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargslist, 1, 0, 0), + [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), + [7831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), + [7833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [7835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 4), + [7837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2, 0, 0), + [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [7847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [7849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), + [7851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [7853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [7855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [7857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3075), + [7860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3072), + [7863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5008), + [7865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [7867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5112), + [7869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [7871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1641), + [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), + [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), + [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [7882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 5, 0, 0), + [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [7888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 1, 0, 4), + [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), + [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5544), + [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [7896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 5, 0, 197), + [7898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, 0, 10), + [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5618), + [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [7908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3068), + [7911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [7913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), + [7915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 6, 0, 0), + [7917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [7919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [7921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), + [7923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [7925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), + [7927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5378), + [7929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [7931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), + [7933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(4412), + [7936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4707), + [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [7940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4706), + [7942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [7944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 2, 0, 0), + [7946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5149), + [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [7950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5148), + [7952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [7954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5139), + [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [7958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5159), + [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), + [7962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [7964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 2, 0, 0), + [7966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [7968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 5, 0, 0), + [7970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [7972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5692), + [7974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [7976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 2, 0, 0), + [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [7980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [7982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [7988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [7990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [7992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), + [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5334), + [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [7998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [8000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5012), + [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [8004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5011), + [8006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), + [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [8010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4650), + [8012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [8014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4699), + [8016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [8018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [8020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), + [8022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), + [8024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), + [8026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), + [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [8030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [8032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [8034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), + [8036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 3, 0, 0), + [8038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [8040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [8042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 4, 1, 0), + [8044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [8046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [8050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [8052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 2, 0, 0), + [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4289), + [8056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [8058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat2, 2, 0, 0), + [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [8062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 2, 0, 0), + [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5505), + [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), + [8068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), + [8070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5586), + [8072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), + [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), + [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), + [8078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__as_pattern, 3, 0, 0), + [8080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [8082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), + [8084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), + [8086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [8088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [8090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [8092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(2805), + [8095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [8097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5213), + [8099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [8101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5554), + [8103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, 0, 0), + [8105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [8107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), + [8109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [8111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), + [8113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5505), + [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [8118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4574), + [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [8126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5419), + [8130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), + [8132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [8136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 2, 0, 105), SHIFT_REPEAT(2790), + [8139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 2, 0, 105), + [8141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5709), + [8143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [8145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [8147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 2, 0, 0), + [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), + [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [8153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [8155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), + [8157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [8159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4521), + [8161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), + [8163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), + [8167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), + [8169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), + [8171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), + [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), + [8177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), + [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4629), + [8181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [8183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), + [8185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5518), + [8187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_index_repeat1, 2, 0, 0), + [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [8191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), + [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [8195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relative_import, 1, 0, 0), + [8197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 3, 0, 0), + [8199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [8201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__typedargslist_repeat1, 2, 0, 0), + [8203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), + [8205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [8207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 3, 0, 0), + [8209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [8211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), + [8213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), + [8215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 5, 0, 8), + [8217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_name, 4, 0, 0), + [8219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [8221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), + [8223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), + [8225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [8227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [8229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(1870), + [8232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 0), + [8234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), + [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), + [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), + [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), + [8242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 18), + [8244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 33), + [8246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 33), SHIFT_REPEAT(5015), + [8249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [8251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 15), + [8253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [8255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_name, 2, 0, 0), + [8257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_param, 1, 0, 0), + [8259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5607), + [8261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 14), + [8263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), + [8265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), + [8267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_value, 1, 0, 0), + [8269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), + [8271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [8273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 40), + [8275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 40), SHIFT_REPEAT(1691), + [8278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), + [8280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), + [8282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), + [8284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, -1, 16), + [8286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [8288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [8290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), + [8292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), + [8294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [8300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3, 0, 0), + [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [8304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [8306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), + [8308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), + [8314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), + [8316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [8318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [8320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 1, 0, 0), + [8322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), + [8324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5360), + [8326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [8328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), + [8330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [8332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [8334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [8336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [8338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [8340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), + [8342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), + [8348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), + [8350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), + [8352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), + [8354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [8356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), + [8358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), + [8360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5347), + [8364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), + [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [8370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_def_repeat1, 3, 0, 0), + [8372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [8374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [8376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [8378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), + [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), + [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [8386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), + [8388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), + [8390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [8392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), + [8394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4555), + [8396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [8398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [8400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 2, 0, 8), + [8402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [8404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, 0, 53), + [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5067), + [8408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5666), + [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [8412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [8414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [8416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [8418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [8420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [8422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [8424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), + [8426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), + [8428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), + [8430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), + [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), + [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5001), + [8436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [8438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [8446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(2809), + [8449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), + [8451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [8453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), + [8455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), + [8457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5008), + [8459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [8461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [8463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5511), + [8465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [8467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [8469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [8471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), + [8473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), + [8475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), + [8477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [8479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [8481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), + [8483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [8485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [8487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [8489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), + [8491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), + [8493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), + [8495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), + [8497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), + [8499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [8501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [8503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [8505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [8507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), + [8513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [8515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [8517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), + [8519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 33), SHIFT_REPEAT(4882), + [8522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(2793), + [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [8527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(818), + [8530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [8532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [8534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [8536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [8538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 1, 0, 0), + [8540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [8542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [8544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [8546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5486), + [8548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [8550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [8552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(2789), + [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5404), + [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5097), + [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [8573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_params, 4, 0, 0), + [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), + [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4523), + [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5390), + [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [8589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 0), SHIFT_REPEAT(1054), + [8592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 0), + [8594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [8596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [8598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [8600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [8602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [8604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [8606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), + [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), + [8610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1574), + [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), + [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), + [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), + [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5338), + [8627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), + [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), + [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [8637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), + [8643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), + [8645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), + [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4626), + [8649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [8651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), + [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [8655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), + [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [8671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 62), + [8673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 62), + [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5413), + [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), + [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [8687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(2795), + [8690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [8692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(443), + [8695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), + [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [8701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [8703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1250), + [8706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), + [8708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(977), + [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [8713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_index_repeat1, 2, 0, 0), SHIFT_REPEAT(3328), + [8716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [8718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [8720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_index_repeat2, 2, 0, 0), SHIFT_REPEAT(5390), + [8723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_index_repeat2, 2, 0, 0), + [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), + [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5531), + [8759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [8761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2, 0, 0), + [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [8765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3246), + [8768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5210), + [8770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5400), + [8772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [8774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [8776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [8778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [8780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), + [8782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [8784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [8786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), + [8788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), + [8790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [8792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [8794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [8796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [8798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [8800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5497), + [8802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), + [8804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4548), + [8806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [8808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [8812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [8814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), + [8816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [8820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [8822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5459), + [8824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [8826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [8828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [8830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [8832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), + [8834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [8836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [8838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [8840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [8842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [8844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [8846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [8848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [8852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [8854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [8856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_external_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(5213), + [8859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_external_definition_repeat1, 2, 0, 0), + [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [8863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [8873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [8875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [8877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [8881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5654), + [8885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [8889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), + [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [8903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), + [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4159), + [8907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), + [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), + [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), + [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4328), + [8929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__typedargslist_repeat1, 2, 0, 0), SHIFT_REPEAT(3282), + [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [8934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5397), + [8936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [8938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1, 0, 0), + [8940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), + [8942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [8944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [8946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [8948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [8950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5313), + [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [8960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), + [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [8972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_params_repeat1, 2, 0, 0), SHIFT_REPEAT(5210), + [8975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_params_repeat1, 2, 0, 0), + [8977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), + [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4942), + [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [9005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [9007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [9009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), + [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [9031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5229), + [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [9039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), + [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), + [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [9049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(954), + [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [9054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [9058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [9060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [9062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [9070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [9072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat2, 3, 0, 87), + [9074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [9076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), + [9078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [9080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [9082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), + [9086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [9088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [9090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5630), + [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [9095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [9101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), + [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [9107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5139), + [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), + [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [9113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [9115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4341), + [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [9119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), + [9121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), + [9123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), + [9125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5630), + [9129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [9131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [9133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__key_value_pattern, 3, 0, 52), + [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5510), + [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), + [9139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [9141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [9143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [9145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [9147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [9149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [9151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [9153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [9155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [9157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [9159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [9161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [9163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [9165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [9167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), + [9169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [9171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [9173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [9175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 198), SHIFT_REPEAT(2992), + [9178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 198), + [9180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_params, 3, 0, 0), + [9182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [9184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [9188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [9190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat2, 2, 0, 90), SHIFT_REPEAT(5688), + [9193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat2, 2, 0, 90), + [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [9199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [9201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [9203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [9205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [9207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5382), + [9209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [9211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [9213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [9215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [9217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), + [9219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [9221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [9223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [9225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [9227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 45), SHIFT_REPEAT(1706), + [9230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 45), + [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4878), + [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), + [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5310), + [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [9248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aliased_import, 3, 0, 34), + [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [9252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(1871), + [9255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(939), + [9258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [9264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1402), + [9267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), + [9269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_def_repeat1, 2, 0, 0), + [9271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [9273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [9275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), + [9277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5538), + [9279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [9281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [9283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 95), SHIFT_REPEAT(1071), + [9286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 95), + [9288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [9290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [9292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [9294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cvar_def_repeat1, 2, 0, 0), SHIFT_REPEAT(3955), + [9297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [9301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(1865), + [9304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [9306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4765), + [9310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4935), + [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [9322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(968), + [9325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [9327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5686), + [9329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1179), + [9332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [9334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_external_definition_repeat1, 3, 0, 0), + [9336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1812), + [9339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), + [9341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [9343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), + [9345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1833), + [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5351), + [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5352), + [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), + [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), + [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), + [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), + [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4836), + [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), + [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4323), + [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), + [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4650), + [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), + [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4500), + [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5319), + [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), + [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5050), + [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5141), + [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [9422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5271), + [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [9434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4496), + [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [9438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), + [9442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_default, 2, 0, 0), + [9444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [9448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 4, 0, 10), + [9450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 226), + [9452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [9454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [9456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4221), + [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), + [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), + [9462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5247), + [9472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [9474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [9476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 225), + [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), + [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4326), + [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), + [9486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [9488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [9490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [9492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_param, 2, 0, 0), + [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), + [9496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [9498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_separator, 1, 0, 0), + [9500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4618), + [9502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4618), + [9504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), + [9506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4525), + [9508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), + [9510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [9512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [9514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), + [9516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 5, 0, 10), + [9518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5325), + [9520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4544), + [9522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), + [9524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), + [9526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [9528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [9530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [9532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [9534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), + [9536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 170), + [9538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), + [9540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5728), + [9542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_statement, 2, 0, 0), + [9544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 2, 0, 3), + [9546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [9548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [9550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), + [9552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), + [9554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5335), + [9556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 228), + [9558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 4, 0, 171), + [9560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), + [9562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [9564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5367), + [9566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_statement, 4, 0, 0), + [9568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), + [9570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4312), + [9572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5288), + [9574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), + [9576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4217), + [9578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), + [9580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [9582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [9584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [9586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [9588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [9590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [9592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [9594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [9596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [9598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [9600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 5, 0, 91), + [9602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 200), + [9604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 227), + [9606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 0), + [9608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), + [9610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4583), + [9612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4536), + [9614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), + [9616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), + [9618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 201), + [9620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), + [9622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 202), + [9624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 6, 0, 101), + [9626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), + [9628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5332), + [9630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), + [9632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), + [9634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [9636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [9638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5301), + [9640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4226), + [9642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), + [9644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), + [9646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4183), + [9648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5184), + [9650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), + [9652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 26), + [9654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), + [9656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [9658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1, 0, 0), + [9660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 38), + [9662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5583), + [9664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment, 3, 0, 27), + [9666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 1, 0, 65), + [9668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4565), + [9670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [9672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5370), + [9674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4612), + [9676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4612), + [9678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 38), + [9680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), + [9682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 6, 0, 102), + [9684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5447), + [9686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), + [9688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [9690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), + [9692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), + [9694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1, 0, 0), + [9696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [9698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), + [9700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 247), + [9702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), + [9704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 248), + [9706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 4, 0, 35), + [9708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [9710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [9712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [9714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5723), + [9716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard_import, 1, 0, 0), + [9718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 36), + [9720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [9722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [9724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4361), + [9726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [9728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), + [9730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 37), + [9732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), + [9734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [9736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4421), + [9738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 249), + [9740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [9742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), + [9744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [9746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), + [9748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), + [9750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [9752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4336), + [9754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [9756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [9758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), + [9760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_import, 2, 0, 0), + [9762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [9764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4317), + [9766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), + [9768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 8, 0, 260), + [9770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [9772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [9774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [9776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4300), + [9778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), + [9780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), + [9782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), + [9784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4137), + [9786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), + [9788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5643), + [9790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5253), + [9792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargslist, 8, 0, 0), + [9794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5735), + [9796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4593), + [9798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), + [9800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [9802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5041), + [9804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [9806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), + [9808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [9810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [9812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 0), + [9814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), + [9816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [9818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [9820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [9822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [9824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [9826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [9828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [9830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [9832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), + [9834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [9836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [9838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5556), + [9840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [9842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4776), + [9844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), + [9846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [9848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [9850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [9852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [9854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [9856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [9858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [9860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [9862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4331), + [9864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [9866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), + [9868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [9870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [9872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [9874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), + [9876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5315), + [9878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [9880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), + [9882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [9884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [9886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), + [9888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), + [9890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), + [9892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), + [9894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [9896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [9898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), + [9900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), + [9902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [9904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [9906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [9908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [9910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [9912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [9914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [9916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), + [9918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [9920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [9922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [9924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4619), + [9926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [9928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), + [9930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [9932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [9934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [9936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [9938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [9940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [9942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4514), + [9944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [9946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [9948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5070), + [9950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [9952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4285), + [9954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [9956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [9958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4880), + [9960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [9962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [9964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [9966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [9968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [9970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [9972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [9974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [9976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [9978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), + [9980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), + [9982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [9984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5020), + [9986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [9988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [9990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5094), + [9992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [9994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [9996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [9998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [10000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5068), + [10002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5304), + [10004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [10006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), + [10008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [10010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [10012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), + [10014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [10016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [10018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [10020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [10022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [10024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [10026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [10028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4673), + [10030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [10032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [10034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [10036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [10038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [10040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5085), + [10042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [10044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4578), + [10046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [10048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [10050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), + [10052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5249), + [10054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), + [10056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5226), + [10058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [10060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), + [10062] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [10064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [10066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), + [10068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [10070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5620), + [10072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [10074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [10076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [10078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), + [10080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5565), + [10082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [10084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [10086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [10088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5282), + [10090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [10092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [10094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [10096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4661), + [10098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), + [10100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [10102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [10104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [10106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4741), + [10108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5268), + [10110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [10112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [10114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [10116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), + [10118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5545), + [10120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [10122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), + [10124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5606), + [10126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [10128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [10130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [10132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5316), + [10134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [10136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [10138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), + [10140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [10142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [10144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5170), + [10146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), + [10148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), + [10150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [10152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [10154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [10156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5671), + [10158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [10160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5684), + [10162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), + [10164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [10166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5344), + [10168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5296), + [10170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5743), + [10172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [10174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5179), + [10176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [10178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [10180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [10182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [10184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [10186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), + [10188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [10190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [10192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [10194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [10196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [10198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [10200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [10202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5656), + [10204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), + [10206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), + [10208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [10210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [10212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [10214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [10216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), + [10218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), + [10220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [10222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), + [10224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), + [10226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), + [10228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [10230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), + [10232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), + [10234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [10236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), + [10238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [10240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), + [10242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [10244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [10246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5514), + [10248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [10250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [10252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), + [10254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [10256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [10258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5683), + [10260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5663), + [10262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5492), + [10264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [10266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [10268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [10270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [10272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5729), + [10274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [10276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [10278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [10280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), + [10282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [10284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5470), + [10286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [10288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [10290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), + [10292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [10294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [10296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), + [10298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5220), + [10300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [10302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), + [10304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [10306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [10308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [10310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [10312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4621), + [10314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5599), + [10316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [10318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4622), + [10320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [10322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [10324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5612), + [10326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), + [10328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5615), + [10330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [10332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [10334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [10336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), + [10338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [10340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), + [10342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [10344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 0), + [10346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [10348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5624), + [10350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [10352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [10354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [10356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [10358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [10360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), + [10362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [10364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), + [10366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargslist, 9, 0, 0), + [10368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5685), + [10370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [10372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [10374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [10376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [10378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), }; enum ts_external_scanner_symbol_identifiers { diff --git a/test/corpus/cython.txt b/test/corpus/cython.txt index e84e91e..d19a0c6 100644 --- a/test/corpus/cython.txt +++ b/test/corpus/cython.txt @@ -274,34 +274,35 @@ cdef ullong factorial(int n): (module (cdef_statement - (cvar_def - (maybe_typed_name - (int_type) - (identifier))) - (cvar_def - (maybe_typed_name - (int_type) - (identifier))) - (cvar_def - (maybe_typed_name - (identifier) - (identifier))) - (cvar_def - (maybe_typed_name - (int_type) - (type_qualifier) - (identifier))) - (cvar_def - (maybe_typed_name - (int_type) - (type_qualifier - (type_index - (memory_view_index))) - (identifier))) - (cvar_def - (maybe_typed_name - (int_type) - (identifier)))) + (cdef_definition_block + (cvar_def + (maybe_typed_name + (int_type) + (identifier))) + (cvar_def + (maybe_typed_name + (int_type) + (identifier))) + (cvar_def + (maybe_typed_name + (identifier) + (identifier))) + (cvar_def + (maybe_typed_name + (int_type) + (type_qualifier) + (identifier))) + (cvar_def + (maybe_typed_name + (int_type) + (type_qualifier + (type_index + (memory_view_index))) + (identifier))) + (cvar_def + (maybe_typed_name + (int_type) + (identifier))))) (ctypedef_statement (cvar_decl (c_type @@ -475,14 +476,15 @@ cdef numeric add(numeric a, numeric b) (identifier) (block (cdef_statement - (cvar_def - (maybe_typed_name - (int_type) - (identifier))) - (cvar_def - (maybe_typed_name - (int_type) - (identifier)))) + (cdef_definition_block + (cvar_def + (maybe_typed_name + (int_type) + (identifier))) + (cvar_def + (maybe_typed_name + (int_type) + (identifier))))) (cdef_statement (cvar_def (maybe_typed_name @@ -697,33 +699,34 @@ cdef: (module (cdef_statement - (cvar_def - (maybe_typed_name - (int_type) - (identifier)) - (c_function_definition - (c_parameters - (maybe_typed_name - (int_type) - (identifier))))) - (cvar_def - (maybe_typed_name - (identifier) - (identifier)) - (c_function_definition - (c_parameters))) - (cvar_def - (maybe_typed_name - (int_type) - (identifier)) - (c_function_definition - (c_parameters - (maybe_typed_name - (int_type) - (identifier)) - (maybe_typed_name - (int_type) - (identifier))))))) + (cdef_definition_block + (cvar_def + (maybe_typed_name + (int_type) + (identifier)) + (c_function_definition + (c_parameters + (maybe_typed_name + (int_type) + (identifier))))) + (cvar_def + (maybe_typed_name + (identifier) + (identifier)) + (c_function_definition + (c_parameters))) + (cvar_def + (maybe_typed_name + (int_type) + (identifier)) + (c_function_definition + (c_parameters + (maybe_typed_name + (int_type) + (identifier)) + (maybe_typed_name + (int_type) + (identifier)))))))) ===================================== Variadic function with modifiers @@ -1005,3 +1008,29 @@ cdef cppclass SomeClass[U, V, W=*]: (cvar_def (maybe_typed_name (identifier)))))))) + +===================================== +Declaration of a C function pointer variable +===================================== +cdef const int (*pfunc_add)(const char*, int) +--- +(module + (cdef_statement + (cvar_def + (maybe_typed_name + (int_type) + (c_function_pointer_name + (identifier))) + (c_function_definition + (c_parameters + (maybe_typed_name + (int_type) + (type_qualifier)) + (maybe_typed_name + (int_type))))))) +===================================== +sizeof() with expression argument +===================================== +cdef int i, j, k +i = sizeof(j + k) +--